diff --git a/cfg/builder.cpp b/cfg/builder.cpp index aa4254d..3ede376 100644 --- a/cfg/builder.cpp +++ b/cfg/builder.cpp @@ -534,3 +534,175 @@ CFG CFGBuilder::build() cfg.indirect_targets = m_targets; return cfg; } + +static int64_t stackDelta(const Instruction& inst) +{ + if (inst.mnemonic == "push") return -8; + if (inst.mnemonic == "pop") return 8; + if (inst.mnemonic == "call") return 0; + if (inst.mnemonic == "ret" || inst.mnemonic == "retf") return 8; + if (inst.mnemonic == "sub") + { + size_t p = inst.operands.find("rsp"); + if (p == string::npos) p = inst.operands.find("esp"); + if (p != string::npos && (p == 0 || inst.operands[p-1] == ' ' || inst.operands[p-1] == ',')) + { + size_t x = inst.operands.rfind("0x"); + if (x != string::npos && x > p) + { + try { return -(int64_t)stoull(inst.operands.substr(x), nullptr, 16); } + catch (...) {} + } + } + } + if (inst.mnemonic == "add") + { + size_t p = inst.operands.find("rsp"); + if (p == string::npos) p = inst.operands.find("esp"); + if (p != string::npos && (p == 0 || inst.operands[p-1] == ' ' || inst.operands[p-1] == ',')) + { + size_t x = inst.operands.rfind("0x"); + if (x != string::npos && x > p) + { + try { return (int64_t)stoull(inst.operands.substr(x), nullptr, 16); } + catch (...) {} + } + } + } + return 0; +} + +static void computeStackDeltas(CFG& cfg) +{ + for (auto& func : cfg.functions) + { + for (auto& block : func.blocks) + { + int64_t delta = 0; + for (auto& inst : block.instructions) + { + inst.stack_offset = delta; + delta += stackDelta(inst); + } + } + } +} + +static void jumpThread(CFG& cfg) +{ + map addr_to_block; + map addr_to_func; + for (auto& func : cfg.functions) + { + for (auto& block : func.blocks) + { + addr_to_block[block.address] = █ + addr_to_func[block.address] = &func; + } + } + + for (auto& func : cfg.functions) + { + bool changed = true; + while (changed) + { + changed = false; + for (auto& block : func.blocks) + { + if (block.successors.size() != 1) continue; + addr_t t = block.successors[0]; + auto it = addr_to_block.find(t); + if (it == addr_to_block.end()) continue; + if (addr_to_func[t] != &func) continue; + + BasicBlock* target = it->second; + if (target->instructions.size() == 1 && + target->instructions[0].mnemonic == "jmp" && + target->successors.size() == 1) + { + addr_t redirect = target->successors[0]; + if (redirect != block.address && redirect != t) + { + block.successors[0] = redirect; + changed = true; + } + } + } + } + } +} + +static void pruneDeadBlocks(CFG& cfg) +{ + for (auto& func : cfg.functions) + { + if (func.blocks.empty()) continue; + set reachable; + queue q; + reachable.insert(func.blocks[0].address); + q.push(func.blocks[0].address); + + map addr_map; + for (auto& b : func.blocks) addr_map[b.address] = &b; + + while (!q.empty()) + { + addr_t cur = q.front(); q.pop(); + auto it = addr_map.find(cur); + if (it == addr_map.end()) continue; + for (auto s : it->second->successors) + if (reachable.insert(s).second) q.push(s); + } + + vector alive; + for (auto& b : func.blocks) + if (reachable.count(b.address)) + alive.push_back(move(b)); + func.blocks = move(alive); + } +} + +static void computeXrefs(CFG& cfg) +{ + map>> xmap; + for (const auto& func : cfg.functions) + { + for (const auto& block : func.blocks) + { + for (const auto& inst : block.instructions) + { + if (inst.mnemonic == "call" || inst.mnemonic == "jmp" || + (inst.mnemonic.size() == 2 && inst.mnemonic[0] == 'j' && inst.mnemonic != "jn")) + { + size_t pos = inst.operands.find("0x"); + if (pos != string::npos) + { + try + { + addr_t target = stoull(inst.operands.substr(pos), nullptr, 16); + string type = inst.mnemonic; + xmap[target].push_back({inst.address, type}); + } + catch (...) {} + } + } + } + } + } + + for (auto& kv : xmap) + { + XrefEntry xe; + xe.target = kv.first; + xe.callers = move(kv.second); + cfg.xrefs.push_back(move(xe)); + } +} + +void CFGBuilder::clean(CFG& cfg) +{ + jumpThread(cfg); + pruneDeadBlocks(cfg); + computeStackDeltas(cfg); + computeXrefs(cfg); +} diff --git a/cfg/builder.hpp b/cfg/builder.hpp index 3061071..b7aa56a 100644 --- a/cfg/builder.hpp +++ b/cfg/builder.hpp @@ -11,6 +11,7 @@ class CFGBuilder public: CFGBuilder(Binary* binary, Disassembler* disasm, bool subsOnly = false); CFG build(); + static void clean(CFG& cfg); private: void buildGotMap(); diff --git a/main.cpp b/main.cpp index 25f7fed..c820b0e 100644 --- a/main.cpp +++ b/main.cpp @@ -7,11 +7,12 @@ int main(int argc, char* argv[]) { if (argc < 2) { - cerr << "usage: cfgrip [--subs-only] " << endl; + cerr << "usage: cfgrip [--subs-only] [--clean] " << endl; return 1; } bool subsOnly = false; + bool clean = false; string path; for (int i = 1; i < argc; i++) @@ -19,13 +20,15 @@ int main(int argc, char* argv[]) string arg = argv[i]; if (arg == "--subs-only") subsOnly = true; + else if (arg == "--clean") + clean = true; else path = arg; } if (path.empty()) { - cerr << "usage: cfgrip [--subs-only] " << endl; + cerr << "usage: cfgrip [--subs-only] [--clean] " << endl; return 1; } @@ -75,6 +78,12 @@ int main(int argc, char* argv[]) if (subsOnly) cout << "mode: subs-only" << endl; CFG cfg = builder.build(); + if (clean) + { + CFGBuilder::clean(cfg); + cout << "clean: xrefs=" << cfg.xrefs.size() << " functions=" << cfg.functions.size() << endl; + } + cout << "functions: " << cfg.functions.size() << endl; cout << "indirect targets: " << cfg.indirect_targets.size() << endl; diff --git a/tests/example1.exe.cfg b/tests/example1.exe.cfg index f1adf36..a1e3592 100644 --- a/tests/example1.exe.cfg +++ b/tests/example1.exe.cfg @@ -8679,25 +8679,29 @@ "address": "0x1400054bc", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400054c0", "size": 5, "mnemonic": "call", - "operands": "0x140005d30" + "operands": "0x140005d30", + "stack_offset": 0 }, { "address": "0x1400054c5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400054c9", "size": 5, "mnemonic": "jmp", - "operands": "0x140005340" + "operands": "0x140005340", + "stack_offset": 0 } ], "successors": [ @@ -8714,49 +8718,57 @@ "address": "0x140005340", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140005345", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000534a", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000534b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000534f", "size": 5, "mnemonic": "mov", - "operands": "ecx, 1" + "operands": "ecx, 1", + "stack_offset": 0 }, { "address": "0x140005354", "size": 5, "mnemonic": "call", - "operands": "0x14000550c" + "operands": "0x14000550c", + "stack_offset": 0 }, { "address": "0x140005359", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14000535b", "size": 6, "mnemonic": "je", - "operands": "0x140005497" + "operands": "0x140005497", + "stack_offset": 0 } ], "successors": [ @@ -8774,91 +8786,106 @@ "address": "0x140005497", "size": 5, "mnemonic": "mov", - "operands": "ecx, 7" + "operands": "ecx, 7", + "stack_offset": 0 }, { "address": "0x14000549c", "size": 5, "mnemonic": "call", - "operands": "0x140005e44" + "operands": "0x140005e44", + "stack_offset": 0 }, { "address": "0x1400054a1", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400054a2", "size": 5, "mnemonic": "mov", - "operands": "ecx, 7" + "operands": "ecx, 7", + "stack_offset": 0 }, { "address": "0x1400054a7", "size": 5, "mnemonic": "call", - "operands": "0x140005e44" + "operands": "0x140005e44", + "stack_offset": 0 }, { "address": "0x1400054ac", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x1400054ae", "size": 5, "mnemonic": "call", - "operands": "0x14000ec14" + "operands": "0x14000ec14", + "stack_offset": 0 }, { "address": "0x1400054b3", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400054b4", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x1400054b6", "size": 5, "mnemonic": "call", - "operands": "0x14000ebcc" + "operands": "0x14000ebcc", + "stack_offset": 0 }, { "address": "0x1400054bb", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400054bc", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400054c0", "size": 5, "mnemonic": "call", - "operands": "0x140005d30" + "operands": "0x140005d30", + "stack_offset": 0 }, { "address": "0x1400054c5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400054c9", "size": 5, "mnemonic": "jmp", - "operands": "0x140005340" + "operands": "0x140005340", + "stack_offset": 0 } ], "successors": [ @@ -8875,43 +8902,50 @@ "address": "0x140005361", "size": 3, "mnemonic": "xor", - "operands": "sil, sil" + "operands": "sil, sil", + "stack_offset": 0 }, { "address": "0x140005364", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x20], sil" + "operands": "byte ptr [rsp + 0x20], sil", + "stack_offset": 0 }, { "address": "0x140005369", "size": 5, "mnemonic": "call", - "operands": "0x1400054d0" + "operands": "0x1400054d0", + "stack_offset": 0 }, { "address": "0x14000536e", "size": 2, "mnemonic": "mov", - "operands": "bl, al" + "operands": "bl, al", + "stack_offset": 0 }, { "address": "0x140005370", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rip + 0x2d37a]" + "operands": "ecx, dword ptr [rip + 0x2d37a]", + "stack_offset": 0 }, { "address": "0x140005376", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 1" + "operands": "ecx, 1", + "stack_offset": 0 }, { "address": "0x140005379", "size": 6, "mnemonic": "je", - "operands": "0x1400054a2" + "operands": "0x1400054a2", + "stack_offset": 0 } ], "successors": [ @@ -8929,73 +8963,85 @@ "address": "0x1400054a2", "size": 5, "mnemonic": "mov", - "operands": "ecx, 7" + "operands": "ecx, 7", + "stack_offset": 0 }, { "address": "0x1400054a7", "size": 5, "mnemonic": "call", - "operands": "0x140005e44" + "operands": "0x140005e44", + "stack_offset": 0 }, { "address": "0x1400054ac", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x1400054ae", "size": 5, "mnemonic": "call", - "operands": "0x14000ec14" + "operands": "0x14000ec14", + "stack_offset": 0 }, { "address": "0x1400054b3", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400054b4", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x1400054b6", "size": 5, "mnemonic": "call", - "operands": "0x14000ebcc" + "operands": "0x14000ebcc", + "stack_offset": 0 }, { "address": "0x1400054bb", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400054bc", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400054c0", "size": 5, "mnemonic": "call", - "operands": "0x140005d30" + "operands": "0x140005d30", + "stack_offset": 0 }, { "address": "0x1400054c5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400054c9", "size": 5, "mnemonic": "jmp", - "operands": "0x140005340" + "operands": "0x140005340", + "stack_offset": 0 } ], "successors": [ @@ -9012,49 +9058,57 @@ "address": "0x14000537f", "size": 2, "mnemonic": "test", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140005381", "size": 2, "mnemonic": "jne", - "operands": "0x1400053cd" + "operands": "0x1400053cd", + "stack_offset": 0 }, { "address": "0x140005383", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2d363], 1" + "operands": "dword ptr [rip + 0x2d363], 1", + "stack_offset": 0 }, { "address": "0x14000538d", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1aff4]" + "operands": "rdx, [rip + 0x1aff4]", + "stack_offset": 0 }, { "address": "0x140005394", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x1afad]" + "operands": "rcx, [rip + 0x1afad]", + "stack_offset": 0 }, { "address": "0x14000539b", "size": 5, "mnemonic": "call", - "operands": "0x14000e8f8" + "operands": "0x14000e8f8", + "stack_offset": 0 }, { "address": "0x1400053a0", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400053a2", "size": 2, "mnemonic": "je", - "operands": "0x1400053ae" + "operands": "0x1400053ae", + "stack_offset": 0 } ], "successors": [ @@ -9072,31 +9126,36 @@ "address": "0x1400053ae", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1af8b]" + "operands": "rdx, [rip + 0x1af8b]", + "stack_offset": 0 }, { "address": "0x1400053b5", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x1af2c]" + "operands": "rcx, [rip + 0x1af2c]", + "stack_offset": 0 }, { "address": "0x1400053bc", "size": 5, "mnemonic": "call", - "operands": "0x14000e8c0" + "operands": "0x14000e8c0", + "stack_offset": 0 }, { "address": "0x1400053c1", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2d325], 2" + "operands": "dword ptr [rip + 0x2d325], 2", + "stack_offset": 0 }, { "address": "0x1400053cb", "size": 2, "mnemonic": "jmp", - "operands": "0x1400053d5" + "operands": "0x1400053d5", + "stack_offset": 0 } ], "successors": [ @@ -9113,13 +9172,15 @@ "address": "0x1400053a4", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xff" + "operands": "eax, 0xff", + "stack_offset": 0 }, { "address": "0x1400053a9", "size": 5, "mnemonic": "jmp", - "operands": "0x140005487" + "operands": "0x140005487", + "stack_offset": 0 } ], "successors": [ @@ -9136,37 +9197,43 @@ "address": "0x1400053d5", "size": 2, "mnemonic": "mov", - "operands": "cl, bl" + "operands": "cl, bl", + "stack_offset": 0 }, { "address": "0x1400053d7", "size": 5, "mnemonic": "call", - "operands": "0x14000566c" + "operands": "0x14000566c", + "stack_offset": 0 }, { "address": "0x1400053dc", "size": 5, "mnemonic": "call", - "operands": "0x140005e28" + "operands": "0x140005e28", + "stack_offset": 0 }, { "address": "0x1400053e1", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400053e4", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax], 0" + "operands": "qword ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x1400053e8", "size": 2, "mnemonic": "je", - "operands": "0x140005408" + "operands": "0x140005408", + "stack_offset": 0 } ], "successors": [ @@ -9184,31 +9251,36 @@ "address": "0x140005487", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000548c", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x48]" + "operands": "rsi, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x140005491", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140005495", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140005496", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -9224,25 +9296,29 @@ "address": "0x140005408", "size": 5, "mnemonic": "call", - "operands": "0x140005e30" + "operands": "0x140005e30", + "stack_offset": 0 }, { "address": "0x14000540d", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140005410", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax], 0" + "operands": "qword ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x140005414", "size": 2, "mnemonic": "je", - "operands": "0x14000542a" + "operands": "0x14000542a", + "stack_offset": 0 } ], "successors": [ @@ -9260,25 +9336,29 @@ "address": "0x1400053ea", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x1400053ed", "size": 5, "mnemonic": "call", - "operands": "0x1400055d4" + "operands": "0x1400055d4", + "stack_offset": 0 }, { "address": "0x1400053f2", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400053f4", "size": 2, "mnemonic": "je", - "operands": "0x140005408" + "operands": "0x140005408", + "stack_offset": 0 } ], "successors": [ @@ -9296,79 +9376,92 @@ "address": "0x14000542a", "size": 5, "mnemonic": "call", - "operands": "0x14000e868" + "operands": "0x14000e868", + "stack_offset": 0 }, { "address": "0x14000542f", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x140005432", "size": 5, "mnemonic": "call", - "operands": "0x14000ec90" + "operands": "0x14000ec90", + "stack_offset": 0 }, { "address": "0x140005437", "size": 3, "mnemonic": "mov", - "operands": "rbx, qword ptr [rax]" + "operands": "rbx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000543a", "size": 5, "mnemonic": "call", - "operands": "0x14000ec88" + "operands": "0x14000ec88", + "stack_offset": 0 }, { "address": "0x14000543f", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x140005442", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140005445", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rax]" + "operands": "ecx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140005447", "size": 5, "mnemonic": "call", - "operands": "0x140002240" + "operands": "0x140002240", + "stack_offset": 0 }, { "address": "0x14000544c", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x14000544e", "size": 5, "mnemonic": "call", - "operands": "0x140005f98" + "operands": "0x140005f98", + "stack_offset": 0 }, { "address": "0x140005453", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140005455", "size": 2, "mnemonic": "je", - "operands": "0x1400054ac" + "operands": "0x1400054ac", + "stack_offset": 0 } ], "successors": [ @@ -9386,25 +9479,29 @@ "address": "0x140005416", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140005419", "size": 5, "mnemonic": "call", - "operands": "0x1400055d4" + "operands": "0x1400055d4", + "stack_offset": 0 }, { "address": "0x14000541e", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140005420", "size": 2, "mnemonic": "je", - "operands": "0x14000542a" + "operands": "0x14000542a", + "stack_offset": 0 } ], "successors": [ @@ -9422,55 +9519,64 @@ "address": "0x1400053f6", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x1400053f9", "size": 4, "mnemonic": "lea", - "operands": "edx, [r8 + 2]" + "operands": "edx, [r8 + 2]", + "stack_offset": 0 }, { "address": "0x1400053fd", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400053ff", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140005402", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1aeb8]" + "operands": "qword ptr [rip + 0x1aeb8]", + "stack_offset": 0 }, { "address": "0x140005408", "size": 5, "mnemonic": "call", - "operands": "0x140005e30" + "operands": "0x140005e30", + "stack_offset": 0 }, { "address": "0x14000540d", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140005410", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax], 0" + "operands": "qword ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x140005414", "size": 2, "mnemonic": "je", - "operands": "0x14000542a" + "operands": "0x14000542a", + "stack_offset": 0 } ], "successors": [ @@ -9488,61 +9594,71 @@ "address": "0x1400054ac", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x1400054ae", "size": 5, "mnemonic": "call", - "operands": "0x14000ec14" + "operands": "0x14000ec14", + "stack_offset": 0 }, { "address": "0x1400054b3", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400054b4", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x1400054b6", "size": 5, "mnemonic": "call", - "operands": "0x14000ebcc" + "operands": "0x14000ebcc", + "stack_offset": 0 }, { "address": "0x1400054bb", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400054bc", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400054c0", "size": 5, "mnemonic": "call", - "operands": "0x140005d30" + "operands": "0x140005d30", + "stack_offset": 0 }, { "address": "0x1400054c5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400054c9", "size": 5, "mnemonic": "jmp", - "operands": "0x140005340" + "operands": "0x140005340", + "stack_offset": 0 } ], "successors": [ @@ -9559,49 +9675,57 @@ "address": "0x140005457", "size": 3, "mnemonic": "test", - "operands": "sil, sil" + "operands": "sil, sil", + "stack_offset": 0 }, { "address": "0x14000545a", "size": 2, "mnemonic": "jne", - "operands": "0x140005461" + "operands": "0x140005461", + "stack_offset": 0 }, { "address": "0x14000545c", "size": 5, "mnemonic": "call", - "operands": "0x14000ebbc" + "operands": "0x14000ebbc", + "stack_offset": 0 }, { "address": "0x140005461", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140005463", "size": 2, "mnemonic": "mov", - "operands": "cl, 1" + "operands": "cl, 1", + "stack_offset": 0 }, { "address": "0x140005465", "size": 5, "mnemonic": "call", - "operands": "0x140005690" + "operands": "0x140005690", + "stack_offset": 0 }, { "address": "0x14000546a", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x14000546c", "size": 2, "mnemonic": "jmp", - "operands": "0x140005487" + "operands": "0x140005487", + "stack_offset": 0 } ], "successors": [ @@ -9618,91 +9742,106 @@ "address": "0x140005422", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx]" + "operands": "rcx, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140005425", "size": 5, "mnemonic": "call", - "operands": "0x14000ebd8" + "operands": "0x14000ebd8", + "stack_offset": 0 }, { "address": "0x14000542a", "size": 5, "mnemonic": "call", - "operands": "0x14000e868" + "operands": "0x14000e868", + "stack_offset": 0 }, { "address": "0x14000542f", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x140005432", "size": 5, "mnemonic": "call", - "operands": "0x14000ec90" + "operands": "0x14000ec90", + "stack_offset": 0 }, { "address": "0x140005437", "size": 3, "mnemonic": "mov", - "operands": "rbx, qword ptr [rax]" + "operands": "rbx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000543a", "size": 5, "mnemonic": "call", - "operands": "0x14000ec88" + "operands": "0x14000ec88", + "stack_offset": 0 }, { "address": "0x14000543f", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x140005442", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140005445", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rax]" + "operands": "ecx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140005447", "size": 5, "mnemonic": "call", - "operands": "0x140002240" + "operands": "0x140002240", + "stack_offset": 0 }, { "address": "0x14000544c", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x14000544e", "size": 5, "mnemonic": "call", - "operands": "0x140005f98" + "operands": "0x140005f98", + "stack_offset": 0 }, { "address": "0x140005453", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140005455", "size": 2, "mnemonic": "je", - "operands": "0x1400054ac" + "operands": "0x1400054ac", + "stack_offset": 0 } ], "successors": [ @@ -9726,43 +9865,50 @@ "address": "0x140002240", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140002244", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1e32d]" + "operands": "rdx, [rip + 0x1e32d]", + "stack_offset": 0 }, { "address": "0x14000224b", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x2ff8e]" + "operands": "rcx, [rip + 0x2ff8e]", + "stack_offset": 0 }, { "address": "0x140002252", "size": 5, "mnemonic": "call", - "operands": "0x140001150" + "operands": "0x140001150", + "stack_offset": 0 }, { "address": "0x140002257", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140002259", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000225d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -9784,25 +9930,29 @@ "address": "0x1400054d0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400054d4", "size": 5, "mnemonic": "call", - "operands": "0x1400060d8" + "operands": "0x1400060d8", + "stack_offset": 0 }, { "address": "0x1400054d9", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400054db", "size": 2, "mnemonic": "je", - "operands": "0x1400054fe" + "operands": "0x1400054fe", + "stack_offset": 0 } ], "successors": [ @@ -9820,19 +9970,22 @@ "address": "0x1400054fe", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140005500", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140005504", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -9848,19 +10001,22 @@ "address": "0x1400054dd", "size": 9, "mnemonic": "mov", - "operands": "rax, qword ptr gs:[0x30]" + "operands": "rax, qword ptr gs:[0x30]", + "stack_offset": 0 }, { "address": "0x1400054e6", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax + 8]" + "operands": "rcx, qword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x1400054ea", "size": 2, "mnemonic": "jmp", - "operands": "0x1400054f1" + "operands": "0x1400054f1", + "stack_offset": 0 } ], "successors": [ @@ -9877,37 +10033,43 @@ "address": "0x1400054f1", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400054f3", "size": 9, "mnemonic": "lock cmpxchg", - "operands": "qword ptr [rip + 0x2d1fc], rcx" + "operands": "qword ptr [rip + 0x2d1fc], rcx", + "stack_offset": 0 }, { "address": "0x1400054fc", "size": 2, "mnemonic": "jne", - "operands": "0x1400054ec" + "operands": "0x1400054ec", + "stack_offset": 0 }, { "address": "0x1400054fe", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140005500", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140005504", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -9929,61 +10091,71 @@ "address": "0x14000550c", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140005510", "size": 2, "mnemonic": "test", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140005512", "size": 2, "mnemonic": "jne", - "operands": "0x14000551b" + "operands": "0x14000551b", + "stack_offset": 0 }, { "address": "0x140005514", "size": 7, "mnemonic": "mov", - "operands": "byte ptr [rip + 0x2d1e5], 1" + "operands": "byte ptr [rip + 0x2d1e5], 1", + "stack_offset": 0 }, { "address": "0x14000551b", "size": 5, "mnemonic": "call", - "operands": "0x1400057f0" + "operands": "0x1400057f0", + "stack_offset": 0 }, { "address": "0x140005520", "size": 5, "mnemonic": "call", - "operands": "0x140007318" + "operands": "0x140007318", + "stack_offset": 0 }, { "address": "0x140005525", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140005527", "size": 2, "mnemonic": "jne", - "operands": "0x14000552d" + "operands": "0x14000552d", + "stack_offset": 0 }, { "address": "0x140005529", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14000552b", "size": 2, "mnemonic": "jmp", - "operands": "0x140005541" + "operands": "0x140005541", + "stack_offset": 0 } ], "successors": [ @@ -10000,13 +10172,15 @@ "address": "0x140005541", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140005545", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -10028,139 +10202,162 @@ "address": "0x1400055d4", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x18" + "operands": "rsp, 0x18", + "stack_offset": 0 }, { "address": "0x1400055d8", "size": 3, "mnemonic": "mov", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x1400055db", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x5a4d" + "operands": "eax, 0x5a4d", + "stack_offset": 0 }, { "address": "0x1400055e0", "size": 7, "mnemonic": "cmp", - "operands": "word ptr [rip - 0x55e7], ax" + "operands": "word ptr [rip - 0x55e7], ax", + "stack_offset": 0 }, { "address": "0x1400055e7", "size": 2, "mnemonic": "jne", - "operands": "0x140005661" + "operands": "0x140005661", + "stack_offset": 0 }, { "address": "0x1400055e9", "size": 7, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rip - 0x55b4]" + "operands": "rcx, dword ptr [rip - 0x55b4]", + "stack_offset": 0 }, { "address": "0x1400055f0", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip - 0x55f7]" + "operands": "rdx, [rip - 0x55f7]", + "stack_offset": 0 }, { "address": "0x1400055f7", "size": 3, "mnemonic": "add", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x1400055fa", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0x4550" + "operands": "dword ptr [rcx], 0x4550", + "stack_offset": 0 }, { "address": "0x140005600", "size": 2, "mnemonic": "jne", - "operands": "0x140005661" + "operands": "0x140005661", + "stack_offset": 0 }, { "address": "0x140005602", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x20b" + "operands": "eax, 0x20b", + "stack_offset": 0 }, { "address": "0x140005607", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rcx + 0x18], ax" + "operands": "word ptr [rcx + 0x18], ax", + "stack_offset": 0 }, { "address": "0x14000560b", "size": 2, "mnemonic": "jne", - "operands": "0x140005661" + "operands": "0x140005661", + "stack_offset": 0 }, { "address": "0x14000560d", "size": 3, "mnemonic": "sub", - "operands": "r8, rdx" + "operands": "r8, rdx", + "stack_offset": 0 }, { "address": "0x140005610", "size": 4, "mnemonic": "movzx", - "operands": "edx, word ptr [rcx + 0x14]" + "operands": "edx, word ptr [rcx + 0x14]", + "stack_offset": 0 }, { "address": "0x140005614", "size": 4, "mnemonic": "add", - "operands": "rdx, 0x18" + "operands": "rdx, 0x18", + "stack_offset": 0 }, { "address": "0x140005618", "size": 3, "mnemonic": "add", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14000561b", "size": 4, "mnemonic": "movzx", - "operands": "eax, word ptr [rcx + 6]" + "operands": "eax, word ptr [rcx + 6]", + "stack_offset": 0 }, { "address": "0x14000561f", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rax*4]" + "operands": "rcx, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x140005623", "size": 4, "mnemonic": "lea", - "operands": "r9, [rdx + rcx*8]" + "operands": "r9, [rdx + rcx*8]", + "stack_offset": 0 }, { "address": "0x140005627", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rsp], rdx" + "operands": "qword ptr [rsp], rdx", + "stack_offset": 0 }, { "address": "0x14000562b", "size": 3, "mnemonic": "cmp", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000562e", "size": 2, "mnemonic": "je", - "operands": "0x140005648" + "operands": "0x140005648", + "stack_offset": 0 } ], "successors": [ @@ -10178,31 +10375,36 @@ "address": "0x140005648", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000564a", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000564d", "size": 2, "mnemonic": "jne", - "operands": "0x140005653" + "operands": "0x140005653", + "stack_offset": 0 }, { "address": "0x14000564f", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140005651", "size": 2, "mnemonic": "jmp", - "operands": "0x140005667" + "operands": "0x140005667", + "stack_offset": 0 } ], "successors": [ @@ -10219,19 +10421,22 @@ "address": "0x140005630", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx + 0xc]" + "operands": "ecx, dword ptr [rdx + 0xc]", + "stack_offset": 0 }, { "address": "0x140005633", "size": 3, "mnemonic": "cmp", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x140005636", "size": 2, "mnemonic": "jb", - "operands": "0x140005642" + "operands": "0x140005642", + "stack_offset": 0 } ], "successors": [ @@ -10249,13 +10454,15 @@ "address": "0x140005667", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x18" + "operands": "rsp, 0x18", + "stack_offset": 0 }, { "address": "0x14000566b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -10271,13 +10478,15 @@ "address": "0x140005642", "size": 4, "mnemonic": "add", - "operands": "rdx, 0x28" + "operands": "rdx, 0x28", + "stack_offset": 0 }, { "address": "0x140005646", "size": 2, "mnemonic": "jmp", - "operands": "0x140005627" + "operands": "0x140005627", + "stack_offset": 0 } ], "successors": [ @@ -10294,25 +10503,29 @@ "address": "0x140005638", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx + 8]" + "operands": "eax, dword ptr [rdx + 8]", + "stack_offset": 0 }, { "address": "0x14000563b", "size": 2, "mnemonic": "add", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14000563d", "size": 3, "mnemonic": "cmp", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x140005640", "size": 2, "mnemonic": "jb", - "operands": "0x14000564a" + "operands": "0x14000564a", + "stack_offset": 0 } ], "successors": [ @@ -10330,19 +10543,22 @@ "address": "0x140005627", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rsp], rdx" + "operands": "qword ptr [rsp], rdx", + "stack_offset": 0 }, { "address": "0x14000562b", "size": 3, "mnemonic": "cmp", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000562e", "size": 2, "mnemonic": "je", - "operands": "0x140005648" + "operands": "0x140005648", + "stack_offset": 0 } ], "successors": [ @@ -10360,25 +10576,29 @@ "address": "0x14000564a", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000564d", "size": 2, "mnemonic": "jne", - "operands": "0x140005653" + "operands": "0x140005653", + "stack_offset": 0 }, { "address": "0x14000564f", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140005651", "size": 2, "mnemonic": "jmp", - "operands": "0x140005667" + "operands": "0x140005667", + "stack_offset": 0 } ], "successors": [ @@ -10401,43 +10621,50 @@ "address": "0x14000566c", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000566e", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140005672", "size": 2, "mnemonic": "mov", - "operands": "bl, cl" + "operands": "bl, cl", + "stack_offset": 0 }, { "address": "0x140005674", "size": 5, "mnemonic": "call", - "operands": "0x1400060d8" + "operands": "0x1400060d8", + "stack_offset": 0 }, { "address": "0x140005679", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000567b", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000567d", "size": 2, "mnemonic": "je", - "operands": "0x14000568a" + "operands": "0x14000568a", + "stack_offset": 0 } ], "successors": [ @@ -10455,19 +10682,22 @@ "address": "0x14000568a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000568e", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000568f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -10483,37 +10713,43 @@ "address": "0x14000567f", "size": 2, "mnemonic": "test", - "operands": "bl, bl" + "operands": "bl, bl", + "stack_offset": 0 }, { "address": "0x140005681", "size": 2, "mnemonic": "jne", - "operands": "0x14000568a" + "operands": "0x14000568a", + "stack_offset": 0 }, { "address": "0x140005683", "size": 7, "mnemonic": "xchg", - "operands": "qword ptr [rip + 0x2d06e], rdx" + "operands": "qword ptr [rip + 0x2d06e], rdx", + "stack_offset": 0 }, { "address": "0x14000568a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000568e", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000568f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -10535,31 +10771,36 @@ "address": "0x140005690", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140005692", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140005696", "size": 7, "mnemonic": "cmp", - "operands": "byte ptr [rip + 0x2d063], 0" + "operands": "byte ptr [rip + 0x2d063], 0", + "stack_offset": 0 }, { "address": "0x14000569d", "size": 2, "mnemonic": "mov", - "operands": "bl, cl" + "operands": "bl, cl", + "stack_offset": 0 }, { "address": "0x14000569f", "size": 2, "mnemonic": "je", - "operands": "0x1400056a5" + "operands": "0x1400056a5", + "stack_offset": 0 } ], "successors": [ @@ -10577,43 +10818,50 @@ "address": "0x1400056a5", "size": 5, "mnemonic": "call", - "operands": "0x140010b38" + "operands": "0x140010b38", + "stack_offset": 0 }, { "address": "0x1400056aa", "size": 2, "mnemonic": "mov", - "operands": "cl, bl" + "operands": "cl, bl", + "stack_offset": 0 }, { "address": "0x1400056ac", "size": 5, "mnemonic": "call", - "operands": "0x140007340" + "operands": "0x140007340", + "stack_offset": 0 }, { "address": "0x1400056b1", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x1400056b3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400056b7", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400056b8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -10629,55 +10877,64 @@ "address": "0x1400056a1", "size": 2, "mnemonic": "test", - "operands": "dl, dl" + "operands": "dl, dl", + "stack_offset": 0 }, { "address": "0x1400056a3", "size": 2, "mnemonic": "jne", - "operands": "0x1400056b1" + "operands": "0x1400056b1", + "stack_offset": 0 }, { "address": "0x1400056a5", "size": 5, "mnemonic": "call", - "operands": "0x140010b38" + "operands": "0x140010b38", + "stack_offset": 0 }, { "address": "0x1400056aa", "size": 2, "mnemonic": "mov", - "operands": "cl, bl" + "operands": "cl, bl", + "stack_offset": 0 }, { "address": "0x1400056ac", "size": 5, "mnemonic": "call", - "operands": "0x140007340" + "operands": "0x140007340", + "stack_offset": 0 }, { "address": "0x1400056b1", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x1400056b3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400056b7", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400056b8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -10699,235 +10956,274 @@ "address": "0x140005d30", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbx" + "operands": "qword ptr [rsp + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x140005d35", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140005d36", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140005d39", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140005d3d", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2b2fc]" + "operands": "rax, qword ptr [rip + 0x2b2fc]", + "stack_offset": 0 }, { "address": "0x140005d44", "size": 10, "mnemonic": "movabs", - "operands": "rbx, 0x2b992ddfa232" + "operands": "rbx, 0x2b992ddfa232", + "stack_offset": 0 }, { "address": "0x140005d4e", "size": 3, "mnemonic": "cmp", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140005d51", "size": 2, "mnemonic": "jne", - "operands": "0x140005dca" + "operands": "0x140005dca", + "stack_offset": 0 }, { "address": "0x140005d53", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140005d57", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x10], 0" + "operands": "qword ptr [rbp + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140005d5f", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a34b]" + "operands": "qword ptr [rip + 0x1a34b]", + "stack_offset": 0 }, { "address": "0x140005d65", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x10]" + "operands": "rax, qword ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140005d69", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x140005d6d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a335]" + "operands": "qword ptr [rip + 0x1a335]", + "stack_offset": 0 }, { "address": "0x140005d73", "size": 2, "mnemonic": "mov", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005d75", "size": 4, "mnemonic": "xor", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x140005d79", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a321]" + "operands": "qword ptr [rip + 0x1a321]", + "stack_offset": 0 }, { "address": "0x140005d7f", "size": 2, "mnemonic": "mov", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005d81", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x18]" + "operands": "rcx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x140005d85", "size": 4, "mnemonic": "xor", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x140005d89", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a309]" + "operands": "qword ptr [rip + 0x1a309]", + "stack_offset": 0 }, { "address": "0x140005d8f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x18]" + "operands": "eax, dword ptr [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x140005d92", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005d96", "size": 4, "mnemonic": "shl", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x140005d9a", "size": 4, "mnemonic": "xor", - "operands": "rax, qword ptr [rbp + 0x18]" + "operands": "rax, qword ptr [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x140005d9e", "size": 4, "mnemonic": "xor", - "operands": "rax, qword ptr [rbp - 0x10]" + "operands": "rax, qword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005da2", "size": 3, "mnemonic": "xor", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140005da5", "size": 10, "mnemonic": "movabs", - "operands": "rcx, 0xffffffffffff" + "operands": "rcx, 0xffffffffffff", + "stack_offset": 0 }, { "address": "0x140005daf", "size": 3, "mnemonic": "and", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140005db2", "size": 10, "mnemonic": "movabs", - "operands": "rcx, 0x2b992ddfa233" + "operands": "rcx, 0x2b992ddfa233", + "stack_offset": 0 }, { "address": "0x140005dbc", "size": 3, "mnemonic": "cmp", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140005dbf", "size": 4, "mnemonic": "cmove", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140005dc3", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b276], rax" + "operands": "qword ptr [rip + 0x2b276], rax", + "stack_offset": 0 }, { "address": "0x140005dca", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140005dcf", "size": 3, "mnemonic": "not", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x140005dd2", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b2a7], rax" + "operands": "qword ptr [rip + 0x2b2a7], rax", + "stack_offset": 0 }, { "address": "0x140005dd9", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140005ddd", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140005dde", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -10949,13 +11245,15 @@ "address": "0x140005e28", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x2da49]" + "operands": "rax, [rip + 0x2da49]", + "stack_offset": 0 }, { "address": "0x140005e2f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -10977,13 +11275,15 @@ "address": "0x140005e30", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x2da39]" + "operands": "rax, [rip + 0x2da39]", + "stack_offset": 0 }, { "address": "0x140005e37", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -11005,55 +11305,64 @@ "address": "0x140005e44", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140005e49", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140005e4a", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x4c0]" + "operands": "rbp, [rsp - 0x4c0]", + "stack_offset": 0 }, { "address": "0x140005e52", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x5c0" + "operands": "rsp, 0x5c0", + "stack_offset": 0 }, { "address": "0x140005e59", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x140005e5b", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x17" + "operands": "ecx, 0x17", + "stack_offset": 0 }, { "address": "0x140005e60", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a22a]" + "operands": "qword ptr [rip + 0x1a22a]", + "stack_offset": 0 }, { "address": "0x140005e66", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005e68", "size": 2, "mnemonic": "je", - "operands": "0x140005e6e" + "operands": "0x140005e6e", + "stack_offset": 0 } ], "successors": [ @@ -11071,91 +11380,106 @@ "address": "0x140005e6e", "size": 5, "mnemonic": "mov", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x140005e73", "size": 5, "mnemonic": "call", - "operands": "0x140005e38" + "operands": "0x140005e38", + "stack_offset": 0 }, { "address": "0x140005e78", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140005e7a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005e7e", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x4d0" + "operands": "r8d, 0x4d0", + "stack_offset": 0 }, { "address": "0x140005e84", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x140005e89", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005e8d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a1c5]" + "operands": "qword ptr [rip + 0x1a1c5]", + "stack_offset": 0 }, { "address": "0x140005e93", "size": 7, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0xe8]" + "operands": "rbx, qword ptr [rbp + 0xe8]", + "stack_offset": 0 }, { "address": "0x140005e9a", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rbp + 0x4d8]" + "operands": "rdx, [rbp + 0x4d8]", + "stack_offset": 0 }, { "address": "0x140005ea1", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140005ea4", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140005ea7", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a1b3]" + "operands": "qword ptr [rip + 0x1a1b3]", + "stack_offset": 0 }, { "address": "0x140005ead", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140005eb0", "size": 2, "mnemonic": "je", - "operands": "0x140005ef1" + "operands": "0x140005ef1", + "stack_offset": 0 } ], "successors": [ @@ -11173,103 +11497,120 @@ "address": "0x140005e6a", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x140005e6c", "size": 2, "mnemonic": "int", - "operands": "0x29" + "operands": "0x29", + "stack_offset": 0 }, { "address": "0x140005e6e", "size": 5, "mnemonic": "mov", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x140005e73", "size": 5, "mnemonic": "call", - "operands": "0x140005e38" + "operands": "0x140005e38", + "stack_offset": 0 }, { "address": "0x140005e78", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140005e7a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005e7e", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x4d0" + "operands": "r8d, 0x4d0", + "stack_offset": 0 }, { "address": "0x140005e84", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x140005e89", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005e8d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a1c5]" + "operands": "qword ptr [rip + 0x1a1c5]", + "stack_offset": 0 }, { "address": "0x140005e93", "size": 7, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0xe8]" + "operands": "rbx, qword ptr [rbp + 0xe8]", + "stack_offset": 0 }, { "address": "0x140005e9a", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rbp + 0x4d8]" + "operands": "rdx, [rbp + 0x4d8]", + "stack_offset": 0 }, { "address": "0x140005ea1", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140005ea4", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140005ea7", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a1b3]" + "operands": "qword ptr [rip + 0x1a1b3]", + "stack_offset": 0 }, { "address": "0x140005ead", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140005eb0", "size": 2, "mnemonic": "je", - "operands": "0x140005ef1" + "operands": "0x140005ef1", + "stack_offset": 0 } ], "successors": [ @@ -11287,163 +11628,190 @@ "address": "0x140005ef1", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x4c8]" + "operands": "rax, qword ptr [rbp + 0x4c8]", + "stack_offset": 0 }, { "address": "0x140005ef8", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x50]" + "operands": "rcx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140005efd", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0xe8], rax" + "operands": "qword ptr [rbp + 0xe8], rax", + "stack_offset": 0 }, { "address": "0x140005f04", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140005f06", "size": 7, "mnemonic": "lea", - "operands": "rax, [rbp + 0x4c8]" + "operands": "rax, [rbp + 0x4c8]", + "stack_offset": 0 }, { "address": "0x140005f0d", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x98" + "operands": "r8d, 0x98", + "stack_offset": 0 }, { "address": "0x140005f13", "size": 4, "mnemonic": "add", - "operands": "rax, 8" + "operands": "rax, 8", + "stack_offset": 0 }, { "address": "0x140005f17", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x88], rax" + "operands": "qword ptr [rbp + 0x88], rax", + "stack_offset": 0 }, { "address": "0x140005f1e", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x140005f23", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x4c8]" + "operands": "rax, qword ptr [rbp + 0x4c8]", + "stack_offset": 0 }, { "address": "0x140005f2a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rax" + "operands": "qword ptr [rsp + 0x60], rax", + "stack_offset": 0 }, { "address": "0x140005f2f", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x50], 0x40000015" + "operands": "dword ptr [rsp + 0x50], 0x40000015", + "stack_offset": 0 }, { "address": "0x140005f37", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x54], 1" + "operands": "dword ptr [rsp + 0x54], 1", + "stack_offset": 0 }, { "address": "0x140005f3f", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a17b]" + "operands": "qword ptr [rip + 0x1a17b]", + "stack_offset": 0 }, { "address": "0x140005f45", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x140005f47", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140005f49", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x50]" + "operands": "rax, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140005f4e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rax" + "operands": "qword ptr [rsp + 0x40], rax", + "stack_offset": 0 }, { "address": "0x140005f53", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x10]" + "operands": "rax, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005f57", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], rax" + "operands": "qword ptr [rsp + 0x48], rax", + "stack_offset": 0 }, { "address": "0x140005f5c", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a116]" + "operands": "qword ptr [rip + 0x1a116]", + "stack_offset": 0 }, { "address": "0x140005f62", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x40]" + "operands": "rcx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140005f67", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a103]" + "operands": "qword ptr [rip + 0x1a103]", + "stack_offset": 0 }, { "address": "0x140005f6d", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005f6f", "size": 2, "mnemonic": "jne", - "operands": "0x140005f7e" + "operands": "0x140005f7e", + "stack_offset": 0 }, { "address": "0x140005f71", "size": 3, "mnemonic": "cmp", - "operands": "ebx, 1" + "operands": "ebx, 1", + "stack_offset": 0 }, { "address": "0x140005f74", "size": 2, "mnemonic": "je", - "operands": "0x140005f7e" + "operands": "0x140005f7e", + "stack_offset": 0 } ], "successors": [ @@ -11461,235 +11829,274 @@ "address": "0x140005eb2", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp + 0x4d8]" + "operands": "rdx, qword ptr [rbp + 0x4d8]", + "stack_offset": 0 }, { "address": "0x140005eb9", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x4e0]" + "operands": "rcx, [rbp + 0x4e0]", + "stack_offset": 0 }, { "address": "0x140005ec0", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], 0" + "operands": "qword ptr [rsp + 0x38], 0", + "stack_offset": 0 }, { "address": "0x140005ec9", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x140005ecc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x140005ed1", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140005ed4", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x4e8]" + "operands": "rcx, [rbp + 0x4e8]", + "stack_offset": 0 }, { "address": "0x140005edb", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rcx" + "operands": "qword ptr [rsp + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x140005ee0", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005ee4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rcx" + "operands": "qword ptr [rsp + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x140005ee9", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140005eeb", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a177]" + "operands": "qword ptr [rip + 0x1a177]", + "stack_offset": 0 }, { "address": "0x140005ef1", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x4c8]" + "operands": "rax, qword ptr [rbp + 0x4c8]", + "stack_offset": 0 }, { "address": "0x140005ef8", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x50]" + "operands": "rcx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140005efd", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0xe8], rax" + "operands": "qword ptr [rbp + 0xe8], rax", + "stack_offset": 0 }, { "address": "0x140005f04", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140005f06", "size": 7, "mnemonic": "lea", - "operands": "rax, [rbp + 0x4c8]" + "operands": "rax, [rbp + 0x4c8]", + "stack_offset": 0 }, { "address": "0x140005f0d", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x98" + "operands": "r8d, 0x98", + "stack_offset": 0 }, { "address": "0x140005f13", "size": 4, "mnemonic": "add", - "operands": "rax, 8" + "operands": "rax, 8", + "stack_offset": 0 }, { "address": "0x140005f17", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x88], rax" + "operands": "qword ptr [rbp + 0x88], rax", + "stack_offset": 0 }, { "address": "0x140005f1e", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x140005f23", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x4c8]" + "operands": "rax, qword ptr [rbp + 0x4c8]", + "stack_offset": 0 }, { "address": "0x140005f2a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rax" + "operands": "qword ptr [rsp + 0x60], rax", + "stack_offset": 0 }, { "address": "0x140005f2f", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x50], 0x40000015" + "operands": "dword ptr [rsp + 0x50], 0x40000015", + "stack_offset": 0 }, { "address": "0x140005f37", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x54], 1" + "operands": "dword ptr [rsp + 0x54], 1", + "stack_offset": 0 }, { "address": "0x140005f3f", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a17b]" + "operands": "qword ptr [rip + 0x1a17b]", + "stack_offset": 0 }, { "address": "0x140005f45", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x140005f47", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140005f49", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x50]" + "operands": "rax, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140005f4e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rax" + "operands": "qword ptr [rsp + 0x40], rax", + "stack_offset": 0 }, { "address": "0x140005f53", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x10]" + "operands": "rax, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005f57", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], rax" + "operands": "qword ptr [rsp + 0x48], rax", + "stack_offset": 0 }, { "address": "0x140005f5c", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a116]" + "operands": "qword ptr [rip + 0x1a116]", + "stack_offset": 0 }, { "address": "0x140005f62", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x40]" + "operands": "rcx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140005f67", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a103]" + "operands": "qword ptr [rip + 0x1a103]", + "stack_offset": 0 }, { "address": "0x140005f6d", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005f6f", "size": 2, "mnemonic": "jne", - "operands": "0x140005f7e" + "operands": "0x140005f7e", + "stack_offset": 0 }, { "address": "0x140005f71", "size": 3, "mnemonic": "cmp", - "operands": "ebx, 1" + "operands": "ebx, 1", + "stack_offset": 0 }, { "address": "0x140005f74", "size": 2, "mnemonic": "je", - "operands": "0x140005f7e" + "operands": "0x140005f7e", + "stack_offset": 0 } ], "successors": [ @@ -11707,25 +12114,29 @@ "address": "0x140005f7e", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x5d0]" + "operands": "rbx, qword ptr [rsp + 0x5d0]", + "stack_offset": 0 }, { "address": "0x140005f86", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x5c0" + "operands": "rsp, 0x5c0", + "stack_offset": 0 }, { "address": "0x140005f8d", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140005f8e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -11741,37 +12152,43 @@ "address": "0x140005f76", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 3]" + "operands": "ecx, [rax + 3]", + "stack_offset": 0 }, { "address": "0x140005f79", "size": 5, "mnemonic": "call", - "operands": "0x140005e38" + "operands": "0x140005e38", + "stack_offset": 0 }, { "address": "0x140005f7e", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x5d0]" + "operands": "rbx, qword ptr [rsp + 0x5d0]", + "stack_offset": 0 }, { "address": "0x140005f86", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x5c0" + "operands": "rsp, 0x5c0", + "stack_offset": 0 }, { "address": "0x140005f8d", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140005f8e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -11793,31 +12210,36 @@ "address": "0x140005f98", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140005f9c", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140005f9e", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a12c]" + "operands": "qword ptr [rip + 0x1a12c]", + "stack_offset": 0 }, { "address": "0x140005fa4", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140005fa7", "size": 2, "mnemonic": "je", - "operands": "0x140005fe3" + "operands": "0x140005fe3", + "stack_offset": 0 } ], "successors": [ @@ -11835,19 +12257,22 @@ "address": "0x140005fe3", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140005fe5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140005fe9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -11863,85 +12288,99 @@ "address": "0x140005fa9", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x5a4d" + "operands": "ecx, 0x5a4d", + "stack_offset": 0 }, { "address": "0x140005fae", "size": 3, "mnemonic": "cmp", - "operands": "word ptr [rax], cx" + "operands": "word ptr [rax], cx", + "stack_offset": 0 }, { "address": "0x140005fb1", "size": 2, "mnemonic": "jne", - "operands": "0x140005fe3" + "operands": "0x140005fe3", + "stack_offset": 0 }, { "address": "0x140005fb3", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 0x3c]" + "operands": "rcx, dword ptr [rax + 0x3c]", + "stack_offset": 0 }, { "address": "0x140005fb7", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rcx + rax], 0x4550" + "operands": "dword ptr [rcx + rax], 0x4550", + "stack_offset": 0 }, { "address": "0x140005fbe", "size": 2, "mnemonic": "jne", - "operands": "0x140005fe3" + "operands": "0x140005fe3", + "stack_offset": 0 }, { "address": "0x140005fc0", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x20b" + "operands": "edx, 0x20b", + "stack_offset": 0 }, { "address": "0x140005fc5", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [rcx + rax + 0x18], dx" + "operands": "word ptr [rcx + rax + 0x18], dx", + "stack_offset": 0 }, { "address": "0x140005fca", "size": 2, "mnemonic": "jne", - "operands": "0x140005fe3" + "operands": "0x140005fe3", + "stack_offset": 0 }, { "address": "0x140005fcc", "size": 8, "mnemonic": "cmp", - "operands": "dword ptr [rcx + rax + 0x84], 0xe" + "operands": "dword ptr [rcx + rax + 0x84], 0xe", + "stack_offset": 0 }, { "address": "0x140005fd4", "size": 2, "mnemonic": "jbe", - "operands": "0x140005fe3" + "operands": "0x140005fe3", + "stack_offset": 0 }, { "address": "0x140005fd6", "size": 8, "mnemonic": "cmp", - "operands": "dword ptr [rcx + rax + 0xf8], 0" + "operands": "dword ptr [rcx + rax + 0xf8], 0", + "stack_offset": 0 }, { "address": "0x140005fde", "size": 3, "mnemonic": "setne", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x140005fe1", "size": 2, "mnemonic": "jmp", - "operands": "0x140005fe5" + "operands": "0x140005fe5", + "stack_offset": 0 } ], "successors": [ @@ -11958,13 +12397,15 @@ "address": "0x140005fe5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140005fe9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -11986,67 +12427,78 @@ "address": "0x14000e868", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000e86c", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2492d]" + "operands": "rax, qword ptr [rip + 0x2492d]", + "stack_offset": 0 }, { "address": "0x14000e873", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000e876", "size": 2, "mnemonic": "jne", - "operands": "0x14000e8b1" + "operands": "0x14000e8b1", + "stack_offset": 0 }, { "address": "0x14000e878", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x24909]" + "operands": "rax, qword ptr [rip + 0x24909]", + "stack_offset": 0 }, { "address": "0x14000e87f", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000e882", "size": 2, "mnemonic": "jne", - "operands": "0x14000e8aa" + "operands": "0x14000e8aa", + "stack_offset": 0 }, { "address": "0x14000e884", "size": 7, "mnemonic": "cmp", - "operands": "qword ptr [rip + 0x24905], rax" + "operands": "qword ptr [rip + 0x24905], rax", + "stack_offset": 0 }, { "address": "0x14000e88b", "size": 2, "mnemonic": "jne", - "operands": "0x14000e891" + "operands": "0x14000e891", + "stack_offset": 0 }, { "address": "0x14000e88d", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000e88f", "size": 2, "mnemonic": "jmp", - "operands": "0x14000e8aa" + "operands": "0x14000e8aa", + "stack_offset": 0 } ], "successors": [ @@ -12063,19 +12515,22 @@ "address": "0x14000e8aa", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x248ef], rax" + "operands": "qword ptr [rip + 0x248ef], rax", + "stack_offset": 0 }, { "address": "0x14000e8b1", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000e8b5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -12097,13 +12552,15 @@ "address": "0x14000e8c0", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x14000e8c3", "size": 2, "mnemonic": "je", - "operands": "0x14000e8f5" + "operands": "0x14000e8f5", + "stack_offset": 0 } ], "successors": [ @@ -12121,7 +12578,8 @@ "address": "0x14000e8f5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -12137,49 +12595,57 @@ "address": "0x14000e8c5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000e8ca", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e8cb", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e8cf", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x14000e8d2", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000e8d5", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000e8d8", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000e8db", "size": 2, "mnemonic": "je", - "operands": "0x14000e8e2" + "operands": "0x14000e8e2", + "stack_offset": 0 } ], "successors": [ @@ -12197,43 +12663,50 @@ "address": "0x14000e8e2", "size": 4, "mnemonic": "add", - "operands": "rbx, 8" + "operands": "rbx, 8", + "stack_offset": 0 }, { "address": "0x14000e8e6", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x14000e8e9", "size": 2, "mnemonic": "jne", - "operands": "0x14000e8d5" + "operands": "0x14000e8d5", + "stack_offset": 0 }, { "address": "0x14000e8eb", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000e8f0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e8f4", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e8f5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -12249,49 +12722,57 @@ "address": "0x14000e8dd", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x14000e8e2", "size": 4, "mnemonic": "add", - "operands": "rbx, 8" + "operands": "rbx, 8", + "stack_offset": 0 }, { "address": "0x14000e8e6", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x14000e8e9", "size": 2, "mnemonic": "jne", - "operands": "0x14000e8d5" + "operands": "0x14000e8d5", + "stack_offset": 0 }, { "address": "0x14000e8eb", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000e8f0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e8f4", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e8f5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -12313,43 +12794,50 @@ "address": "0x14000e8f8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000e8fd", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e8fe", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e902", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x14000e905", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000e908", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x14000e90b", "size": 2, "mnemonic": "je", - "operands": "0x14000e927" + "operands": "0x14000e927", + "stack_offset": 0 } ], "successors": [ @@ -12367,31 +12855,36 @@ "address": "0x14000e927", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000e929", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000e92e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e932", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e933", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -12407,19 +12900,22 @@ "address": "0x14000e90d", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000e910", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000e913", "size": 2, "mnemonic": "je", - "operands": "0x14000e91e" + "operands": "0x14000e91e", + "stack_offset": 0 } ], "successors": [ @@ -12437,49 +12933,57 @@ "address": "0x14000e91e", "size": 4, "mnemonic": "add", - "operands": "rbx, 8" + "operands": "rbx, 8", + "stack_offset": 0 }, { "address": "0x14000e922", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x14000e925", "size": 2, "mnemonic": "jne", - "operands": "0x14000e90d" + "operands": "0x14000e90d", + "stack_offset": 0 }, { "address": "0x14000e927", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000e929", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000e92e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e932", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e933", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -12495,67 +12999,78 @@ "address": "0x14000e915", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x14000e91a", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000e91c", "size": 2, "mnemonic": "jne", - "operands": "0x14000e929" + "operands": "0x14000e929", + "stack_offset": 0 }, { "address": "0x14000e91e", "size": 4, "mnemonic": "add", - "operands": "rbx, 8" + "operands": "rbx, 8", + "stack_offset": 0 }, { "address": "0x14000e922", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x14000e925", "size": 2, "mnemonic": "jne", - "operands": "0x14000e90d" + "operands": "0x14000e90d", + "stack_offset": 0 }, { "address": "0x14000e927", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000e929", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000e92e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e932", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e933", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -12577,25 +13092,29 @@ "address": "0x14000ebbc", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000ebbe", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000ebc0", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rdx + 1]" + "operands": "r8d, [rdx + 1]", + "stack_offset": 0 }, { "address": "0x14000ebc4", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ea2c" + "operands": "0x14000ea2c", + "stack_offset": 0 } ], "successors": [ @@ -12612,85 +13131,99 @@ "address": "0x14000ea2c", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x18], r8d" + "operands": "dword ptr [rsp + 0x18], r8d", + "stack_offset": 0 }, { "address": "0x14000ea31", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x10], edx" + "operands": "dword ptr [rsp + 0x10], edx", + "stack_offset": 0 }, { "address": "0x14000ea35", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000ea36", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000ea39", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14000ea3d", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x20], 0xfffffffffffffffe" + "operands": "qword ptr [rbp - 0x20], 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x14000ea45", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rbx" + "operands": "qword ptr [rsp + 0x60], rbx", + "stack_offset": 0 }, { "address": "0x14000ea4a", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14000ea4c", "size": 3, "mnemonic": "test", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000ea4f", "size": 2, "mnemonic": "jne", - "operands": "0x14000ea9b" + "operands": "0x14000ea9b", + "stack_offset": 0 }, { "address": "0x14000ea51", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000ea53", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x11677]" + "operands": "qword ptr [rip + 0x11677]", + "stack_offset": 0 }, { "address": "0x14000ea59", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000ea5c", "size": 2, "mnemonic": "je", - "operands": "0x14000ea9b" + "operands": "0x14000ea9b", + "stack_offset": 0 } ], "successors": [ @@ -12708,139 +13241,162 @@ "address": "0x14000ea9b", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp + 0x28], 0" + "operands": "byte ptr [rbp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x14000ea9f", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x18]" + "operands": "rax, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x14000eaa3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x18], rax" + "operands": "qword ptr [rbp - 0x18], rax", + "stack_offset": 0 }, { "address": "0x14000eaa7", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x20]" + "operands": "rax, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000eaab", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x14000eaaf", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x28]" + "operands": "rax, [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000eab3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 8], rax" + "operands": "qword ptr [rbp - 8], rax", + "stack_offset": 0 }, { "address": "0x14000eab7", "size": 5, "mnemonic": "mov", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14000eabc", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x2c], eax" + "operands": "dword ptr [rbp - 0x2c], eax", + "stack_offset": 0 }, { "address": "0x14000eabf", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x28], eax" + "operands": "dword ptr [rbp - 0x28], eax", + "stack_offset": 0 }, { "address": "0x14000eac2", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x2c]" + "operands": "r9, [rbp - 0x2c]", + "stack_offset": 0 }, { "address": "0x14000eac6", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x18]" + "operands": "r8, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14000eaca", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x28]" + "operands": "rdx, [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x14000eace", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x30]" + "operands": "rcx, [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x14000ead2", "size": 5, "mnemonic": "call", - "operands": "0x14000e934" + "operands": "0x14000e934", + "stack_offset": 0 }, { "address": "0x14000ead7", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000ead8", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp + 0x20], 0" + "operands": "dword ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14000eadc", "size": 2, "mnemonic": "jne", - "operands": "0x14000eafc" + "operands": "0x14000eafc", + "stack_offset": 0 }, { "address": "0x14000eade", "size": 5, "mnemonic": "call", - "operands": "0x1400191c0" + "operands": "0x1400191c0", + "stack_offset": 0 }, { "address": "0x14000eae3", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14000eae6", "size": 2, "mnemonic": "jne", - "operands": "0x14000eaec" + "operands": "0x14000eaec", + "stack_offset": 0 }, { "address": "0x14000eae8", "size": 2, "mnemonic": "xor", - "operands": "dl, dl" + "operands": "dl, dl", + "stack_offset": 0 }, { "address": "0x14000eaea", "size": 2, "mnemonic": "jmp", - "operands": "0x14000eaf6" + "operands": "0x14000eaf6", + "stack_offset": 0 } ], "successors": [ @@ -12857,85 +13413,99 @@ "address": "0x14000ea5e", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x5a4d" + "operands": "ecx, 0x5a4d", + "stack_offset": 0 }, { "address": "0x14000ea63", "size": 3, "mnemonic": "cmp", - "operands": "word ptr [rax], cx" + "operands": "word ptr [rax], cx", + "stack_offset": 0 }, { "address": "0x14000ea66", "size": 2, "mnemonic": "jne", - "operands": "0x14000ea9b" + "operands": "0x14000ea9b", + "stack_offset": 0 }, { "address": "0x14000ea68", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 0x3c]" + "operands": "rcx, dword ptr [rax + 0x3c]", + "stack_offset": 0 }, { "address": "0x14000ea6c", "size": 3, "mnemonic": "add", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000ea6f", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0x4550" + "operands": "dword ptr [rcx], 0x4550", + "stack_offset": 0 }, { "address": "0x14000ea75", "size": 2, "mnemonic": "jne", - "operands": "0x14000ea9b" + "operands": "0x14000ea9b", + "stack_offset": 0 }, { "address": "0x14000ea77", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x20b" + "operands": "eax, 0x20b", + "stack_offset": 0 }, { "address": "0x14000ea7c", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rcx + 0x18], ax" + "operands": "word ptr [rcx + 0x18], ax", + "stack_offset": 0 }, { "address": "0x14000ea80", "size": 2, "mnemonic": "jne", - "operands": "0x14000ea9b" + "operands": "0x14000ea9b", + "stack_offset": 0 }, { "address": "0x14000ea82", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rcx + 0x84], 0xe" + "operands": "dword ptr [rcx + 0x84], 0xe", + "stack_offset": 0 }, { "address": "0x14000ea89", "size": 2, "mnemonic": "jbe", - "operands": "0x14000ea9b" + "operands": "0x14000ea9b", + "stack_offset": 0 }, { "address": "0x14000ea8b", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rcx + 0xf8], 0" + "operands": "dword ptr [rcx + 0xf8], 0", + "stack_offset": 0 }, { "address": "0x14000ea92", "size": 2, "mnemonic": "je", - "operands": "0x14000ea9b" + "operands": "0x14000ea9b", + "stack_offset": 0 } ], "successors": [ @@ -12953,13 +13523,15 @@ "address": "0x14000eaf6", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp + 0x20], 0" + "operands": "dword ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14000eafa", "size": 2, "mnemonic": "je", - "operands": "0x14000eb07" + "operands": "0x14000eb07", + "stack_offset": 0 } ], "successors": [ @@ -12977,151 +13549,176 @@ "address": "0x14000ea94", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14000ea96", "size": 5, "mnemonic": "call", - "operands": "0x14000eb40" + "operands": "0x14000eb40", + "stack_offset": 0 }, { "address": "0x14000ea9b", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp + 0x28], 0" + "operands": "byte ptr [rbp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x14000ea9f", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x18]" + "operands": "rax, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x14000eaa3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x18], rax" + "operands": "qword ptr [rbp - 0x18], rax", + "stack_offset": 0 }, { "address": "0x14000eaa7", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x20]" + "operands": "rax, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000eaab", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x14000eaaf", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x28]" + "operands": "rax, [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000eab3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 8], rax" + "operands": "qword ptr [rbp - 8], rax", + "stack_offset": 0 }, { "address": "0x14000eab7", "size": 5, "mnemonic": "mov", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14000eabc", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x2c], eax" + "operands": "dword ptr [rbp - 0x2c], eax", + "stack_offset": 0 }, { "address": "0x14000eabf", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x28], eax" + "operands": "dword ptr [rbp - 0x28], eax", + "stack_offset": 0 }, { "address": "0x14000eac2", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x2c]" + "operands": "r9, [rbp - 0x2c]", + "stack_offset": 0 }, { "address": "0x14000eac6", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x18]" + "operands": "r8, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14000eaca", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x28]" + "operands": "rdx, [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x14000eace", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x30]" + "operands": "rcx, [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x14000ead2", "size": 5, "mnemonic": "call", - "operands": "0x14000e934" + "operands": "0x14000e934", + "stack_offset": 0 }, { "address": "0x14000ead7", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000ead8", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp + 0x20], 0" + "operands": "dword ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14000eadc", "size": 2, "mnemonic": "jne", - "operands": "0x14000eafc" + "operands": "0x14000eafc", + "stack_offset": 0 }, { "address": "0x14000eade", "size": 5, "mnemonic": "call", - "operands": "0x1400191c0" + "operands": "0x1400191c0", + "stack_offset": 0 }, { "address": "0x14000eae3", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14000eae6", "size": 2, "mnemonic": "jne", - "operands": "0x14000eaec" + "operands": "0x14000eaec", + "stack_offset": 0 }, { "address": "0x14000eae8", "size": 2, "mnemonic": "xor", - "operands": "dl, dl" + "operands": "dl, dl", + "stack_offset": 0 }, { "address": "0x14000eaea", "size": 2, "mnemonic": "jmp", - "operands": "0x14000eaf6" + "operands": "0x14000eaf6", + "stack_offset": 0 } ], "successors": [ @@ -13138,19 +13735,22 @@ "address": "0x14000eb07", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14000eb09", "size": 5, "mnemonic": "call", - "operands": "0x14000eb10" + "operands": "0x14000eb10", + "stack_offset": 0 }, { "address": "0x14000eb0e", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -13166,25 +13766,29 @@ "address": "0x14000eafc", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000eb01", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14000eb05", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000eb06", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -13206,19 +13810,22 @@ "address": "0x14000ebcc", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000ebcf", "size": 4, "mnemonic": "lea", - "operands": "edx, [r8 + 2]" + "operands": "edx, [r8 + 2]", + "stack_offset": 0 }, { "address": "0x14000ebd3", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ea2c" + "operands": "0x14000ea2c", + "stack_offset": 0 } ], "successors": [ @@ -13241,85 +13848,99 @@ "address": "0x14000ebd8", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000ebdc", "size": 7, "mnemonic": "mov", - "operands": "r8, qword ptr [rip + 0x2245d]" + "operands": "r8, qword ptr [rip + 0x2245d]", + "stack_offset": 0 }, { "address": "0x14000ebe3", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14000ebe6", "size": 7, "mnemonic": "cmp", - "operands": "qword ptr [rip + 0x245c3], r8" + "operands": "qword ptr [rip + 0x245c3], r8", + "stack_offset": 0 }, { "address": "0x14000ebed", "size": 2, "mnemonic": "jne", - "operands": "0x14000ec0e" + "operands": "0x14000ec0e", + "stack_offset": 0 }, { "address": "0x14000ebef", "size": 3, "mnemonic": "mov", - "operands": "eax, r8d" + "operands": "eax, r8d", + "stack_offset": 0 }, { "address": "0x14000ebf2", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x40" + "operands": "ecx, 0x40", + "stack_offset": 0 }, { "address": "0x14000ebf7", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x14000ebfa", "size": 2, "mnemonic": "sub", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x14000ebfc", "size": 3, "mnemonic": "ror", - "operands": "rdx, cl" + "operands": "rdx, cl", + "stack_offset": 0 }, { "address": "0x14000ebff", "size": 3, "mnemonic": "xor", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x14000ec02", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x245a7], rdx" + "operands": "qword ptr [rip + 0x245a7], rdx", + "stack_offset": 0 }, { "address": "0x14000ec09", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000ec0d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -13341,19 +13962,22 @@ "address": "0x14000ec14", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000ec17", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000ec19", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ea2c" + "operands": "0x14000ea2c", + "stack_offset": 0 } ], "successors": [ @@ -13376,13 +14000,15 @@ "address": "0x14000ec88", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x24539]" + "operands": "rax, [rip + 0x24539]", + "stack_offset": 0 }, { "address": "0x14000ec8f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -13404,13 +14030,15 @@ "address": "0x14000ec90", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x24539]" + "operands": "rax, [rip + 0x24539]", + "stack_offset": 0 }, { "address": "0x14000ec97", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -13432,7 +14060,8 @@ "address": "0x14001e360", "size": 2, "mnemonic": "jmp", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 } ], "successors": [ @@ -13454,157 +14083,183 @@ "address": "0x140001150", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x140001155", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x14000115a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rcx" + "operands": "qword ptr [rsp + 8], rcx", + "stack_offset": 0 }, { "address": "0x14000115f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140001160", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140001162", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140001164", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140001166", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140001168", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14000116c", "size": 3, "mnemonic": "mov", - "operands": "r12, rdx" + "operands": "r12, rdx", + "stack_offset": 0 }, { "address": "0x14000116f", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x140001172", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x140001175", "size": 3, "mnemonic": "mov", - "operands": "edi, r13d" + "operands": "edi, r13d", + "stack_offset": 0 }, { "address": "0x140001178", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], r13d" + "operands": "dword ptr [rsp + 0x20], r13d", + "stack_offset": 0 }, { "address": "0x14000117d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x140001180", "size": 5, "mnemonic": "call", - "operands": "0x14001ef10" + "operands": "0x14001ef10", + "stack_offset": 0 }, { "address": "0x140001185", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x140001188", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rsi]" + "operands": "r8, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x14000118b", "size": 4, "mnemonic": "movsxd", - "operands": "r9, dword ptr [r8 + 4]" + "operands": "r9, dword ptr [r8 + 4]", + "stack_offset": 0 }, { "address": "0x14000118f", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [r9 + rsi + 0x28]" + "operands": "rbx, qword ptr [r9 + rsi + 0x28]", + "stack_offset": 0 }, { "address": "0x140001194", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140001197", "size": 2, "mnemonic": "jle", - "operands": "0x1400011a3" + "operands": "0x1400011a3", + "stack_offset": 0 }, { "address": "0x140001199", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14000119c", "size": 2, "mnemonic": "jle", - "operands": "0x1400011a3" + "operands": "0x1400011a3", + "stack_offset": 0 }, { "address": "0x14000119e", "size": 3, "mnemonic": "sub", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400011a1", "size": 2, "mnemonic": "jmp", - "operands": "0x1400011a6" + "operands": "0x1400011a6", + "stack_offset": 0 } ], "successors": [ @@ -13621,31 +14276,36 @@ "address": "0x1400011a6", "size": 3, "mnemonic": "mov", - "operands": "r15, rsi" + "operands": "r15, rsi", + "stack_offset": 0 }, { "address": "0x1400011a9", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0xb0], rsi" + "operands": "qword ptr [rsp + 0xb0], rsi", + "stack_offset": 0 }, { "address": "0x1400011b1", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [r9 + rsi + 0x48]" + "operands": "rcx, qword ptr [r9 + rsi + 0x48]", + "stack_offset": 0 }, { "address": "0x1400011b6", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400011b9", "size": 2, "mnemonic": "je", - "operands": "0x1400011c1" + "operands": "0x1400011c1", + "stack_offset": 0 } ], "successors": [ @@ -13663,43 +14323,50 @@ "address": "0x1400011c1", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x1400011c4", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x1400011c8", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rcx + rsi + 0x10], edi" + "operands": "dword ptr [rcx + rsi + 0x10], edi", + "stack_offset": 0 }, { "address": "0x1400011cc", "size": 6, "mnemonic": "jne", - "operands": "0x140001342" + "operands": "0x140001342", + "stack_offset": 0 }, { "address": "0x1400011d2", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rsi + 0x50]" + "operands": "rcx, qword ptr [rcx + rsi + 0x50]", + "stack_offset": 0 }, { "address": "0x1400011d7", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400011da", "size": 2, "mnemonic": "je", - "operands": "0x1400011f7" + "operands": "0x1400011f7", + "stack_offset": 0 } ], "successors": [ @@ -13717,55 +14384,64 @@ "address": "0x1400011bb", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x1400011be", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 8]" + "operands": "qword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x1400011c1", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x1400011c4", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x1400011c8", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rcx + rsi + 0x10], edi" + "operands": "dword ptr [rcx + rsi + 0x10], edi", + "stack_offset": 0 }, { "address": "0x1400011cc", "size": 6, "mnemonic": "jne", - "operands": "0x140001342" + "operands": "0x140001342", + "stack_offset": 0 }, { "address": "0x1400011d2", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rsi + 0x50]" + "operands": "rcx, qword ptr [rcx + rsi + 0x50]", + "stack_offset": 0 }, { "address": "0x1400011d7", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400011da", "size": 2, "mnemonic": "je", - "operands": "0x1400011f7" + "operands": "0x1400011f7", + "stack_offset": 0 } ], "successors": [ @@ -13783,37 +14459,43 @@ "address": "0x1400011f7", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x1400011fa", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x1400011fe", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rcx + rsi + 0x18]" + "operands": "eax, dword ptr [rcx + rsi + 0x18]", + "stack_offset": 0 }, { "address": "0x140001202", "size": 5, "mnemonic": "and", - "operands": "eax, 0x1c0" + "operands": "eax, 0x1c0", + "stack_offset": 0 }, { "address": "0x140001207", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x40" + "operands": "eax, 0x40", + "stack_offset": 0 }, { "address": "0x14000120a", "size": 2, "mnemonic": "je", - "operands": "0x14000127d" + "operands": "0x14000127d", + "stack_offset": 0 } ], "successors": [ @@ -13831,13 +14513,15 @@ "address": "0x1400011dc", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x1400011df", "size": 2, "mnemonic": "je", - "operands": "0x1400011f7" + "operands": "0x1400011f7", + "stack_offset": 0 } ], "successors": [ @@ -13855,55 +14539,64 @@ "address": "0x14000127d", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140001280", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140001284", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rsi + 0x48]" + "operands": "rcx, qword ptr [rcx + rsi + 0x48]", + "stack_offset": 0 }, { "address": "0x140001289", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000128c", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14000128f", "size": 3, "mnemonic": "mov", - "operands": "rdx, r12" + "operands": "rdx, r12", + "stack_offset": 0 }, { "address": "0x140001292", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x48]" + "operands": "qword ptr [rax + 0x48]", + "stack_offset": 0 }, { "address": "0x140001295", "size": 3, "mnemonic": "cmp", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x140001298", "size": 2, "mnemonic": "je", - "operands": "0x1400012a7" + "operands": "0x1400012a7", + "stack_offset": 0 } ], "successors": [ @@ -13921,61 +14614,71 @@ "address": "0x14000120c", "size": 4, "mnemonic": "nop", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140001210", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140001213", "size": 2, "mnemonic": "jle", - "operands": "0x14000127d" + "operands": "0x14000127d", + "stack_offset": 0 }, { "address": "0x140001215", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140001218", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x14000121c", "size": 6, "mnemonic": "movzx", - "operands": "r8d, byte ptr [rcx + rsi + 0x58]" + "operands": "r8d, byte ptr [rcx + rsi + 0x58]", + "stack_offset": 0 }, { "address": "0x140001222", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rsi + 0x48]" + "operands": "rcx, qword ptr [rcx + rsi + 0x48]", + "stack_offset": 0 }, { "address": "0x140001227", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x40]" + "operands": "rax, qword ptr [rcx + 0x40]", + "stack_offset": 0 }, { "address": "0x14000122b", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax], 0" + "operands": "qword ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x14000122f", "size": 2, "mnemonic": "je", - "operands": "0x140001255" + "operands": "0x140001255", + "stack_offset": 0 } ], "successors": [ @@ -13993,67 +14696,78 @@ "address": "0x1400011e1", "size": 5, "mnemonic": "call", - "operands": "0x140002000" + "operands": "0x140002000", + "stack_offset": 0 }, { "address": "0x1400011e6", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x1400011e9", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x1400011ed", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rcx + rsi + 0x10], edi" + "operands": "dword ptr [rcx + rsi + 0x10], edi", + "stack_offset": 0 }, { "address": "0x1400011f1", "size": 6, "mnemonic": "jne", - "operands": "0x140001342" + "operands": "0x140001342", + "stack_offset": 0 }, { "address": "0x1400011f7", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x1400011fa", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x1400011fe", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rcx + rsi + 0x18]" + "operands": "eax, dword ptr [rcx + rsi + 0x18]", + "stack_offset": 0 }, { "address": "0x140001202", "size": 5, "mnemonic": "and", - "operands": "eax, 0x1c0" + "operands": "eax, 0x1c0", + "stack_offset": 0 }, { "address": "0x140001207", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x40" + "operands": "eax, 0x40", + "stack_offset": 0 }, { "address": "0x14000120a", "size": 2, "mnemonic": "je", - "operands": "0x14000127d" + "operands": "0x14000127d", + "stack_offset": 0 } ], "successors": [ @@ -14071,55 +14785,64 @@ "address": "0x1400012a7", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400012aa", "size": 2, "mnemonic": "jle", - "operands": "0x140001311" + "operands": "0x140001311", + "stack_offset": 0 }, { "address": "0x1400012ac", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x1400012af", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x1400012b3", "size": 6, "mnemonic": "movzx", - "operands": "r8d, byte ptr [rcx + rsi + 0x58]" + "operands": "r8d, byte ptr [rcx + rsi + 0x58]", + "stack_offset": 0 }, { "address": "0x1400012b9", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rsi + 0x48]" + "operands": "rcx, qword ptr [rcx + rsi + 0x48]", + "stack_offset": 0 }, { "address": "0x1400012be", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x40]" + "operands": "rax, qword ptr [rcx + 0x40]", + "stack_offset": 0 }, { "address": "0x1400012c2", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax], 0" + "operands": "qword ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x1400012c6", "size": 2, "mnemonic": "je", - "operands": "0x1400012ec" + "operands": "0x1400012ec", + "stack_offset": 0 } ], "successors": [ @@ -14137,25 +14860,29 @@ "address": "0x14000129a", "size": 5, "mnemonic": "mov", - "operands": "edx, 4" + "operands": "edx, 4", + "stack_offset": 0 }, { "address": "0x14000129f", "size": 2, "mnemonic": "mov", - "operands": "edi, edx" + "operands": "edi, edx", + "stack_offset": 0 }, { "address": "0x1400012a1", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], edx" + "operands": "dword ptr [rsp + 0x20], edx", + "stack_offset": 0 }, { "address": "0x1400012a5", "size": 2, "mnemonic": "jmp", - "operands": "0x140001316" + "operands": "0x140001316", + "stack_offset": 0 } ], "successors": [ @@ -14172,55 +14899,64 @@ "address": "0x140001255", "size": 3, "mnemonic": "mov", - "operands": "edx, r8d" + "operands": "edx, r8d", + "stack_offset": 0 }, { "address": "0x140001258", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000125b", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x18]" + "operands": "qword ptr [rax + 0x18]", + "stack_offset": 0 }, { "address": "0x14000125e", "size": 3, "mnemonic": "cmp", - "operands": "eax, -1" + "operands": "eax, -1", + "stack_offset": 0 }, { "address": "0x140001261", "size": 2, "mnemonic": "jne", - "operands": "0x140001273" + "operands": "0x140001273", + "stack_offset": 0 }, { "address": "0x140001263", "size": 5, "mnemonic": "mov", - "operands": "edx, 4" + "operands": "edx, 4", + "stack_offset": 0 }, { "address": "0x140001268", "size": 2, "mnemonic": "mov", - "operands": "edi, edx" + "operands": "edi, edx", + "stack_offset": 0 }, { "address": "0x14000126a", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], edx" + "operands": "dword ptr [rsp + 0x20], edx", + "stack_offset": 0 }, { "address": "0x14000126e", "size": 5, "mnemonic": "jmp", - "operands": "0x140001316" + "operands": "0x140001316", + "stack_offset": 0 } ], "successors": [ @@ -14237,79 +14973,92 @@ "address": "0x140001231", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rcx + 0x58]" + "operands": "rdx, qword ptr [rcx + 0x58]", + "stack_offset": 0 }, { "address": "0x140001235", "size": 2, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx]" + "operands": "eax, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140001237", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140001239", "size": 2, "mnemonic": "jle", - "operands": "0x140001255" + "operands": "0x140001255", + "stack_offset": 0 }, { "address": "0x14000123b", "size": 2, "mnemonic": "dec", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x14000123d", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rdx], eax" + "operands": "dword ptr [rdx], eax", + "stack_offset": 0 }, { "address": "0x14000123f", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x40]" + "operands": "rcx, qword ptr [rcx + 0x40]", + "stack_offset": 0 }, { "address": "0x140001243", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rcx]" + "operands": "rdx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140001246", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdx + 1]" + "operands": "rax, [rdx + 1]", + "stack_offset": 0 }, { "address": "0x14000124a", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rax" + "operands": "qword ptr [rcx], rax", + "stack_offset": 0 }, { "address": "0x14000124d", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rdx], r8b" + "operands": "byte ptr [rdx], r8b", + "stack_offset": 0 }, { "address": "0x140001250", "size": 3, "mnemonic": "mov", - "operands": "eax, r8d" + "operands": "eax, r8d", + "stack_offset": 0 }, { "address": "0x140001253", "size": 2, "mnemonic": "jmp", - "operands": "0x14000125e" + "operands": "0x14000125e", + "stack_offset": 0 } ], "successors": [ @@ -14326,55 +15075,64 @@ "address": "0x1400012ec", "size": 3, "mnemonic": "mov", - "operands": "edx, r8d" + "operands": "edx, r8d", + "stack_offset": 0 }, { "address": "0x1400012ef", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x1400012f2", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x18]" + "operands": "qword ptr [rax + 0x18]", + "stack_offset": 0 }, { "address": "0x1400012f5", "size": 3, "mnemonic": "cmp", - "operands": "eax, -1" + "operands": "eax, -1", + "stack_offset": 0 }, { "address": "0x1400012f8", "size": 2, "mnemonic": "jne", - "operands": "0x140001307" + "operands": "0x140001307", + "stack_offset": 0 }, { "address": "0x1400012fa", "size": 5, "mnemonic": "mov", - "operands": "edx, 4" + "operands": "edx, 4", + "stack_offset": 0 }, { "address": "0x1400012ff", "size": 2, "mnemonic": "mov", - "operands": "edi, edx" + "operands": "edi, edx", + "stack_offset": 0 }, { "address": "0x140001301", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], edx" + "operands": "dword ptr [rsp + 0x20], edx", + "stack_offset": 0 }, { "address": "0x140001305", "size": 2, "mnemonic": "jmp", - "operands": "0x140001316" + "operands": "0x140001316", + "stack_offset": 0 } ], "successors": [ @@ -14391,79 +15149,92 @@ "address": "0x1400012c8", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rcx + 0x58]" + "operands": "rdx, qword ptr [rcx + 0x58]", + "stack_offset": 0 }, { "address": "0x1400012cc", "size": 2, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx]" + "operands": "eax, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400012ce", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400012d0", "size": 2, "mnemonic": "jle", - "operands": "0x1400012ec" + "operands": "0x1400012ec", + "stack_offset": 0 }, { "address": "0x1400012d2", "size": 2, "mnemonic": "dec", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x1400012d4", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rdx], eax" + "operands": "dword ptr [rdx], eax", + "stack_offset": 0 }, { "address": "0x1400012d6", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x40]" + "operands": "rcx, qword ptr [rcx + 0x40]", + "stack_offset": 0 }, { "address": "0x1400012da", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rcx]" + "operands": "rdx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x1400012dd", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdx + 1]" + "operands": "rax, [rdx + 1]", + "stack_offset": 0 }, { "address": "0x1400012e1", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rax" + "operands": "qword ptr [rcx], rax", + "stack_offset": 0 }, { "address": "0x1400012e4", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rdx], r8b" + "operands": "byte ptr [rdx], r8b", + "stack_offset": 0 }, { "address": "0x1400012e7", "size": 3, "mnemonic": "mov", - "operands": "eax, r8d" + "operands": "eax, r8d", + "stack_offset": 0 }, { "address": "0x1400012ea", "size": 2, "mnemonic": "jmp", - "operands": "0x1400012f5" + "operands": "0x1400012f5", + "stack_offset": 0 } ], "successors": [ @@ -14480,25 +15251,29 @@ "address": "0x140001316", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140001319", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x14000131d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rcx + rsi + 0x28], r13" + "operands": "qword ptr [rcx + rsi + 0x28], r13", + "stack_offset": 0 }, { "address": "0x140001322", "size": 2, "mnemonic": "jmp", - "operands": "0x140001349" + "operands": "0x140001349", + "stack_offset": 0 } ], "successors": [ @@ -14515,37 +15290,43 @@ "address": "0x14000125e", "size": 3, "mnemonic": "cmp", - "operands": "eax, -1" + "operands": "eax, -1", + "stack_offset": 0 }, { "address": "0x140001261", "size": 2, "mnemonic": "jne", - "operands": "0x140001273" + "operands": "0x140001273", + "stack_offset": 0 }, { "address": "0x140001263", "size": 5, "mnemonic": "mov", - "operands": "edx, 4" + "operands": "edx, 4", + "stack_offset": 0 }, { "address": "0x140001268", "size": 2, "mnemonic": "mov", - "operands": "edi, edx" + "operands": "edi, edx", + "stack_offset": 0 }, { "address": "0x14000126a", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], edx" + "operands": "dword ptr [rsp + 0x20], edx", + "stack_offset": 0 }, { "address": "0x14000126e", "size": 5, "mnemonic": "jmp", - "operands": "0x140001316" + "operands": "0x140001316", + "stack_offset": 0 } ], "successors": [ @@ -14562,37 +15343,43 @@ "address": "0x1400012f5", "size": 3, "mnemonic": "cmp", - "operands": "eax, -1" + "operands": "eax, -1", + "stack_offset": 0 }, { "address": "0x1400012f8", "size": 2, "mnemonic": "jne", - "operands": "0x140001307" + "operands": "0x140001307", + "stack_offset": 0 }, { "address": "0x1400012fa", "size": 5, "mnemonic": "mov", - "operands": "edx, 4" + "operands": "edx, 4", + "stack_offset": 0 }, { "address": "0x1400012ff", "size": 2, "mnemonic": "mov", - "operands": "edi, edx" + "operands": "edi, edx", + "stack_offset": 0 }, { "address": "0x140001301", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], edx" + "operands": "dword ptr [rsp + 0x20], edx", + "stack_offset": 0 }, { "address": "0x140001305", "size": 2, "mnemonic": "jmp", - "operands": "0x140001316" + "operands": "0x140001316", + "stack_offset": 0 } ], "successors": [ @@ -14609,121 +15396,141 @@ "address": "0x140001349", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x14000134c", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140001350", "size": 6, "mnemonic": "cmp", - "operands": "qword ptr [rcx + rsi + 0x48], 0" + "operands": "qword ptr [rcx + rsi + 0x48], 0", + "stack_offset": 0 }, { "address": "0x140001356", "size": 4, "mnemonic": "cmovne", - "operands": "edx, r13d" + "operands": "edx, r13d", + "stack_offset": 0 }, { "address": "0x14000135a", "size": 2, "mnemonic": "or", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x14000135c", "size": 4, "mnemonic": "or", - "operands": "edx, dword ptr [rcx + rsi + 0x10]" + "operands": "edx, dword ptr [rcx + rsi + 0x10]", + "stack_offset": 0 }, { "address": "0x140001360", "size": 3, "mnemonic": "and", - "operands": "edx, 0x17" + "operands": "edx, 0x17", + "stack_offset": 0 }, { "address": "0x140001363", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rcx + rsi + 0x10], edx" + "operands": "dword ptr [rcx + rsi + 0x10], edx", + "stack_offset": 0 }, { "address": "0x140001367", "size": 4, "mnemonic": "and", - "operands": "edx, dword ptr [rcx + rsi + 0x14]" + "operands": "edx, dword ptr [rcx + rsi + 0x14]", + "stack_offset": 0 }, { "address": "0x14000136b", "size": 2, "mnemonic": "jne", - "operands": "0x1400013b2" + "operands": "0x1400013b2", + "stack_offset": 0 }, { "address": "0x14000136d", "size": 5, "mnemonic": "call", - "operands": "0x1400023f4" + "operands": "0x1400023f4", + "stack_offset": 0 }, { "address": "0x140001372", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140001374", "size": 2, "mnemonic": "jne", - "operands": "0x14000137e" + "operands": "0x14000137e", + "stack_offset": 0 }, { "address": "0x140001376", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x140001379", "size": 5, "mnemonic": "call", - "operands": "0x140001d10" + "operands": "0x140001d10", + "stack_offset": 0 }, { "address": "0x14000137e", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [r15]" + "operands": "rax, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x140001381", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140001385", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + r15 + 0x48]" + "operands": "rcx, qword ptr [rcx + r15 + 0x48]", + "stack_offset": 0 }, { "address": "0x14000138a", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000138d", "size": 2, "mnemonic": "je", - "operands": "0x140001395" + "operands": "0x140001395", + "stack_offset": 0 } ], "successors": [ @@ -14741,67 +15548,78 @@ "address": "0x140001395", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x140001398", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000139d", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x38]" + "operands": "rbx, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x1400013a1", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x48]" + "operands": "rsi, qword ptr [r11 + 0x48]", + "stack_offset": 0 }, { "address": "0x1400013a5", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x1400013a8", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400013aa", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400013ac", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400013ae", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400013b0", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400013b1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -14817,79 +15635,92 @@ "address": "0x14000138f", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140001392", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x10]" + "operands": "qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140001395", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x140001398", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000139d", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x38]" + "operands": "rbx, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x1400013a1", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x48]" + "operands": "rsi, qword ptr [r11 + 0x48]", + "stack_offset": 0 }, { "address": "0x1400013a5", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x1400013a8", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400013aa", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400013ac", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400013ae", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400013b0", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400013b1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -14911,145 +15742,169 @@ "address": "0x140001595", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140001596", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140001597", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140001598", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000159a", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000159c", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x37]" + "operands": "rbp, [rsp - 0x37]", + "stack_offset": 0 }, { "address": "0x1400015a1", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xa0" + "operands": "rsp, 0xa0", + "stack_offset": 0 }, { "address": "0x1400015a8", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2fa91]" + "operands": "rax, qword ptr [rip + 0x2fa91]", + "stack_offset": 0 }, { "address": "0x1400015af", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x1400015b2", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x27], rax" + "operands": "qword ptr [rbp + 0x27], rax", + "stack_offset": 0 }, { "address": "0x1400015b6", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [r8 + 0x18], 0xf" + "operands": "qword ptr [r8 + 0x18], 0xf", + "stack_offset": 0 }, { "address": "0x1400015bb", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x1400015be", "size": 3, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rdx]" + "operands": "xmm1, xmmword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400015c1", "size": 3, "mnemonic": "mov", - "operands": "r15, rdx" + "operands": "r15, rdx", + "stack_offset": 0 }, { "address": "0x1400015c4", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x1400015c7", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp - 0x39], xmm0" + "operands": "xmmword ptr [rbp - 0x39], xmm0", + "stack_offset": 0 }, { "address": "0x1400015cb", "size": 3, "mnemonic": "mov", - "operands": "r14, r8" + "operands": "r14, r8", + "stack_offset": 0 }, { "address": "0x1400015ce", "size": 4, "mnemonic": "movaps", - "operands": "xmmword ptr [rbp - 0x19], xmm1" + "operands": "xmmword ptr [rbp - 0x19], xmm1", + "stack_offset": 0 }, { "address": "0x1400015d2", "size": 2, "mnemonic": "jbe", - "operands": "0x1400015d7" + "operands": "0x1400015d7", + "stack_offset": 0 }, { "address": "0x1400015d4", "size": 3, "mnemonic": "mov", - "operands": "r14, qword ptr [r8]" + "operands": "r14, qword ptr [r8]", + "stack_offset": 0 }, { "address": "0x1400015d7", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r8 + 0x10]" + "operands": "rbx, qword ptr [r8 + 0x10]", + "stack_offset": 0 }, { "address": "0x1400015db", "size": 10, "mnemonic": "movabs", - "operands": "rdi, 0x7fffffffffffffff" + "operands": "rdi, 0x7fffffffffffffff", + "stack_offset": 0 }, { "address": "0x1400015e5", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x1400015e8", "size": 6, "mnemonic": "ja", - "operands": "0x1400017bd" + "operands": "0x1400017bd", + "stack_offset": 0 } ], "successors": [ @@ -15067,13 +15922,15 @@ "address": "0x1400017bd", "size": 5, "mnemonic": "call", - "operands": "0x140001df0" + "operands": "0x140001df0", + "stack_offset": 0 }, { "address": "0x1400017c2", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -15089,13 +15946,15 @@ "address": "0x1400015ee", "size": 4, "mnemonic": "cmp", - "operands": "rbx, 0xf" + "operands": "rbx, 0xf", + "stack_offset": 0 }, { "address": "0x1400015f2", "size": 2, "mnemonic": "ja", - "operands": "0x14000160f" + "operands": "0x14000160f", + "stack_offset": 0 } ], "successors": [ @@ -15113,25 +15972,29 @@ "address": "0x14000160f", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140001612", "size": 4, "mnemonic": "or", - "operands": "rax, 0xf" + "operands": "rax, 0xf", + "stack_offset": 0 }, { "address": "0x140001616", "size": 3, "mnemonic": "cmp", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140001619", "size": 2, "mnemonic": "ja", - "operands": "0x14000162a" + "operands": "0x14000162a", + "stack_offset": 0 } ], "successors": [ @@ -15149,37 +16012,43 @@ "address": "0x1400015f4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x29], rbx" + "operands": "qword ptr [rbp - 0x29], rbx", + "stack_offset": 0 }, { "address": "0x1400015f8", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x21], 0xf" + "operands": "qword ptr [rbp - 0x21], 0xf", + "stack_offset": 0 }, { "address": "0x140001600", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r14]" + "operands": "xmm0, xmmword ptr [r14]", + "stack_offset": 0 }, { "address": "0x140001604", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp - 0x39], xmm0" + "operands": "xmmword ptr [rbp - 0x39], xmm0", + "stack_offset": 0 }, { "address": "0x140001608", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14000160b", "size": 2, "mnemonic": "je", - "operands": "0x140001668" + "operands": "0x140001668", + "stack_offset": 0 } ], "successors": [ @@ -15197,211 +16066,246 @@ "address": "0x14000162a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdi + 1]" + "operands": "rcx, [rdi + 1]", + "stack_offset": 0 }, { "address": "0x14000162e", "size": 5, "mnemonic": "call", - "operands": "0x140001410" + "operands": "0x140001410", + "stack_offset": 0 }, { "address": "0x140001633", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbx + 1]" + "operands": "r8, [rbx + 1]", + "stack_offset": 0 }, { "address": "0x140001637", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x39], rax" + "operands": "qword ptr [rbp - 0x39], rax", + "stack_offset": 0 }, { "address": "0x14000163b", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x14000163e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x29], rbx" + "operands": "qword ptr [rbp - 0x29], rbx", + "stack_offset": 0 }, { "address": "0x140001642", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140001645", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x21], rdi" + "operands": "qword ptr [rbp - 0x21], rdi", + "stack_offset": 0 }, { "address": "0x140001649", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x14000164e", "size": 6, "mnemonic": "mov", - "operands": "r8d, 2" + "operands": "r8d, 2", + "stack_offset": 0 }, { "address": "0x140001654", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1ee3d]" + "operands": "rdx, [rip + 0x1ee3d]", + "stack_offset": 0 }, { "address": "0x14000165b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14000165f", "size": 5, "mnemonic": "call", - "operands": "0x140001e10" + "operands": "0x140001e10", + "stack_offset": 0 }, { "address": "0x140001664", "size": 4, "mnemonic": "movaps", - "operands": "xmm1, xmmword ptr [rbp - 0x19]" + "operands": "xmm1, xmmword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x140001668", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x14000166c", "size": 5, "mnemonic": "movd", - "operands": "r8d, xmm1" + "operands": "r8d, xmm1", + "stack_offset": 0 }, { "address": "0x140001671", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x140001676", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000167a", "size": 5, "mnemonic": "movq", - "operands": "rcx, xmm0" + "operands": "rcx, xmm0", + "stack_offset": 0 }, { "address": "0x14000167f", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140001682", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x10]" + "operands": "qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140001685", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rbp - 1], 0xf" + "operands": "qword ptr [rbp - 1], 0xf", + "stack_offset": 0 }, { "address": "0x14000168a", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000168e", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rbp - 9]" + "operands": "r8, qword ptr [rbp - 9]", + "stack_offset": 0 }, { "address": "0x140001692", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x140001696", "size": 5, "mnemonic": "cmova", - "operands": "rdx, qword ptr [rbp - 0x19]" + "operands": "rdx, qword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000169b", "size": 5, "mnemonic": "call", - "operands": "0x140001e10" + "operands": "0x140001e10", + "stack_offset": 0 }, { "address": "0x1400016a0", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp - 1]" + "operands": "rdx, qword ptr [rbp - 1]", + "stack_offset": 0 }, { "address": "0x1400016a4", "size": 4, "mnemonic": "cmp", - "operands": "rdx, 0xf" + "operands": "rdx, 0xf", + "stack_offset": 0 }, { "address": "0x1400016a8", "size": 2, "mnemonic": "jbe", - "operands": "0x1400016db" + "operands": "0x1400016db", + "stack_offset": 0 }, { "address": "0x1400016aa", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x19]" + "operands": "rcx, qword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x1400016ae", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x1400016b1", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x1400016b4", "size": 7, "mnemonic": "cmp", - "operands": "rdx, 0x1000" + "operands": "rdx, 0x1000", + "stack_offset": 0 }, { "address": "0x1400016bb", "size": 2, "mnemonic": "jb", - "operands": "0x1400016d6" + "operands": "0x1400016d6", + "stack_offset": 0 } ], "successors": [ @@ -15419,235 +16323,274 @@ "address": "0x14000161b", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x16" + "operands": "ecx, 0x16", + "stack_offset": 0 }, { "address": "0x140001620", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x140001623", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140001626", "size": 4, "mnemonic": "cmovb", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000162a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdi + 1]" + "operands": "rcx, [rdi + 1]", + "stack_offset": 0 }, { "address": "0x14000162e", "size": 5, "mnemonic": "call", - "operands": "0x140001410" + "operands": "0x140001410", + "stack_offset": 0 }, { "address": "0x140001633", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbx + 1]" + "operands": "r8, [rbx + 1]", + "stack_offset": 0 }, { "address": "0x140001637", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x39], rax" + "operands": "qword ptr [rbp - 0x39], rax", + "stack_offset": 0 }, { "address": "0x14000163b", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x14000163e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x29], rbx" + "operands": "qword ptr [rbp - 0x29], rbx", + "stack_offset": 0 }, { "address": "0x140001642", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140001645", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x21], rdi" + "operands": "qword ptr [rbp - 0x21], rdi", + "stack_offset": 0 }, { "address": "0x140001649", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x14000164e", "size": 6, "mnemonic": "mov", - "operands": "r8d, 2" + "operands": "r8d, 2", + "stack_offset": 0 }, { "address": "0x140001654", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1ee3d]" + "operands": "rdx, [rip + 0x1ee3d]", + "stack_offset": 0 }, { "address": "0x14000165b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14000165f", "size": 5, "mnemonic": "call", - "operands": "0x140001e10" + "operands": "0x140001e10", + "stack_offset": 0 }, { "address": "0x140001664", "size": 4, "mnemonic": "movaps", - "operands": "xmm1, xmmword ptr [rbp - 0x19]" + "operands": "xmm1, xmmword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x140001668", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x14000166c", "size": 5, "mnemonic": "movd", - "operands": "r8d, xmm1" + "operands": "r8d, xmm1", + "stack_offset": 0 }, { "address": "0x140001671", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x140001676", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000167a", "size": 5, "mnemonic": "movq", - "operands": "rcx, xmm0" + "operands": "rcx, xmm0", + "stack_offset": 0 }, { "address": "0x14000167f", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140001682", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x10]" + "operands": "qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140001685", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rbp - 1], 0xf" + "operands": "qword ptr [rbp - 1], 0xf", + "stack_offset": 0 }, { "address": "0x14000168a", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000168e", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rbp - 9]" + "operands": "r8, qword ptr [rbp - 9]", + "stack_offset": 0 }, { "address": "0x140001692", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x140001696", "size": 5, "mnemonic": "cmova", - "operands": "rdx, qword ptr [rbp - 0x19]" + "operands": "rdx, qword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000169b", "size": 5, "mnemonic": "call", - "operands": "0x140001e10" + "operands": "0x140001e10", + "stack_offset": 0 }, { "address": "0x1400016a0", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp - 1]" + "operands": "rdx, qword ptr [rbp - 1]", + "stack_offset": 0 }, { "address": "0x1400016a4", "size": 4, "mnemonic": "cmp", - "operands": "rdx, 0xf" + "operands": "rdx, 0xf", + "stack_offset": 0 }, { "address": "0x1400016a8", "size": 2, "mnemonic": "jbe", - "operands": "0x1400016db" + "operands": "0x1400016db", + "stack_offset": 0 }, { "address": "0x1400016aa", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x19]" + "operands": "rcx, qword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x1400016ae", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x1400016b1", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x1400016b4", "size": 7, "mnemonic": "cmp", - "operands": "rdx, 0x1000" + "operands": "rdx, 0x1000", + "stack_offset": 0 }, { "address": "0x1400016bb", "size": 2, "mnemonic": "jb", - "operands": "0x1400016d6" + "operands": "0x1400016d6", + "stack_offset": 0 } ], "successors": [ @@ -15665,127 +16608,148 @@ "address": "0x140001668", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x14000166c", "size": 5, "mnemonic": "movd", - "operands": "r8d, xmm1" + "operands": "r8d, xmm1", + "stack_offset": 0 }, { "address": "0x140001671", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x140001676", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000167a", "size": 5, "mnemonic": "movq", - "operands": "rcx, xmm0" + "operands": "rcx, xmm0", + "stack_offset": 0 }, { "address": "0x14000167f", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140001682", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x10]" + "operands": "qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140001685", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rbp - 1], 0xf" + "operands": "qword ptr [rbp - 1], 0xf", + "stack_offset": 0 }, { "address": "0x14000168a", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000168e", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rbp - 9]" + "operands": "r8, qword ptr [rbp - 9]", + "stack_offset": 0 }, { "address": "0x140001692", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x140001696", "size": 5, "mnemonic": "cmova", - "operands": "rdx, qword ptr [rbp - 0x19]" + "operands": "rdx, qword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000169b", "size": 5, "mnemonic": "call", - "operands": "0x140001e10" + "operands": "0x140001e10", + "stack_offset": 0 }, { "address": "0x1400016a0", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp - 1]" + "operands": "rdx, qword ptr [rbp - 1]", + "stack_offset": 0 }, { "address": "0x1400016a4", "size": 4, "mnemonic": "cmp", - "operands": "rdx, 0xf" + "operands": "rdx, 0xf", + "stack_offset": 0 }, { "address": "0x1400016a8", "size": 2, "mnemonic": "jbe", - "operands": "0x1400016db" + "operands": "0x1400016db", + "stack_offset": 0 }, { "address": "0x1400016aa", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x19]" + "operands": "rcx, qword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x1400016ae", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x1400016b1", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x1400016b4", "size": 7, "mnemonic": "cmp", - "operands": "rdx, 0x1000" + "operands": "rdx, 0x1000", + "stack_offset": 0 }, { "address": "0x1400016bb", "size": 2, "mnemonic": "jb", - "operands": "0x1400016d6" + "operands": "0x1400016d6", + "stack_offset": 0 } ], "successors": [ @@ -15803,7 +16767,8 @@ "address": "0x14000160d", "size": 2, "mnemonic": "jmp", - "operands": "0x14000164e" + "operands": "0x14000164e", + "stack_offset": 0 } ], "successors": [ @@ -15820,181 +16785,211 @@ "address": "0x1400016d6", "size": 5, "mnemonic": "call", - "operands": "0x140005170" + "operands": "0x140005170", + "stack_offset": 0 }, { "address": "0x1400016db", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rbp - 0x39]" + "operands": "xmm0, xmmword ptr [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x1400016df", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rsi + 8]" + "operands": "rdx, [rsi + 8]", + "stack_offset": 0 }, { "address": "0x1400016e3", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x11], 1" + "operands": "byte ptr [rbp - 0x11], 1", + "stack_offset": 0 }, { "address": "0x1400016e7", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rbp - 0x29]" + "operands": "xmm1, xmmword ptr [rbp - 0x29]", + "stack_offset": 0 }, { "address": "0x1400016eb", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp + 7]" + "operands": "r8, [rbp + 7]", + "stack_offset": 0 }, { "address": "0x1400016ef", "size": 5, "mnemonic": "movq", - "operands": "rcx, xmm0" + "operands": "rcx, xmm0", + "stack_offset": 0 }, { "address": "0x1400016f4", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp + 0x17], xmm1" + "operands": "xmmword ptr [rbp + 0x17], xmm1", + "stack_offset": 0 }, { "address": "0x1400016f8", "size": 5, "mnemonic": "psrldq", - "operands": "xmm1, 8" + "operands": "xmm1, 8", + "stack_offset": 0 }, { "address": "0x1400016fd", "size": 5, "mnemonic": "movq", - "operands": "rax, xmm1" + "operands": "rax, xmm1", + "stack_offset": 0 }, { "address": "0x140001702", "size": 4, "mnemonic": "cmp", - "operands": "rax, 0xf" + "operands": "rax, 0xf", + "stack_offset": 0 }, { "address": "0x140001706", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1ecdb]" + "operands": "rax, [rip + 0x1ecdb]", + "stack_offset": 0 }, { "address": "0x14000170d", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp + 7], xmm0" + "operands": "xmmword ptr [rbp + 7], xmm0", + "stack_offset": 0 }, { "address": "0x140001711", "size": 4, "mnemonic": "cmova", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x140001715", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x140001718", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x14000171b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x19], r8" + "operands": "qword ptr [rbp - 0x19], r8", + "stack_offset": 0 }, { "address": "0x14000171f", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x19]" + "operands": "rcx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x140001723", "size": 3, "mnemonic": "movups", - "operands": "xmmword ptr [rdx], xmm0" + "operands": "xmmword ptr [rdx], xmm0", + "stack_offset": 0 }, { "address": "0x140001726", "size": 5, "mnemonic": "call", - "operands": "0x1400060f0" + "operands": "0x1400060f0", + "stack_offset": 0 }, { "address": "0x14000172b", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp + 0x1f]" + "operands": "rdx, qword ptr [rbp + 0x1f]", + "stack_offset": 0 }, { "address": "0x14000172f", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1ed3a]" + "operands": "rax, [rip + 0x1ed3a]", + "stack_offset": 0 }, { "address": "0x140001736", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x140001739", "size": 4, "mnemonic": "cmp", - "operands": "rdx, 0xf" + "operands": "rdx, 0xf", + "stack_offset": 0 }, { "address": "0x14000173d", "size": 2, "mnemonic": "jbe", - "operands": "0x14000176c" + "operands": "0x14000176c", + "stack_offset": 0 }, { "address": "0x14000173f", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 7]" + "operands": "rcx, qword ptr [rbp + 7]", + "stack_offset": 0 }, { "address": "0x140001743", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x140001746", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140001749", "size": 7, "mnemonic": "cmp", - "operands": "rdx, 0x1000" + "operands": "rdx, 0x1000", + "stack_offset": 0 }, { "address": "0x140001750", "size": 2, "mnemonic": "jb", - "operands": "0x140001767" + "operands": "0x140001767", + "stack_offset": 0 } ], "successors": [ @@ -16012,37 +17007,43 @@ "address": "0x1400016bd", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx - 8]" + "operands": "rcx, qword ptr [rcx - 8]", + "stack_offset": 0 }, { "address": "0x1400016c1", "size": 4, "mnemonic": "add", - "operands": "rdx, 0x27" + "operands": "rdx, 0x27", + "stack_offset": 0 }, { "address": "0x1400016c5", "size": 3, "mnemonic": "sub", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x1400016c8", "size": 4, "mnemonic": "sub", - "operands": "rax, 8" + "operands": "rax, 8", + "stack_offset": 0 }, { "address": "0x1400016cc", "size": 4, "mnemonic": "cmp", - "operands": "rax, 0x1f" + "operands": "rax, 0x1f", + "stack_offset": 0 }, { "address": "0x1400016d0", "size": 6, "mnemonic": "ja", - "operands": "0x1400017c3" + "operands": "0x1400017c3", + "stack_offset": 0 } ], "successors": [ @@ -16060,157 +17061,183 @@ "address": "0x14000164e", "size": 6, "mnemonic": "mov", - "operands": "r8d, 2" + "operands": "r8d, 2", + "stack_offset": 0 }, { "address": "0x140001654", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1ee3d]" + "operands": "rdx, [rip + 0x1ee3d]", + "stack_offset": 0 }, { "address": "0x14000165b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14000165f", "size": 5, "mnemonic": "call", - "operands": "0x140001e10" + "operands": "0x140001e10", + "stack_offset": 0 }, { "address": "0x140001664", "size": 4, "mnemonic": "movaps", - "operands": "xmm1, xmmword ptr [rbp - 0x19]" + "operands": "xmm1, xmmword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x140001668", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x14000166c", "size": 5, "mnemonic": "movd", - "operands": "r8d, xmm1" + "operands": "r8d, xmm1", + "stack_offset": 0 }, { "address": "0x140001671", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x140001676", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000167a", "size": 5, "mnemonic": "movq", - "operands": "rcx, xmm0" + "operands": "rcx, xmm0", + "stack_offset": 0 }, { "address": "0x14000167f", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140001682", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x10]" + "operands": "qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140001685", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rbp - 1], 0xf" + "operands": "qword ptr [rbp - 1], 0xf", + "stack_offset": 0 }, { "address": "0x14000168a", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000168e", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rbp - 9]" + "operands": "r8, qword ptr [rbp - 9]", + "stack_offset": 0 }, { "address": "0x140001692", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x140001696", "size": 5, "mnemonic": "cmova", - "operands": "rdx, qword ptr [rbp - 0x19]" + "operands": "rdx, qword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14000169b", "size": 5, "mnemonic": "call", - "operands": "0x140001e10" + "operands": "0x140001e10", + "stack_offset": 0 }, { "address": "0x1400016a0", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp - 1]" + "operands": "rdx, qword ptr [rbp - 1]", + "stack_offset": 0 }, { "address": "0x1400016a4", "size": 4, "mnemonic": "cmp", - "operands": "rdx, 0xf" + "operands": "rdx, 0xf", + "stack_offset": 0 }, { "address": "0x1400016a8", "size": 2, "mnemonic": "jbe", - "operands": "0x1400016db" + "operands": "0x1400016db", + "stack_offset": 0 }, { "address": "0x1400016aa", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x19]" + "operands": "rcx, qword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x1400016ae", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x1400016b1", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x1400016b4", "size": 7, "mnemonic": "cmp", - "operands": "rdx, 0x1000" + "operands": "rdx, 0x1000", + "stack_offset": 0 }, { "address": "0x1400016bb", "size": 2, "mnemonic": "jb", - "operands": "0x1400016d6" + "operands": "0x1400016d6", + "stack_offset": 0 } ], "successors": [ @@ -16228,103 +17255,120 @@ "address": "0x140001767", "size": 5, "mnemonic": "call", - "operands": "0x140005170" + "operands": "0x140005170", + "stack_offset": 0 }, { "address": "0x14000176c", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r15]" + "operands": "xmm0, xmmword ptr [r15]", + "stack_offset": 0 }, { "address": "0x140001770", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1ed11]" + "operands": "rax, [rip + 0x1ed11]", + "stack_offset": 0 }, { "address": "0x140001777", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x14000177a", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x14000177d", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rsi + 0x18], xmm0" + "operands": "xmmword ptr [rsi + 0x18], xmm0", + "stack_offset": 0 }, { "address": "0x140001781", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x27]" + "operands": "rcx, qword ptr [rbp + 0x27]", + "stack_offset": 0 }, { "address": "0x140001785", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140001788", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14000178d", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0xe8]" + "operands": "rbx, qword ptr [rsp + 0xe8]", + "stack_offset": 0 }, { "address": "0x140001795", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xa0" + "operands": "rsp, 0xa0", + "stack_offset": 0 }, { "address": "0x14000179c", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000179e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400017a0", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400017a1", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400017a2", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400017a3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -16340,37 +17384,43 @@ "address": "0x140001752", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx - 8]" + "operands": "rcx, qword ptr [rcx - 8]", + "stack_offset": 0 }, { "address": "0x140001756", "size": 4, "mnemonic": "add", - "operands": "rdx, 0x27" + "operands": "rdx, 0x27", + "stack_offset": 0 }, { "address": "0x14000175a", "size": 3, "mnemonic": "sub", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000175d", "size": 4, "mnemonic": "sub", - "operands": "rax, 8" + "operands": "rax, 8", + "stack_offset": 0 }, { "address": "0x140001761", "size": 4, "mnemonic": "cmp", - "operands": "rax, 0x1f" + "operands": "rax, 0x1f", + "stack_offset": 0 }, { "address": "0x140001765", "size": 2, "mnemonic": "ja", - "operands": "0x1400017a4" + "operands": "0x1400017a4", + "stack_offset": 0 } ], "successors": [ @@ -16388,43 +17438,50 @@ "address": "0x1400017c3", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x1400017c6", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x1400017cf", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x1400017d2", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400017d4", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400017d6", "size": 5, "mnemonic": "call", - "operands": "0x14000afd4" + "operands": "0x14000afd4", + "stack_offset": 0 }, { "address": "0x1400017db", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -16440,43 +17497,50 @@ "address": "0x1400017a4", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x1400017a7", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x1400017b0", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x1400017b3", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400017b5", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400017b7", "size": 5, "mnemonic": "call", - "operands": "0x14000afd4" + "operands": "0x14000afd4", + "stack_offset": 0 }, { "address": "0x1400017bc", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -16498,223 +17562,260 @@ "address": "0x140002616", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140002617", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140002618", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140002619", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000261b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000261f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x140002622", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140002624", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x58]" + "operands": "rcx, [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140002629", "size": 5, "mnemonic": "call", - "operands": "0x14000448c" + "operands": "0x14000448c", + "stack_offset": 0 }, { "address": "0x14000262e", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000262f", "size": 7, "mnemonic": "mov", - "operands": "rsi, qword ptr [rip + 0x2fcc2]" + "operands": "rsi, qword ptr [rip + 0x2fcc2]", + "stack_offset": 0 }, { "address": "0x140002636", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rsi" + "operands": "qword ptr [rsp + 0x60], rsi", + "stack_offset": 0 }, { "address": "0x14000263b", "size": 7, "mnemonic": "mov", - "operands": "rdi, qword ptr [rip + 0x2fcae]" + "operands": "rdi, qword ptr [rip + 0x2fcae]", + "stack_offset": 0 }, { "address": "0x140002642", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x140002645", "size": 2, "mnemonic": "jne", - "operands": "0x140002684" + "operands": "0x140002684", + "stack_offset": 0 }, { "address": "0x140002647", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140002649", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x50]" + "operands": "rcx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000264e", "size": 5, "mnemonic": "call", - "operands": "0x14000448c" + "operands": "0x14000448c", + "stack_offset": 0 }, { "address": "0x140002653", "size": 7, "mnemonic": "cmp", - "operands": "qword ptr [rip + 0x2fc96], rdi" + "operands": "qword ptr [rip + 0x2fc96], rdi", + "stack_offset": 0 }, { "address": "0x14000265a", "size": 2, "mnemonic": "jne", - "operands": "0x140002673" + "operands": "0x140002673", + "stack_offset": 0 }, { "address": "0x14000265c", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rip + 0x2fdfe]" + "operands": "eax, dword ptr [rip + 0x2fdfe]", + "stack_offset": 0 }, { "address": "0x140002662", "size": 2, "mnemonic": "inc", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x140002664", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2fdf6], eax" + "operands": "dword ptr [rip + 0x2fdf6], eax", + "stack_offset": 0 }, { "address": "0x14000266a", "size": 2, "mnemonic": "cdqe", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000266c", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2fc7d], rax" + "operands": "qword ptr [rip + 0x2fc7d], rax", + "stack_offset": 0 }, { "address": "0x140002673", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x50]" + "operands": "rcx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140002678", "size": 5, "mnemonic": "call", - "operands": "0x140004504" + "operands": "0x140004504", + "stack_offset": 0 }, { "address": "0x14000267d", "size": 7, "mnemonic": "mov", - "operands": "rdi, qword ptr [rip + 0x2fc6c]" + "operands": "rdi, qword ptr [rip + 0x2fc6c]", + "stack_offset": 0 }, { "address": "0x140002684", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 8]" + "operands": "rcx, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x140002688", "size": 8, "mnemonic": "lea", - "operands": "r14, [rdi*8]" + "operands": "r14, [rdi*8]", + "stack_offset": 0 }, { "address": "0x140002690", "size": 4, "mnemonic": "cmp", - "operands": "rdi, qword ptr [rcx + 0x18]" + "operands": "rdi, qword ptr [rcx + 0x18]", + "stack_offset": 0 }, { "address": "0x140002694", "size": 2, "mnemonic": "jae", - "operands": "0x1400026a5" + "operands": "0x1400026a5", + "stack_offset": 0 }, { "address": "0x140002696", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x10]" + "operands": "rax, qword ptr [rcx + 0x10]", + "stack_offset": 0 }, { "address": "0x14000269a", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r14 + rax]" + "operands": "rbx, qword ptr [r14 + rax]", + "stack_offset": 0 }, { "address": "0x14000269e", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400026a1", "size": 2, "mnemonic": "jne", - "operands": "0x14000270b" + "operands": "0x14000270b", + "stack_offset": 0 }, { "address": "0x1400026a3", "size": 2, "mnemonic": "jmp", - "operands": "0x1400026a7" + "operands": "0x1400026a7", + "stack_offset": 0 } ], "successors": [ @@ -16731,13 +17832,15 @@ "address": "0x1400026a7", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 0x24], 0" + "operands": "byte ptr [rcx + 0x24], 0", + "stack_offset": 0 }, { "address": "0x1400026ab", "size": 2, "mnemonic": "je", - "operands": "0x1400026c0" + "operands": "0x1400026c0", + "stack_offset": 0 } ], "successors": [ @@ -16755,25 +17858,29 @@ "address": "0x1400026c0", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400026c3", "size": 2, "mnemonic": "jne", - "operands": "0x14000270b" + "operands": "0x14000270b", + "stack_offset": 0 }, { "address": "0x1400026c5", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x1400026c8", "size": 2, "mnemonic": "je", - "operands": "0x1400026cf" + "operands": "0x1400026cf", + "stack_offset": 0 } ], "successors": [ @@ -16791,55 +17898,64 @@ "address": "0x1400026ad", "size": 5, "mnemonic": "call", - "operands": "0x140004650" + "operands": "0x140004650", + "stack_offset": 0 }, { "address": "0x1400026b2", "size": 4, "mnemonic": "cmp", - "operands": "rdi, qword ptr [rax + 0x18]" + "operands": "rdi, qword ptr [rax + 0x18]", + "stack_offset": 0 }, { "address": "0x1400026b6", "size": 2, "mnemonic": "jae", - "operands": "0x1400026c5" + "operands": "0x1400026c5", + "stack_offset": 0 }, { "address": "0x1400026b8", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x10]" + "operands": "rax, qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400026bc", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r14 + rax]" + "operands": "rbx, qword ptr [r14 + rax]", + "stack_offset": 0 }, { "address": "0x1400026c0", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400026c3", "size": 2, "mnemonic": "jne", - "operands": "0x14000270b" + "operands": "0x14000270b", + "stack_offset": 0 }, { "address": "0x1400026c5", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x1400026c8", "size": 2, "mnemonic": "je", - "operands": "0x1400026cf" + "operands": "0x1400026cf", + "stack_offset": 0 } ], "successors": [ @@ -16857,31 +17973,36 @@ "address": "0x1400026cf", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbp" + "operands": "rdx, rbp", + "stack_offset": 0 }, { "address": "0x1400026d2", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x60]" + "operands": "rcx, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400026d7", "size": 5, "mnemonic": "call", - "operands": "0x1400030cc" + "operands": "0x1400030cc", + "stack_offset": 0 }, { "address": "0x1400026dc", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x1400026e0", "size": 2, "mnemonic": "je", - "operands": "0x140002723" + "operands": "0x140002723", + "stack_offset": 0 } ], "successors": [ @@ -16899,13 +18020,15 @@ "address": "0x1400026ca", "size": 3, "mnemonic": "mov", - "operands": "rbx, rsi" + "operands": "rbx, rsi", + "stack_offset": 0 }, { "address": "0x1400026cd", "size": 2, "mnemonic": "jmp", - "operands": "0x14000270b" + "operands": "0x14000270b", + "stack_offset": 0 } ], "successors": [ @@ -16922,19 +18045,22 @@ "address": "0x140002723", "size": 5, "mnemonic": "call", - "operands": "0x14000348c" + "operands": "0x14000348c", + "stack_offset": 0 }, { "address": "0x140002728", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140002729", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -16950,115 +18076,134 @@ "address": "0x1400026e2", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400026e7", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x50], rbx" + "operands": "qword ptr [rsp + 0x50], rbx", + "stack_offset": 0 }, { "address": "0x1400026ec", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400026ef", "size": 5, "mnemonic": "call", - "operands": "0x140004614" + "operands": "0x140004614", + "stack_offset": 0 }, { "address": "0x1400026f4", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx]" + "operands": "rcx, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x1400026f7", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 8]" + "operands": "rax, qword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x1400026fb", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400026fe", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1dbbc]" + "operands": "qword ptr [rip + 0x1dbbc]", + "stack_offset": 0 }, { "address": "0x140002704", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2fbed], rbx" + "operands": "qword ptr [rip + 0x2fbed], rbx", + "stack_offset": 0 }, { "address": "0x14000270b", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x58]" + "operands": "rcx, [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140002710", "size": 5, "mnemonic": "call", - "operands": "0x140004504" + "operands": "0x140004504", + "stack_offset": 0 }, { "address": "0x140002715", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140002718", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000271c", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000271e", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000271f", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140002720", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140002721", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140002722", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -17074,61 +18219,71 @@ "address": "0x14000270b", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x58]" + "operands": "rcx, [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140002710", "size": 5, "mnemonic": "call", - "operands": "0x140004504" + "operands": "0x140004504", + "stack_offset": 0 }, { "address": "0x140002715", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140002718", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000271c", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000271e", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000271f", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140002720", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140002721", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140002722", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -17150,223 +18305,260 @@ "address": "0x14000272e", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000272f", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140002730", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140002731", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140002733", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140002737", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x14000273a", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000273c", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x58]" + "operands": "rcx, [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140002741", "size": 5, "mnemonic": "call", - "operands": "0x14000448c" + "operands": "0x14000448c", + "stack_offset": 0 }, { "address": "0x140002746", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140002747", "size": 7, "mnemonic": "mov", - "operands": "rsi, qword ptr [rip + 0x2fb9a]" + "operands": "rsi, qword ptr [rip + 0x2fb9a]", + "stack_offset": 0 }, { "address": "0x14000274e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rsi" + "operands": "qword ptr [rsp + 0x60], rsi", + "stack_offset": 0 }, { "address": "0x140002753", "size": 7, "mnemonic": "mov", - "operands": "rdi, qword ptr [rip + 0x2fd1e]" + "operands": "rdi, qword ptr [rip + 0x2fd1e]", + "stack_offset": 0 }, { "address": "0x14000275a", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x14000275d", "size": 2, "mnemonic": "jne", - "operands": "0x14000279c" + "operands": "0x14000279c", + "stack_offset": 0 }, { "address": "0x14000275f", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140002761", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x50]" + "operands": "rcx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140002766", "size": 5, "mnemonic": "call", - "operands": "0x14000448c" + "operands": "0x14000448c", + "stack_offset": 0 }, { "address": "0x14000276b", "size": 7, "mnemonic": "cmp", - "operands": "qword ptr [rip + 0x2fd06], rdi" + "operands": "qword ptr [rip + 0x2fd06], rdi", + "stack_offset": 0 }, { "address": "0x140002772", "size": 2, "mnemonic": "jne", - "operands": "0x14000278b" + "operands": "0x14000278b", + "stack_offset": 0 }, { "address": "0x140002774", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rip + 0x2fce6]" + "operands": "eax, dword ptr [rip + 0x2fce6]", + "stack_offset": 0 }, { "address": "0x14000277a", "size": 2, "mnemonic": "inc", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x14000277c", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2fcde], eax" + "operands": "dword ptr [rip + 0x2fcde], eax", + "stack_offset": 0 }, { "address": "0x140002782", "size": 2, "mnemonic": "cdqe", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140002784", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2fced], rax" + "operands": "qword ptr [rip + 0x2fced], rax", + "stack_offset": 0 }, { "address": "0x14000278b", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x50]" + "operands": "rcx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140002790", "size": 5, "mnemonic": "call", - "operands": "0x140004504" + "operands": "0x140004504", + "stack_offset": 0 }, { "address": "0x140002795", "size": 7, "mnemonic": "mov", - "operands": "rdi, qword ptr [rip + 0x2fcdc]" + "operands": "rdi, qword ptr [rip + 0x2fcdc]", + "stack_offset": 0 }, { "address": "0x14000279c", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 8]" + "operands": "rcx, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x1400027a0", "size": 8, "mnemonic": "lea", - "operands": "r14, [rdi*8]" + "operands": "r14, [rdi*8]", + "stack_offset": 0 }, { "address": "0x1400027a8", "size": 4, "mnemonic": "cmp", - "operands": "rdi, qword ptr [rcx + 0x18]" + "operands": "rdi, qword ptr [rcx + 0x18]", + "stack_offset": 0 }, { "address": "0x1400027ac", "size": 2, "mnemonic": "jae", - "operands": "0x1400027bd" + "operands": "0x1400027bd", + "stack_offset": 0 }, { "address": "0x1400027ae", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x10]" + "operands": "rax, qword ptr [rcx + 0x10]", + "stack_offset": 0 }, { "address": "0x1400027b2", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r14 + rax]" + "operands": "rbx, qword ptr [r14 + rax]", + "stack_offset": 0 }, { "address": "0x1400027b6", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400027b9", "size": 2, "mnemonic": "jne", - "operands": "0x140002823" + "operands": "0x140002823", + "stack_offset": 0 }, { "address": "0x1400027bb", "size": 2, "mnemonic": "jmp", - "operands": "0x1400027bf" + "operands": "0x1400027bf", + "stack_offset": 0 } ], "successors": [ @@ -17383,13 +18575,15 @@ "address": "0x1400027bf", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 0x24], 0" + "operands": "byte ptr [rcx + 0x24], 0", + "stack_offset": 0 }, { "address": "0x1400027c3", "size": 2, "mnemonic": "je", - "operands": "0x1400027d8" + "operands": "0x1400027d8", + "stack_offset": 0 } ], "successors": [ @@ -17407,25 +18601,29 @@ "address": "0x1400027d8", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400027db", "size": 2, "mnemonic": "jne", - "operands": "0x140002823" + "operands": "0x140002823", + "stack_offset": 0 }, { "address": "0x1400027dd", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x1400027e0", "size": 2, "mnemonic": "je", - "operands": "0x1400027e7" + "operands": "0x1400027e7", + "stack_offset": 0 } ], "successors": [ @@ -17443,55 +18641,64 @@ "address": "0x1400027c5", "size": 5, "mnemonic": "call", - "operands": "0x140004650" + "operands": "0x140004650", + "stack_offset": 0 }, { "address": "0x1400027ca", "size": 4, "mnemonic": "cmp", - "operands": "rdi, qword ptr [rax + 0x18]" + "operands": "rdi, qword ptr [rax + 0x18]", + "stack_offset": 0 }, { "address": "0x1400027ce", "size": 2, "mnemonic": "jae", - "operands": "0x1400027dd" + "operands": "0x1400027dd", + "stack_offset": 0 }, { "address": "0x1400027d0", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x10]" + "operands": "rax, qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400027d4", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r14 + rax]" + "operands": "rbx, qword ptr [r14 + rax]", + "stack_offset": 0 }, { "address": "0x1400027d8", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400027db", "size": 2, "mnemonic": "jne", - "operands": "0x140002823" + "operands": "0x140002823", + "stack_offset": 0 }, { "address": "0x1400027dd", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x1400027e0", "size": 2, "mnemonic": "je", - "operands": "0x1400027e7" + "operands": "0x1400027e7", + "stack_offset": 0 } ], "successors": [ @@ -17509,31 +18716,36 @@ "address": "0x1400027e7", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbp" + "operands": "rdx, rbp", + "stack_offset": 0 }, { "address": "0x1400027ea", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x60]" + "operands": "rcx, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400027ef", "size": 5, "mnemonic": "call", - "operands": "0x140003188" + "operands": "0x140003188", + "stack_offset": 0 }, { "address": "0x1400027f4", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x1400027f8", "size": 2, "mnemonic": "je", - "operands": "0x14000283b" + "operands": "0x14000283b", + "stack_offset": 0 } ], "successors": [ @@ -17551,13 +18763,15 @@ "address": "0x1400027e2", "size": 3, "mnemonic": "mov", - "operands": "rbx, rsi" + "operands": "rbx, rsi", + "stack_offset": 0 }, { "address": "0x1400027e5", "size": 2, "mnemonic": "jmp", - "operands": "0x140002823" + "operands": "0x140002823", + "stack_offset": 0 } ], "successors": [ @@ -17574,19 +18788,22 @@ "address": "0x14000283b", "size": 5, "mnemonic": "call", - "operands": "0x14000348c" + "operands": "0x14000348c", + "stack_offset": 0 }, { "address": "0x140002840", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140002841", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -17602,115 +18819,134 @@ "address": "0x1400027fa", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400027ff", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x50], rbx" + "operands": "qword ptr [rsp + 0x50], rbx", + "stack_offset": 0 }, { "address": "0x140002804", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140002807", "size": 5, "mnemonic": "call", - "operands": "0x140004614" + "operands": "0x140004614", + "stack_offset": 0 }, { "address": "0x14000280c", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx]" + "operands": "rcx, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000280f", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 8]" + "operands": "rax, qword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x140002813", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140002816", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1daa4]" + "operands": "qword ptr [rip + 0x1daa4]", + "stack_offset": 0 }, { "address": "0x14000281c", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2fac5], rbx" + "operands": "qword ptr [rip + 0x2fac5], rbx", + "stack_offset": 0 }, { "address": "0x140002823", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x58]" + "operands": "rcx, [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140002828", "size": 5, "mnemonic": "call", - "operands": "0x140004504" + "operands": "0x140004504", + "stack_offset": 0 }, { "address": "0x14000282d", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140002830", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140002834", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140002836", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140002837", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140002838", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140002839", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000283a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -17726,61 +18962,71 @@ "address": "0x140002823", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x58]" + "operands": "rcx, [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140002828", "size": 5, "mnemonic": "call", - "operands": "0x140004504" + "operands": "0x140004504", + "stack_offset": 0 }, { "address": "0x14000282d", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140002830", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140002834", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140002836", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140002837", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140002838", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140002839", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000283a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -17802,91 +19048,106 @@ "address": "0x1400037f6", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400037f7", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400037f8", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400037fa", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x47]" + "operands": "rbp, [rsp - 0x47]", + "stack_offset": 0 }, { "address": "0x1400037ff", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x90" + "operands": "rsp, 0x90", + "stack_offset": 0 }, { "address": "0x140003806", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2d833]" + "operands": "rax, qword ptr [rip + 0x2d833]", + "stack_offset": 0 }, { "address": "0x14000380d", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140003810", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x3f], rax" + "operands": "qword ptr [rbp + 0x3f], rax", + "stack_offset": 0 }, { "address": "0x140003814", "size": 3, "mnemonic": "or", - "operands": "edi, 0xffffffff" + "operands": "edi, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140003817", "size": 2, "mnemonic": "mov", - "operands": "esi, edx" + "operands": "esi, edx", + "stack_offset": 0 }, { "address": "0x140003819", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000381c", "size": 2, "mnemonic": "cmp", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x14000381e", "size": 2, "mnemonic": "jne", - "operands": "0x140003827" + "operands": "0x140003827", + "stack_offset": 0 }, { "address": "0x140003820", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140003822", "size": 5, "mnemonic": "jmp", - "operands": "0x14000394c" + "operands": "0x14000394c", + "stack_offset": 0 } ], "successors": [ @@ -17903,67 +19164,78 @@ "address": "0x14000394c", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x3f]" + "operands": "rcx, qword ptr [rbp + 0x3f]", + "stack_offset": 0 }, { "address": "0x140003950", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140003953", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140003958", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x90]" + "operands": "r11, [rsp + 0x90]", + "stack_offset": 0 }, { "address": "0x140003960", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x30]" + "operands": "rbx, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x140003964", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x38]" + "operands": "rsi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x140003968", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000396b", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000396d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000396e", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000396f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -17985,67 +19257,78 @@ "address": "0x140003d8f", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140003d90", "size": 4, "mnemonic": "lea", - "operands": "rbp, [rax - 0x5f]" + "operands": "rbp, [rax - 0x5f]", + "stack_offset": 0 }, { "address": "0x140003d94", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x90" + "operands": "rsp, 0x90", + "stack_offset": 0 }, { "address": "0x140003d9b", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2d29e]" + "operands": "rax, qword ptr [rip + 0x2d29e]", + "stack_offset": 0 }, { "address": "0x140003da2", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140003da5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x4f], rax" + "operands": "qword ptr [rbp + 0x4f], rax", + "stack_offset": 0 }, { "address": "0x140003da9", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140003dac", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x38]" + "operands": "rax, qword ptr [rcx + 0x38]", + "stack_offset": 0 }, { "address": "0x140003db0", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140003db3", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140003db6", "size": 2, "mnemonic": "je", - "operands": "0x140003de4" + "operands": "0x140003de4", + "stack_offset": 0 } ], "successors": [ @@ -18063,25 +19346,29 @@ "address": "0x140003de4", "size": 8, "mnemonic": "cmp", - "operands": "qword ptr [rdi + 0x80], 0" + "operands": "qword ptr [rdi + 0x80], 0", + "stack_offset": 0 }, { "address": "0x140003dec", "size": 2, "mnemonic": "jne", - "operands": "0x140003df6" + "operands": "0x140003df6", + "stack_offset": 0 }, { "address": "0x140003dee", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140003df1", "size": 5, "mnemonic": "jmp", - "operands": "0x140003f7b" + "operands": "0x140003f7b", + "stack_offset": 0 } ], "successors": [ @@ -18098,79 +19385,92 @@ "address": "0x140003db8", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rdi + 0x50]" + "operands": "rdx, qword ptr [rdi + 0x50]", + "stack_offset": 0 }, { "address": "0x140003dbc", "size": 3, "mnemonic": "movsxd", - "operands": "r9, dword ptr [rdx]" + "operands": "r9, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140003dbf", "size": 4, "mnemonic": "lea", - "operands": "rax, [rcx + r9]" + "operands": "rax, [rcx + r9]", + "stack_offset": 0 }, { "address": "0x140003dc3", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140003dc6", "size": 2, "mnemonic": "jae", - "operands": "0x140003de4" + "operands": "0x140003de4", + "stack_offset": 0 }, { "address": "0x140003dc8", "size": 4, "mnemonic": "lea", - "operands": "eax, [r9 - 1]" + "operands": "eax, [r9 - 1]", + "stack_offset": 0 }, { "address": "0x140003dcc", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rdx], eax" + "operands": "dword ptr [rdx], eax", + "stack_offset": 0 }, { "address": "0x140003dce", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + 0x38]" + "operands": "rcx, qword ptr [rdi + 0x38]", + "stack_offset": 0 }, { "address": "0x140003dd2", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rcx]" + "operands": "rdx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140003dd5", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdx + 1]" + "operands": "rax, [rdx + 1]", + "stack_offset": 0 }, { "address": "0x140003dd9", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rax" + "operands": "qword ptr [rcx], rax", + "stack_offset": 0 }, { "address": "0x140003ddc", "size": 3, "mnemonic": "movzx", - "operands": "eax, byte ptr [rdx]" + "operands": "eax, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140003ddf", "size": 5, "mnemonic": "jmp", - "operands": "0x140003f7b" + "operands": "0x140003f7b", + "stack_offset": 0 } ], "successors": [ @@ -18187,61 +19487,71 @@ "address": "0x140003f7b", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x4f]" + "operands": "rcx, qword ptr [rbp + 0x4f]", + "stack_offset": 0 }, { "address": "0x140003f7f", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140003f82", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140003f87", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x90]" + "operands": "r11, [rsp + 0x90]", + "stack_offset": 0 }, { "address": "0x140003f8f", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x18]" + "operands": "rbx, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140003f93", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x20]" + "operands": "rsi, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x140003f97", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x28]" + "operands": "rdi, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x140003f9b", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140003f9e", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140003f9f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -18263,79 +19573,92 @@ "address": "0x1400049dd", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400049de", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400049df", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400049e0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x1400049e4", "size": 3, "mnemonic": "movsxd", - "operands": "rbx, ecx" + "operands": "rbx, ecx", + "stack_offset": 0 }, { "address": "0x1400049e7", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x1400049ea", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x1400049ed", "size": 2, "mnemonic": "jne", - "operands": "0x140004a01" + "operands": "0x140004a01", + "stack_offset": 0 }, { "address": "0x1400049ef", "size": 5, "mnemonic": "call", - "operands": "0x14000cfb8" + "operands": "0x14000cfb8", + "stack_offset": 0 }, { "address": "0x1400049f4", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rax + 0x10]" + "operands": "rsi, qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400049f8", "size": 5, "mnemonic": "call", - "operands": "0x14000cf88" + "operands": "0x14000cf88", + "stack_offset": 0 }, { "address": "0x1400049fd", "size": 2, "mnemonic": "mov", - "operands": "ebp, eax" + "operands": "ebp, eax", + "stack_offset": 0 }, { "address": "0x1400049ff", "size": 2, "mnemonic": "jmp", - "operands": "0x140004a07" + "operands": "0x140004a07", + "stack_offset": 0 } ], "successors": [ @@ -18352,43 +19675,50 @@ "address": "0x140004a07", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x140004a0a", "size": 2, "mnemonic": "jne", - "operands": "0x140004a1d" + "operands": "0x140004a1d", + "stack_offset": 0 }, { "address": "0x140004a0c", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rbx - 0x41]" + "operands": "ecx, [rbx - 0x41]", + "stack_offset": 0 }, { "address": "0x140004a0f", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 0x19" + "operands": "ecx, 0x19", + "stack_offset": 0 }, { "address": "0x140004a12", "size": 3, "mnemonic": "lea", - "operands": "eax, [rbx + 0x20]" + "operands": "eax, [rbx + 0x20]", + "stack_offset": 0 }, { "address": "0x140004a15", "size": 3, "mnemonic": "cmova", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x140004a18", "size": 5, "mnemonic": "jmp", - "operands": "0x140004afa" + "operands": "0x140004afa", + "stack_offset": 0 } ], "successors": [ @@ -18405,37 +19735,43 @@ "address": "0x140004afa", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140004aff", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x140004b03", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140004b04", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140004b05", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140004b06", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -18457,145 +19793,169 @@ "address": "0x140004e28", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140004e2a", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140004e2c", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140004e2e", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140004e32", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp + 0x50]" + "operands": "rbp, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140004e37", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x30], rbx" + "operands": "qword ptr [rbp + 0x30], rbx", + "stack_offset": 0 }, { "address": "0x140004e3b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x38], rsi" + "operands": "qword ptr [rbp + 0x38], rsi", + "stack_offset": 0 }, { "address": "0x140004e3f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x40], rdi" + "operands": "qword ptr [rbp + 0x40], rdi", + "stack_offset": 0 }, { "address": "0x140004e43", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x48], r13" + "operands": "qword ptr [rbp + 0x48], r13", + "stack_offset": 0 }, { "address": "0x140004e47", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2c1f2]" + "operands": "rax, qword ptr [rip + 0x2c1f2]", + "stack_offset": 0 }, { "address": "0x140004e4e", "size": 3, "mnemonic": "xor", - "operands": "rax, rbp" + "operands": "rax, rbp", + "stack_offset": 0 }, { "address": "0x140004e51", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp], rax" + "operands": "qword ptr [rbp], rax", + "stack_offset": 0 }, { "address": "0x140004e55", "size": 3, "mnemonic": "movsxd", - "operands": "rdi, r9d" + "operands": "rdi, r9d", + "stack_offset": 0 }, { "address": "0x140004e58", "size": 3, "mnemonic": "mov", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x140004e5b", "size": 3, "mnemonic": "mov", - "operands": "r15d, edx" + "operands": "r15d, edx", + "stack_offset": 0 }, { "address": "0x140004e5e", "size": 3, "mnemonic": "mov", - "operands": "r13, rcx" + "operands": "r13, rcx", + "stack_offset": 0 }, { "address": "0x140004e61", "size": 3, "mnemonic": "test", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140004e64", "size": 2, "mnemonic": "jle", - "operands": "0x140004e7a" + "operands": "0x140004e7a", + "stack_offset": 0 }, { "address": "0x140004e66", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140004e69", "size": 3, "mnemonic": "mov", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x140004e6c", "size": 5, "mnemonic": "call", - "operands": "0x14000d9c0" + "operands": "0x14000d9c0", + "stack_offset": 0 }, { "address": "0x140004e71", "size": 2, "mnemonic": "cmp", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140004e73", "size": 3, "mnemonic": "lea", - "operands": "edi, [rax + 1]" + "operands": "edi, [rax + 1]", + "stack_offset": 0 }, { "address": "0x140004e76", "size": 2, "mnemonic": "jl", - "operands": "0x140004e7a" + "operands": "0x140004e7a", + "stack_offset": 0 } ], "successors": [ @@ -18613,79 +19973,92 @@ "address": "0x140004e7a", "size": 3, "mnemonic": "neg", - "operands": "dword ptr [rbp + 0x68]" + "operands": "dword ptr [rbp + 0x68]", + "stack_offset": 0 }, { "address": "0x140004e7d", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x140004e80", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp + 0x60]" + "operands": "ecx, dword ptr [rbp + 0x60]", + "stack_offset": 0 }, { "address": "0x140004e83", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140004e86", "size": 2, "mnemonic": "sbb", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140004e88", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], 0" + "operands": "dword ptr [rsp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x140004e90", "size": 3, "mnemonic": "and", - "operands": "edx, 8" + "operands": "edx, 8", + "stack_offset": 0 }, { "address": "0x140004e93", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x140004e9c", "size": 2, "mnemonic": "inc", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x140004e9e", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1b18c]" + "operands": "qword ptr [rip + 0x1b18c]", + "stack_offset": 0 }, { "address": "0x140004ea4", "size": 3, "mnemonic": "movsxd", - "operands": "r14, eax" + "operands": "r14, eax", + "stack_offset": 0 }, { "address": "0x140004ea7", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140004ea9", "size": 6, "mnemonic": "je", - "operands": "0x140004f56" + "operands": "0x140004f56", + "stack_offset": 0 } ], "successors": [ @@ -18703,85 +20076,99 @@ "address": "0x140004e78", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140004e7a", "size": 3, "mnemonic": "neg", - "operands": "dword ptr [rbp + 0x68]" + "operands": "dword ptr [rbp + 0x68]", + "stack_offset": 0 }, { "address": "0x140004e7d", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x140004e80", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp + 0x60]" + "operands": "ecx, dword ptr [rbp + 0x60]", + "stack_offset": 0 }, { "address": "0x140004e83", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140004e86", "size": 2, "mnemonic": "sbb", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140004e88", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], 0" + "operands": "dword ptr [rsp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x140004e90", "size": 3, "mnemonic": "and", - "operands": "edx, 8" + "operands": "edx, 8", + "stack_offset": 0 }, { "address": "0x140004e93", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x140004e9c", "size": 2, "mnemonic": "inc", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x140004e9e", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1b18c]" + "operands": "qword ptr [rip + 0x1b18c]", + "stack_offset": 0 }, { "address": "0x140004ea4", "size": 3, "mnemonic": "movsxd", - "operands": "r14, eax" + "operands": "r14, eax", + "stack_offset": 0 }, { "address": "0x140004ea7", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140004ea9", "size": 6, "mnemonic": "je", - "operands": "0x140004f56" + "operands": "0x140004f56", + "stack_offset": 0 } ], "successors": [ @@ -18799,79 +20186,92 @@ "address": "0x140004f56", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140004f58", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp]" + "operands": "rcx, qword ptr [rbp]", + "stack_offset": 0 }, { "address": "0x140004f5c", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x140004f5f", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140004f64", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0x30]" + "operands": "rbx, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x140004f68", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x38]" + "operands": "rsi, qword ptr [rbp + 0x38]", + "stack_offset": 0 }, { "address": "0x140004f6c", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x40]" + "operands": "rdi, qword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x140004f70", "size": 4, "mnemonic": "mov", - "operands": "r13, qword ptr [rbp + 0x48]" + "operands": "r13, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x140004f74", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x10]" + "operands": "rsp, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140004f78", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140004f7a", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140004f7c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140004f7d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -18887,43 +20287,50 @@ "address": "0x140004eaf", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140004eb2", "size": 3, "mnemonic": "add", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140004eb5", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rcx + 0x10]" + "operands": "rdx, [rcx + 0x10]", + "stack_offset": 0 }, { "address": "0x140004eb9", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x140004ebc", "size": 3, "mnemonic": "sbb", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140004ebf", "size": 3, "mnemonic": "and", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x140004ec2", "size": 6, "mnemonic": "je", - "operands": "0x140004f56" + "operands": "0x140004f56", + "stack_offset": 0 } ], "successors": [ @@ -18941,19 +20348,22 @@ "address": "0x140004ec8", "size": 10, "mnemonic": "movabs", - "operands": "rdx, 0xffffffffffffff0" + "operands": "rdx, 0xffffffffffffff0", + "stack_offset": 0 }, { "address": "0x140004ed2", "size": 7, "mnemonic": "cmp", - "operands": "rcx, 0x400" + "operands": "rcx, 0x400", + "stack_offset": 0 }, { "address": "0x140004ed9", "size": 2, "mnemonic": "ja", - "operands": "0x140004f05" + "operands": "0x140004f05", + "stack_offset": 0 } ], "successors": [ @@ -18971,25 +20381,29 @@ "address": "0x140004f05", "size": 5, "mnemonic": "call", - "operands": "0x14000cac0" + "operands": "0x14000cac0", + "stack_offset": 0 }, { "address": "0x140004f0a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140004f0d", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140004f10", "size": 2, "mnemonic": "je", - "operands": "0x140004f1c" + "operands": "0x140004f1c", + "stack_offset": 0 } ], "successors": [ @@ -19007,19 +20421,22 @@ "address": "0x140004edb", "size": 4, "mnemonic": "lea", - "operands": "rax, [rcx + 0xf]" + "operands": "rax, [rcx + 0xf]", + "stack_offset": 0 }, { "address": "0x140004edf", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140004ee2", "size": 2, "mnemonic": "ja", - "operands": "0x140004ee7" + "operands": "0x140004ee7", + "stack_offset": 0 } ], "successors": [ @@ -19037,13 +20454,15 @@ "address": "0x140004f1c", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004f1f", "size": 2, "mnemonic": "je", - "operands": "0x140004f56" + "operands": "0x140004f56", + "stack_offset": 0 } ], "successors": [ @@ -19061,25 +20480,29 @@ "address": "0x140004f12", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0xdddd" + "operands": "dword ptr [rax], 0xdddd", + "stack_offset": 0 }, { "address": "0x140004f18", "size": 4, "mnemonic": "add", - "operands": "rbx, 0x10" + "operands": "rbx, 0x10", + "stack_offset": 0 }, { "address": "0x140004f1c", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004f1f", "size": 2, "mnemonic": "je", - "operands": "0x140004f56" + "operands": "0x140004f56", + "stack_offset": 0 } ], "successors": [ @@ -19097,37 +20520,43 @@ "address": "0x140004ee7", "size": 4, "mnemonic": "and", - "operands": "rax, 0xfffffffffffffff0" + "operands": "rax, 0xfffffffffffffff0", + "stack_offset": 0 }, { "address": "0x140004eeb", "size": 5, "mnemonic": "call", - "operands": "0x1400057a0" + "operands": "0x1400057a0", + "stack_offset": 0 }, { "address": "0x140004ef0", "size": 3, "mnemonic": "sub", - "operands": "rsp, rax" + "operands": "rsp, rax", + "stack_offset": 0 }, { "address": "0x140004ef3", "size": 5, "mnemonic": "lea", - "operands": "rbx, [rsp + 0x50]" + "operands": "rbx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140004ef8", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004efb", "size": 2, "mnemonic": "je", - "operands": "0x140004f56" + "operands": "0x140004f56", + "stack_offset": 0 } ], "successors": [ @@ -19145,43 +20574,50 @@ "address": "0x140004ee4", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x140004ee7", "size": 4, "mnemonic": "and", - "operands": "rax, 0xfffffffffffffff0" + "operands": "rax, 0xfffffffffffffff0", + "stack_offset": 0 }, { "address": "0x140004eeb", "size": 5, "mnemonic": "call", - "operands": "0x1400057a0" + "operands": "0x1400057a0", + "stack_offset": 0 }, { "address": "0x140004ef0", "size": 3, "mnemonic": "sub", - "operands": "rsp, rax" + "operands": "rsp, rax", + "stack_offset": 0 }, { "address": "0x140004ef3", "size": 5, "mnemonic": "lea", - "operands": "rbx, [rsp + 0x50]" + "operands": "rbx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140004ef8", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004efb", "size": 2, "mnemonic": "je", - "operands": "0x140004f56" + "operands": "0x140004f56", + "stack_offset": 0 } ], "successors": [ @@ -19199,163 +20635,190 @@ "address": "0x140004f21", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp + 0x60]" + "operands": "ecx, dword ptr [rbp + 0x60]", + "stack_offset": 0 }, { "address": "0x140004f24", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x140004f27", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], r14d" + "operands": "dword ptr [rsp + 0x28], r14d", + "stack_offset": 0 }, { "address": "0x140004f2c", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140004f2f", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140004f34", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rbx" + "operands": "qword ptr [rsp + 0x20], rbx", + "stack_offset": 0 }, { "address": "0x140004f39", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1b0f1]" + "operands": "qword ptr [rip + 0x1b0f1]", + "stack_offset": 0 }, { "address": "0x140004f3f", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140004f41", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140004f43", "size": 2, "mnemonic": "jne", - "operands": "0x140004f7e" + "operands": "0x140004f7e", + "stack_offset": 0 }, { "address": "0x140004f45", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx - 0x10]" + "operands": "rcx, [rbx - 0x10]", + "stack_offset": 0 }, { "address": "0x140004f49", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0xdddd" + "operands": "dword ptr [rcx], 0xdddd", + "stack_offset": 0 }, { "address": "0x140004f4f", "size": 2, "mnemonic": "jne", - "operands": "0x140004f56" + "operands": "0x140004f56", + "stack_offset": 0 }, { "address": "0x140004f51", "size": 5, "mnemonic": "call", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 }, { "address": "0x140004f56", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140004f58", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp]" + "operands": "rcx, qword ptr [rbp]", + "stack_offset": 0 }, { "address": "0x140004f5c", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x140004f5f", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140004f64", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0x30]" + "operands": "rbx, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x140004f68", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x38]" + "operands": "rsi, qword ptr [rbp + 0x38]", + "stack_offset": 0 }, { "address": "0x140004f6c", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x40]" + "operands": "rdi, qword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x140004f70", "size": 4, "mnemonic": "mov", - "operands": "r13, qword ptr [rbp + 0x48]" + "operands": "r13, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x140004f74", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x10]" + "operands": "rsp, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140004f78", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140004f7a", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140004f7c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140004f7d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -19371,13 +20834,15 @@ "address": "0x140004efd", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rbx], 0xcccc" + "operands": "dword ptr [rbx], 0xcccc", + "stack_offset": 0 }, { "address": "0x140004f03", "size": 2, "mnemonic": "jmp", - "operands": "0x140004f18" + "operands": "0x140004f18", + "stack_offset": 0 } ], "successors": [ @@ -19394,19 +20859,22 @@ "address": "0x140004f18", "size": 4, "mnemonic": "add", - "operands": "rbx, 0x10" + "operands": "rbx, 0x10", + "stack_offset": 0 }, { "address": "0x140004f1c", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004f1f", "size": 2, "mnemonic": "je", - "operands": "0x140004f56" + "operands": "0x140004f56", + "stack_offset": 0 } ], "successors": [ @@ -19430,229 +20898,267 @@ "address": "0x140005d35", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140005d36", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140005d39", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140005d3d", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2b2fc]" + "operands": "rax, qword ptr [rip + 0x2b2fc]", + "stack_offset": 0 }, { "address": "0x140005d44", "size": 10, "mnemonic": "movabs", - "operands": "rbx, 0x2b992ddfa232" + "operands": "rbx, 0x2b992ddfa232", + "stack_offset": 0 }, { "address": "0x140005d4e", "size": 3, "mnemonic": "cmp", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140005d51", "size": 2, "mnemonic": "jne", - "operands": "0x140005dca" + "operands": "0x140005dca", + "stack_offset": 0 }, { "address": "0x140005d53", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140005d57", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x10], 0" + "operands": "qword ptr [rbp + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140005d5f", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a34b]" + "operands": "qword ptr [rip + 0x1a34b]", + "stack_offset": 0 }, { "address": "0x140005d65", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x10]" + "operands": "rax, qword ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140005d69", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x140005d6d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a335]" + "operands": "qword ptr [rip + 0x1a335]", + "stack_offset": 0 }, { "address": "0x140005d73", "size": 2, "mnemonic": "mov", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005d75", "size": 4, "mnemonic": "xor", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x140005d79", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a321]" + "operands": "qword ptr [rip + 0x1a321]", + "stack_offset": 0 }, { "address": "0x140005d7f", "size": 2, "mnemonic": "mov", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005d81", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x18]" + "operands": "rcx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x140005d85", "size": 4, "mnemonic": "xor", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x140005d89", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a309]" + "operands": "qword ptr [rip + 0x1a309]", + "stack_offset": 0 }, { "address": "0x140005d8f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x18]" + "operands": "eax, dword ptr [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x140005d92", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005d96", "size": 4, "mnemonic": "shl", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x140005d9a", "size": 4, "mnemonic": "xor", - "operands": "rax, qword ptr [rbp + 0x18]" + "operands": "rax, qword ptr [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x140005d9e", "size": 4, "mnemonic": "xor", - "operands": "rax, qword ptr [rbp - 0x10]" + "operands": "rax, qword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140005da2", "size": 3, "mnemonic": "xor", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140005da5", "size": 10, "mnemonic": "movabs", - "operands": "rcx, 0xffffffffffff" + "operands": "rcx, 0xffffffffffff", + "stack_offset": 0 }, { "address": "0x140005daf", "size": 3, "mnemonic": "and", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140005db2", "size": 10, "mnemonic": "movabs", - "operands": "rcx, 0x2b992ddfa233" + "operands": "rcx, 0x2b992ddfa233", + "stack_offset": 0 }, { "address": "0x140005dbc", "size": 3, "mnemonic": "cmp", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140005dbf", "size": 4, "mnemonic": "cmove", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140005dc3", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b276], rax" + "operands": "qword ptr [rip + 0x2b276], rax", + "stack_offset": 0 }, { "address": "0x140005dca", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140005dcf", "size": 3, "mnemonic": "not", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x140005dd2", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b2a7], rax" + "operands": "qword ptr [rip + 0x2b2a7], rax", + "stack_offset": 0 }, { "address": "0x140005dd9", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140005ddd", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140005dde", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -19674,49 +21180,57 @@ "address": "0x140005e49", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140005e4a", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x4c0]" + "operands": "rbp, [rsp - 0x4c0]", + "stack_offset": 0 }, { "address": "0x140005e52", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x5c0" + "operands": "rsp, 0x5c0", + "stack_offset": 0 }, { "address": "0x140005e59", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x140005e5b", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x17" + "operands": "ecx, 0x17", + "stack_offset": 0 }, { "address": "0x140005e60", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a22a]" + "operands": "qword ptr [rip + 0x1a22a]", + "stack_offset": 0 }, { "address": "0x140005e66", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005e68", "size": 2, "mnemonic": "je", - "operands": "0x140005e6e" + "operands": "0x140005e6e", + "stack_offset": 0 } ], "successors": [ @@ -19740,355 +21254,414 @@ "address": "0x140006908", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000690a", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x1f]" + "operands": "rbp, [rsp - 0x1f]", + "stack_offset": 0 }, { "address": "0x14000690f", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xe0" + "operands": "rsp, 0xe0", + "stack_offset": 0 }, { "address": "0x140006916", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2a723]" + "operands": "rax, qword ptr [rip + 0x2a723]", + "stack_offset": 0 }, { "address": "0x14000691d", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140006920", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0xf], rax" + "operands": "qword ptr [rbp + 0xf], rax", + "stack_offset": 0 }, { "address": "0x140006924", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rbp + 0x77]" + "operands": "r10, qword ptr [rbp + 0x77]", + "stack_offset": 0 }, { "address": "0x140006928", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1d521]" + "operands": "rax, [rip + 0x1d521]", + "stack_offset": 0 }, { "address": "0x14000692f", "size": 3, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax]" + "operands": "xmm0, xmmword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140006932", "size": 3, "mnemonic": "mov", - "operands": "r11, rcx" + "operands": "r11, rcx", + "stack_offset": 0 }, { "address": "0x140006935", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x30]" + "operands": "rcx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000693a", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x10]" + "operands": "xmm1, xmmword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x14000693e", "size": 3, "mnemonic": "movups", - "operands": "xmmword ptr [rcx], xmm0" + "operands": "xmmword ptr [rcx], xmm0", + "stack_offset": 0 }, { "address": "0x140006941", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x20]" + "operands": "xmm0, xmmword ptr [rax + 0x20]", + "stack_offset": 0 }, { "address": "0x140006945", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x10], xmm1" + "operands": "xmmword ptr [rcx + 0x10], xmm1", + "stack_offset": 0 }, { "address": "0x140006949", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x30]" + "operands": "xmm1, xmmword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x14000694d", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x20], xmm0" + "operands": "xmmword ptr [rcx + 0x20], xmm0", + "stack_offset": 0 }, { "address": "0x140006951", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x40]" + "operands": "xmm0, xmmword ptr [rax + 0x40]", + "stack_offset": 0 }, { "address": "0x140006955", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x30], xmm1" + "operands": "xmmword ptr [rcx + 0x30], xmm1", + "stack_offset": 0 }, { "address": "0x140006959", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x50]" + "operands": "xmm1, xmmword ptr [rax + 0x50]", + "stack_offset": 0 }, { "address": "0x14000695d", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x40], xmm0" + "operands": "xmmword ptr [rcx + 0x40], xmm0", + "stack_offset": 0 }, { "address": "0x140006961", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x60]" + "operands": "xmm0, xmmword ptr [rax + 0x60]", + "stack_offset": 0 }, { "address": "0x140006965", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x50], xmm1" + "operands": "xmmword ptr [rcx + 0x50], xmm1", + "stack_offset": 0 }, { "address": "0x140006969", "size": 7, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x80]" + "operands": "xmm1, xmmword ptr [rax + 0x80]", + "stack_offset": 0 }, { "address": "0x140006970", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x60], xmm0" + "operands": "xmmword ptr [rcx + 0x60], xmm0", + "stack_offset": 0 }, { "address": "0x140006974", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x70]" + "operands": "xmm0, xmmword ptr [rax + 0x70]", + "stack_offset": 0 }, { "address": "0x140006978", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x90]" + "operands": "rax, qword ptr [rax + 0x90]", + "stack_offset": 0 }, { "address": "0x14000697f", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x70], xmm0" + "operands": "xmmword ptr [rcx + 0x70], xmm0", + "stack_offset": 0 }, { "address": "0x140006983", "size": 7, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x80], xmm1" + "operands": "xmmword ptr [rcx + 0x80], xmm1", + "stack_offset": 0 }, { "address": "0x14000698a", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x90], rax" + "operands": "qword ptr [rcx + 0x90], rax", + "stack_offset": 0 }, { "address": "0x140006991", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x2db0]" + "operands": "rax, [rip + 0x2db0]", + "stack_offset": 0 }, { "address": "0x140006998", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [r11]" + "operands": "rcx, qword ptr [r11]", + "stack_offset": 0 }, { "address": "0x14000699b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x71], rax" + "operands": "qword ptr [rbp - 0x71], rax", + "stack_offset": 0 }, { "address": "0x14000699f", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x4f]" + "operands": "rax, qword ptr [rbp + 0x4f]", + "stack_offset": 0 }, { "address": "0x1400069a3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x61], rax" + "operands": "qword ptr [rbp - 0x61], rax", + "stack_offset": 0 }, { "address": "0x1400069a7", "size": 4, "mnemonic": "movsxd", - "operands": "rax, dword ptr [rbp + 0x5f]" + "operands": "rax, dword ptr [rbp + 0x5f]", + "stack_offset": 0 }, { "address": "0x1400069ab", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x59], rax" + "operands": "qword ptr [rbp - 0x59], rax", + "stack_offset": 0 }, { "address": "0x1400069af", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x57]" + "operands": "rax, qword ptr [rbp + 0x57]", + "stack_offset": 0 }, { "address": "0x1400069b3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x49], rax" + "operands": "qword ptr [rbp - 0x49], rax", + "stack_offset": 0 }, { "address": "0x1400069b7", "size": 4, "mnemonic": "movzx", - "operands": "eax, byte ptr [rbp + 0x7f]" + "operands": "eax, byte ptr [rbp + 0x7f]", + "stack_offset": 0 }, { "address": "0x1400069bb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x39], rax" + "operands": "qword ptr [rbp - 0x39], rax", + "stack_offset": 0 }, { "address": "0x1400069bf", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r10 + 0x40]" + "operands": "rax, qword ptr [r10 + 0x40]", + "stack_offset": 0 }, { "address": "0x1400069c3", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x1400069c8", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r10 + 0x28]" + "operands": "rax, qword ptr [r10 + 0x28]", + "stack_offset": 0 }, { "address": "0x1400069cc", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x69], r9" + "operands": "qword ptr [rbp - 0x69], r9", + "stack_offset": 0 }, { "address": "0x1400069d0", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x1400069d3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x51], r8" + "operands": "qword ptr [rbp - 0x51], r8", + "stack_offset": 0 }, { "address": "0x1400069d7", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x30]" + "operands": "r8, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400069dc", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x41], rdx" + "operands": "qword ptr [rbp - 0x41], rdx", + "stack_offset": 0 }, { "address": "0x1400069e0", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [r10]" + "operands": "rdx, qword ptr [r10]", + "stack_offset": 0 }, { "address": "0x1400069e3", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x1400069e8", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x31], 0x19930520" + "operands": "qword ptr [rbp - 0x31], 0x19930520", + "stack_offset": 0 }, { "address": "0x1400069f0", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x196fa]" + "operands": "qword ptr [rip + 0x196fa]", + "stack_offset": 0 }, { "address": "0x1400069f6", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0xf]" + "operands": "rcx, qword ptr [rbp + 0xf]", + "stack_offset": 0 }, { "address": "0x1400069fa", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x1400069fd", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140006a02", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xe0" + "operands": "rsp, 0xe0", + "stack_offset": 0 }, { "address": "0x140006a09", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140006a0a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -20110,397 +21683,463 @@ "address": "0x140006a0c", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140006a0e", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x1f]" + "operands": "rbp, [rsp - 0x1f]", + "stack_offset": 0 }, { "address": "0x140006a13", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xe0" + "operands": "rsp, 0xe0", + "stack_offset": 0 }, { "address": "0x140006a1a", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2a61f]" + "operands": "rax, qword ptr [rip + 0x2a61f]", + "stack_offset": 0 }, { "address": "0x140006a21", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140006a24", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0xf], rax" + "operands": "qword ptr [rbp + 0xf], rax", + "stack_offset": 0 }, { "address": "0x140006a28", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rbp + 0x77]" + "operands": "r10, qword ptr [rbp + 0x77]", + "stack_offset": 0 }, { "address": "0x140006a2c", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1d37d]" + "operands": "rax, [rip + 0x1d37d]", + "stack_offset": 0 }, { "address": "0x140006a33", "size": 3, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax]" + "operands": "xmm0, xmmword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140006a36", "size": 3, "mnemonic": "mov", - "operands": "r11, rcx" + "operands": "r11, rcx", + "stack_offset": 0 }, { "address": "0x140006a39", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x30]" + "operands": "rcx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140006a3e", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x10]" + "operands": "xmm1, xmmword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140006a42", "size": 3, "mnemonic": "movups", - "operands": "xmmword ptr [rcx], xmm0" + "operands": "xmmword ptr [rcx], xmm0", + "stack_offset": 0 }, { "address": "0x140006a45", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x20]" + "operands": "xmm0, xmmword ptr [rax + 0x20]", + "stack_offset": 0 }, { "address": "0x140006a49", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x10], xmm1" + "operands": "xmmword ptr [rcx + 0x10], xmm1", + "stack_offset": 0 }, { "address": "0x140006a4d", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x30]" + "operands": "xmm1, xmmword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x140006a51", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x20], xmm0" + "operands": "xmmword ptr [rcx + 0x20], xmm0", + "stack_offset": 0 }, { "address": "0x140006a55", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x40]" + "operands": "xmm0, xmmword ptr [rax + 0x40]", + "stack_offset": 0 }, { "address": "0x140006a59", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x30], xmm1" + "operands": "xmmword ptr [rcx + 0x30], xmm1", + "stack_offset": 0 }, { "address": "0x140006a5d", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x50]" + "operands": "xmm1, xmmword ptr [rax + 0x50]", + "stack_offset": 0 }, { "address": "0x140006a61", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x40], xmm0" + "operands": "xmmword ptr [rcx + 0x40], xmm0", + "stack_offset": 0 }, { "address": "0x140006a65", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x60]" + "operands": "xmm0, xmmword ptr [rax + 0x60]", + "stack_offset": 0 }, { "address": "0x140006a69", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x50], xmm1" + "operands": "xmmword ptr [rcx + 0x50], xmm1", + "stack_offset": 0 }, { "address": "0x140006a6d", "size": 7, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x80]" + "operands": "xmm1, xmmword ptr [rax + 0x80]", + "stack_offset": 0 }, { "address": "0x140006a74", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x60], xmm0" + "operands": "xmmword ptr [rcx + 0x60], xmm0", + "stack_offset": 0 }, { "address": "0x140006a78", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x70]" + "operands": "xmm0, xmmword ptr [rax + 0x70]", + "stack_offset": 0 }, { "address": "0x140006a7c", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x90]" + "operands": "rax, qword ptr [rax + 0x90]", + "stack_offset": 0 }, { "address": "0x140006a83", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x70], xmm0" + "operands": "xmmword ptr [rcx + 0x70], xmm0", + "stack_offset": 0 }, { "address": "0x140006a87", "size": 7, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x80], xmm1" + "operands": "xmmword ptr [rcx + 0x80], xmm1", + "stack_offset": 0 }, { "address": "0x140006a8e", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x90], rax" + "operands": "qword ptr [rcx + 0x90], rax", + "stack_offset": 0 }, { "address": "0x140006a95", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x2e98]" + "operands": "rax, [rip + 0x2e98]", + "stack_offset": 0 }, { "address": "0x140006a9c", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x71], rax" + "operands": "qword ptr [rbp - 0x71], rax", + "stack_offset": 0 }, { "address": "0x140006aa0", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x4f]" + "operands": "rax, qword ptr [rbp + 0x4f]", + "stack_offset": 0 }, { "address": "0x140006aa4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x61], rax" + "operands": "qword ptr [rbp - 0x61], rax", + "stack_offset": 0 }, { "address": "0x140006aa8", "size": 4, "mnemonic": "movsxd", - "operands": "rax, dword ptr [rbp + 0x5f]" + "operands": "rax, dword ptr [rbp + 0x5f]", + "stack_offset": 0 }, { "address": "0x140006aac", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x51], r8" + "operands": "qword ptr [rbp - 0x51], r8", + "stack_offset": 0 }, { "address": "0x140006ab0", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rbp + 0x6f]" + "operands": "r8, qword ptr [rbp + 0x6f]", + "stack_offset": 0 }, { "address": "0x140006ab4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x59], rax" + "operands": "qword ptr [rbp - 0x59], rax", + "stack_offset": 0 }, { "address": "0x140006ab8", "size": 4, "mnemonic": "movzx", - "operands": "eax, byte ptr [rbp + 0x7f]" + "operands": "eax, byte ptr [rbp + 0x7f]", + "stack_offset": 0 }, { "address": "0x140006abc", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x39], rax" + "operands": "qword ptr [rbp - 0x39], rax", + "stack_offset": 0 }, { "address": "0x140006ac0", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r8 + 0x18]" + "operands": "rcx, qword ptr [r8 + 0x18]", + "stack_offset": 0 }, { "address": "0x140006ac4", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [r8 + 0x20]" + "operands": "r8, qword ptr [r8 + 0x20]", + "stack_offset": 0 }, { "address": "0x140006ac8", "size": 4, "mnemonic": "add", - "operands": "rcx, qword ptr [r10 + 8]" + "operands": "rcx, qword ptr [r10 + 8]", + "stack_offset": 0 }, { "address": "0x140006acc", "size": 4, "mnemonic": "add", - "operands": "r8, qword ptr [r10 + 8]" + "operands": "r8, qword ptr [r10 + 8]", + "stack_offset": 0 }, { "address": "0x140006ad0", "size": 4, "mnemonic": "movsxd", - "operands": "rax, dword ptr [rbp + 0x67]" + "operands": "rax, dword ptr [rbp + 0x67]", + "stack_offset": 0 }, { "address": "0x140006ad4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x19], rax" + "operands": "qword ptr [rbp - 0x19], rax", + "stack_offset": 0 }, { "address": "0x140006ad8", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r10 + 0x40]" + "operands": "rax, qword ptr [r10 + 0x40]", + "stack_offset": 0 }, { "address": "0x140006adc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140006ae1", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r10 + 0x28]" + "operands": "rax, qword ptr [r10 + 0x28]", + "stack_offset": 0 }, { "address": "0x140006ae5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x69], r9" + "operands": "qword ptr [rbp - 0x69], r9", + "stack_offset": 0 }, { "address": "0x140006ae9", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140006aec", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x49], rcx" + "operands": "qword ptr [rbp - 0x49], rcx", + "stack_offset": 0 }, { "address": "0x140006af0", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [r11]" + "operands": "rcx, qword ptr [r11]", + "stack_offset": 0 }, { "address": "0x140006af3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x41], rdx" + "operands": "qword ptr [rbp - 0x41], rdx", + "stack_offset": 0 }, { "address": "0x140006af7", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [r10]" + "operands": "rdx, qword ptr [r10]", + "stack_offset": 0 }, { "address": "0x140006afa", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x29], r8" + "operands": "qword ptr [rbp - 0x29], r8", + "stack_offset": 0 }, { "address": "0x140006afe", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x30]" + "operands": "r8, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140006b03", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140006b08", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x31], 0x19930520" + "operands": "qword ptr [rbp - 0x31], 0x19930520", + "stack_offset": 0 }, { "address": "0x140006b10", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x195da]" + "operands": "qword ptr [rip + 0x195da]", + "stack_offset": 0 }, { "address": "0x140006b16", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0xf]" + "operands": "rcx, qword ptr [rbp + 0xf]", + "stack_offset": 0 }, { "address": "0x140006b1a", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140006b1d", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140006b22", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xe0" + "operands": "rsp, 0xe0", + "stack_offset": 0 }, { "address": "0x140006b29", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140006b2a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -20522,127 +22161,148 @@ "address": "0x140007cbb", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140007cbc", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140007cbd", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007cbe", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140007cc0", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007cc2", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007cc4", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007cc6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140007cca", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0xc0]" + "operands": "r8, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140007cd2", "size": 3, "mnemonic": "mov", - "operands": "r12, r9" + "operands": "r12, r9", + "stack_offset": 0 }, { "address": "0x140007cd5", "size": 3, "mnemonic": "mov", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x140007cd8", "size": 4, "mnemonic": "lea", - "operands": "r9, [rax + 0x10]" + "operands": "r9, [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140007cdc", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140007cdf", "size": 3, "mnemonic": "mov", - "operands": "rdx, r12" + "operands": "rdx, r12", + "stack_offset": 0 }, { "address": "0x140007ce2", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140007ce5", "size": 5, "mnemonic": "call", - "operands": "0x140006544" + "operands": "0x140006544", + "stack_offset": 0 }, { "address": "0x140007cea", "size": 8, "mnemonic": "mov", - "operands": "r9, qword ptr [rsp + 0xd0]" + "operands": "r9, qword ptr [rsp + 0xd0]", + "stack_offset": 0 }, { "address": "0x140007cf2", "size": 3, "mnemonic": "mov", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x140007cf5", "size": 8, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0xc8]" + "operands": "rbp, qword ptr [rsp + 0xc8]", + "stack_offset": 0 }, { "address": "0x140007cfd", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x140007d00", "size": 2, "mnemonic": "je", - "operands": "0x140007d10" + "operands": "0x140007d10", + "stack_offset": 0 } ], "successors": [ @@ -20660,181 +22320,211 @@ "address": "0x140007d10", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xd8]" + "operands": "rcx, qword ptr [rsp + 0xd8]", + "stack_offset": 0 }, { "address": "0x140007d18", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rbp + 0xc]" + "operands": "rbx, dword ptr [rbp + 0xc]", + "stack_offset": 0 }, { "address": "0x140007d1c", "size": 3, "mnemonic": "mov", - "operands": "edi, dword ptr [rcx + 8]" + "operands": "edi, dword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x140007d1f", "size": 2, "mnemonic": "mov", - "operands": "esi, dword ptr [rcx]" + "operands": "esi, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140007d21", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140007d26", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rsp + 0xf8]" + "operands": "cl, byte ptr [rsp + 0xf8]", + "stack_offset": 0 }, { "address": "0x140007d2d", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140007d30", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0xb0]" + "operands": "r8, qword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140007d38", "size": 3, "mnemonic": "mov", - "operands": "r9, r15" + "operands": "r9, r15", + "stack_offset": 0 }, { "address": "0x140007d3b", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], cl" + "operands": "byte ptr [rsp + 0x50], cl", + "stack_offset": 0 }, { "address": "0x140007d3f", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140007d42", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xc0]" + "operands": "rcx, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140007d4a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], r12" + "operands": "qword ptr [rsp + 0x48], r12", + "stack_offset": 0 }, { "address": "0x140007d4f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rbp" + "operands": "qword ptr [rsp + 0x40], rbp", + "stack_offset": 0 }, { "address": "0x140007d54", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], edi" + "operands": "dword ptr [rsp + 0x38], edi", + "stack_offset": 0 }, { "address": "0x140007d58", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], esi" + "operands": "dword ptr [rsp + 0x30], esi", + "stack_offset": 0 }, { "address": "0x140007d5c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rcx" + "operands": "qword ptr [rsp + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x140007d61", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140007d64", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140007d69", "size": 5, "mnemonic": "call", - "operands": "0x140006908" + "operands": "0x140006908", + "stack_offset": 0 }, { "address": "0x140007d6e", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0xa0]" + "operands": "rbx, qword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x140007d76", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140007d7a", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007d7c", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007d7e", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007d80", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140007d82", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007d83", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140007d84", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140007d85", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -20850,205 +22540,239 @@ "address": "0x140007d02", "size": 3, "mnemonic": "mov", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x140007d05", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140007d08", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140007d0b", "size": 5, "mnemonic": "call", - "operands": "0x140007b2c" + "operands": "0x140007b2c", + "stack_offset": 0 }, { "address": "0x140007d10", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xd8]" + "operands": "rcx, qword ptr [rsp + 0xd8]", + "stack_offset": 0 }, { "address": "0x140007d18", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rbp + 0xc]" + "operands": "rbx, dword ptr [rbp + 0xc]", + "stack_offset": 0 }, { "address": "0x140007d1c", "size": 3, "mnemonic": "mov", - "operands": "edi, dword ptr [rcx + 8]" + "operands": "edi, dword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x140007d1f", "size": 2, "mnemonic": "mov", - "operands": "esi, dword ptr [rcx]" + "operands": "esi, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140007d21", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140007d26", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rsp + 0xf8]" + "operands": "cl, byte ptr [rsp + 0xf8]", + "stack_offset": 0 }, { "address": "0x140007d2d", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140007d30", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0xb0]" + "operands": "r8, qword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140007d38", "size": 3, "mnemonic": "mov", - "operands": "r9, r15" + "operands": "r9, r15", + "stack_offset": 0 }, { "address": "0x140007d3b", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], cl" + "operands": "byte ptr [rsp + 0x50], cl", + "stack_offset": 0 }, { "address": "0x140007d3f", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140007d42", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xc0]" + "operands": "rcx, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140007d4a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], r12" + "operands": "qword ptr [rsp + 0x48], r12", + "stack_offset": 0 }, { "address": "0x140007d4f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rbp" + "operands": "qword ptr [rsp + 0x40], rbp", + "stack_offset": 0 }, { "address": "0x140007d54", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], edi" + "operands": "dword ptr [rsp + 0x38], edi", + "stack_offset": 0 }, { "address": "0x140007d58", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], esi" + "operands": "dword ptr [rsp + 0x30], esi", + "stack_offset": 0 }, { "address": "0x140007d5c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rcx" + "operands": "qword ptr [rsp + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x140007d61", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140007d64", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140007d69", "size": 5, "mnemonic": "call", - "operands": "0x140006908" + "operands": "0x140006908", + "stack_offset": 0 }, { "address": "0x140007d6e", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0xa0]" + "operands": "rbx, qword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x140007d76", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140007d7a", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007d7c", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007d7e", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007d80", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140007d82", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007d83", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140007d84", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140007d85", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -21070,127 +22794,148 @@ "address": "0x140007d93", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140007d94", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140007d95", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007d96", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140007d98", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007d9a", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007d9c", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007d9e", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140007da2", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0xc0]" + "operands": "r8, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140007daa", "size": 3, "mnemonic": "mov", - "operands": "r12, r9" + "operands": "r12, r9", + "stack_offset": 0 }, { "address": "0x140007dad", "size": 3, "mnemonic": "mov", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x140007db0", "size": 4, "mnemonic": "lea", - "operands": "r9, [rax + 0x10]" + "operands": "r9, [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140007db4", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140007db7", "size": 3, "mnemonic": "mov", - "operands": "rdx, r12" + "operands": "rdx, r12", + "stack_offset": 0 }, { "address": "0x140007dba", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140007dbd", "size": 5, "mnemonic": "call", - "operands": "0x14000662c" + "operands": "0x14000662c", + "stack_offset": 0 }, { "address": "0x140007dc2", "size": 8, "mnemonic": "mov", - "operands": "r9, qword ptr [rsp + 0xd0]" + "operands": "r9, qword ptr [rsp + 0xd0]", + "stack_offset": 0 }, { "address": "0x140007dca", "size": 3, "mnemonic": "mov", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x140007dcd", "size": 8, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0xc8]" + "operands": "rbp, qword ptr [rsp + 0xc8]", + "stack_offset": 0 }, { "address": "0x140007dd5", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x140007dd8", "size": 2, "mnemonic": "je", - "operands": "0x140007de8" + "operands": "0x140007de8", + "stack_offset": 0 } ], "successors": [ @@ -21208,181 +22953,211 @@ "address": "0x140007de8", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xd8]" + "operands": "rcx, qword ptr [rsp + 0xd8]", + "stack_offset": 0 }, { "address": "0x140007df0", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rbp + 0x10]" + "operands": "rbx, dword ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140007df4", "size": 3, "mnemonic": "mov", - "operands": "edi, dword ptr [rcx + 8]" + "operands": "edi, dword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x140007df7", "size": 2, "mnemonic": "mov", - "operands": "esi, dword ptr [rcx]" + "operands": "esi, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140007df9", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140007dfe", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rsp + 0xf8]" + "operands": "cl, byte ptr [rsp + 0xf8]", + "stack_offset": 0 }, { "address": "0x140007e05", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140007e08", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0xb0]" + "operands": "r8, qword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140007e10", "size": 3, "mnemonic": "mov", - "operands": "r9, r15" + "operands": "r9, r15", + "stack_offset": 0 }, { "address": "0x140007e13", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], cl" + "operands": "byte ptr [rsp + 0x50], cl", + "stack_offset": 0 }, { "address": "0x140007e17", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140007e1a", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xc0]" + "operands": "rcx, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140007e22", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], r12" + "operands": "qword ptr [rsp + 0x48], r12", + "stack_offset": 0 }, { "address": "0x140007e27", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rbp" + "operands": "qword ptr [rsp + 0x40], rbp", + "stack_offset": 0 }, { "address": "0x140007e2c", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], edi" + "operands": "dword ptr [rsp + 0x38], edi", + "stack_offset": 0 }, { "address": "0x140007e30", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], esi" + "operands": "dword ptr [rsp + 0x30], esi", + "stack_offset": 0 }, { "address": "0x140007e34", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rcx" + "operands": "qword ptr [rsp + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x140007e39", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140007e3c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140007e41", "size": 5, "mnemonic": "call", - "operands": "0x140006a0c" + "operands": "0x140006a0c", + "stack_offset": 0 }, { "address": "0x140007e46", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0xa0]" + "operands": "rbx, qword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x140007e4e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140007e52", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007e54", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007e56", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007e58", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140007e5a", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007e5b", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140007e5c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140007e5d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -21398,205 +23173,239 @@ "address": "0x140007dda", "size": 3, "mnemonic": "mov", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x140007ddd", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140007de0", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140007de3", "size": 5, "mnemonic": "call", - "operands": "0x140007bec" + "operands": "0x140007bec", + "stack_offset": 0 }, { "address": "0x140007de8", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xd8]" + "operands": "rcx, qword ptr [rsp + 0xd8]", + "stack_offset": 0 }, { "address": "0x140007df0", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rbp + 0x10]" + "operands": "rbx, dword ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140007df4", "size": 3, "mnemonic": "mov", - "operands": "edi, dword ptr [rcx + 8]" + "operands": "edi, dword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x140007df7", "size": 2, "mnemonic": "mov", - "operands": "esi, dword ptr [rcx]" + "operands": "esi, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140007df9", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140007dfe", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rsp + 0xf8]" + "operands": "cl, byte ptr [rsp + 0xf8]", + "stack_offset": 0 }, { "address": "0x140007e05", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140007e08", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0xb0]" + "operands": "r8, qword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140007e10", "size": 3, "mnemonic": "mov", - "operands": "r9, r15" + "operands": "r9, r15", + "stack_offset": 0 }, { "address": "0x140007e13", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], cl" + "operands": "byte ptr [rsp + 0x50], cl", + "stack_offset": 0 }, { "address": "0x140007e17", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140007e1a", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xc0]" + "operands": "rcx, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140007e22", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], r12" + "operands": "qword ptr [rsp + 0x48], r12", + "stack_offset": 0 }, { "address": "0x140007e27", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rbp" + "operands": "qword ptr [rsp + 0x40], rbp", + "stack_offset": 0 }, { "address": "0x140007e2c", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], edi" + "operands": "dword ptr [rsp + 0x38], edi", + "stack_offset": 0 }, { "address": "0x140007e30", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], esi" + "operands": "dword ptr [rsp + 0x30], esi", + "stack_offset": 0 }, { "address": "0x140007e34", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rcx" + "operands": "qword ptr [rsp + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x140007e39", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140007e3c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140007e41", "size": 5, "mnemonic": "call", - "operands": "0x140006a0c" + "operands": "0x140006a0c", + "stack_offset": 0 }, { "address": "0x140007e46", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0xa0]" + "operands": "rbx, qword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x140007e4e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140007e52", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007e54", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007e56", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007e58", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140007e5a", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007e5b", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140007e5c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140007e5d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -21618,187 +23427,218 @@ "address": "0x140007e60", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140007e62", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140007e63", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140007e64", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007e65", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140007e67", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007e69", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007e6b", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007e6d", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x28]" + "operands": "rbp, [rsp - 0x28]", + "stack_offset": 0 }, { "address": "0x140007e72", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x128" + "operands": "rsp, 0x128", + "stack_offset": 0 }, { "address": "0x140007e79", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x291c0]" + "operands": "rax, qword ptr [rip + 0x291c0]", + "stack_offset": 0 }, { "address": "0x140007e80", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140007e83", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x10], rax" + "operands": "qword ptr [rbp + 0x10], rax", + "stack_offset": 0 }, { "address": "0x140007e87", "size": 7, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x90]" + "operands": "rsi, qword ptr [rbp + 0x90]", + "stack_offset": 0 }, { "address": "0x140007e8e", "size": 3, "mnemonic": "mov", - "operands": "r12, rdx" + "operands": "r12, rdx", + "stack_offset": 0 }, { "address": "0x140007e91", "size": 7, "mnemonic": "mov", - "operands": "r13, qword ptr [rbp + 0xa8]" + "operands": "r13, qword ptr [rbp + 0xa8]", + "stack_offset": 0 }, { "address": "0x140007e98", "size": 3, "mnemonic": "mov", - "operands": "r15, r8" + "operands": "r15, r8", + "stack_offset": 0 }, { "address": "0x140007e9b", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], r8" + "operands": "qword ptr [rsp + 0x68], r8", + "stack_offset": 0 }, { "address": "0x140007ea0", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140007ea3", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x78], rdx" + "operands": "qword ptr [rsp + 0x78], rdx", + "stack_offset": 0 }, { "address": "0x140007ea8", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140007eab", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140007eae", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x78], r13" + "operands": "qword ptr [rbp - 0x78], r13", + "stack_offset": 0 }, { "address": "0x140007eb2", "size": 3, "mnemonic": "mov", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140007eb5", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x60], 0" + "operands": "byte ptr [rsp + 0x60], 0", + "stack_offset": 0 }, { "address": "0x140007eba", "size": 3, "mnemonic": "mov", - "operands": "r14, r9" + "operands": "r14, r9", + "stack_offset": 0 }, { "address": "0x140007ebd", "size": 5, "mnemonic": "call", - "operands": "0x14000a25c" + "operands": "0x14000a25c", + "stack_offset": 0 }, { "address": "0x140007ec2", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x64], eax" + "operands": "dword ptr [rsp + 0x64], eax", + "stack_offset": 0 }, { "address": "0x140007ec6", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x140007ec8", "size": 3, "mnemonic": "cmp", - "operands": "eax, -1" + "operands": "eax, -1", + "stack_offset": 0 }, { "address": "0x140007ecb", "size": 6, "mnemonic": "jl", - "operands": "0x140008349" + "operands": "0x140008349", + "stack_offset": 0 } ], "successors": [ @@ -21816,13 +23656,15 @@ "address": "0x140008349", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14000834e", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -21838,55 +23680,64 @@ "address": "0x140007ed1", "size": 3, "mnemonic": "cmp", - "operands": "eax, dword ptr [rsi + 4]" + "operands": "eax, dword ptr [rsi + 4]", + "stack_offset": 0 }, { "address": "0x140007ed4", "size": 6, "mnemonic": "jge", - "operands": "0x140008349" + "operands": "0x140008349", + "stack_offset": 0 }, { "address": "0x140007eda", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe06d7363" + "operands": "dword ptr [rdi], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x140007ee0", "size": 6, "mnemonic": "jne", - "operands": "0x140007fc8" + "operands": "0x140007fc8", + "stack_offset": 0 }, { "address": "0x140007ee6", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0x18], 4" + "operands": "dword ptr [rdi + 0x18], 4", + "stack_offset": 0 }, { "address": "0x140007eea", "size": 6, "mnemonic": "jne", - "operands": "0x140007fc8" + "operands": "0x140007fc8", + "stack_offset": 0 }, { "address": "0x140007ef0", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0x20]" + "operands": "eax, dword ptr [rdi + 0x20]", + "stack_offset": 0 }, { "address": "0x140007ef3", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930520" + "operands": "eax, 0x19930520", + "stack_offset": 0 }, { "address": "0x140007ef8", "size": 2, "mnemonic": "je", - "operands": "0x140007f08" + "operands": "0x140007f08", + "stack_offset": 0 } ], "successors": [ @@ -21904,31 +23755,36 @@ "address": "0x140007f08", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rdi + 0x30], 0" + "operands": "qword ptr [rdi + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140007f0d", "size": 6, "mnemonic": "jne", - "operands": "0x140007fc8" + "operands": "0x140007fc8", + "stack_offset": 0 }, { "address": "0x140007f13", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140007f18", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x20], 0" + "operands": "qword ptr [rax + 0x20], 0", + "stack_offset": 0 }, { "address": "0x140007f1d", "size": 6, "mnemonic": "je", - "operands": "0x1400082e2" + "operands": "0x1400082e2", + "stack_offset": 0 } ], "successors": [ @@ -21946,19 +23802,22 @@ "address": "0x140007efa", "size": 5, "mnemonic": "add", - "operands": "eax, 0xe66cfadf" + "operands": "eax, 0xe66cfadf", + "stack_offset": 0 }, { "address": "0x140007eff", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140007f02", "size": 6, "mnemonic": "ja", - "operands": "0x140007fc8" + "operands": "0x140007fc8", + "stack_offset": 0 } ], "successors": [ @@ -21976,79 +23835,92 @@ "address": "0x1400082e2", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x10]" + "operands": "rcx, qword ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x1400082e6", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x1400082e9", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x1400082ee", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x128" + "operands": "rsp, 0x128", + "stack_offset": 0 }, { "address": "0x1400082f5", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400082f7", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400082f9", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400082fb", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400082fd", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400082fe", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400082ff", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140008300", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008301", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -22064,61 +23936,71 @@ "address": "0x140007f23", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140007f28", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rax + 0x20]" + "operands": "rdi, qword ptr [rax + 0x20]", + "stack_offset": 0 }, { "address": "0x140007f2c", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140007f31", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + 0x38]" + "operands": "rcx, qword ptr [rdi + 0x38]", + "stack_offset": 0 }, { "address": "0x140007f35", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x60], 1" + "operands": "byte ptr [rsp + 0x60], 1", + "stack_offset": 0 }, { "address": "0x140007f3a", "size": 4, "mnemonic": "mov", - "operands": "r15, qword ptr [rax + 0x28]" + "operands": "r15, qword ptr [rax + 0x28]", + "stack_offset": 0 }, { "address": "0x140007f3e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], r15" + "operands": "qword ptr [rsp + 0x68], r15", + "stack_offset": 0 }, { "address": "0x140007f43", "size": 5, "mnemonic": "call", - "operands": "0x140006de8" + "operands": "0x140006de8", + "stack_offset": 0 }, { "address": "0x140007f48", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x140007f4b", "size": 6, "mnemonic": "je", - "operands": "0x140008349" + "operands": "0x140008349", + "stack_offset": 0 } ], "successors": [ @@ -22136,61 +24018,71 @@ "address": "0x140007fc8", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r14 + 8]" + "operands": "rax, qword ptr [r14 + 8]", + "stack_offset": 0 }, { "address": "0x140007fcc", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x40], rax" + "operands": "qword ptr [rbp - 0x40], rax", + "stack_offset": 0 }, { "address": "0x140007fd0", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x48], rsi" + "operands": "qword ptr [rbp - 0x48], rsi", + "stack_offset": 0 }, { "address": "0x140007fd4", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe06d7363" + "operands": "dword ptr [rdi], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x140007fda", "size": 6, "mnemonic": "jne", - "operands": "0x14000829a" + "operands": "0x14000829a", + "stack_offset": 0 }, { "address": "0x140007fe0", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0x18], 4" + "operands": "dword ptr [rdi + 0x18], 4", + "stack_offset": 0 }, { "address": "0x140007fe4", "size": 6, "mnemonic": "jne", - "operands": "0x14000829a" + "operands": "0x14000829a", + "stack_offset": 0 }, { "address": "0x140007fea", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0x20]" + "operands": "eax, dword ptr [rdi + 0x20]", + "stack_offset": 0 }, { "address": "0x140007fed", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930520" + "operands": "eax, 0x19930520", + "stack_offset": 0 }, { "address": "0x140007ff2", "size": 2, "mnemonic": "je", - "operands": "0x140008002" + "operands": "0x140008002", + "stack_offset": 0 } ], "successors": [ @@ -22208,43 +24100,50 @@ "address": "0x140007f51", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe06d7363" + "operands": "dword ptr [rdi], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x140007f57", "size": 2, "mnemonic": "jne", - "operands": "0x140007f7e" + "operands": "0x140007f7e", + "stack_offset": 0 }, { "address": "0x140007f59", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0x18], 4" + "operands": "dword ptr [rdi + 0x18], 4", + "stack_offset": 0 }, { "address": "0x140007f5d", "size": 2, "mnemonic": "jne", - "operands": "0x140007f7e" + "operands": "0x140007f7e", + "stack_offset": 0 }, { "address": "0x140007f5f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0x20]" + "operands": "eax, dword ptr [rdi + 0x20]", + "stack_offset": 0 }, { "address": "0x140007f62", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930520" + "operands": "eax, 0x19930520", + "stack_offset": 0 }, { "address": "0x140007f67", "size": 2, "mnemonic": "je", - "operands": "0x140007f73" + "operands": "0x140007f73", + "stack_offset": 0 } ], "successors": [ @@ -22262,205 +24161,239 @@ "address": "0x140008002", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rsi + 0xc], 0" + "operands": "dword ptr [rsi + 0xc], 0", + "stack_offset": 0 }, { "address": "0x140008006", "size": 6, "mnemonic": "jbe", - "operands": "0x1400081d2" + "operands": "0x1400081d2", + "stack_offset": 0 }, { "address": "0x14000800c", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0xa0]" + "operands": "eax, dword ptr [rbp + 0xa0]", + "stack_offset": 0 }, { "address": "0x140008012", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x48]" + "operands": "rdx, [rbp - 0x48]", + "stack_offset": 0 }, { "address": "0x140008016", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x14000801a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x28]" + "operands": "rcx, [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x14000801e", "size": 3, "mnemonic": "mov", - "operands": "r9, r14" + "operands": "r9, r14", + "stack_offset": 0 }, { "address": "0x140008021", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x140008026", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebx" + "operands": "r8d, ebx", + "stack_offset": 0 }, { "address": "0x140008029", "size": 5, "mnemonic": "call", - "operands": "0x140006650" + "operands": "0x140006650", + "stack_offset": 0 }, { "address": "0x14000802e", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rbp - 0x28]" + "operands": "xmm1, xmmword ptr [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x140008032", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x140008036", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x14000803b", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x14000803f", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x38], xmm1" + "operands": "xmmword ptr [rbp - 0x38], xmm1", + "stack_offset": 0 }, { "address": "0x140008044", "size": 3, "mnemonic": "cmp", - "operands": "eax, dword ptr [rbp - 0x10]" + "operands": "eax, dword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140008047", "size": 6, "mnemonic": "jae", - "operands": "0x1400081d2" + "operands": "0x1400081d2", + "stack_offset": 0 }, { "address": "0x14000804d", "size": 4, "mnemonic": "mov", - "operands": "r15d, dword ptr [rbp - 0x30]" + "operands": "r15d, dword ptr [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x140008051", "size": 5, "mnemonic": "movq", - "operands": "r9, xmm1" + "operands": "r9, xmm1", + "stack_offset": 0 }, { "address": "0x140008056", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x80], r9" + "operands": "qword ptr [rbp - 0x80], r9", + "stack_offset": 0 }, { "address": "0x14000805a", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x38]" + "operands": "rax, qword ptr [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x14000805e", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rax]" + "operands": "rax, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140008061", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rax + 0x10]" + "operands": "rdx, dword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140008065", "size": 3, "mnemonic": "mov", - "operands": "eax, r15d" + "operands": "eax, r15d", + "stack_offset": 0 }, { "address": "0x140008068", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rax*4]" + "operands": "rcx, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x14000806c", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r9 + 8]" + "operands": "rax, qword ptr [r9 + 8]", + "stack_offset": 0 }, { "address": "0x140008070", "size": 4, "mnemonic": "lea", - "operands": "r8, [rdx + rcx*4]" + "operands": "r8, [rdx + rcx*4]", + "stack_offset": 0 }, { "address": "0x140008074", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r8 + rax]" + "operands": "xmm0, xmmword ptr [r8 + rax]", + "stack_offset": 0 }, { "address": "0x140008079", "size": 5, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [r8 + rax + 0x10]" + "operands": "rcx, dword ptr [r8 + rax + 0x10]", + "stack_offset": 0 }, { "address": "0x14000807e", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x50], ecx" + "operands": "dword ptr [rbp - 0x50], ecx", + "stack_offset": 0 }, { "address": "0x140008081", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x140008085", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp - 0x60], xmm0" + "operands": "xmmword ptr [rbp - 0x60], xmm0", + "stack_offset": 0 }, { "address": "0x140008089", "size": 2, "mnemonic": "cmp", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x14000808b", "size": 6, "mnemonic": "jg", - "operands": "0x1400081c5" + "operands": "0x1400081c5", + "stack_offset": 0 } ], "successors": [ @@ -22478,19 +24411,22 @@ "address": "0x140007ff4", "size": 5, "mnemonic": "add", - "operands": "eax, 0xe66cfadf" + "operands": "eax, 0xe66cfadf", + "stack_offset": 0 }, { "address": "0x140007ff9", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140007ffc", "size": 6, "mnemonic": "ja", - "operands": "0x14000829a" + "operands": "0x14000829a", + "stack_offset": 0 } ], "successors": [ @@ -22508,13 +24444,15 @@ "address": "0x140007f73", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rdi + 0x30], 0" + "operands": "qword ptr [rdi + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140007f78", "size": 6, "mnemonic": "je", - "operands": "0x140008349" + "operands": "0x140008349", + "stack_offset": 0 } ], "successors": [ @@ -22532,19 +24470,22 @@ "address": "0x140007f69", "size": 5, "mnemonic": "add", - "operands": "eax, 0xe66cfadf" + "operands": "eax, 0xe66cfadf", + "stack_offset": 0 }, { "address": "0x140007f6e", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140007f71", "size": 2, "mnemonic": "ja", - "operands": "0x140007f7e" + "operands": "0x140007f7e", + "stack_offset": 0 } ], "successors": [ @@ -22562,19 +24503,22 @@ "address": "0x1400081c5", "size": 3, "mnemonic": "inc", - "operands": "r15d" + "operands": "r15d", + "stack_offset": 0 }, { "address": "0x1400081c8", "size": 4, "mnemonic": "cmp", - "operands": "r15d, dword ptr [rbp - 0x10]" + "operands": "r15d, dword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x1400081cc", "size": 6, "mnemonic": "jb", - "operands": "0x14000805a" + "operands": "0x14000805a", + "stack_offset": 0 } ], "successors": [ @@ -22592,25 +24536,29 @@ "address": "0x140008091", "size": 5, "mnemonic": "movq", - "operands": "rax, xmm0" + "operands": "rax, xmm0", + "stack_offset": 0 }, { "address": "0x140008096", "size": 4, "mnemonic": "shr", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x14000809a", "size": 2, "mnemonic": "cmp", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x14000809c", "size": 6, "mnemonic": "jg", - "operands": "0x1400081c5" + "operands": "0x1400081c5", + "stack_offset": 0 } ], "successors": [ @@ -22628,181 +24576,211 @@ "address": "0x14000829a", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rsi + 0xc], 0" + "operands": "dword ptr [rsi + 0xc], 0", + "stack_offset": 0 }, { "address": "0x14000829e", "size": 2, "mnemonic": "jbe", - "operands": "0x1400082d6" + "operands": "0x1400082d6", + "stack_offset": 0 }, { "address": "0x1400082a0", "size": 7, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0x98], 0" + "operands": "byte ptr [rbp + 0x98], 0", + "stack_offset": 0 }, { "address": "0x1400082a7", "size": 6, "mnemonic": "jne", - "operands": "0x140008349" + "operands": "0x140008349", + "stack_offset": 0 }, { "address": "0x1400082ad", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0xa0]" + "operands": "eax, dword ptr [rbp + 0xa0]", + "stack_offset": 0 }, { "address": "0x1400082b3", "size": 3, "mnemonic": "mov", - "operands": "r9, r14" + "operands": "r9, r14", + "stack_offset": 0 }, { "address": "0x1400082b6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], r13" + "operands": "qword ptr [rsp + 0x38], r13", + "stack_offset": 0 }, { "address": "0x1400082bb", "size": 3, "mnemonic": "mov", - "operands": "r8, r15" + "operands": "r8, r15", + "stack_offset": 0 }, { "address": "0x1400082be", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], eax" + "operands": "dword ptr [rsp + 0x30], eax", + "stack_offset": 0 }, { "address": "0x1400082c2", "size": 3, "mnemonic": "mov", - "operands": "rdx, r12" + "operands": "rdx, r12", + "stack_offset": 0 }, { "address": "0x1400082c5", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], ebx" + "operands": "dword ptr [rsp + 0x28], ebx", + "stack_offset": 0 }, { "address": "0x1400082c9", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x1400082cc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x1400082d1", "size": 5, "mnemonic": "call", - "operands": "0x140008888" + "operands": "0x140008888", + "stack_offset": 0 }, { "address": "0x1400082d6", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400082db", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x38], 0" + "operands": "qword ptr [rax + 0x38], 0", + "stack_offset": 0 }, { "address": "0x1400082e0", "size": 2, "mnemonic": "jne", - "operands": "0x140008349" + "operands": "0x140008349", + "stack_offset": 0 }, { "address": "0x1400082e2", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x10]" + "operands": "rcx, qword ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x1400082e6", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x1400082e9", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x1400082ee", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x128" + "operands": "rsp, 0x128", + "stack_offset": 0 }, { "address": "0x1400082f5", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400082f7", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400082f9", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400082fb", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400082fd", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400082fe", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400082ff", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140008300", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008301", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -22818,19 +24796,22 @@ "address": "0x140007f7e", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140007f83", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x38], 0" + "operands": "qword ptr [rax + 0x38], 0", + "stack_offset": 0 }, { "address": "0x140007f88", "size": 2, "mnemonic": "je", - "operands": "0x140007fc8" + "operands": "0x140007fc8", + "stack_offset": 0 } ], "successors": [ @@ -22848,85 +24829,99 @@ "address": "0x14000805a", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x38]" + "operands": "rax, qword ptr [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x14000805e", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rax]" + "operands": "rax, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140008061", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rax + 0x10]" + "operands": "rdx, dword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140008065", "size": 3, "mnemonic": "mov", - "operands": "eax, r15d" + "operands": "eax, r15d", + "stack_offset": 0 }, { "address": "0x140008068", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rax*4]" + "operands": "rcx, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x14000806c", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r9 + 8]" + "operands": "rax, qword ptr [r9 + 8]", + "stack_offset": 0 }, { "address": "0x140008070", "size": 4, "mnemonic": "lea", - "operands": "r8, [rdx + rcx*4]" + "operands": "r8, [rdx + rcx*4]", + "stack_offset": 0 }, { "address": "0x140008074", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r8 + rax]" + "operands": "xmm0, xmmword ptr [r8 + rax]", + "stack_offset": 0 }, { "address": "0x140008079", "size": 5, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [r8 + rax + 0x10]" + "operands": "rcx, dword ptr [r8 + rax + 0x10]", + "stack_offset": 0 }, { "address": "0x14000807e", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x50], ecx" + "operands": "dword ptr [rbp - 0x50], ecx", + "stack_offset": 0 }, { "address": "0x140008081", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x140008085", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp - 0x60], xmm0" + "operands": "xmmword ptr [rbp - 0x60], xmm0", + "stack_offset": 0 }, { "address": "0x140008089", "size": 2, "mnemonic": "cmp", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x14000808b", "size": 6, "mnemonic": "jg", - "operands": "0x1400081c5" + "operands": "0x1400081c5", + "stack_offset": 0 } ], "successors": [ @@ -22944,25 +24939,29 @@ "address": "0x1400081d2", "size": 2, "mnemonic": "mov", - "operands": "eax, dword ptr [rsi]" + "operands": "eax, dword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x1400081d4", "size": 5, "mnemonic": "and", - "operands": "eax, 0x1fffffff" + "operands": "eax, 0x1fffffff", + "stack_offset": 0 }, { "address": "0x1400081d9", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930521" + "operands": "eax, 0x19930521", + "stack_offset": 0 }, { "address": "0x1400081de", "size": 6, "mnemonic": "jb", - "operands": "0x1400082d6" + "operands": "0x1400082d6", + "stack_offset": 0 } ], "successors": [ @@ -22980,55 +24979,64 @@ "address": "0x1400080a2", "size": 4, "mnemonic": "add", - "operands": "rcx, qword ptr [r14 + 8]" + "operands": "rcx, qword ptr [r14 + 8]", + "stack_offset": 0 }, { "address": "0x1400080a6", "size": 3, "mnemonic": "xor", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x1400080a9", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x1400080ae", "size": 5, "mnemonic": "movq", - "operands": "rax, xmm0" + "operands": "rax, xmm0", + "stack_offset": 0 }, { "address": "0x1400080b3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x68], rcx" + "operands": "qword ptr [rbp - 0x68], rcx", + "stack_offset": 0 }, { "address": "0x1400080b7", "size": 4, "mnemonic": "shr", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x1400080bb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x70], rax" + "operands": "qword ptr [rbp - 0x70], rax", + "stack_offset": 0 }, { "address": "0x1400080bf", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400080c1", "size": 6, "mnemonic": "je", - "operands": "0x1400081c0" + "operands": "0x1400081c0", + "stack_offset": 0 } ], "successors": [ @@ -23046,79 +25054,92 @@ "address": "0x140007f8a", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140007f8f", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rax + 0x38]" + "operands": "rbx, qword ptr [rax + 0x38]", + "stack_offset": 0 }, { "address": "0x140007f93", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140007f98", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140007f9b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007f9e", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x38], 0" + "operands": "qword ptr [rax + 0x38], 0", + "stack_offset": 0 }, { "address": "0x140007fa6", "size": 5, "mnemonic": "call", - "operands": "0x14000a2f4" + "operands": "0x14000a2f4", + "stack_offset": 0 }, { "address": "0x140007fab", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140007fad", "size": 2, "mnemonic": "jne", - "operands": "0x140007fc4" + "operands": "0x140007fc4", + "stack_offset": 0 }, { "address": "0x140007faf", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140007fb2", "size": 5, "mnemonic": "call", - "operands": "0x14000a3dc" + "operands": "0x14000a3dc", + "stack_offset": 0 }, { "address": "0x140007fb7", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140007fb9", "size": 6, "mnemonic": "je", - "operands": "0x140008326" + "operands": "0x140008326", + "stack_offset": 0 } ], "successors": [ @@ -23136,97 +25157,113 @@ "address": "0x1400082d6", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400082db", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x38], 0" + "operands": "qword ptr [rax + 0x38], 0", + "stack_offset": 0 }, { "address": "0x1400082e0", "size": 2, "mnemonic": "jne", - "operands": "0x140008349" + "operands": "0x140008349", + "stack_offset": 0 }, { "address": "0x1400082e2", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x10]" + "operands": "rcx, qword ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x1400082e6", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x1400082e9", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x1400082ee", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x128" + "operands": "rsp, 0x128", + "stack_offset": 0 }, { "address": "0x1400082f5", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400082f7", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400082f9", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400082fb", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400082fd", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400082fe", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400082ff", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140008300", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008301", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -23242,19 +25279,22 @@ "address": "0x1400081e4", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rsi + 0x20]" + "operands": "rbx, dword ptr [rsi + 0x20]", + "stack_offset": 0 }, { "address": "0x1400081e8", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x1400081ea", "size": 2, "mnemonic": "je", - "operands": "0x1400081f6" + "operands": "0x1400081f6", + "stack_offset": 0 } ], "successors": [ @@ -23272,25 +25312,29 @@ "address": "0x1400081c0", "size": 5, "mnemonic": "mov", - "operands": "r12, qword ptr [rsp + 0x78]" + "operands": "r12, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x1400081c5", "size": 3, "mnemonic": "inc", - "operands": "r15d" + "operands": "r15d", + "stack_offset": 0 }, { "address": "0x1400081c8", "size": 4, "mnemonic": "cmp", - "operands": "r15d, dword ptr [rbp - 0x10]" + "operands": "r15d, dword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x1400081cc", "size": 6, "mnemonic": "jb", - "operands": "0x14000805a" + "operands": "0x14000805a", + "stack_offset": 0 } ], "successors": [ @@ -23308,199 +25352,232 @@ "address": "0x1400080c7", "size": 4, "mnemonic": "lea", - "operands": "rax, [r12 + r12*4]" + "operands": "rax, [r12 + r12*4]", + "stack_offset": 0 }, { "address": "0x1400080cb", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rcx + rax*4]" + "operands": "xmm0, xmmword ptr [rcx + rax*4]", + "stack_offset": 0 }, { "address": "0x1400080cf", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp - 8], xmm0" + "operands": "xmmword ptr [rbp - 8], xmm0", + "stack_offset": 0 }, { "address": "0x1400080d3", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rcx + rax*4 + 0x10]" + "operands": "eax, dword ptr [rcx + rax*4 + 0x10]", + "stack_offset": 0 }, { "address": "0x1400080d7", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 8], eax" + "operands": "dword ptr [rbp + 8], eax", + "stack_offset": 0 }, { "address": "0x1400080da", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi + 0x30]" + "operands": "rax, qword ptr [rdi + 0x30]", + "stack_offset": 0 }, { "address": "0x1400080de", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rax + 0xc]" + "operands": "rbx, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x1400080e2", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x1400080e7", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + 4]" + "operands": "rcx, [rax + 4]", + "stack_offset": 0 }, { "address": "0x1400080eb", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi + 0x30]" + "operands": "rax, qword ptr [rdi + 0x30]", + "stack_offset": 0 }, { "address": "0x1400080ef", "size": 3, "mnemonic": "add", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400080f2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x70], rcx" + "operands": "qword ptr [rsp + 0x70], rcx", + "stack_offset": 0 }, { "address": "0x1400080f7", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rax + 0xc]" + "operands": "rbx, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x1400080fb", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008100", "size": 4, "mnemonic": "mov", - "operands": "r13d, dword ptr [rax + rbx]" + "operands": "r13d, dword ptr [rax + rbx]", + "stack_offset": 0 }, { "address": "0x140008104", "size": 3, "mnemonic": "test", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x140008107", "size": 2, "mnemonic": "jle", - "operands": "0x140008143" + "operands": "0x140008143", + "stack_offset": 0 }, { "address": "0x140008109", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x70]" + "operands": "rax, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000810e", "size": 3, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rax]" + "operands": "rbx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140008111", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008116", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rdi + 0x30]" + "operands": "r8, qword ptr [rdi + 0x30]", + "stack_offset": 0 }, { "address": "0x14000811a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 8]" + "operands": "rcx, [rbp - 8]", + "stack_offset": 0 }, { "address": "0x14000811e", "size": 3, "mnemonic": "add", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140008121", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140008124", "size": 5, "mnemonic": "call", - "operands": "0x140008df4" + "operands": "0x140008df4", + "stack_offset": 0 }, { "address": "0x140008129", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000812b", "size": 2, "mnemonic": "jne", - "operands": "0x140008155" + "operands": "0x140008155", + "stack_offset": 0 }, { "address": "0x14000812d", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x70]" + "operands": "rax, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140008132", "size": 3, "mnemonic": "dec", - "operands": "r13d" + "operands": "r13d", + "stack_offset": 0 }, { "address": "0x140008135", "size": 4, "mnemonic": "add", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x140008139", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x70], rax" + "operands": "qword ptr [rsp + 0x70], rax", + "stack_offset": 0 }, { "address": "0x14000813e", "size": 3, "mnemonic": "test", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x140008141", "size": 2, "mnemonic": "jg", - "operands": "0x14000810e" + "operands": "0x14000810e", + "stack_offset": 0 } ], "successors": [ @@ -23518,13 +25595,15 @@ "address": "0x140008326", "size": 5, "mnemonic": "call", - "operands": "0x140010b70" + "operands": "0x140010b70", + "stack_offset": 0 }, { "address": "0x14000832b", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -23540,7 +25619,8 @@ "address": "0x140007fbf", "size": 5, "mnemonic": "jmp", - "operands": "0x140008302" + "operands": "0x140008302", + "stack_offset": 0 } ], "successors": [ @@ -23557,13 +25637,15 @@ "address": "0x1400081f6", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rsi + 0x24], 4" + "operands": "byte ptr [rsi + 0x24], 4", + "stack_offset": 0 }, { "address": "0x1400081fa", "size": 6, "mnemonic": "je", - "operands": "0x1400082d6" + "operands": "0x1400082d6", + "stack_offset": 0 } ], "successors": [ @@ -23581,31 +25663,36 @@ "address": "0x1400081ec", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x1400081f1", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x1400081f4", "size": 2, "mnemonic": "jne", - "operands": "0x140008213" + "operands": "0x140008213", + "stack_offset": 0 }, { "address": "0x1400081f6", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rsi + 0x24], 4" + "operands": "byte ptr [rsi + 0x24], 4", + "stack_offset": 0 }, { "address": "0x1400081fa", "size": 6, "mnemonic": "je", - "operands": "0x1400082d6" + "operands": "0x1400082d6", + "stack_offset": 0 } ], "successors": [ @@ -23623,91 +25710,106 @@ "address": "0x14000810e", "size": 3, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rax]" + "operands": "rbx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140008111", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008116", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rdi + 0x30]" + "operands": "r8, qword ptr [rdi + 0x30]", + "stack_offset": 0 }, { "address": "0x14000811a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 8]" + "operands": "rcx, [rbp - 8]", + "stack_offset": 0 }, { "address": "0x14000811e", "size": 3, "mnemonic": "add", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140008121", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140008124", "size": 5, "mnemonic": "call", - "operands": "0x140008df4" + "operands": "0x140008df4", + "stack_offset": 0 }, { "address": "0x140008129", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000812b", "size": 2, "mnemonic": "jne", - "operands": "0x140008155" + "operands": "0x140008155", + "stack_offset": 0 }, { "address": "0x14000812d", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x70]" + "operands": "rax, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140008132", "size": 3, "mnemonic": "dec", - "operands": "r13d" + "operands": "r13d", + "stack_offset": 0 }, { "address": "0x140008135", "size": 4, "mnemonic": "add", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x140008139", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x70], rax" + "operands": "qword ptr [rsp + 0x70], rax", + "stack_offset": 0 }, { "address": "0x14000813e", "size": 3, "mnemonic": "test", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x140008141", "size": 2, "mnemonic": "jg", - "operands": "0x14000810e" + "operands": "0x14000810e", + "stack_offset": 0 } ], "successors": [ @@ -23725,19 +25827,22 @@ "address": "0x140008143", "size": 3, "mnemonic": "inc", - "operands": "r12d" + "operands": "r12d", + "stack_offset": 0 }, { "address": "0x140008146", "size": 4, "mnemonic": "cmp", - "operands": "r12d, dword ptr [rbp - 0x70]" + "operands": "r12d, dword ptr [rbp - 0x70]", + "stack_offset": 0 }, { "address": "0x14000814a", "size": 2, "mnemonic": "je", - "operands": "0x1400081b8" + "operands": "0x1400081b8", + "stack_offset": 0 } ], "successors": [ @@ -23755,55 +25860,64 @@ "address": "0x140008302", "size": 2, "mnemonic": "mov", - "operands": "dl, 1" + "operands": "dl, 1", + "stack_offset": 0 }, { "address": "0x140008304", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140008307", "size": 5, "mnemonic": "call", - "operands": "0x140006f98" + "operands": "0x140006f98", + "stack_offset": 0 }, { "address": "0x14000830c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x60]" + "operands": "rcx, [rbp - 0x60]", + "stack_offset": 0 }, { "address": "0x140008310", "size": 5, "mnemonic": "call", - "operands": "0x140009724" + "operands": "0x140009724", + "stack_offset": 0 }, { "address": "0x140008315", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x27c54]" + "operands": "rdx, [rip + 0x27c54]", + "stack_offset": 0 }, { "address": "0x14000831c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x60]" + "operands": "rcx, [rbp - 0x60]", + "stack_offset": 0 }, { "address": "0x140008320", "size": 5, "mnemonic": "call", - "operands": "0x140006198" + "operands": "0x140006198", + "stack_offset": 0 }, { "address": "0x140008325", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -23819,61 +25933,71 @@ "address": "0x140008200", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x140008203", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140008206", "size": 5, "mnemonic": "call", - "operands": "0x140006478" + "operands": "0x140006478", + "stack_offset": 0 }, { "address": "0x14000820b", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14000820d", "size": 6, "mnemonic": "jne", - "operands": "0x1400082d6" + "operands": "0x1400082d6", + "stack_offset": 0 }, { "address": "0x140008213", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rsi + 0x24], 4" + "operands": "byte ptr [rsi + 0x24], 4", + "stack_offset": 0 }, { "address": "0x140008217", "size": 6, "mnemonic": "jne", - "operands": "0x14000832c" + "operands": "0x14000832c", + "stack_offset": 0 }, { "address": "0x14000821d", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rsi + 0x20]" + "operands": "rbx, dword ptr [rsi + 0x20]", + "stack_offset": 0 }, { "address": "0x140008221", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140008223", "size": 2, "mnemonic": "je", - "operands": "0x140008230" + "operands": "0x140008230", + "stack_offset": 0 } ], "successors": [ @@ -23891,37 +26015,43 @@ "address": "0x1400081b8", "size": 4, "mnemonic": "mov", - "operands": "ebx, dword ptr [rsp + 0x64]" + "operands": "ebx, dword ptr [rsp + 0x64]", + "stack_offset": 0 }, { "address": "0x1400081bc", "size": 4, "mnemonic": "mov", - "operands": "r9, qword ptr [rbp - 0x80]" + "operands": "r9, qword ptr [rbp - 0x80]", + "stack_offset": 0 }, { "address": "0x1400081c0", "size": 5, "mnemonic": "mov", - "operands": "r12, qword ptr [rsp + 0x78]" + "operands": "r12, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x1400081c5", "size": 3, "mnemonic": "inc", - "operands": "r15d" + "operands": "r15d", + "stack_offset": 0 }, { "address": "0x1400081c8", "size": 4, "mnemonic": "cmp", - "operands": "r15d, dword ptr [rbp - 0x10]" + "operands": "r15d, dword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x1400081cc", "size": 6, "mnemonic": "jb", - "operands": "0x14000805a" + "operands": "0x14000805a", + "stack_offset": 0 } ], "successors": [ @@ -23939,13 +26069,15 @@ "address": "0x14000814c", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x68]" + "operands": "rcx, qword ptr [rbp - 0x68]", + "stack_offset": 0 }, { "address": "0x140008150", "size": 5, "mnemonic": "jmp", - "operands": "0x1400080c7" + "operands": "0x1400080c7", + "stack_offset": 0 } ], "successors": [ @@ -23962,151 +26094,176 @@ "address": "0x140008230", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140008232", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140008235", "size": 5, "mnemonic": "call", - "operands": "0x14000a2f4" + "operands": "0x14000a2f4", + "stack_offset": 0 }, { "address": "0x14000823a", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14000823c", "size": 6, "mnemonic": "jne", - "operands": "0x1400082d6" + "operands": "0x1400082d6", + "stack_offset": 0 }, { "address": "0x140008242", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x78]" + "operands": "r9, [rbp - 0x78]", + "stack_offset": 0 }, { "address": "0x140008246", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140008249", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x14000824c", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x14000824f", "size": 5, "mnemonic": "call", - "operands": "0x140006544" + "operands": "0x140006544", + "stack_offset": 0 }, { "address": "0x140008254", "size": 6, "mnemonic": "mov", - "operands": "cl, byte ptr [rbp + 0x98]" + "operands": "cl, byte ptr [rbp + 0x98]", + "stack_offset": 0 }, { "address": "0x14000825a", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x14000825d", "size": 5, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x68]" + "operands": "r8, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140008262", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140008265", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], cl" + "operands": "byte ptr [rsp + 0x50], cl", + "stack_offset": 0 }, { "address": "0x140008269", "size": 3, "mnemonic": "or", - "operands": "ecx, 0xffffffff" + "operands": "ecx, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14000826c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], r14" + "operands": "qword ptr [rsp + 0x48], r14", + "stack_offset": 0 }, { "address": "0x140008271", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], 0" + "operands": "qword ptr [rsp + 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000827a", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], ecx" + "operands": "dword ptr [rsp + 0x38], ecx", + "stack_offset": 0 }, { "address": "0x14000827e", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], ecx" + "operands": "dword ptr [rsp + 0x30], ecx", + "stack_offset": 0 }, { "address": "0x140008282", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140008285", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rsi" + "operands": "qword ptr [rsp + 0x28], rsi", + "stack_offset": 0 }, { "address": "0x14000828a", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x140008293", "size": 5, "mnemonic": "call", - "operands": "0x140006908" + "operands": "0x140006908", + "stack_offset": 0 }, { "address": "0x140008298", "size": 2, "mnemonic": "jmp", - "operands": "0x1400082d6" + "operands": "0x1400082d6", + "stack_offset": 0 } ], "successors": [ @@ -24123,19 +26280,22 @@ "address": "0x140008225", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x14000822a", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbx + rax]" + "operands": "rdx, [rbx + rax]", + "stack_offset": 0 }, { "address": "0x14000822e", "size": 2, "mnemonic": "jmp", - "operands": "0x140008232" + "operands": "0x140008232", + "stack_offset": 0 } ], "successors": [ @@ -24152,145 +26312,169 @@ "address": "0x140008232", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140008235", "size": 5, "mnemonic": "call", - "operands": "0x14000a2f4" + "operands": "0x14000a2f4", + "stack_offset": 0 }, { "address": "0x14000823a", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14000823c", "size": 6, "mnemonic": "jne", - "operands": "0x1400082d6" + "operands": "0x1400082d6", + "stack_offset": 0 }, { "address": "0x140008242", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x78]" + "operands": "r9, [rbp - 0x78]", + "stack_offset": 0 }, { "address": "0x140008246", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140008249", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x14000824c", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x14000824f", "size": 5, "mnemonic": "call", - "operands": "0x140006544" + "operands": "0x140006544", + "stack_offset": 0 }, { "address": "0x140008254", "size": 6, "mnemonic": "mov", - "operands": "cl, byte ptr [rbp + 0x98]" + "operands": "cl, byte ptr [rbp + 0x98]", + "stack_offset": 0 }, { "address": "0x14000825a", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x14000825d", "size": 5, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x68]" + "operands": "r8, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140008262", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140008265", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], cl" + "operands": "byte ptr [rsp + 0x50], cl", + "stack_offset": 0 }, { "address": "0x140008269", "size": 3, "mnemonic": "or", - "operands": "ecx, 0xffffffff" + "operands": "ecx, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14000826c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], r14" + "operands": "qword ptr [rsp + 0x48], r14", + "stack_offset": 0 }, { "address": "0x140008271", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], 0" + "operands": "qword ptr [rsp + 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000827a", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], ecx" + "operands": "dword ptr [rsp + 0x38], ecx", + "stack_offset": 0 }, { "address": "0x14000827e", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], ecx" + "operands": "dword ptr [rsp + 0x30], ecx", + "stack_offset": 0 }, { "address": "0x140008282", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140008285", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rsi" + "operands": "qword ptr [rsp + 0x28], rsi", + "stack_offset": 0 }, { "address": "0x14000828a", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x140008293", "size": 5, "mnemonic": "call", - "operands": "0x140006908" + "operands": "0x140006908", + "stack_offset": 0 }, { "address": "0x140008298", "size": 2, "mnemonic": "jmp", - "operands": "0x1400082d6" + "operands": "0x1400082d6", + "stack_offset": 0 } ], "successors": [ @@ -24313,175 +26497,204 @@ "address": "0x140008350", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008352", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140008353", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140008354", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140008355", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140008357", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140008359", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000835b", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000835d", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x88]" + "operands": "rbp, [rsp - 0x88]", + "stack_offset": 0 }, { "address": "0x140008365", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x188" + "operands": "rsp, 0x188", + "stack_offset": 0 }, { "address": "0x14000836c", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x28ccd]" + "operands": "rax, qword ptr [rip + 0x28ccd]", + "stack_offset": 0 }, { "address": "0x140008373", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140008376", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x70], rax" + "operands": "qword ptr [rbp + 0x70], rax", + "stack_offset": 0 }, { "address": "0x14000837a", "size": 7, "mnemonic": "mov", - "operands": "r15, qword ptr [rbp + 0xf0]" + "operands": "r15, qword ptr [rbp + 0xf0]", + "stack_offset": 0 }, { "address": "0x140008381", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x140008384", "size": 7, "mnemonic": "mov", - "operands": "r13, qword ptr [rbp + 0x108]" + "operands": "r13, qword ptr [rbp + 0x108]", + "stack_offset": 0 }, { "address": "0x14000838b", "size": 3, "mnemonic": "mov", - "operands": "r12, rdx" + "operands": "r12, rdx", + "stack_offset": 0 }, { "address": "0x14000838e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x58], rdx" + "operands": "qword ptr [rbp - 0x58], rdx", + "stack_offset": 0 }, { "address": "0x140008392", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140008395", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x140008398", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x70], rbx" + "operands": "qword ptr [rsp + 0x70], rbx", + "stack_offset": 0 }, { "address": "0x14000839d", "size": 3, "mnemonic": "mov", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x1400083a0", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x60], r13" + "operands": "qword ptr [rbp - 0x60], r13", + "stack_offset": 0 }, { "address": "0x1400083a4", "size": 3, "mnemonic": "mov", - "operands": "r14, r9" + "operands": "r14, r9", + "stack_offset": 0 }, { "address": "0x1400083a7", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x60], 0" + "operands": "byte ptr [rsp + 0x60], 0", + "stack_offset": 0 }, { "address": "0x1400083ac", "size": 5, "mnemonic": "call", - "operands": "0x1400075e0" + "operands": "0x1400075e0", + "stack_offset": 0 }, { "address": "0x1400083b1", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [r14 + 0x48], 0" + "operands": "dword ptr [r14 + 0x48], 0", + "stack_offset": 0 }, { "address": "0x1400083b6", "size": 2, "mnemonic": "mov", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x1400083b8", "size": 2, "mnemonic": "je", - "operands": "0x1400083d2" + "operands": "0x1400083d2", + "stack_offset": 0 } ], "successors": [ @@ -24499,19 +26712,22 @@ "address": "0x1400083d2", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400083d7", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x78], -2" + "operands": "dword ptr [rax + 0x78], -2", + "stack_offset": 0 }, { "address": "0x1400083db", "size": 2, "mnemonic": "je", - "operands": "0x1400083f1" + "operands": "0x1400083f1", + "stack_offset": 0 } ], "successors": [ @@ -24529,37 +26745,43 @@ "address": "0x1400083ba", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400083bf", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x78], -2" + "operands": "dword ptr [rax + 0x78], -2", + "stack_offset": 0 }, { "address": "0x1400083c3", "size": 6, "mnemonic": "jne", - "operands": "0x140008881" + "operands": "0x140008881", + "stack_offset": 0 }, { "address": "0x1400083c9", "size": 4, "mnemonic": "mov", - "operands": "esi, dword ptr [r14 + 0x48]" + "operands": "esi, dword ptr [r14 + 0x48]", + "stack_offset": 0 }, { "address": "0x1400083cd", "size": 3, "mnemonic": "sub", - "operands": "esi, 2" + "operands": "esi, 2", + "stack_offset": 0 }, { "address": "0x1400083d0", "size": 2, "mnemonic": "jmp", - "operands": "0x1400083f1" + "operands": "0x1400083f1", + "stack_offset": 0 } ], "successors": [ @@ -24576,13 +26798,15 @@ "address": "0x1400083f1", "size": 3, "mnemonic": "cmp", - "operands": "esi, -1" + "operands": "esi, -1", + "stack_offset": 0 }, { "address": "0x1400083f4", "size": 6, "mnemonic": "jl", - "operands": "0x140008881" + "operands": "0x140008881", + "stack_offset": 0 } ], "successors": [ @@ -24600,37 +26824,43 @@ "address": "0x1400083dd", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400083e2", "size": 3, "mnemonic": "mov", - "operands": "esi, dword ptr [rax + 0x78]" + "operands": "esi, dword ptr [rax + 0x78]", + "stack_offset": 0 }, { "address": "0x1400083e5", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400083ea", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x78], 0xfffffffe" + "operands": "dword ptr [rax + 0x78], 0xfffffffe", + "stack_offset": 0 }, { "address": "0x1400083f1", "size": 3, "mnemonic": "cmp", - "operands": "esi, -1" + "operands": "esi, -1", + "stack_offset": 0 }, { "address": "0x1400083f4", "size": 6, "mnemonic": "jl", - "operands": "0x140008881" + "operands": "0x140008881", + "stack_offset": 0 } ], "successors": [ @@ -24648,13 +26878,15 @@ "address": "0x140008881", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140008886", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -24670,19 +26902,22 @@ "address": "0x1400083fa", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [r15 + 8], 0" + "operands": "dword ptr [r15 + 8], 0", + "stack_offset": 0 }, { "address": "0x1400083ff", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip - 0x8406]" + "operands": "r8, [rip - 0x8406]", + "stack_offset": 0 }, { "address": "0x140008406", "size": 2, "mnemonic": "je", - "operands": "0x140008434" + "operands": "0x140008434", + "stack_offset": 0 } ], "successors": [ @@ -24700,61 +26935,71 @@ "address": "0x140008434", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008436", "size": 2, "mnemonic": "cmp", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x140008438", "size": 6, "mnemonic": "jge", - "operands": "0x140008881" + "operands": "0x140008881", + "stack_offset": 0 }, { "address": "0x14000843e", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe06d7363" + "operands": "dword ptr [rdi], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x140008444", "size": 6, "mnemonic": "jne", - "operands": "0x14000852d" + "operands": "0x14000852d", + "stack_offset": 0 }, { "address": "0x14000844a", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0x18], 4" + "operands": "dword ptr [rdi + 0x18], 4", + "stack_offset": 0 }, { "address": "0x14000844e", "size": 6, "mnemonic": "jne", - "operands": "0x14000852d" + "operands": "0x14000852d", + "stack_offset": 0 }, { "address": "0x140008454", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0x20]" + "operands": "eax, dword ptr [rdi + 0x20]", + "stack_offset": 0 }, { "address": "0x140008457", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930520" + "operands": "eax, 0x19930520", + "stack_offset": 0 }, { "address": "0x14000845c", "size": 2, "mnemonic": "je", - "operands": "0x14000846c" + "operands": "0x14000846c", + "stack_offset": 0 } ], "successors": [ @@ -24772,67 +27017,78 @@ "address": "0x140008408", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [r15 + 8]" + "operands": "rcx, dword ptr [r15 + 8]", + "stack_offset": 0 }, { "address": "0x14000840c", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [r14 + 8]" + "operands": "rdx, qword ptr [r14 + 8]", + "stack_offset": 0 }, { "address": "0x140008410", "size": 3, "mnemonic": "add", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x140008413", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008416", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008419", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r8 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r8 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008422", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r8 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r8 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000842a", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000842d", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008430", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008432", "size": 2, "mnemonic": "jmp", - "operands": "0x140008436" + "operands": "0x140008436", + "stack_offset": 0 } ], "successors": [ @@ -24849,31 +27105,36 @@ "address": "0x14000846c", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rdi + 0x30], 0" + "operands": "qword ptr [rdi + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140008471", "size": 6, "mnemonic": "jne", - "operands": "0x14000852d" + "operands": "0x14000852d", + "stack_offset": 0 }, { "address": "0x140008477", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14000847c", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x20], 0" + "operands": "qword ptr [rax + 0x20], 0", + "stack_offset": 0 }, { "address": "0x140008481", "size": 6, "mnemonic": "je", - "operands": "0x14000881a" + "operands": "0x14000881a", + "stack_offset": 0 } ], "successors": [ @@ -24891,19 +27152,22 @@ "address": "0x14000845e", "size": 5, "mnemonic": "add", - "operands": "eax, 0xe66cfadf" + "operands": "eax, 0xe66cfadf", + "stack_offset": 0 }, { "address": "0x140008463", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140008466", "size": 6, "mnemonic": "ja", - "operands": "0x14000852d" + "operands": "0x14000852d", + "stack_offset": 0 } ], "successors": [ @@ -24921,55 +27185,64 @@ "address": "0x140008436", "size": 2, "mnemonic": "cmp", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x140008438", "size": 6, "mnemonic": "jge", - "operands": "0x140008881" + "operands": "0x140008881", + "stack_offset": 0 }, { "address": "0x14000843e", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe06d7363" + "operands": "dword ptr [rdi], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x140008444", "size": 6, "mnemonic": "jne", - "operands": "0x14000852d" + "operands": "0x14000852d", + "stack_offset": 0 }, { "address": "0x14000844a", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0x18], 4" + "operands": "dword ptr [rdi + 0x18], 4", + "stack_offset": 0 }, { "address": "0x14000844e", "size": 6, "mnemonic": "jne", - "operands": "0x14000852d" + "operands": "0x14000852d", + "stack_offset": 0 }, { "address": "0x140008454", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0x20]" + "operands": "eax, dword ptr [rdi + 0x20]", + "stack_offset": 0 }, { "address": "0x140008457", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930520" + "operands": "eax, 0x19930520", + "stack_offset": 0 }, { "address": "0x14000845c", "size": 2, "mnemonic": "je", - "operands": "0x14000846c" + "operands": "0x14000846c", + "stack_offset": 0 } ], "successors": [ @@ -24987,79 +27260,92 @@ "address": "0x14000881a", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x70]" + "operands": "rcx, qword ptr [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000881e", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140008821", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140008826", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x188" + "operands": "rsp, 0x188", + "stack_offset": 0 }, { "address": "0x14000882d", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000882f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140008831", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140008833", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140008835", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140008836", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140008837", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140008838", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008839", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -25075,61 +27361,71 @@ "address": "0x140008487", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14000848c", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rax + 0x20]" + "operands": "rdi, qword ptr [rax + 0x20]", + "stack_offset": 0 }, { "address": "0x140008490", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140008495", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + 0x38]" + "operands": "rcx, qword ptr [rdi + 0x38]", + "stack_offset": 0 }, { "address": "0x140008499", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x60], 1" + "operands": "byte ptr [rsp + 0x60], 1", + "stack_offset": 0 }, { "address": "0x14000849e", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rax + 0x28]" + "operands": "rbx, qword ptr [rax + 0x28]", + "stack_offset": 0 }, { "address": "0x1400084a2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x70], rbx" + "operands": "qword ptr [rsp + 0x70], rbx", + "stack_offset": 0 }, { "address": "0x1400084a7", "size": 5, "mnemonic": "call", - "operands": "0x140006de8" + "operands": "0x140006de8", + "stack_offset": 0 }, { "address": "0x1400084ac", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x1400084af", "size": 6, "mnemonic": "je", - "operands": "0x140008881" + "operands": "0x140008881", + "stack_offset": 0 } ], "successors": [ @@ -25147,67 +27443,78 @@ "address": "0x14000852d", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [r14 + 8]" + "operands": "r8, qword ptr [r14 + 8]", + "stack_offset": 0 }, { "address": "0x140008531", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 8]" + "operands": "rcx, [rbp - 8]", + "stack_offset": 0 }, { "address": "0x140008535", "size": 3, "mnemonic": "mov", - "operands": "rdx, r15" + "operands": "rdx, r15", + "stack_offset": 0 }, { "address": "0x140008538", "size": 5, "mnemonic": "call", - "operands": "0x140009604" + "operands": "0x140009604", + "stack_offset": 0 }, { "address": "0x14000853d", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe06d7363" + "operands": "dword ptr [rdi], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x140008543", "size": 6, "mnemonic": "jne", - "operands": "0x1400087d2" + "operands": "0x1400087d2", + "stack_offset": 0 }, { "address": "0x140008549", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0x18], 4" + "operands": "dword ptr [rdi + 0x18], 4", + "stack_offset": 0 }, { "address": "0x14000854d", "size": 6, "mnemonic": "jne", - "operands": "0x1400087d2" + "operands": "0x1400087d2", + "stack_offset": 0 }, { "address": "0x140008553", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0x20]" + "operands": "eax, dword ptr [rdi + 0x20]", + "stack_offset": 0 }, { "address": "0x140008556", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930520" + "operands": "eax, 0x19930520", + "stack_offset": 0 }, { "address": "0x14000855b", "size": 2, "mnemonic": "je", - "operands": "0x14000856b" + "operands": "0x14000856b", + "stack_offset": 0 } ], "successors": [ @@ -25225,43 +27532,50 @@ "address": "0x1400084b5", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe06d7363" + "operands": "dword ptr [rdi], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x1400084bb", "size": 2, "mnemonic": "jne", - "operands": "0x1400084e2" + "operands": "0x1400084e2", + "stack_offset": 0 }, { "address": "0x1400084bd", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0x18], 4" + "operands": "dword ptr [rdi + 0x18], 4", + "stack_offset": 0 }, { "address": "0x1400084c1", "size": 2, "mnemonic": "jne", - "operands": "0x1400084e2" + "operands": "0x1400084e2", + "stack_offset": 0 }, { "address": "0x1400084c3", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0x20]" + "operands": "eax, dword ptr [rdi + 0x20]", + "stack_offset": 0 }, { "address": "0x1400084c6", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930520" + "operands": "eax, 0x19930520", + "stack_offset": 0 }, { "address": "0x1400084cb", "size": 2, "mnemonic": "je", - "operands": "0x1400084d7" + "operands": "0x1400084d7", + "stack_offset": 0 } ], "successors": [ @@ -25279,163 +27593,190 @@ "address": "0x14000856b", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp - 8], 0" + "operands": "dword ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000856f", "size": 6, "mnemonic": "jbe", - "operands": "0x1400087b7" + "operands": "0x1400087b7", + "stack_offset": 0 }, { "address": "0x140008575", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x100]" + "operands": "eax, dword ptr [rbp + 0x100]", + "stack_offset": 0 }, { "address": "0x14000857b", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 8]" + "operands": "rdx, [rbp - 8]", + "stack_offset": 0 }, { "address": "0x14000857f", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x140008583", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x50]" + "operands": "rcx, [rbp - 0x50]", + "stack_offset": 0 }, { "address": "0x140008587", "size": 3, "mnemonic": "mov", - "operands": "r9, r14" + "operands": "r9, r14", + "stack_offset": 0 }, { "address": "0x14000858a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r15" + "operands": "qword ptr [rsp + 0x20], r15", + "stack_offset": 0 }, { "address": "0x14000858f", "size": 3, "mnemonic": "mov", - "operands": "r8d, esi" + "operands": "r8d, esi", + "stack_offset": 0 }, { "address": "0x140008592", "size": 5, "mnemonic": "call", - "operands": "0x140006788" + "operands": "0x140006788", + "stack_offset": 0 }, { "address": "0x140008597", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rbp - 0x50]" + "operands": "xmm1, xmmword ptr [rbp - 0x50]", + "stack_offset": 0 }, { "address": "0x14000859b", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x14000859f", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x1400085a4", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x1400085a8", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x78], xmm1" + "operands": "xmmword ptr [rbp - 0x78], xmm1", + "stack_offset": 0 }, { "address": "0x1400085ad", "size": 3, "mnemonic": "cmp", - "operands": "eax, dword ptr [rbp - 0x38]" + "operands": "eax, dword ptr [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x1400085b0", "size": 6, "mnemonic": "jae", - "operands": "0x1400087b7" + "operands": "0x1400087b7", + "stack_offset": 0 }, { "address": "0x1400085b6", "size": 4, "mnemonic": "mov", - "operands": "r12d, dword ptr [rbp - 0x70]" + "operands": "r12d, dword ptr [rbp - 0x70]", + "stack_offset": 0 }, { "address": "0x1400085ba", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0x85c1]" + "operands": "r11, [rip - 0x85c1]", + "stack_offset": 0 }, { "address": "0x1400085c1", "size": 5, "mnemonic": "movq", - "operands": "rbx, xmm1" + "operands": "rbx, xmm1", + "stack_offset": 0 }, { "address": "0x1400085c6", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x64], r12d" + "operands": "dword ptr [rsp + 0x64], r12d", + "stack_offset": 0 }, { "address": "0x1400085cb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x80], rbx" + "operands": "qword ptr [rbp - 0x80], rbx", + "stack_offset": 0 }, { "address": "0x1400085cf", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rbx + 0x18]" + "operands": "xmm0, xmmword ptr [rbx + 0x18]", + "stack_offset": 0 }, { "address": "0x1400085d3", "size": 5, "mnemonic": "movq", - "operands": "rax, xmm0" + "operands": "rax, xmm0", + "stack_offset": 0 }, { "address": "0x1400085d8", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp - 0x78], xmm0" + "operands": "xmmword ptr [rbp - 0x78], xmm0", + "stack_offset": 0 }, { "address": "0x1400085dc", "size": 2, "mnemonic": "cmp", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x1400085de", "size": 6, "mnemonic": "jg", - "operands": "0x140008710" + "operands": "0x140008710", + "stack_offset": 0 } ], "successors": [ @@ -25453,19 +27794,22 @@ "address": "0x14000855d", "size": 5, "mnemonic": "add", - "operands": "eax, 0xe66cfadf" + "operands": "eax, 0xe66cfadf", + "stack_offset": 0 }, { "address": "0x140008562", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140008565", "size": 6, "mnemonic": "ja", - "operands": "0x1400087d2" + "operands": "0x1400087d2", + "stack_offset": 0 } ], "successors": [ @@ -25483,13 +27827,15 @@ "address": "0x1400084d7", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rdi + 0x30], 0" + "operands": "qword ptr [rdi + 0x30], 0", + "stack_offset": 0 }, { "address": "0x1400084dc", "size": 6, "mnemonic": "je", - "operands": "0x140008881" + "operands": "0x140008881", + "stack_offset": 0 } ], "successors": [ @@ -25507,19 +27853,22 @@ "address": "0x1400084cd", "size": 5, "mnemonic": "add", - "operands": "eax, 0xe66cfadf" + "operands": "eax, 0xe66cfadf", + "stack_offset": 0 }, { "address": "0x1400084d2", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x1400084d5", "size": 2, "mnemonic": "ja", - "operands": "0x1400084e2" + "operands": "0x1400084e2", + "stack_offset": 0 } ], "successors": [ @@ -25537,247 +27886,288 @@ "address": "0x140008710", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rbx + 8]" + "operands": "r10, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140008714", "size": 3, "mnemonic": "inc", - "operands": "r12d" + "operands": "r12d", + "stack_offset": 0 }, { "address": "0x140008717", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000871a", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x64], r12d" + "operands": "dword ptr [rsp + 0x64], r12d", + "stack_offset": 0 }, { "address": "0x14000871f", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r10]" + "operands": "ecx, byte ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008723", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008726", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r9, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x14000872f", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008737", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000873a", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x14000873d", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008741", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008743", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x18], eax" + "operands": "dword ptr [rbx + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140008746", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008749", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000874c", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000874f", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r8, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008758", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008760", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140008763", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008766", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008769", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000876b", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x1c], eax" + "operands": "dword ptr [rbx + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x14000876e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008772", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008775", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008778", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008781", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008789", "size": 3, "mnemonic": "sub", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14000878c", "size": 3, "mnemonic": "sub", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x14000878f", "size": 3, "mnemonic": "sub", - "operands": "r10, r9" + "operands": "r10, r9", + "stack_offset": 0 }, { "address": "0x140008792", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r10 - 4]" + "operands": "eax, dword ptr [r10 - 4]", + "stack_offset": 0 }, { "address": "0x140008796", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008798", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x20], eax" + "operands": "dword ptr [rbx + 0x20], eax", + "stack_offset": 0 }, { "address": "0x14000879b", "size": 4, "mnemonic": "lea", - "operands": "rax, [r10 + 4]" + "operands": "rax, [r10 + 4]", + "stack_offset": 0 }, { "address": "0x14000879f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], r10" + "operands": "qword ptr [rbx + 8], r10", + "stack_offset": 0 }, { "address": "0x1400087a3", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [r10]" + "operands": "ecx, dword ptr [r10]", + "stack_offset": 0 }, { "address": "0x1400087a6", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rax" + "operands": "qword ptr [rbx + 8], rax", + "stack_offset": 0 }, { "address": "0x1400087aa", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x24], ecx" + "operands": "dword ptr [rbx + 0x24], ecx", + "stack_offset": 0 }, { "address": "0x1400087ad", "size": 4, "mnemonic": "cmp", - "operands": "r12d, dword ptr [rbp - 0x38]" + "operands": "r12d, dword ptr [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x1400087b1", "size": 6, "mnemonic": "jb", - "operands": "0x1400085cf" + "operands": "0x1400085cf", + "stack_offset": 0 } ], "successors": [ @@ -25795,19 +28185,22 @@ "address": "0x1400085e4", "size": 4, "mnemonic": "shr", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x1400085e8", "size": 2, "mnemonic": "cmp", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x1400085ea", "size": 6, "mnemonic": "jg", - "operands": "0x140008710" + "operands": "0x140008710", + "stack_offset": 0 } ], "successors": [ @@ -25825,181 +28218,211 @@ "address": "0x1400087d2", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp - 8], 0" + "operands": "dword ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x1400087d6", "size": 2, "mnemonic": "jbe", - "operands": "0x14000880e" + "operands": "0x14000880e", + "stack_offset": 0 }, { "address": "0x1400087d8", "size": 7, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0xf8], 0" + "operands": "byte ptr [rbp + 0xf8], 0", + "stack_offset": 0 }, { "address": "0x1400087df", "size": 6, "mnemonic": "jne", - "operands": "0x140008881" + "operands": "0x140008881", + "stack_offset": 0 }, { "address": "0x1400087e5", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x100]" + "operands": "eax, dword ptr [rbp + 0x100]", + "stack_offset": 0 }, { "address": "0x1400087eb", "size": 3, "mnemonic": "mov", - "operands": "r9, r14" + "operands": "r9, r14", + "stack_offset": 0 }, { "address": "0x1400087ee", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], r13" + "operands": "qword ptr [rsp + 0x38], r13", + "stack_offset": 0 }, { "address": "0x1400087f3", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x1400087f6", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], eax" + "operands": "dword ptr [rsp + 0x30], eax", + "stack_offset": 0 }, { "address": "0x1400087fa", "size": 3, "mnemonic": "mov", - "operands": "rdx, r12" + "operands": "rdx, r12", + "stack_offset": 0 }, { "address": "0x1400087fd", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], esi" + "operands": "dword ptr [rsp + 0x28], esi", + "stack_offset": 0 }, { "address": "0x140008801", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140008804", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r15" + "operands": "qword ptr [rsp + 0x20], r15", + "stack_offset": 0 }, { "address": "0x140008809", "size": 5, "mnemonic": "call", - "operands": "0x140008aec" + "operands": "0x140008aec", + "stack_offset": 0 }, { "address": "0x14000880e", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140008813", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x38], 0" + "operands": "qword ptr [rax + 0x38], 0", + "stack_offset": 0 }, { "address": "0x140008818", "size": 2, "mnemonic": "jne", - "operands": "0x140008881" + "operands": "0x140008881", + "stack_offset": 0 }, { "address": "0x14000881a", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x70]" + "operands": "rcx, qword ptr [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000881e", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140008821", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140008826", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x188" + "operands": "rsp, 0x188", + "stack_offset": 0 }, { "address": "0x14000882d", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000882f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140008831", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140008833", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140008835", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140008836", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140008837", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140008838", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008839", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -26015,19 +28438,22 @@ "address": "0x1400084e2", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400084e7", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x38], 0" + "operands": "qword ptr [rax + 0x38], 0", + "stack_offset": 0 }, { "address": "0x1400084ec", "size": 2, "mnemonic": "je", - "operands": "0x14000852d" + "operands": "0x14000852d", + "stack_offset": 0 } ], "successors": [ @@ -26045,31 +28471,36 @@ "address": "0x1400085cf", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rbx + 0x18]" + "operands": "xmm0, xmmword ptr [rbx + 0x18]", + "stack_offset": 0 }, { "address": "0x1400085d3", "size": 5, "mnemonic": "movq", - "operands": "rax, xmm0" + "operands": "rax, xmm0", + "stack_offset": 0 }, { "address": "0x1400085d8", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp - 0x78], xmm0" + "operands": "xmmword ptr [rbp - 0x78], xmm0", + "stack_offset": 0 }, { "address": "0x1400085dc", "size": 2, "mnemonic": "cmp", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x1400085de", "size": 6, "mnemonic": "jg", - "operands": "0x140008710" + "operands": "0x140008710", + "stack_offset": 0 } ], "successors": [ @@ -26087,13 +28518,15 @@ "address": "0x1400087b7", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r15], 0x40" + "operands": "byte ptr [r15], 0x40", + "stack_offset": 0 }, { "address": "0x1400087bb", "size": 2, "mnemonic": "je", - "operands": "0x14000880e" + "operands": "0x14000880e", + "stack_offset": 0 } ], "successors": [ @@ -26111,67 +28544,78 @@ "address": "0x1400085f0", "size": 4, "mnemonic": "mov", - "operands": "r9, qword ptr [r14 + 0x10]" + "operands": "r9, qword ptr [r14 + 0x10]", + "stack_offset": 0 }, { "address": "0x1400085f4", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x78]" + "operands": "rdx, [rbp - 0x78]", + "stack_offset": 0 }, { "address": "0x1400085f8", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [r14 + 8]" + "operands": "r8, qword ptr [r14 + 8]", + "stack_offset": 0 }, { "address": "0x1400085fc", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x20]" + "operands": "rcx, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x140008600", "size": 3, "mnemonic": "mov", - "operands": "r9d, dword ptr [r9]" + "operands": "r9d, dword ptr [r9]", + "stack_offset": 0 }, { "address": "0x140008603", "size": 5, "mnemonic": "call", - "operands": "0x140009580" + "operands": "0x140009580", + "stack_offset": 0 }, { "address": "0x140008608", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x20]" + "operands": "eax, dword ptr [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000860b", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x68], 0" + "operands": "dword ptr [rsp + 0x68], 0", + "stack_offset": 0 }, { "address": "0x140008613", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x78], eax" + "operands": "dword ptr [rsp + 0x78], eax", + "stack_offset": 0 }, { "address": "0x140008617", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008619", "size": 6, "mnemonic": "je", - "operands": "0x140008709" + "operands": "0x140008709", + "stack_offset": 0 } ], "successors": [ @@ -26189,79 +28633,92 @@ "address": "0x1400084ee", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400084f3", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rax + 0x38]" + "operands": "rbx, qword ptr [rax + 0x38]", + "stack_offset": 0 }, { "address": "0x1400084f7", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400084fc", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x1400084ff", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140008502", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x38], 0" + "operands": "qword ptr [rax + 0x38], 0", + "stack_offset": 0 }, { "address": "0x14000850a", "size": 5, "mnemonic": "call", - "operands": "0x14000a2f4" + "operands": "0x14000a2f4", + "stack_offset": 0 }, { "address": "0x14000850f", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140008511", "size": 2, "mnemonic": "jne", - "operands": "0x140008528" + "operands": "0x140008528", + "stack_offset": 0 }, { "address": "0x140008513", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140008516", "size": 5, "mnemonic": "call", - "operands": "0x14000a3dc" + "operands": "0x14000a3dc", + "stack_offset": 0 }, { "address": "0x14000851b", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14000851d", "size": 6, "mnemonic": "je", - "operands": "0x14000885e" + "operands": "0x14000885e", + "stack_offset": 0 } ], "successors": [ @@ -26279,97 +28736,113 @@ "address": "0x14000880e", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140008813", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x38], 0" + "operands": "qword ptr [rax + 0x38], 0", + "stack_offset": 0 }, { "address": "0x140008818", "size": 2, "mnemonic": "jne", - "operands": "0x140008881" + "operands": "0x140008881", + "stack_offset": 0 }, { "address": "0x14000881a", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x70]" + "operands": "rcx, qword ptr [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000881e", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140008821", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140008826", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x188" + "operands": "rsp, 0x188", + "stack_offset": 0 }, { "address": "0x14000882d", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000882f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140008831", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140008833", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140008835", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140008836", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140008837", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140008838", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008839", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -26385,31 +28858,36 @@ "address": "0x1400087bd", "size": 3, "mnemonic": "mov", - "operands": "rdx, r15" + "operands": "rdx, r15", + "stack_offset": 0 }, { "address": "0x1400087c0", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x1400087c3", "size": 5, "mnemonic": "call", - "operands": "0x1400064a4" + "operands": "0x1400064a4", + "stack_offset": 0 }, { "address": "0x1400087c8", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400087ca", "size": 6, "mnemonic": "je", - "operands": "0x140008864" + "operands": "0x140008864", + "stack_offset": 0 } ], "successors": [ @@ -26427,253 +28905,295 @@ "address": "0x140008709", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0x8710]" + "operands": "r11, [rip - 0x8710]", + "stack_offset": 0 }, { "address": "0x140008710", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rbx + 8]" + "operands": "r10, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140008714", "size": 3, "mnemonic": "inc", - "operands": "r12d" + "operands": "r12d", + "stack_offset": 0 }, { "address": "0x140008717", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000871a", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x64], r12d" + "operands": "dword ptr [rsp + 0x64], r12d", + "stack_offset": 0 }, { "address": "0x14000871f", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r10]" + "operands": "ecx, byte ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008723", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008726", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r9, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x14000872f", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008737", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000873a", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x14000873d", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008741", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008743", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x18], eax" + "operands": "dword ptr [rbx + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140008746", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008749", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000874c", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000874f", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r8, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008758", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008760", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140008763", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008766", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008769", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000876b", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x1c], eax" + "operands": "dword ptr [rbx + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x14000876e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008772", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008775", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008778", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008781", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008789", "size": 3, "mnemonic": "sub", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14000878c", "size": 3, "mnemonic": "sub", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x14000878f", "size": 3, "mnemonic": "sub", - "operands": "r10, r9" + "operands": "r10, r9", + "stack_offset": 0 }, { "address": "0x140008792", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r10 - 4]" + "operands": "eax, dword ptr [r10 - 4]", + "stack_offset": 0 }, { "address": "0x140008796", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008798", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x20], eax" + "operands": "dword ptr [rbx + 0x20], eax", + "stack_offset": 0 }, { "address": "0x14000879b", "size": 4, "mnemonic": "lea", - "operands": "rax, [r10 + 4]" + "operands": "rax, [r10 + 4]", + "stack_offset": 0 }, { "address": "0x14000879f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], r10" + "operands": "qword ptr [rbx + 8], r10", + "stack_offset": 0 }, { "address": "0x1400087a3", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [r10]" + "operands": "ecx, dword ptr [r10]", + "stack_offset": 0 }, { "address": "0x1400087a6", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rax" + "operands": "qword ptr [rbx + 8], rax", + "stack_offset": 0 }, { "address": "0x1400087aa", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x24], ecx" + "operands": "dword ptr [rbx + 0x24], ecx", + "stack_offset": 0 }, { "address": "0x1400087ad", "size": 4, "mnemonic": "cmp", - "operands": "r12d, dword ptr [rbp - 0x38]" + "operands": "r12d, dword ptr [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x1400087b1", "size": 6, "mnemonic": "jb", - "operands": "0x1400085cf" + "operands": "0x1400085cf", + "stack_offset": 0 } ], "successors": [ @@ -26691,97 +29211,113 @@ "address": "0x14000861f", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rbp + 0x38]" + "operands": "xmm0, xmmword ptr [rbp + 0x38]", + "stack_offset": 0 }, { "address": "0x140008623", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi + 0x30]" + "operands": "rax, qword ptr [rdi + 0x30]", + "stack_offset": 0 }, { "address": "0x140008627", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rbp + 0x48]" + "operands": "xmm1, xmmword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000862b", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp - 0x30], xmm0" + "operands": "xmmword ptr [rbp - 0x30], xmm0", + "stack_offset": 0 }, { "address": "0x14000862f", "size": 5, "mnemonic": "movsd", - "operands": "xmm0, qword ptr [rbp + 0x58]" + "operands": "xmm0, qword ptr [rbp + 0x58]", + "stack_offset": 0 }, { "address": "0x140008634", "size": 5, "mnemonic": "movsd", - "operands": "qword ptr [rbp - 0x10], xmm0" + "operands": "qword ptr [rbp - 0x10], xmm0", + "stack_offset": 0 }, { "address": "0x140008639", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp - 0x20], xmm1" + "operands": "xmmword ptr [rbp - 0x20], xmm1", + "stack_offset": 0 }, { "address": "0x14000863d", "size": 4, "mnemonic": "movsxd", - "operands": "r13, dword ptr [rax + 0xc]" + "operands": "r13, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x140008641", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008646", "size": 4, "mnemonic": "add", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x14000864a", "size": 3, "mnemonic": "add", - "operands": "r13, rax" + "operands": "r13, rax", + "stack_offset": 0 }, { "address": "0x14000864d", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi + 0x30]" + "operands": "rax, qword ptr [rdi + 0x30]", + "stack_offset": 0 }, { "address": "0x140008651", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rax + 0xc]" + "operands": "rbx, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x140008655", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x14000865a", "size": 4, "mnemonic": "mov", - "operands": "r12d, dword ptr [rax + rbx]" + "operands": "r12d, dword ptr [rax + rbx]", + "stack_offset": 0 }, { "address": "0x14000865e", "size": 2, "mnemonic": "jmp", - "operands": "0x140008687" + "operands": "0x140008687", + "stack_offset": 0 } ], "successors": [ @@ -26798,13 +29334,15 @@ "address": "0x14000885e", "size": 5, "mnemonic": "call", - "operands": "0x140010b70" + "operands": "0x140010b70", + "stack_offset": 0 }, { "address": "0x140008863", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -26820,7 +29358,8 @@ "address": "0x140008523", "size": 5, "mnemonic": "jmp", - "operands": "0x14000883a" + "operands": "0x14000883a", + "stack_offset": 0 } ], "successors": [ @@ -26837,43 +29376,50 @@ "address": "0x140008864", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140008869", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rdi" + "operands": "qword ptr [rax + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x14000886d", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140008872", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x70]" + "operands": "rcx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140008877", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x28], rcx" + "operands": "qword ptr [rax + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x14000887b", "size": 5, "mnemonic": "call", - "operands": "0x140010b70" + "operands": "0x140010b70", + "stack_offset": 0 }, { "address": "0x140008880", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -26889,7 +29435,8 @@ "address": "0x1400087d0", "size": 2, "mnemonic": "jmp", - "operands": "0x14000880e" + "operands": "0x14000880e", + "stack_offset": 0 } ], "successors": [ @@ -26906,13 +29453,15 @@ "address": "0x140008687", "size": 3, "mnemonic": "test", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x14000868a", "size": 2, "mnemonic": "jg", - "operands": "0x140008660" + "operands": "0x140008660", + "stack_offset": 0 } ], "successors": [ @@ -26930,55 +29479,64 @@ "address": "0x14000883a", "size": 2, "mnemonic": "mov", - "operands": "dl, 1" + "operands": "dl, 1", + "stack_offset": 0 }, { "address": "0x14000883c", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14000883f", "size": 5, "mnemonic": "call", - "operands": "0x140006f98" + "operands": "0x140006f98", + "stack_offset": 0 }, { "address": "0x140008844", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x78]" + "operands": "rcx, [rbp - 0x78]", + "stack_offset": 0 }, { "address": "0x140008848", "size": 5, "mnemonic": "call", - "operands": "0x140009724" + "operands": "0x140009724", + "stack_offset": 0 }, { "address": "0x14000884d", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x2771c]" + "operands": "rdx, [rip + 0x2771c]", + "stack_offset": 0 }, { "address": "0x140008854", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x78]" + "operands": "rcx, [rbp - 0x78]", + "stack_offset": 0 }, { "address": "0x140008858", "size": 5, "mnemonic": "call", - "operands": "0x140006198" + "operands": "0x140006198", + "stack_offset": 0 }, { "address": "0x14000885d", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -26994,79 +29552,92 @@ "address": "0x140008660", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r13]" + "operands": "rbx, dword ptr [r13]", + "stack_offset": 0 }, { "address": "0x140008664", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008669", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rdi + 0x30]" + "operands": "r8, qword ptr [rdi + 0x30]", + "stack_offset": 0 }, { "address": "0x14000866d", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x30]" + "operands": "rcx, [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x140008671", "size": 3, "mnemonic": "add", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140008674", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140008677", "size": 5, "mnemonic": "call", - "operands": "0x140008f14" + "operands": "0x140008f14", + "stack_offset": 0 }, { "address": "0x14000867c", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000867e", "size": 2, "mnemonic": "jne", - "operands": "0x1400086ab" + "operands": "0x1400086ab", + "stack_offset": 0 }, { "address": "0x140008680", "size": 3, "mnemonic": "dec", - "operands": "r12d" + "operands": "r12d", + "stack_offset": 0 }, { "address": "0x140008683", "size": 4, "mnemonic": "add", - "operands": "r13, 4" + "operands": "r13, 4", + "stack_offset": 0 }, { "address": "0x140008687", "size": 3, "mnemonic": "test", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x14000868a", "size": 2, "mnemonic": "jg", - "operands": "0x140008660" + "operands": "0x140008660", + "stack_offset": 0 } ], "successors": [ @@ -27084,49 +29655,57 @@ "address": "0x14000868c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x20]" + "operands": "rcx, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x140008690", "size": 5, "mnemonic": "call", - "operands": "0x140009b74" + "operands": "0x140009b74", + "stack_offset": 0 }, { "address": "0x140008695", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0x68]" + "operands": "eax, dword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140008699", "size": 2, "mnemonic": "inc", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x14000869b", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x68], eax" + "operands": "dword ptr [rsp + 0x68], eax", + "stack_offset": 0 }, { "address": "0x14000869f", "size": 4, "mnemonic": "cmp", - "operands": "eax, dword ptr [rsp + 0x78]" + "operands": "eax, dword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x1400086a3", "size": 6, "mnemonic": "jne", - "operands": "0x14000861f" + "operands": "0x14000861f", + "stack_offset": 0 }, { "address": "0x1400086a9", "size": 2, "mnemonic": "jmp", - "operands": "0x140008700" + "operands": "0x140008700", + "stack_offset": 0 } ], "successors": [ @@ -27143,265 +29722,309 @@ "address": "0x140008700", "size": 5, "mnemonic": "mov", - "operands": "r12d, dword ptr [rsp + 0x64]" + "operands": "r12d, dword ptr [rsp + 0x64]", + "stack_offset": 0 }, { "address": "0x140008705", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp - 0x80]" + "operands": "rbx, qword ptr [rbp - 0x80]", + "stack_offset": 0 }, { "address": "0x140008709", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0x8710]" + "operands": "r11, [rip - 0x8710]", + "stack_offset": 0 }, { "address": "0x140008710", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rbx + 8]" + "operands": "r10, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140008714", "size": 3, "mnemonic": "inc", - "operands": "r12d" + "operands": "r12d", + "stack_offset": 0 }, { "address": "0x140008717", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000871a", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x64], r12d" + "operands": "dword ptr [rsp + 0x64], r12d", + "stack_offset": 0 }, { "address": "0x14000871f", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r10]" + "operands": "ecx, byte ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008723", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008726", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r9, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x14000872f", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008737", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000873a", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x14000873d", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008741", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008743", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x18], eax" + "operands": "dword ptr [rbx + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140008746", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008749", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000874c", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000874f", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r8, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008758", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008760", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140008763", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008766", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008769", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000876b", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x1c], eax" + "operands": "dword ptr [rbx + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x14000876e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008772", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008775", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008778", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008781", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008789", "size": 3, "mnemonic": "sub", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14000878c", "size": 3, "mnemonic": "sub", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x14000878f", "size": 3, "mnemonic": "sub", - "operands": "r10, r9" + "operands": "r10, r9", + "stack_offset": 0 }, { "address": "0x140008792", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r10 - 4]" + "operands": "eax, dword ptr [r10 - 4]", + "stack_offset": 0 }, { "address": "0x140008796", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008798", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x20], eax" + "operands": "dword ptr [rbx + 0x20], eax", + "stack_offset": 0 }, { "address": "0x14000879b", "size": 4, "mnemonic": "lea", - "operands": "rax, [r10 + 4]" + "operands": "rax, [r10 + 4]", + "stack_offset": 0 }, { "address": "0x14000879f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], r10" + "operands": "qword ptr [rbx + 8], r10", + "stack_offset": 0 }, { "address": "0x1400087a3", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [r10]" + "operands": "ecx, dword ptr [r10]", + "stack_offset": 0 }, { "address": "0x1400087a6", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rax" + "operands": "qword ptr [rbx + 8], rax", + "stack_offset": 0 }, { "address": "0x1400087aa", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x24], ecx" + "operands": "dword ptr [rbx + 0x24], ecx", + "stack_offset": 0 }, { "address": "0x1400087ad", "size": 4, "mnemonic": "cmp", - "operands": "r12d, dword ptr [rbp - 0x38]" + "operands": "r12d, dword ptr [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x1400087b1", "size": 6, "mnemonic": "jb", - "operands": "0x1400085cf" + "operands": "0x1400085cf", + "stack_offset": 0 } ], "successors": [ @@ -27425,85 +30048,99 @@ "address": "0x140008897", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008898", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140008899", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000889a", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000889c", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000889e", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400088a0", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400088a2", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xc0" + "operands": "rsp, 0xc0", + "stack_offset": 0 }, { "address": "0x1400088a9", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0x80000003" + "operands": "dword ptr [rcx], 0x80000003", + "stack_offset": 0 }, { "address": "0x1400088af", "size": 3, "mnemonic": "mov", - "operands": "rbp, r9" + "operands": "rbp, r9", + "stack_offset": 0 }, { "address": "0x1400088b2", "size": 3, "mnemonic": "mov", - "operands": "r15, r8" + "operands": "r15, r8", + "stack_offset": 0 }, { "address": "0x1400088b5", "size": 3, "mnemonic": "mov", - "operands": "r12, rdx" + "operands": "r12, rdx", + "stack_offset": 0 }, { "address": "0x1400088b8", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x1400088bb", "size": 6, "mnemonic": "je", - "operands": "0x140008ac8" + "operands": "0x140008ac8", + "stack_offset": 0 } ], "successors": [ @@ -27521,61 +30158,71 @@ "address": "0x140008ac8", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x118]" + "operands": "rbx, qword ptr [rsp + 0x118]", + "stack_offset": 0 }, { "address": "0x140008ad0", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xc0" + "operands": "rsp, 0xc0", + "stack_offset": 0 }, { "address": "0x140008ad7", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140008ad9", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140008adb", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140008add", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140008adf", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140008ae0", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140008ae1", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008ae2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -27591,37 +30238,43 @@ "address": "0x1400088c1", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400088c6", "size": 8, "mnemonic": "mov", - "operands": "r13d, dword ptr [rsp + 0x130]" + "operands": "r13d, dword ptr [rsp + 0x130]", + "stack_offset": 0 }, { "address": "0x1400088ce", "size": 8, "mnemonic": "mov", - "operands": "r14d, dword ptr [rsp + 0x128]" + "operands": "r14d, dword ptr [rsp + 0x128]", + "stack_offset": 0 }, { "address": "0x1400088d6", "size": 8, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x120]" + "operands": "rdi, qword ptr [rsp + 0x120]", + "stack_offset": 0 }, { "address": "0x1400088de", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x10], 0" + "operands": "qword ptr [rax + 0x10], 0", + "stack_offset": 0 }, { "address": "0x1400088e3", "size": 2, "mnemonic": "je", - "operands": "0x140008940" + "operands": "0x140008940", + "stack_offset": 0 } ], "successors": [ @@ -27639,217 +30292,253 @@ "address": "0x140008940", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 8]" + "operands": "rax, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x140008944", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], rax" + "operands": "qword ptr [rsp + 0x68], rax", + "stack_offset": 0 }, { "address": "0x140008949", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rdi" + "operands": "qword ptr [rsp + 0x60], rdi", + "stack_offset": 0 }, { "address": "0x14000894e", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0xc], 0" + "operands": "dword ptr [rdi + 0xc], 0", + "stack_offset": 0 }, { "address": "0x140008952", "size": 6, "mnemonic": "jbe", - "operands": "0x140008ae3" + "operands": "0x140008ae3", + "stack_offset": 0 }, { "address": "0x140008958", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], r13d" + "operands": "dword ptr [rsp + 0x28], r13d", + "stack_offset": 0 }, { "address": "0x14000895d", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x60]" + "operands": "rdx, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140008962", "size": 3, "mnemonic": "mov", - "operands": "r9, rbp" + "operands": "r9, rbp", + "stack_offset": 0 }, { "address": "0x140008965", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x14000896a", "size": 3, "mnemonic": "mov", - "operands": "r8d, r14d" + "operands": "r8d, r14d", + "stack_offset": 0 }, { "address": "0x14000896d", "size": 8, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x98]" + "operands": "rcx, [rsp + 0x98]", + "stack_offset": 0 }, { "address": "0x140008975", "size": 5, "mnemonic": "call", - "operands": "0x140006650" + "operands": "0x140006650", + "stack_offset": 0 }, { "address": "0x14000897a", "size": 8, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rsp + 0x98]" + "operands": "xmm1, xmmword ptr [rsp + 0x98]", + "stack_offset": 0 }, { "address": "0x140008982", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x140008986", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x14000898b", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x14000898f", "size": 6, "mnemonic": "movdqu", - "operands": "xmmword ptr [rsp + 0x70], xmm1" + "operands": "xmmword ptr [rsp + 0x70], xmm1", + "stack_offset": 0 }, { "address": "0x140008995", "size": 7, "mnemonic": "cmp", - "operands": "eax, dword ptr [rsp + 0xb0]" + "operands": "eax, dword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x14000899c", "size": 6, "mnemonic": "jae", - "operands": "0x140008ac8" + "operands": "0x140008ac8", + "stack_offset": 0 }, { "address": "0x1400089a2", "size": 4, "mnemonic": "mov", - "operands": "ebx, dword ptr [rsp + 0x78]" + "operands": "ebx, dword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x1400089a6", "size": 5, "mnemonic": "movq", - "operands": "r9, xmm1" + "operands": "r9, xmm1", + "stack_offset": 0 }, { "address": "0x1400089ab", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x100], r9" + "operands": "qword ptr [rsp + 0x100], r9", + "stack_offset": 0 }, { "address": "0x1400089b3", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x70]" + "operands": "rax, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400089b8", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rax]" + "operands": "rax, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400089bb", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rax + 0x10]" + "operands": "rdx, dword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400089bf", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x1400089c1", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rax*4]" + "operands": "rcx, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x1400089c5", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r9 + 8]" + "operands": "rax, qword ptr [r9 + 8]", + "stack_offset": 0 }, { "address": "0x1400089c9", "size": 4, "mnemonic": "lea", - "operands": "r8, [rdx + rcx*4]" + "operands": "r8, [rdx + rcx*4]", + "stack_offset": 0 }, { "address": "0x1400089cd", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r8 + rax]" + "operands": "xmm0, xmmword ptr [r8 + rax]", + "stack_offset": 0 }, { "address": "0x1400089d2", "size": 5, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [r8 + rax + 0x10]" + "operands": "rdx, dword ptr [r8 + rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400089d7", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x90], edx" + "operands": "dword ptr [rsp + 0x90], edx", + "stack_offset": 0 }, { "address": "0x1400089de", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x1400089e2", "size": 8, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0x80], xmm0" + "operands": "xmmword ptr [rsp + 0x80], xmm0", + "stack_offset": 0 }, { "address": "0x1400089ea", "size": 3, "mnemonic": "cmp", - "operands": "eax, r14d" + "operands": "eax, r14d", + "stack_offset": 0 }, { "address": "0x1400089ed", "size": 6, "mnemonic": "jg", - "operands": "0x140008ab1" + "operands": "0x140008ab1", + "stack_offset": 0 } ], "successors": [ @@ -27867,37 +30556,43 @@ "address": "0x1400088e5", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400088e7", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x17713]" + "operands": "qword ptr [rip + 0x17713]", + "stack_offset": 0 }, { "address": "0x1400088ed", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400088f0", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400088f5", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x10], rbx" + "operands": "qword ptr [rax + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x1400088f9", "size": 2, "mnemonic": "je", - "operands": "0x140008940" + "operands": "0x140008940", + "stack_offset": 0 } ], "successors": [ @@ -27915,25 +30610,29 @@ "address": "0x140008ab1", "size": 8, "mnemonic": "mov", - "operands": "r9, qword ptr [rsp + 0x100]" + "operands": "r9, qword ptr [rsp + 0x100]", + "stack_offset": 0 }, { "address": "0x140008ab9", "size": 2, "mnemonic": "inc", - "operands": "ebx" + "operands": "ebx", + "stack_offset": 0 }, { "address": "0x140008abb", "size": 7, "mnemonic": "cmp", - "operands": "ebx, dword ptr [rsp + 0xb0]" + "operands": "ebx, dword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140008ac2", "size": 6, "mnemonic": "jb", - "operands": "0x1400089b3" + "operands": "0x1400089b3", + "stack_offset": 0 } ], "successors": [ @@ -27951,25 +30650,29 @@ "address": "0x1400089f3", "size": 5, "mnemonic": "movq", - "operands": "rax, xmm0" + "operands": "rax, xmm0", + "stack_offset": 0 }, { "address": "0x1400089f8", "size": 4, "mnemonic": "shr", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x1400089fc", "size": 3, "mnemonic": "cmp", - "operands": "r14d, eax" + "operands": "r14d, eax", + "stack_offset": 0 }, { "address": "0x1400089ff", "size": 6, "mnemonic": "jg", - "operands": "0x140008ab1" + "operands": "0x140008ab1", + "stack_offset": 0 } ], "successors": [ @@ -27987,13 +30690,15 @@ "address": "0x1400088fb", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rsi], 0xe0434f4d" + "operands": "dword ptr [rsi], 0xe0434f4d", + "stack_offset": 0 }, { "address": "0x140008901", "size": 2, "mnemonic": "je", - "operands": "0x140008940" + "operands": "0x140008940", + "stack_offset": 0 } ], "successors": [ @@ -28011,85 +30716,99 @@ "address": "0x1400089b3", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x70]" + "operands": "rax, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400089b8", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rax]" + "operands": "rax, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400089bb", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rax + 0x10]" + "operands": "rdx, dword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400089bf", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x1400089c1", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rax*4]" + "operands": "rcx, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x1400089c5", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r9 + 8]" + "operands": "rax, qword ptr [r9 + 8]", + "stack_offset": 0 }, { "address": "0x1400089c9", "size": 4, "mnemonic": "lea", - "operands": "r8, [rdx + rcx*4]" + "operands": "r8, [rdx + rcx*4]", + "stack_offset": 0 }, { "address": "0x1400089cd", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r8 + rax]" + "operands": "xmm0, xmmword ptr [r8 + rax]", + "stack_offset": 0 }, { "address": "0x1400089d2", "size": 5, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [r8 + rax + 0x10]" + "operands": "rdx, dword ptr [r8 + rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400089d7", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x90], edx" + "operands": "dword ptr [rsp + 0x90], edx", + "stack_offset": 0 }, { "address": "0x1400089de", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x1400089e2", "size": 8, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0x80], xmm0" + "operands": "xmmword ptr [rsp + 0x80], xmm0", + "stack_offset": 0 }, { "address": "0x1400089ea", "size": 3, "mnemonic": "cmp", - "operands": "eax, r14d" + "operands": "eax, r14d", + "stack_offset": 0 }, { "address": "0x1400089ed", "size": 6, "mnemonic": "jg", - "operands": "0x140008ab1" + "operands": "0x140008ab1", + "stack_offset": 0 } ], "successors": [ @@ -28107,67 +30826,78 @@ "address": "0x140008a05", "size": 4, "mnemonic": "mov", - "operands": "r15, qword ptr [rbp + 8]" + "operands": "r15, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x140008a09", "size": 4, "mnemonic": "add", - "operands": "r15, -0x14" + "operands": "r15, -0x14", + "stack_offset": 0 }, { "address": "0x140008a0d", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x140008a12", "size": 5, "mnemonic": "movq", - "operands": "rax, xmm0" + "operands": "rax, xmm0", + "stack_offset": 0 }, { "address": "0x140008a17", "size": 4, "mnemonic": "shr", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x140008a1b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rax*4]" + "operands": "rcx, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x140008a1f", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rdx + rcx*4]" + "operands": "rdx, [rdx + rcx*4]", + "stack_offset": 0 }, { "address": "0x140008a23", "size": 3, "mnemonic": "add", - "operands": "r15, rdx" + "operands": "r15, rdx", + "stack_offset": 0 }, { "address": "0x140008a26", "size": 4, "mnemonic": "movsxd", - "operands": "r12, dword ptr [r15 + 4]" + "operands": "r12, dword ptr [r15 + 4]", + "stack_offset": 0 }, { "address": "0x140008a2a", "size": 3, "mnemonic": "test", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x140008a2d", "size": 2, "mnemonic": "je", - "operands": "0x140008a54" + "operands": "0x140008a54", + "stack_offset": 0 } ], "successors": [ @@ -28185,13 +30915,15 @@ "address": "0x140008903", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rsi], 0xe0434352" + "operands": "dword ptr [rsi], 0xe0434352", + "stack_offset": 0 }, { "address": "0x140008909", "size": 2, "mnemonic": "je", - "operands": "0x140008940" + "operands": "0x140008940", + "stack_offset": 0 } ], "successors": [ @@ -28209,127 +30941,148 @@ "address": "0x140008a54", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r15], 0x40" + "operands": "byte ptr [r15], 0x40", + "stack_offset": 0 }, { "address": "0x140008a58", "size": 2, "mnemonic": "jne", - "operands": "0x140008ab1" + "operands": "0x140008ab1", + "stack_offset": 0 }, { "address": "0x140008a5a", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x138]" + "operands": "rax, qword ptr [rsp + 0x138]", + "stack_offset": 0 }, { "address": "0x140008a62", "size": 3, "mnemonic": "mov", - "operands": "r9, rbp" + "operands": "r9, rbp", + "stack_offset": 0 }, { "address": "0x140008a65", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x110]" + "operands": "r8, qword ptr [rsp + 0x110]", + "stack_offset": 0 }, { "address": "0x140008a6d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140008a70", "size": 8, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsp + 0x108]" + "operands": "rdx, qword ptr [rsp + 0x108]", + "stack_offset": 0 }, { "address": "0x140008a78", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x58], 0" + "operands": "byte ptr [rsp + 0x58], 0", + "stack_offset": 0 }, { "address": "0x140008a7d", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], 1" + "operands": "byte ptr [rsp + 0x50], 1", + "stack_offset": 0 }, { "address": "0x140008a82", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], rax" + "operands": "qword ptr [rsp + 0x48], rax", + "stack_offset": 0 }, { "address": "0x140008a87", "size": 8, "mnemonic": "lea", - "operands": "rax, [rsp + 0x80]" + "operands": "rax, [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140008a8f", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], r13d" + "operands": "dword ptr [rsp + 0x40], r13d", + "stack_offset": 0 }, { "address": "0x140008a94", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rax" + "operands": "qword ptr [rsp + 0x38], rax", + "stack_offset": 0 }, { "address": "0x140008a99", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], 0" + "operands": "qword ptr [rsp + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140008aa2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], r15" + "operands": "qword ptr [rsp + 0x28], r15", + "stack_offset": 0 }, { "address": "0x140008aa7", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x140008aac", "size": 5, "mnemonic": "call", - "operands": "0x140007cb0" + "operands": "0x140007cb0", + "stack_offset": 0 }, { "address": "0x140008ab1", "size": 8, "mnemonic": "mov", - "operands": "r9, qword ptr [rsp + 0x100]" + "operands": "r9, qword ptr [rsp + 0x100]", + "stack_offset": 0 }, { "address": "0x140008ab9", "size": 2, "mnemonic": "inc", - "operands": "ebx" + "operands": "ebx", + "stack_offset": 0 }, { "address": "0x140008abb", "size": 7, "mnemonic": "cmp", - "operands": "ebx, dword ptr [rsp + 0xb0]" + "operands": "ebx, dword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140008ac2", "size": 6, "mnemonic": "jb", - "operands": "0x1400089b3" + "operands": "0x1400089b3", + "stack_offset": 0 } ], "successors": [ @@ -28347,19 +31100,22 @@ "address": "0x140008a2f", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008a34", "size": 3, "mnemonic": "add", - "operands": "rax, r12" + "operands": "rax, r12", + "stack_offset": 0 }, { "address": "0x140008a37", "size": 2, "mnemonic": "je", - "operands": "0x140008a54" + "operands": "0x140008a54", + "stack_offset": 0 } ], "successors": [ @@ -28377,289 +31133,337 @@ "address": "0x14000890b", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x138]" + "operands": "rax, qword ptr [rsp + 0x138]", + "stack_offset": 0 }, { "address": "0x140008913", "size": 3, "mnemonic": "mov", - "operands": "r9, rbp" + "operands": "r9, rbp", + "stack_offset": 0 }, { "address": "0x140008916", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], r14d" + "operands": "dword ptr [rsp + 0x38], r14d", + "stack_offset": 0 }, { "address": "0x14000891b", "size": 3, "mnemonic": "mov", - "operands": "r8, r15" + "operands": "r8, r15", + "stack_offset": 0 }, { "address": "0x14000891e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rax" + "operands": "qword ptr [rsp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x140008923", "size": 3, "mnemonic": "mov", - "operands": "rdx, r12" + "operands": "rdx, r12", + "stack_offset": 0 }, { "address": "0x140008926", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], r13d" + "operands": "dword ptr [rsp + 0x28], r13d", + "stack_offset": 0 }, { "address": "0x14000892b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14000892e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x140008933", "size": 5, "mnemonic": "call", - "operands": "0x140006240" + "operands": "0x140006240", + "stack_offset": 0 }, { "address": "0x140008938", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000893a", "size": 6, "mnemonic": "jne", - "operands": "0x140008ac8" + "operands": "0x140008ac8", + "stack_offset": 0 }, { "address": "0x140008940", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 8]" + "operands": "rax, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x140008944", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], rax" + "operands": "qword ptr [rsp + 0x68], rax", + "stack_offset": 0 }, { "address": "0x140008949", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rdi" + "operands": "qword ptr [rsp + 0x60], rdi", + "stack_offset": 0 }, { "address": "0x14000894e", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0xc], 0" + "operands": "dword ptr [rdi + 0xc], 0", + "stack_offset": 0 }, { "address": "0x140008952", "size": 6, "mnemonic": "jbe", - "operands": "0x140008ae3" + "operands": "0x140008ae3", + "stack_offset": 0 }, { "address": "0x140008958", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], r13d" + "operands": "dword ptr [rsp + 0x28], r13d", + "stack_offset": 0 }, { "address": "0x14000895d", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x60]" + "operands": "rdx, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140008962", "size": 3, "mnemonic": "mov", - "operands": "r9, rbp" + "operands": "r9, rbp", + "stack_offset": 0 }, { "address": "0x140008965", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x14000896a", "size": 3, "mnemonic": "mov", - "operands": "r8d, r14d" + "operands": "r8d, r14d", + "stack_offset": 0 }, { "address": "0x14000896d", "size": 8, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x98]" + "operands": "rcx, [rsp + 0x98]", + "stack_offset": 0 }, { "address": "0x140008975", "size": 5, "mnemonic": "call", - "operands": "0x140006650" + "operands": "0x140006650", + "stack_offset": 0 }, { "address": "0x14000897a", "size": 8, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rsp + 0x98]" + "operands": "xmm1, xmmword ptr [rsp + 0x98]", + "stack_offset": 0 }, { "address": "0x140008982", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x140008986", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x14000898b", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x14000898f", "size": 6, "mnemonic": "movdqu", - "operands": "xmmword ptr [rsp + 0x70], xmm1" + "operands": "xmmword ptr [rsp + 0x70], xmm1", + "stack_offset": 0 }, { "address": "0x140008995", "size": 7, "mnemonic": "cmp", - "operands": "eax, dword ptr [rsp + 0xb0]" + "operands": "eax, dword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x14000899c", "size": 6, "mnemonic": "jae", - "operands": "0x140008ac8" + "operands": "0x140008ac8", + "stack_offset": 0 }, { "address": "0x1400089a2", "size": 4, "mnemonic": "mov", - "operands": "ebx, dword ptr [rsp + 0x78]" + "operands": "ebx, dword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x1400089a6", "size": 5, "mnemonic": "movq", - "operands": "r9, xmm1" + "operands": "r9, xmm1", + "stack_offset": 0 }, { "address": "0x1400089ab", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x100], r9" + "operands": "qword ptr [rsp + 0x100], r9", + "stack_offset": 0 }, { "address": "0x1400089b3", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x70]" + "operands": "rax, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400089b8", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rax]" + "operands": "rax, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400089bb", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rax + 0x10]" + "operands": "rdx, dword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400089bf", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x1400089c1", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rax*4]" + "operands": "rcx, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x1400089c5", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r9 + 8]" + "operands": "rax, qword ptr [r9 + 8]", + "stack_offset": 0 }, { "address": "0x1400089c9", "size": 4, "mnemonic": "lea", - "operands": "r8, [rdx + rcx*4]" + "operands": "r8, [rdx + rcx*4]", + "stack_offset": 0 }, { "address": "0x1400089cd", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r8 + rax]" + "operands": "xmm0, xmmword ptr [r8 + rax]", + "stack_offset": 0 }, { "address": "0x1400089d2", "size": 5, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [r8 + rax + 0x10]" + "operands": "rdx, dword ptr [r8 + rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400089d7", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x90], edx" + "operands": "dword ptr [rsp + 0x90], edx", + "stack_offset": 0 }, { "address": "0x1400089de", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x1400089e2", "size": 8, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0x80], xmm0" + "operands": "xmmword ptr [rsp + 0x80], xmm0", + "stack_offset": 0 }, { "address": "0x1400089ea", "size": 3, "mnemonic": "cmp", - "operands": "eax, r14d" + "operands": "eax, r14d", + "stack_offset": 0 }, { "address": "0x1400089ed", "size": 6, "mnemonic": "jg", - "operands": "0x140008ab1" + "operands": "0x140008ab1", + "stack_offset": 0 } ], "successors": [ @@ -28677,19 +31481,22 @@ "address": "0x140008a39", "size": 4, "mnemonic": "movsxd", - "operands": "r12, dword ptr [r15 + 4]" + "operands": "r12, dword ptr [r15 + 4]", + "stack_offset": 0 }, { "address": "0x140008a3d", "size": 3, "mnemonic": "test", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x140008a40", "size": 2, "mnemonic": "je", - "operands": "0x140008a4c" + "operands": "0x140008a4c", + "stack_offset": 0 } ], "successors": [ @@ -28707,145 +31514,169 @@ "address": "0x140008a4c", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008a4e", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rax + 0x10], 0" + "operands": "byte ptr [rax + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140008a52", "size": 2, "mnemonic": "jne", - "operands": "0x140008ab1" + "operands": "0x140008ab1", + "stack_offset": 0 }, { "address": "0x140008a54", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r15], 0x40" + "operands": "byte ptr [r15], 0x40", + "stack_offset": 0 }, { "address": "0x140008a58", "size": 2, "mnemonic": "jne", - "operands": "0x140008ab1" + "operands": "0x140008ab1", + "stack_offset": 0 }, { "address": "0x140008a5a", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x138]" + "operands": "rax, qword ptr [rsp + 0x138]", + "stack_offset": 0 }, { "address": "0x140008a62", "size": 3, "mnemonic": "mov", - "operands": "r9, rbp" + "operands": "r9, rbp", + "stack_offset": 0 }, { "address": "0x140008a65", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x110]" + "operands": "r8, qword ptr [rsp + 0x110]", + "stack_offset": 0 }, { "address": "0x140008a6d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140008a70", "size": 8, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsp + 0x108]" + "operands": "rdx, qword ptr [rsp + 0x108]", + "stack_offset": 0 }, { "address": "0x140008a78", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x58], 0" + "operands": "byte ptr [rsp + 0x58], 0", + "stack_offset": 0 }, { "address": "0x140008a7d", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], 1" + "operands": "byte ptr [rsp + 0x50], 1", + "stack_offset": 0 }, { "address": "0x140008a82", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], rax" + "operands": "qword ptr [rsp + 0x48], rax", + "stack_offset": 0 }, { "address": "0x140008a87", "size": 8, "mnemonic": "lea", - "operands": "rax, [rsp + 0x80]" + "operands": "rax, [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140008a8f", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], r13d" + "operands": "dword ptr [rsp + 0x40], r13d", + "stack_offset": 0 }, { "address": "0x140008a94", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rax" + "operands": "qword ptr [rsp + 0x38], rax", + "stack_offset": 0 }, { "address": "0x140008a99", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], 0" + "operands": "qword ptr [rsp + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140008aa2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], r15" + "operands": "qword ptr [rsp + 0x28], r15", + "stack_offset": 0 }, { "address": "0x140008aa7", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x140008aac", "size": 5, "mnemonic": "call", - "operands": "0x140007cb0" + "operands": "0x140007cb0", + "stack_offset": 0 }, { "address": "0x140008ab1", "size": 8, "mnemonic": "mov", - "operands": "r9, qword ptr [rsp + 0x100]" + "operands": "r9, qword ptr [rsp + 0x100]", + "stack_offset": 0 }, { "address": "0x140008ab9", "size": 2, "mnemonic": "inc", - "operands": "ebx" + "operands": "ebx", + "stack_offset": 0 }, { "address": "0x140008abb", "size": 7, "mnemonic": "cmp", - "operands": "ebx, dword ptr [rsp + 0xb0]" + "operands": "ebx, dword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140008ac2", "size": 6, "mnemonic": "jb", - "operands": "0x1400089b3" + "operands": "0x1400089b3", + "stack_offset": 0 } ], "successors": [ @@ -28863,19 +31694,22 @@ "address": "0x140008a42", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008a47", "size": 3, "mnemonic": "add", - "operands": "rax, r12" + "operands": "rax, r12", + "stack_offset": 0 }, { "address": "0x140008a4a", "size": 2, "mnemonic": "jmp", - "operands": "0x140008a4e" + "operands": "0x140008a4e", + "stack_offset": 0 } ], "successors": [ @@ -28892,139 +31726,162 @@ "address": "0x140008a4e", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rax + 0x10], 0" + "operands": "byte ptr [rax + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140008a52", "size": 2, "mnemonic": "jne", - "operands": "0x140008ab1" + "operands": "0x140008ab1", + "stack_offset": 0 }, { "address": "0x140008a54", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r15], 0x40" + "operands": "byte ptr [r15], 0x40", + "stack_offset": 0 }, { "address": "0x140008a58", "size": 2, "mnemonic": "jne", - "operands": "0x140008ab1" + "operands": "0x140008ab1", + "stack_offset": 0 }, { "address": "0x140008a5a", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x138]" + "operands": "rax, qword ptr [rsp + 0x138]", + "stack_offset": 0 }, { "address": "0x140008a62", "size": 3, "mnemonic": "mov", - "operands": "r9, rbp" + "operands": "r9, rbp", + "stack_offset": 0 }, { "address": "0x140008a65", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x110]" + "operands": "r8, qword ptr [rsp + 0x110]", + "stack_offset": 0 }, { "address": "0x140008a6d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140008a70", "size": 8, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsp + 0x108]" + "operands": "rdx, qword ptr [rsp + 0x108]", + "stack_offset": 0 }, { "address": "0x140008a78", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x58], 0" + "operands": "byte ptr [rsp + 0x58], 0", + "stack_offset": 0 }, { "address": "0x140008a7d", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], 1" + "operands": "byte ptr [rsp + 0x50], 1", + "stack_offset": 0 }, { "address": "0x140008a82", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], rax" + "operands": "qword ptr [rsp + 0x48], rax", + "stack_offset": 0 }, { "address": "0x140008a87", "size": 8, "mnemonic": "lea", - "operands": "rax, [rsp + 0x80]" + "operands": "rax, [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140008a8f", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], r13d" + "operands": "dword ptr [rsp + 0x40], r13d", + "stack_offset": 0 }, { "address": "0x140008a94", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rax" + "operands": "qword ptr [rsp + 0x38], rax", + "stack_offset": 0 }, { "address": "0x140008a99", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], 0" + "operands": "qword ptr [rsp + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140008aa2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], r15" + "operands": "qword ptr [rsp + 0x28], r15", + "stack_offset": 0 }, { "address": "0x140008aa7", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x140008aac", "size": 5, "mnemonic": "call", - "operands": "0x140007cb0" + "operands": "0x140007cb0", + "stack_offset": 0 }, { "address": "0x140008ab1", "size": 8, "mnemonic": "mov", - "operands": "r9, qword ptr [rsp + 0x100]" + "operands": "r9, qword ptr [rsp + 0x100]", + "stack_offset": 0 }, { "address": "0x140008ab9", "size": 2, "mnemonic": "inc", - "operands": "ebx" + "operands": "ebx", + "stack_offset": 0 }, { "address": "0x140008abb", "size": 7, "mnemonic": "cmp", - "operands": "ebx, dword ptr [rsp + 0xb0]" + "operands": "ebx, dword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140008ac2", "size": 6, "mnemonic": "jb", - "operands": "0x1400089b3" + "operands": "0x1400089b3", + "stack_offset": 0 } ], "successors": [ @@ -29048,139 +31905,162 @@ "address": "0x140008aec", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008aee", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140008aef", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140008af0", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140008af1", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140008af3", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140008af5", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140008af7", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140008af9", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x38]" + "operands": "rbp, [rsp - 0x38]", + "stack_offset": 0 }, { "address": "0x140008afe", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x138" + "operands": "rsp, 0x138", + "stack_offset": 0 }, { "address": "0x140008b05", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x28534]" + "operands": "rax, qword ptr [rip + 0x28534]", + "stack_offset": 0 }, { "address": "0x140008b0c", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140008b0f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x28], rax" + "operands": "qword ptr [rbp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140008b13", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0x80000003" + "operands": "dword ptr [rcx], 0x80000003", + "stack_offset": 0 }, { "address": "0x140008b19", "size": 3, "mnemonic": "mov", - "operands": "rdi, r9" + "operands": "rdi, r9", + "stack_offset": 0 }, { "address": "0x140008b1c", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0xb8]" + "operands": "rax, qword ptr [rbp + 0xb8]", + "stack_offset": 0 }, { "address": "0x140008b23", "size": 3, "mnemonic": "mov", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x140008b26", "size": 7, "mnemonic": "mov", - "operands": "r15, qword ptr [rbp + 0xa0]" + "operands": "r15, qword ptr [rbp + 0xa0]", + "stack_offset": 0 }, { "address": "0x140008b2d", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x140008b30", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], rax" + "operands": "qword ptr [rsp + 0x68], rax", + "stack_offset": 0 }, { "address": "0x140008b35", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x70], r8" + "operands": "qword ptr [rsp + 0x70], r8", + "stack_offset": 0 }, { "address": "0x140008b3a", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x78], rdx" + "operands": "qword ptr [rbp - 0x78], rdx", + "stack_offset": 0 }, { "address": "0x140008b3e", "size": 6, "mnemonic": "je", - "operands": "0x140008dcc" + "operands": "0x140008dcc", + "stack_offset": 0 } ], "successors": [ @@ -29198,79 +32078,92 @@ "address": "0x140008dcc", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x28]" + "operands": "rcx, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x140008dd0", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140008dd3", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140008dd8", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x138" + "operands": "rsp, 0x138", + "stack_offset": 0 }, { "address": "0x140008ddf", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140008de1", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140008de3", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140008de5", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140008de7", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140008de8", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140008de9", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140008dea", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008deb", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -29286,31 +32179,36 @@ "address": "0x140008b44", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140008b49", "size": 7, "mnemonic": "mov", - "operands": "r12d, dword ptr [rbp + 0xb0]" + "operands": "r12d, dword ptr [rbp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140008b50", "size": 7, "mnemonic": "mov", - "operands": "r14d, dword ptr [rbp + 0xa8]" + "operands": "r14d, dword ptr [rbp + 0xa8]", + "stack_offset": 0 }, { "address": "0x140008b57", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x10], 0" + "operands": "qword ptr [rax + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140008b5c", "size": 2, "mnemonic": "je", - "operands": "0x140008bb8" + "operands": "0x140008bb8", + "stack_offset": 0 } ], "successors": [ @@ -29328,175 +32226,204 @@ "address": "0x140008bb8", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rdi + 8]" + "operands": "r8, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x140008bbc", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp]" + "operands": "rcx, [rbp]", + "stack_offset": 0 }, { "address": "0x140008bc0", "size": 3, "mnemonic": "mov", - "operands": "rdx, r15" + "operands": "rdx, r15", + "stack_offset": 0 }, { "address": "0x140008bc3", "size": 5, "mnemonic": "call", - "operands": "0x140009604" + "operands": "0x140009604", + "stack_offset": 0 }, { "address": "0x140008bc8", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp], 0" + "operands": "dword ptr [rbp], 0", + "stack_offset": 0 }, { "address": "0x140008bcc", "size": 6, "mnemonic": "jbe", - "operands": "0x140008dec" + "operands": "0x140008dec", + "stack_offset": 0 }, { "address": "0x140008bd2", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], r12d" + "operands": "dword ptr [rsp + 0x28], r12d", + "stack_offset": 0 }, { "address": "0x140008bd7", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp]" + "operands": "rdx, [rbp]", + "stack_offset": 0 }, { "address": "0x140008bdb", "size": 3, "mnemonic": "mov", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x140008bde", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r15" + "operands": "qword ptr [rsp + 0x20], r15", + "stack_offset": 0 }, { "address": "0x140008be3", "size": 3, "mnemonic": "mov", - "operands": "r8d, r14d" + "operands": "r8d, r14d", + "stack_offset": 0 }, { "address": "0x140008be6", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x70]" + "operands": "rcx, [rbp - 0x70]", + "stack_offset": 0 }, { "address": "0x140008bea", "size": 5, "mnemonic": "call", - "operands": "0x140006788" + "operands": "0x140006788", + "stack_offset": 0 }, { "address": "0x140008bef", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rbp - 0x70]" + "operands": "xmm1, xmmword ptr [rbp - 0x70]", + "stack_offset": 0 }, { "address": "0x140008bf3", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x140008bf7", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x140008bfc", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x140008c00", "size": 6, "mnemonic": "movdqu", - "operands": "xmmword ptr [rsp + 0x78], xmm1" + "operands": "xmmword ptr [rsp + 0x78], xmm1", + "stack_offset": 0 }, { "address": "0x140008c06", "size": 3, "mnemonic": "cmp", - "operands": "eax, dword ptr [rbp - 0x58]" + "operands": "eax, dword ptr [rbp - 0x58]", + "stack_offset": 0 }, { "address": "0x140008c09", "size": 6, "mnemonic": "jae", - "operands": "0x140008dcc" + "operands": "0x140008dcc", + "stack_offset": 0 }, { "address": "0x140008c0f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp - 0x80]" + "operands": "eax, dword ptr [rbp - 0x80]", + "stack_offset": 0 }, { "address": "0x140008c12", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0x8c19]" + "operands": "r11, [rip - 0x8c19]", + "stack_offset": 0 }, { "address": "0x140008c19", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x60], eax" + "operands": "dword ptr [rsp + 0x60], eax", + "stack_offset": 0 }, { "address": "0x140008c1d", "size": 5, "mnemonic": "movq", - "operands": "r13, xmm1" + "operands": "r13, xmm1", + "stack_offset": 0 }, { "address": "0x140008c22", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r13 + 0x18]" + "operands": "xmm0, xmmword ptr [r13 + 0x18]", + "stack_offset": 0 }, { "address": "0x140008c27", "size": 5, "mnemonic": "movq", - "operands": "rax, xmm0" + "operands": "rax, xmm0", + "stack_offset": 0 }, { "address": "0x140008c2c", "size": 5, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0x78], xmm0" + "operands": "xmmword ptr [rsp + 0x78], xmm0", + "stack_offset": 0 }, { "address": "0x140008c31", "size": 3, "mnemonic": "cmp", - "operands": "eax, r14d" + "operands": "eax, r14d", + "stack_offset": 0 }, { "address": "0x140008c34", "size": 6, "mnemonic": "jg", - "operands": "0x140008d20" + "operands": "0x140008d20", + "stack_offset": 0 } ], "successors": [ @@ -29514,37 +32441,43 @@ "address": "0x140008b5e", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140008b60", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1749a]" + "operands": "qword ptr [rip + 0x1749a]", + "stack_offset": 0 }, { "address": "0x140008b66", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140008b69", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140008b6e", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax + 0x10], rbx" + "operands": "qword ptr [rax + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x140008b72", "size": 2, "mnemonic": "je", - "operands": "0x140008bb8" + "operands": "0x140008bb8", + "stack_offset": 0 } ], "successors": [ @@ -29562,253 +32495,295 @@ "address": "0x140008d20", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [r13 + 8]" + "operands": "r10, qword ptr [r13 + 8]", + "stack_offset": 0 }, { "address": "0x140008d24", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140008d27", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r10]" + "operands": "ecx, byte ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008d2b", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d2e", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r9, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d37", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d3f", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008d42", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008d45", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008d47", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rdx" + "operands": "qword ptr [r13 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008d4b", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x18], eax" + "operands": "dword ptr [r13 + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140008d4f", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008d52", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140008d55", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d58", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r8, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d61", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d69", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140008d6c", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008d6f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008d72", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008d74", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x1c], eax" + "operands": "dword ptr [r13 + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x140008d78", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rdx" + "operands": "qword ptr [r13 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008d7c", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008d7f", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d82", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d8b", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d93", "size": 3, "mnemonic": "sub", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x140008d96", "size": 3, "mnemonic": "sub", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x140008d99", "size": 3, "mnemonic": "sub", - "operands": "r10, r9" + "operands": "r10, r9", + "stack_offset": 0 }, { "address": "0x140008d9c", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r10 - 4]" + "operands": "eax, dword ptr [r10 - 4]", + "stack_offset": 0 }, { "address": "0x140008da0", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008da2", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x20], eax" + "operands": "dword ptr [r13 + 0x20], eax", + "stack_offset": 0 }, { "address": "0x140008da6", "size": 4, "mnemonic": "lea", - "operands": "rax, [r10 + 4]" + "operands": "rax, [r10 + 4]", + "stack_offset": 0 }, { "address": "0x140008daa", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], r10" + "operands": "qword ptr [r13 + 8], r10", + "stack_offset": 0 }, { "address": "0x140008dae", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [r10]" + "operands": "ecx, dword ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008db1", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x24], ecx" + "operands": "dword ptr [r13 + 0x24], ecx", + "stack_offset": 0 }, { "address": "0x140008db5", "size": 4, "mnemonic": "mov", - "operands": "ecx, dword ptr [rsp + 0x60]" + "operands": "ecx, dword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140008db9", "size": 2, "mnemonic": "inc", - "operands": "ecx" + "operands": "ecx", + "stack_offset": 0 }, { "address": "0x140008dbb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rax" + "operands": "qword ptr [r13 + 8], rax", + "stack_offset": 0 }, { "address": "0x140008dbf", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x60], ecx" + "operands": "dword ptr [rsp + 0x60], ecx", + "stack_offset": 0 }, { "address": "0x140008dc3", "size": 3, "mnemonic": "cmp", - "operands": "ecx, dword ptr [rbp - 0x58]" + "operands": "ecx, dword ptr [rbp - 0x58]", + "stack_offset": 0 }, { "address": "0x140008dc6", "size": 6, "mnemonic": "jb", - "operands": "0x140008c22" + "operands": "0x140008c22", + "stack_offset": 0 } ], "successors": [ @@ -29826,19 +32801,22 @@ "address": "0x140008c3a", "size": 4, "mnemonic": "shr", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x140008c3e", "size": 3, "mnemonic": "cmp", - "operands": "r14d, eax" + "operands": "r14d, eax", + "stack_offset": 0 }, { "address": "0x140008c41", "size": 6, "mnemonic": "jg", - "operands": "0x140008d20" + "operands": "0x140008d20", + "stack_offset": 0 } ], "successors": [ @@ -29856,13 +32834,15 @@ "address": "0x140008b74", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rsi], 0xe0434f4d" + "operands": "dword ptr [rsi], 0xe0434f4d", + "stack_offset": 0 }, { "address": "0x140008b7a", "size": 2, "mnemonic": "je", - "operands": "0x140008bb8" + "operands": "0x140008bb8", + "stack_offset": 0 } ], "successors": [ @@ -29880,31 +32860,36 @@ "address": "0x140008c22", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r13 + 0x18]" + "operands": "xmm0, xmmword ptr [r13 + 0x18]", + "stack_offset": 0 }, { "address": "0x140008c27", "size": 5, "mnemonic": "movq", - "operands": "rax, xmm0" + "operands": "rax, xmm0", + "stack_offset": 0 }, { "address": "0x140008c2c", "size": 5, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0x78], xmm0" + "operands": "xmmword ptr [rsp + 0x78], xmm0", + "stack_offset": 0 }, { "address": "0x140008c31", "size": 3, "mnemonic": "cmp", - "operands": "eax, r14d" + "operands": "eax, r14d", + "stack_offset": 0 }, { "address": "0x140008c34", "size": 6, "mnemonic": "jg", - "operands": "0x140008d20" + "operands": "0x140008d20", + "stack_offset": 0 } ], "successors": [ @@ -29922,103 +32907,120 @@ "address": "0x140008c47", "size": 4, "mnemonic": "mov", - "operands": "r9, qword ptr [rdi + 0x10]" + "operands": "r9, qword ptr [rdi + 0x10]", + "stack_offset": 0 }, { "address": "0x140008c4b", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x78]" + "operands": "rdx, [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140008c50", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rdi + 8]" + "operands": "r8, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x140008c54", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x50]" + "operands": "rcx, [rbp - 0x50]", + "stack_offset": 0 }, { "address": "0x140008c58", "size": 3, "mnemonic": "mov", - "operands": "r9d, dword ptr [r9]" + "operands": "r9d, dword ptr [r9]", + "stack_offset": 0 }, { "address": "0x140008c5b", "size": 5, "mnemonic": "call", - "operands": "0x140009580" + "operands": "0x140009580", + "stack_offset": 0 }, { "address": "0x140008c60", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x40]" + "operands": "rax, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140008c64", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x50]" + "operands": "rcx, [rbp - 0x50]", + "stack_offset": 0 }, { "address": "0x140008c68", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x48], rax" + "operands": "qword ptr [rbp - 0x48], rax", + "stack_offset": 0 }, { "address": "0x140008c6c", "size": 5, "mnemonic": "call", - "operands": "0x140009b74" + "operands": "0x140009b74", + "stack_offset": 0 }, { "address": "0x140008c71", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x40]" + "operands": "rax, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140008c75", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x50]" + "operands": "rcx, [rbp - 0x50]", + "stack_offset": 0 }, { "address": "0x140008c79", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x50]" + "operands": "ebx, dword ptr [rbp - 0x50]", + "stack_offset": 0 }, { "address": "0x140008c7c", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x48], rax" + "operands": "qword ptr [rbp - 0x48], rax", + "stack_offset": 0 }, { "address": "0x140008c80", "size": 5, "mnemonic": "call", - "operands": "0x140009b74" + "operands": "0x140009b74", + "stack_offset": 0 }, { "address": "0x140008c85", "size": 3, "mnemonic": "sub", - "operands": "ebx, 1" + "operands": "ebx, 1", + "stack_offset": 0 }, { "address": "0x140008c88", "size": 2, "mnemonic": "je", - "operands": "0x140008c99" + "operands": "0x140008c99", + "stack_offset": 0 } ], "successors": [ @@ -30036,13 +33038,15 @@ "address": "0x140008b7c", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rsi], 0xe0434352" + "operands": "dword ptr [rsi], 0xe0434352", + "stack_offset": 0 }, { "address": "0x140008b82", "size": 2, "mnemonic": "je", - "operands": "0x140008bb8" + "operands": "0x140008bb8", + "stack_offset": 0 } ], "successors": [ @@ -30060,19 +33064,22 @@ "address": "0x140008c99", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rbp - 0x30]" + "operands": "rbx, dword ptr [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x140008c9d", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140008c9f", "size": 2, "mnemonic": "je", - "operands": "0x140008cc5" + "operands": "0x140008cc5", + "stack_offset": 0 } ], "successors": [ @@ -30090,43 +33097,50 @@ "address": "0x140008c8a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x50]" + "operands": "rcx, [rbp - 0x50]", + "stack_offset": 0 }, { "address": "0x140008c8e", "size": 5, "mnemonic": "call", - "operands": "0x140009b74" + "operands": "0x140009b74", + "stack_offset": 0 }, { "address": "0x140008c93", "size": 4, "mnemonic": "sub", - "operands": "rbx, 1" + "operands": "rbx, 1", + "stack_offset": 0 }, { "address": "0x140008c97", "size": 2, "mnemonic": "jne", - "operands": "0x140008c8a" + "operands": "0x140008c8a", + "stack_offset": 0 }, { "address": "0x140008c99", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rbp - 0x30]" + "operands": "rbx, dword ptr [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x140008c9d", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140008c9f", "size": 2, "mnemonic": "je", - "operands": "0x140008cc5" + "operands": "0x140008cc5", + "stack_offset": 0 } ], "successors": [ @@ -30144,247 +33158,288 @@ "address": "0x140008b84", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x68]" + "operands": "rax, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140008b89", "size": 3, "mnemonic": "mov", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x140008b8c", "size": 5, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x70]" + "operands": "r8, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140008b91", "size": 3, "mnemonic": "mov", - "operands": "rdx, r13" + "operands": "rdx, r13", + "stack_offset": 0 }, { "address": "0x140008b94", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], r14d" + "operands": "dword ptr [rsp + 0x38], r14d", + "stack_offset": 0 }, { "address": "0x140008b99", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140008b9c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rax" + "operands": "qword ptr [rsp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x140008ba1", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], r12d" + "operands": "dword ptr [rsp + 0x28], r12d", + "stack_offset": 0 }, { "address": "0x140008ba6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r15" + "operands": "qword ptr [rsp + 0x20], r15", + "stack_offset": 0 }, { "address": "0x140008bab", "size": 5, "mnemonic": "call", - "operands": "0x140006294" + "operands": "0x140006294", + "stack_offset": 0 }, { "address": "0x140008bb0", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008bb2", "size": 6, "mnemonic": "jne", - "operands": "0x140008dcc" + "operands": "0x140008dcc", + "stack_offset": 0 }, { "address": "0x140008bb8", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rdi + 8]" + "operands": "r8, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x140008bbc", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp]" + "operands": "rcx, [rbp]", + "stack_offset": 0 }, { "address": "0x140008bc0", "size": 3, "mnemonic": "mov", - "operands": "rdx, r15" + "operands": "rdx, r15", + "stack_offset": 0 }, { "address": "0x140008bc3", "size": 5, "mnemonic": "call", - "operands": "0x140009604" + "operands": "0x140009604", + "stack_offset": 0 }, { "address": "0x140008bc8", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp], 0" + "operands": "dword ptr [rbp], 0", + "stack_offset": 0 }, { "address": "0x140008bcc", "size": 6, "mnemonic": "jbe", - "operands": "0x140008dec" + "operands": "0x140008dec", + "stack_offset": 0 }, { "address": "0x140008bd2", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], r12d" + "operands": "dword ptr [rsp + 0x28], r12d", + "stack_offset": 0 }, { "address": "0x140008bd7", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp]" + "operands": "rdx, [rbp]", + "stack_offset": 0 }, { "address": "0x140008bdb", "size": 3, "mnemonic": "mov", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x140008bde", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r15" + "operands": "qword ptr [rsp + 0x20], r15", + "stack_offset": 0 }, { "address": "0x140008be3", "size": 3, "mnemonic": "mov", - "operands": "r8d, r14d" + "operands": "r8d, r14d", + "stack_offset": 0 }, { "address": "0x140008be6", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x70]" + "operands": "rcx, [rbp - 0x70]", + "stack_offset": 0 }, { "address": "0x140008bea", "size": 5, "mnemonic": "call", - "operands": "0x140006788" + "operands": "0x140006788", + "stack_offset": 0 }, { "address": "0x140008bef", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rbp - 0x70]" + "operands": "xmm1, xmmword ptr [rbp - 0x70]", + "stack_offset": 0 }, { "address": "0x140008bf3", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x140008bf7", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x140008bfc", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x140008c00", "size": 6, "mnemonic": "movdqu", - "operands": "xmmword ptr [rsp + 0x78], xmm1" + "operands": "xmmword ptr [rsp + 0x78], xmm1", + "stack_offset": 0 }, { "address": "0x140008c06", "size": 3, "mnemonic": "cmp", - "operands": "eax, dword ptr [rbp - 0x58]" + "operands": "eax, dword ptr [rbp - 0x58]", + "stack_offset": 0 }, { "address": "0x140008c09", "size": 6, "mnemonic": "jae", - "operands": "0x140008dcc" + "operands": "0x140008dcc", + "stack_offset": 0 }, { "address": "0x140008c0f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp - 0x80]" + "operands": "eax, dword ptr [rbp - 0x80]", + "stack_offset": 0 }, { "address": "0x140008c12", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0x8c19]" + "operands": "r11, [rip - 0x8c19]", + "stack_offset": 0 }, { "address": "0x140008c19", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x60], eax" + "operands": "dword ptr [rsp + 0x60], eax", + "stack_offset": 0 }, { "address": "0x140008c1d", "size": 5, "mnemonic": "movq", - "operands": "r13, xmm1" + "operands": "r13, xmm1", + "stack_offset": 0 }, { "address": "0x140008c22", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r13 + 0x18]" + "operands": "xmm0, xmmword ptr [r13 + 0x18]", + "stack_offset": 0 }, { "address": "0x140008c27", "size": 5, "mnemonic": "movq", - "operands": "rax, xmm0" + "operands": "rax, xmm0", + "stack_offset": 0 }, { "address": "0x140008c2c", "size": 5, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0x78], xmm0" + "operands": "xmmword ptr [rsp + 0x78], xmm0", + "stack_offset": 0 }, { "address": "0x140008c31", "size": 3, "mnemonic": "cmp", - "operands": "eax, r14d" + "operands": "eax, r14d", + "stack_offset": 0 }, { "address": "0x140008c34", "size": 6, "mnemonic": "jg", - "operands": "0x140008d20" + "operands": "0x140008d20", + "stack_offset": 0 } ], "successors": [ @@ -30402,367 +33457,428 @@ "address": "0x140008cc5", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbp - 0x34], 0x40" + "operands": "byte ptr [rbp - 0x34], 0x40", + "stack_offset": 0 }, { "address": "0x140008cc9", "size": 2, "mnemonic": "jne", - "operands": "0x140008d19" + "operands": "0x140008d19", + "stack_offset": 0 }, { "address": "0x140008ccb", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x68]" + "operands": "rax, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140008cd0", "size": 3, "mnemonic": "mov", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x140008cd3", "size": 5, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x70]" + "operands": "r8, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140008cd8", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140008cdb", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp - 0x78]" + "operands": "rdx, qword ptr [rbp - 0x78]", + "stack_offset": 0 }, { "address": "0x140008cdf", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x58], 0" + "operands": "byte ptr [rsp + 0x58], 0", + "stack_offset": 0 }, { "address": "0x140008ce4", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], 1" + "operands": "byte ptr [rsp + 0x50], 1", + "stack_offset": 0 }, { "address": "0x140008ce9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], rax" + "operands": "qword ptr [rsp + 0x48], rax", + "stack_offset": 0 }, { "address": "0x140008cee", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x78]" + "operands": "rax, [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140008cf3", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], r12d" + "operands": "dword ptr [rsp + 0x40], r12d", + "stack_offset": 0 }, { "address": "0x140008cf8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rax" + "operands": "qword ptr [rsp + 0x38], rax", + "stack_offset": 0 }, { "address": "0x140008cfd", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x38]" + "operands": "rax, [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x140008d01", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], 0" + "operands": "qword ptr [rsp + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140008d0a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140008d0f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r15" + "operands": "qword ptr [rsp + 0x20], r15", + "stack_offset": 0 }, { "address": "0x140008d14", "size": 5, "mnemonic": "call", - "operands": "0x140007d88" + "operands": "0x140007d88", + "stack_offset": 0 }, { "address": "0x140008d19", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0x8d20]" + "operands": "r11, [rip - 0x8d20]", + "stack_offset": 0 }, { "address": "0x140008d20", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [r13 + 8]" + "operands": "r10, qword ptr [r13 + 8]", + "stack_offset": 0 }, { "address": "0x140008d24", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140008d27", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r10]" + "operands": "ecx, byte ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008d2b", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d2e", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r9, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d37", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d3f", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008d42", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008d45", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008d47", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rdx" + "operands": "qword ptr [r13 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008d4b", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x18], eax" + "operands": "dword ptr [r13 + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140008d4f", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008d52", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140008d55", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d58", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r8, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d61", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d69", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140008d6c", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008d6f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008d72", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008d74", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x1c], eax" + "operands": "dword ptr [r13 + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x140008d78", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rdx" + "operands": "qword ptr [r13 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008d7c", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008d7f", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d82", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d8b", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d93", "size": 3, "mnemonic": "sub", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x140008d96", "size": 3, "mnemonic": "sub", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x140008d99", "size": 3, "mnemonic": "sub", - "operands": "r10, r9" + "operands": "r10, r9", + "stack_offset": 0 }, { "address": "0x140008d9c", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r10 - 4]" + "operands": "eax, dword ptr [r10 - 4]", + "stack_offset": 0 }, { "address": "0x140008da0", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008da2", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x20], eax" + "operands": "dword ptr [r13 + 0x20], eax", + "stack_offset": 0 }, { "address": "0x140008da6", "size": 4, "mnemonic": "lea", - "operands": "rax, [r10 + 4]" + "operands": "rax, [r10 + 4]", + "stack_offset": 0 }, { "address": "0x140008daa", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], r10" + "operands": "qword ptr [r13 + 8], r10", + "stack_offset": 0 }, { "address": "0x140008dae", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [r10]" + "operands": "ecx, dword ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008db1", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x24], ecx" + "operands": "dword ptr [r13 + 0x24], ecx", + "stack_offset": 0 }, { "address": "0x140008db5", "size": 4, "mnemonic": "mov", - "operands": "ecx, dword ptr [rsp + 0x60]" + "operands": "ecx, dword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140008db9", "size": 2, "mnemonic": "inc", - "operands": "ecx" + "operands": "ecx", + "stack_offset": 0 }, { "address": "0x140008dbb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rax" + "operands": "qword ptr [r13 + 8], rax", + "stack_offset": 0 }, { "address": "0x140008dbf", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x60], ecx" + "operands": "dword ptr [rsp + 0x60], ecx", + "stack_offset": 0 }, { "address": "0x140008dc3", "size": 3, "mnemonic": "cmp", - "operands": "ecx, dword ptr [rbp - 0x58]" + "operands": "ecx, dword ptr [rbp - 0x58]", + "stack_offset": 0 }, { "address": "0x140008dc6", "size": 6, "mnemonic": "jb", - "operands": "0x140008c22" + "operands": "0x140008c22", + "stack_offset": 0 } ], "successors": [ @@ -30780,19 +33896,22 @@ "address": "0x140008ca1", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008ca6", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140008ca9", "size": 2, "mnemonic": "je", - "operands": "0x140008cc5" + "operands": "0x140008cc5", + "stack_offset": 0 } ], "successors": [ @@ -30810,19 +33929,22 @@ "address": "0x140008cab", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rbp - 0x30]" + "operands": "rbx, dword ptr [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x140008caf", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140008cb1", "size": 2, "mnemonic": "je", - "operands": "0x140008cbd" + "operands": "0x140008cbd", + "stack_offset": 0 } ], "successors": [ @@ -30840,385 +33962,449 @@ "address": "0x140008cbd", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008cbf", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rax + 0x10], 0" + "operands": "byte ptr [rax + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140008cc3", "size": 2, "mnemonic": "jne", - "operands": "0x140008d19" + "operands": "0x140008d19", + "stack_offset": 0 }, { "address": "0x140008cc5", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbp - 0x34], 0x40" + "operands": "byte ptr [rbp - 0x34], 0x40", + "stack_offset": 0 }, { "address": "0x140008cc9", "size": 2, "mnemonic": "jne", - "operands": "0x140008d19" + "operands": "0x140008d19", + "stack_offset": 0 }, { "address": "0x140008ccb", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x68]" + "operands": "rax, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140008cd0", "size": 3, "mnemonic": "mov", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x140008cd3", "size": 5, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x70]" + "operands": "r8, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140008cd8", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140008cdb", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp - 0x78]" + "operands": "rdx, qword ptr [rbp - 0x78]", + "stack_offset": 0 }, { "address": "0x140008cdf", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x58], 0" + "operands": "byte ptr [rsp + 0x58], 0", + "stack_offset": 0 }, { "address": "0x140008ce4", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], 1" + "operands": "byte ptr [rsp + 0x50], 1", + "stack_offset": 0 }, { "address": "0x140008ce9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], rax" + "operands": "qword ptr [rsp + 0x48], rax", + "stack_offset": 0 }, { "address": "0x140008cee", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x78]" + "operands": "rax, [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140008cf3", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], r12d" + "operands": "dword ptr [rsp + 0x40], r12d", + "stack_offset": 0 }, { "address": "0x140008cf8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rax" + "operands": "qword ptr [rsp + 0x38], rax", + "stack_offset": 0 }, { "address": "0x140008cfd", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x38]" + "operands": "rax, [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x140008d01", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], 0" + "operands": "qword ptr [rsp + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140008d0a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140008d0f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r15" + "operands": "qword ptr [rsp + 0x20], r15", + "stack_offset": 0 }, { "address": "0x140008d14", "size": 5, "mnemonic": "call", - "operands": "0x140007d88" + "operands": "0x140007d88", + "stack_offset": 0 }, { "address": "0x140008d19", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0x8d20]" + "operands": "r11, [rip - 0x8d20]", + "stack_offset": 0 }, { "address": "0x140008d20", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [r13 + 8]" + "operands": "r10, qword ptr [r13 + 8]", + "stack_offset": 0 }, { "address": "0x140008d24", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140008d27", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r10]" + "operands": "ecx, byte ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008d2b", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d2e", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r9, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d37", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d3f", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008d42", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008d45", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008d47", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rdx" + "operands": "qword ptr [r13 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008d4b", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x18], eax" + "operands": "dword ptr [r13 + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140008d4f", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008d52", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140008d55", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d58", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r8, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d61", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d69", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140008d6c", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008d6f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008d72", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008d74", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x1c], eax" + "operands": "dword ptr [r13 + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x140008d78", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rdx" + "operands": "qword ptr [r13 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008d7c", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008d7f", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d82", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d8b", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d93", "size": 3, "mnemonic": "sub", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x140008d96", "size": 3, "mnemonic": "sub", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x140008d99", "size": 3, "mnemonic": "sub", - "operands": "r10, r9" + "operands": "r10, r9", + "stack_offset": 0 }, { "address": "0x140008d9c", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r10 - 4]" + "operands": "eax, dword ptr [r10 - 4]", + "stack_offset": 0 }, { "address": "0x140008da0", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008da2", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x20], eax" + "operands": "dword ptr [r13 + 0x20], eax", + "stack_offset": 0 }, { "address": "0x140008da6", "size": 4, "mnemonic": "lea", - "operands": "rax, [r10 + 4]" + "operands": "rax, [r10 + 4]", + "stack_offset": 0 }, { "address": "0x140008daa", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], r10" + "operands": "qword ptr [r13 + 8], r10", + "stack_offset": 0 }, { "address": "0x140008dae", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [r10]" + "operands": "ecx, dword ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008db1", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x24], ecx" + "operands": "dword ptr [r13 + 0x24], ecx", + "stack_offset": 0 }, { "address": "0x140008db5", "size": 4, "mnemonic": "mov", - "operands": "ecx, dword ptr [rsp + 0x60]" + "operands": "ecx, dword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140008db9", "size": 2, "mnemonic": "inc", - "operands": "ecx" + "operands": "ecx", + "stack_offset": 0 }, { "address": "0x140008dbb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rax" + "operands": "qword ptr [r13 + 8], rax", + "stack_offset": 0 }, { "address": "0x140008dbf", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x60], ecx" + "operands": "dword ptr [rsp + 0x60], ecx", + "stack_offset": 0 }, { "address": "0x140008dc3", "size": 3, "mnemonic": "cmp", - "operands": "ecx, dword ptr [rbp - 0x58]" + "operands": "ecx, dword ptr [rbp - 0x58]", + "stack_offset": 0 }, { "address": "0x140008dc6", "size": 6, "mnemonic": "jb", - "operands": "0x140008c22" + "operands": "0x140008c22", + "stack_offset": 0 } ], "successors": [ @@ -31236,19 +34422,22 @@ "address": "0x140008cb3", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008cb8", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140008cbb", "size": 2, "mnemonic": "jmp", - "operands": "0x140008cbf" + "operands": "0x140008cbf", + "stack_offset": 0 } ], "successors": [ @@ -31265,379 +34454,442 @@ "address": "0x140008cbf", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rax + 0x10], 0" + "operands": "byte ptr [rax + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140008cc3", "size": 2, "mnemonic": "jne", - "operands": "0x140008d19" + "operands": "0x140008d19", + "stack_offset": 0 }, { "address": "0x140008cc5", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbp - 0x34], 0x40" + "operands": "byte ptr [rbp - 0x34], 0x40", + "stack_offset": 0 }, { "address": "0x140008cc9", "size": 2, "mnemonic": "jne", - "operands": "0x140008d19" + "operands": "0x140008d19", + "stack_offset": 0 }, { "address": "0x140008ccb", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x68]" + "operands": "rax, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140008cd0", "size": 3, "mnemonic": "mov", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x140008cd3", "size": 5, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x70]" + "operands": "r8, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140008cd8", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140008cdb", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp - 0x78]" + "operands": "rdx, qword ptr [rbp - 0x78]", + "stack_offset": 0 }, { "address": "0x140008cdf", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x58], 0" + "operands": "byte ptr [rsp + 0x58], 0", + "stack_offset": 0 }, { "address": "0x140008ce4", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x50], 1" + "operands": "byte ptr [rsp + 0x50], 1", + "stack_offset": 0 }, { "address": "0x140008ce9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], rax" + "operands": "qword ptr [rsp + 0x48], rax", + "stack_offset": 0 }, { "address": "0x140008cee", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x78]" + "operands": "rax, [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140008cf3", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], r12d" + "operands": "dword ptr [rsp + 0x40], r12d", + "stack_offset": 0 }, { "address": "0x140008cf8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rax" + "operands": "qword ptr [rsp + 0x38], rax", + "stack_offset": 0 }, { "address": "0x140008cfd", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x38]" + "operands": "rax, [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x140008d01", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], 0" + "operands": "qword ptr [rsp + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140008d0a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140008d0f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r15" + "operands": "qword ptr [rsp + 0x20], r15", + "stack_offset": 0 }, { "address": "0x140008d14", "size": 5, "mnemonic": "call", - "operands": "0x140007d88" + "operands": "0x140007d88", + "stack_offset": 0 }, { "address": "0x140008d19", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0x8d20]" + "operands": "r11, [rip - 0x8d20]", + "stack_offset": 0 }, { "address": "0x140008d20", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [r13 + 8]" + "operands": "r10, qword ptr [r13 + 8]", + "stack_offset": 0 }, { "address": "0x140008d24", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140008d27", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r10]" + "operands": "ecx, byte ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008d2b", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d2e", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r9, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d37", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d3f", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008d42", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008d45", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008d47", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rdx" + "operands": "qword ptr [r13 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008d4b", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x18], eax" + "operands": "dword ptr [r13 + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140008d4f", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008d52", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140008d55", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d58", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + r11 + 0x23d90]" + "operands": "r8, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d61", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d69", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140008d6c", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140008d6f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140008d72", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008d74", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x1c], eax" + "operands": "dword ptr [r13 + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x140008d78", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rdx" + "operands": "qword ptr [r13 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140008d7c", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140008d7f", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140008d82", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140008d8b", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140008d93", "size": 3, "mnemonic": "sub", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x140008d96", "size": 3, "mnemonic": "sub", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x140008d99", "size": 3, "mnemonic": "sub", - "operands": "r10, r9" + "operands": "r10, r9", + "stack_offset": 0 }, { "address": "0x140008d9c", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r10 - 4]" + "operands": "eax, dword ptr [r10 - 4]", + "stack_offset": 0 }, { "address": "0x140008da0", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140008da2", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x20], eax" + "operands": "dword ptr [r13 + 0x20], eax", + "stack_offset": 0 }, { "address": "0x140008da6", "size": 4, "mnemonic": "lea", - "operands": "rax, [r10 + 4]" + "operands": "rax, [r10 + 4]", + "stack_offset": 0 }, { "address": "0x140008daa", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], r10" + "operands": "qword ptr [r13 + 8], r10", + "stack_offset": 0 }, { "address": "0x140008dae", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [r10]" + "operands": "ecx, dword ptr [r10]", + "stack_offset": 0 }, { "address": "0x140008db1", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r13 + 0x24], ecx" + "operands": "dword ptr [r13 + 0x24], ecx", + "stack_offset": 0 }, { "address": "0x140008db5", "size": 4, "mnemonic": "mov", - "operands": "ecx, dword ptr [rsp + 0x60]" + "operands": "ecx, dword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140008db9", "size": 2, "mnemonic": "inc", - "operands": "ecx" + "operands": "ecx", + "stack_offset": 0 }, { "address": "0x140008dbb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r13 + 8], rax" + "operands": "qword ptr [r13 + 8], rax", + "stack_offset": 0 }, { "address": "0x140008dbf", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x60], ecx" + "operands": "dword ptr [rsp + 0x60], ecx", + "stack_offset": 0 }, { "address": "0x140008dc3", "size": 3, "mnemonic": "cmp", - "operands": "ecx, dword ptr [rbp - 0x58]" + "operands": "ecx, dword ptr [rbp - 0x58]", + "stack_offset": 0 }, { "address": "0x140008dc6", "size": 6, "mnemonic": "jb", - "operands": "0x140008c22" + "operands": "0x140008c22", + "stack_offset": 0 } ], "successors": [ @@ -31661,73 +34913,85 @@ "address": "0x14000a2fe", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000a2ff", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000a300", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a301", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a303", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a305", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a307", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a309", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a30d", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x14000a310", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x14000a313", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000a316", "size": 6, "mnemonic": "je", - "operands": "0x14000a3d5" + "operands": "0x14000a3d5", + "stack_offset": 0 } ], "successors": [ @@ -31745,13 +35009,15 @@ "address": "0x14000a3d5", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14000a3da", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -31767,229 +35033,267 @@ "address": "0x14000a31c", "size": 3, "mnemonic": "xor", - "operands": "r12b, r12b" + "operands": "r12b, r12b", + "stack_offset": 0 }, { "address": "0x14000a31f", "size": 2, "mnemonic": "xor", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x14000a321", "size": 2, "mnemonic": "cmp", - "operands": "dword ptr [rdx], ebp" + "operands": "dword ptr [rdx], ebp", + "stack_offset": 0 }, { "address": "0x14000a323", "size": 6, "mnemonic": "jle", - "operands": "0x14000a3bd" + "operands": "0x14000a3bd", + "stack_offset": 0 }, { "address": "0x14000a329", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi + 0x30]" + "operands": "rax, qword ptr [rsi + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a32d", "size": 4, "mnemonic": "movsxd", - "operands": "rdi, dword ptr [rax + 0xc]" + "operands": "rdi, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x14000a331", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x14000a336", "size": 4, "mnemonic": "add", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x14000a33a", "size": 3, "mnemonic": "add", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14000a33d", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi + 0x30]" + "operands": "rax, qword ptr [rsi + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a341", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], rdi" + "operands": "qword ptr [rsp + 0x68], rdi", + "stack_offset": 0 }, { "address": "0x14000a346", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rax + 0xc]" + "operands": "rbx, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x14000a34a", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x14000a34f", "size": 4, "mnemonic": "mov", - "operands": "r15d, dword ptr [rax + rbx]" + "operands": "r15d, dword ptr [rax + rbx]", + "stack_offset": 0 }, { "address": "0x14000a353", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14000a356", "size": 2, "mnemonic": "jle", - "operands": "0x14000a3b2" + "operands": "0x14000a3b2", + "stack_offset": 0 }, { "address": "0x14000a358", "size": 3, "mnemonic": "movsxd", - "operands": "rax, ebp" + "operands": "rax, ebp", + "stack_offset": 0 }, { "address": "0x14000a35b", "size": 4, "mnemonic": "lea", - "operands": "r13, [rax + rax*4]" + "operands": "r13, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x14000a35f", "size": 3, "mnemonic": "movsxd", - "operands": "rsi, dword ptr [rdi]" + "operands": "rsi, dword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000a362", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x14000a367", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r14 + 4]" + "operands": "rbx, dword ptr [r14 + 4]", + "stack_offset": 0 }, { "address": "0x14000a36b", "size": 3, "mnemonic": "add", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000a36e", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x60]" + "operands": "rax, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a373", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rax + 0x30]" + "operands": "rdi, qword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a377", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x14000a37c", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14000a37f", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000a382", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + r13*4]" + "operands": "rcx, [rax + r13*4]", + "stack_offset": 0 }, { "address": "0x14000a386", "size": 3, "mnemonic": "add", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14000a389", "size": 5, "mnemonic": "call", - "operands": "0x140008df4" + "operands": "0x140008df4", + "stack_offset": 0 }, { "address": "0x14000a38e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a390", "size": 2, "mnemonic": "jne", - "operands": "0x14000a3aa" + "operands": "0x14000a3aa", + "stack_offset": 0 }, { "address": "0x14000a392", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x68]" + "operands": "rdi, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x14000a397", "size": 3, "mnemonic": "dec", - "operands": "r15d" + "operands": "r15d", + "stack_offset": 0 }, { "address": "0x14000a39a", "size": 4, "mnemonic": "add", - "operands": "rdi, 4" + "operands": "rdi, 4", + "stack_offset": 0 }, { "address": "0x14000a39e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], rdi" + "operands": "qword ptr [rsp + 0x68], rdi", + "stack_offset": 0 }, { "address": "0x14000a3a3", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14000a3a6", "size": 2, "mnemonic": "jg", - "operands": "0x14000a35f" + "operands": "0x14000a35f", + "stack_offset": 0 } ], "successors": [ @@ -32007,121 +35311,141 @@ "address": "0x14000a35f", "size": 3, "mnemonic": "movsxd", - "operands": "rsi, dword ptr [rdi]" + "operands": "rsi, dword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000a362", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x14000a367", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r14 + 4]" + "operands": "rbx, dword ptr [r14 + 4]", + "stack_offset": 0 }, { "address": "0x14000a36b", "size": 3, "mnemonic": "add", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000a36e", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x60]" + "operands": "rax, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a373", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rax + 0x30]" + "operands": "rdi, qword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a377", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x14000a37c", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14000a37f", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000a382", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + r13*4]" + "operands": "rcx, [rax + r13*4]", + "stack_offset": 0 }, { "address": "0x14000a386", "size": 3, "mnemonic": "add", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14000a389", "size": 5, "mnemonic": "call", - "operands": "0x140008df4" + "operands": "0x140008df4", + "stack_offset": 0 }, { "address": "0x14000a38e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a390", "size": 2, "mnemonic": "jne", - "operands": "0x14000a3aa" + "operands": "0x14000a3aa", + "stack_offset": 0 }, { "address": "0x14000a392", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x68]" + "operands": "rdi, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x14000a397", "size": 3, "mnemonic": "dec", - "operands": "r15d" + "operands": "r15d", + "stack_offset": 0 }, { "address": "0x14000a39a", "size": 4, "mnemonic": "add", - "operands": "rdi, 4" + "operands": "rdi, 4", + "stack_offset": 0 }, { "address": "0x14000a39e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], rdi" + "operands": "qword ptr [rsp + 0x68], rdi", + "stack_offset": 0 }, { "address": "0x14000a3a3", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14000a3a6", "size": 2, "mnemonic": "jg", - "operands": "0x14000a35f" + "operands": "0x14000a35f", + "stack_offset": 0 } ], "successors": [ @@ -32139,7 +35463,8 @@ "address": "0x14000a3a8", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a3ad" + "operands": "0x14000a3ad", + "stack_offset": 0 } ], "successors": [ @@ -32156,25 +35481,29 @@ "address": "0x14000a3ad", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x60]" + "operands": "rsi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a3b2", "size": 2, "mnemonic": "inc", - "operands": "ebp" + "operands": "ebp", + "stack_offset": 0 }, { "address": "0x14000a3b4", "size": 3, "mnemonic": "cmp", - "operands": "ebp, dword ptr [r14]" + "operands": "ebp, dword ptr [r14]", + "stack_offset": 0 }, { "address": "0x14000a3b7", "size": 6, "mnemonic": "jl", - "operands": "0x14000a329" + "operands": "0x14000a329", + "stack_offset": 0 } ], "successors": [ @@ -32192,205 +35521,239 @@ "address": "0x14000a329", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi + 0x30]" + "operands": "rax, qword ptr [rsi + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a32d", "size": 4, "mnemonic": "movsxd", - "operands": "rdi, dword ptr [rax + 0xc]" + "operands": "rdi, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x14000a331", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x14000a336", "size": 4, "mnemonic": "add", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x14000a33a", "size": 3, "mnemonic": "add", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14000a33d", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi + 0x30]" + "operands": "rax, qword ptr [rsi + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a341", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], rdi" + "operands": "qword ptr [rsp + 0x68], rdi", + "stack_offset": 0 }, { "address": "0x14000a346", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rax + 0xc]" + "operands": "rbx, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x14000a34a", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x14000a34f", "size": 4, "mnemonic": "mov", - "operands": "r15d, dword ptr [rax + rbx]" + "operands": "r15d, dword ptr [rax + rbx]", + "stack_offset": 0 }, { "address": "0x14000a353", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14000a356", "size": 2, "mnemonic": "jle", - "operands": "0x14000a3b2" + "operands": "0x14000a3b2", + "stack_offset": 0 }, { "address": "0x14000a358", "size": 3, "mnemonic": "movsxd", - "operands": "rax, ebp" + "operands": "rax, ebp", + "stack_offset": 0 }, { "address": "0x14000a35b", "size": 4, "mnemonic": "lea", - "operands": "r13, [rax + rax*4]" + "operands": "r13, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x14000a35f", "size": 3, "mnemonic": "movsxd", - "operands": "rsi, dword ptr [rdi]" + "operands": "rsi, dword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000a362", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x14000a367", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r14 + 4]" + "operands": "rbx, dword ptr [r14 + 4]", + "stack_offset": 0 }, { "address": "0x14000a36b", "size": 3, "mnemonic": "add", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000a36e", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x60]" + "operands": "rax, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a373", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rax + 0x30]" + "operands": "rdi, qword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a377", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x14000a37c", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14000a37f", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000a382", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + r13*4]" + "operands": "rcx, [rax + r13*4]", + "stack_offset": 0 }, { "address": "0x14000a386", "size": 3, "mnemonic": "add", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14000a389", "size": 5, "mnemonic": "call", - "operands": "0x140008df4" + "operands": "0x140008df4", + "stack_offset": 0 }, { "address": "0x14000a38e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a390", "size": 2, "mnemonic": "jne", - "operands": "0x14000a3aa" + "operands": "0x14000a3aa", + "stack_offset": 0 }, { "address": "0x14000a392", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x68]" + "operands": "rdi, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x14000a397", "size": 3, "mnemonic": "dec", - "operands": "r15d" + "operands": "r15d", + "stack_offset": 0 }, { "address": "0x14000a39a", "size": 4, "mnemonic": "add", - "operands": "rdi, 4" + "operands": "rdi, 4", + "stack_offset": 0 }, { "address": "0x14000a39e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], rdi" + "operands": "qword ptr [rsp + 0x68], rdi", + "stack_offset": 0 }, { "address": "0x14000a3a3", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14000a3a6", "size": 2, "mnemonic": "jg", - "operands": "0x14000a35f" + "operands": "0x14000a35f", + "stack_offset": 0 } ], "successors": [ @@ -32408,67 +35771,78 @@ "address": "0x14000a3bd", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000a3c2", "size": 3, "mnemonic": "mov", - "operands": "al, r12b" + "operands": "al, r12b", + "stack_offset": 0 }, { "address": "0x14000a3c5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a3c9", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a3cb", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a3cd", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a3cf", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a3d1", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a3d2", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000a3d3", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000a3d4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -32490,187 +35864,218 @@ "address": "0x14000a52f", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000a530", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000a531", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a532", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a534", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a536", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a538", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a53a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a53e", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 8]" + "operands": "rax, qword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x14000a542", "size": 3, "mnemonic": "xor", - "operands": "bpl, bpl" + "operands": "bpl, bpl", + "stack_offset": 0 }, { "address": "0x14000a545", "size": 3, "mnemonic": "xor", - "operands": "r14b, r14b" + "operands": "r14b, r14b", + "stack_offset": 0 }, { "address": "0x14000a548", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], rax" + "operands": "qword ptr [r11 + 8], rax", + "stack_offset": 0 }, { "address": "0x14000a54c", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14000a54e", "size": 3, "mnemonic": "mov", - "operands": "r12, r9" + "operands": "r12, r9", + "stack_offset": 0 }, { "address": "0x14000a551", "size": 3, "mnemonic": "mov", - "operands": "r13d, r8d" + "operands": "r13d, r8d", + "stack_offset": 0 }, { "address": "0x14000a554", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000a557", "size": 4, "mnemonic": "lea", - "operands": "rsi, [rax - 1]" + "operands": "rsi, [rax - 1]", + "stack_offset": 0 }, { "address": "0x14000a55b", "size": 3, "mnemonic": "mov", - "operands": "r15, rsi" + "operands": "r15, rsi", + "stack_offset": 0 }, { "address": "0x14000a55e", "size": 2, "mnemonic": "cmp", - "operands": "dword ptr [rcx], edi" + "operands": "dword ptr [rcx], edi", + "stack_offset": 0 }, { "address": "0x14000a560", "size": 2, "mnemonic": "jle", - "operands": "0x14000a5a5" + "operands": "0x14000a5a5", + "stack_offset": 0 }, { "address": "0x14000a562", "size": 4, "mnemonic": "mov", - "operands": "r12d, dword ptr [r11 + 0x10]" + "operands": "r12d, dword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x14000a566", "size": 3, "mnemonic": "cmp", - "operands": "edi, r12d" + "operands": "edi, r12d", + "stack_offset": 0 }, { "address": "0x14000a569", "size": 2, "mnemonic": "jne", - "operands": "0x14000a571" + "operands": "0x14000a571", + "stack_offset": 0 }, { "address": "0x14000a56b", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000a56e", "size": 3, "mnemonic": "mov", - "operands": "bpl, 1" + "operands": "bpl, 1", + "stack_offset": 0 }, { "address": "0x14000a571", "size": 3, "mnemonic": "cmp", - "operands": "edi, r13d" + "operands": "edi, r13d", + "stack_offset": 0 }, { "address": "0x14000a574", "size": 2, "mnemonic": "jne", - "operands": "0x14000a57c" + "operands": "0x14000a57c", + "stack_offset": 0 }, { "address": "0x14000a576", "size": 3, "mnemonic": "mov", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x14000a579", "size": 3, "mnemonic": "mov", - "operands": "r14b, 1" + "operands": "r14b, 1", + "stack_offset": 0 }, { "address": "0x14000a57c", "size": 3, "mnemonic": "test", - "operands": "bpl, bpl" + "operands": "bpl, bpl", + "stack_offset": 0 }, { "address": "0x14000a57f", "size": 2, "mnemonic": "je", - "operands": "0x14000a586" + "operands": "0x14000a586", + "stack_offset": 0 } ], "successors": [ @@ -32688,49 +36093,57 @@ "address": "0x14000a586", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x60]" + "operands": "rdx, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a58b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14000a58e", "size": 5, "mnemonic": "call", - "operands": "0x14000a464" + "operands": "0x14000a464", + "stack_offset": 0 }, { "address": "0x14000a593", "size": 2, "mnemonic": "inc", - "operands": "edi" + "operands": "edi", + "stack_offset": 0 }, { "address": "0x14000a595", "size": 2, "mnemonic": "cmp", - "operands": "edi, dword ptr [rbx]" + "operands": "edi, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000a597", "size": 2, "mnemonic": "jge", - "operands": "0x14000a5a0" + "operands": "0x14000a5a0", + "stack_offset": 0 }, { "address": "0x14000a599", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x60]" + "operands": "rax, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a59e", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a566" + "operands": "0x14000a566", + "stack_offset": 0 } ], "successors": [ @@ -32747,61 +36160,71 @@ "address": "0x14000a581", "size": 3, "mnemonic": "test", - "operands": "r14b, r14b" + "operands": "r14b, r14b", + "stack_offset": 0 }, { "address": "0x14000a584", "size": 2, "mnemonic": "jne", - "operands": "0x14000a5a0" + "operands": "0x14000a5a0", + "stack_offset": 0 }, { "address": "0x14000a586", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x60]" + "operands": "rdx, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a58b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14000a58e", "size": 5, "mnemonic": "call", - "operands": "0x14000a464" + "operands": "0x14000a464", + "stack_offset": 0 }, { "address": "0x14000a593", "size": 2, "mnemonic": "inc", - "operands": "edi" + "operands": "edi", + "stack_offset": 0 }, { "address": "0x14000a595", "size": 2, "mnemonic": "cmp", - "operands": "edi, dword ptr [rbx]" + "operands": "edi, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000a597", "size": 2, "mnemonic": "jge", - "operands": "0x14000a5a0" + "operands": "0x14000a5a0", + "stack_offset": 0 }, { "address": "0x14000a599", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x60]" + "operands": "rax, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a59e", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a566" + "operands": "0x14000a566", + "stack_offset": 0 } ], "successors": [ @@ -32818,61 +36241,71 @@ "address": "0x14000a566", "size": 3, "mnemonic": "cmp", - "operands": "edi, r12d" + "operands": "edi, r12d", + "stack_offset": 0 }, { "address": "0x14000a569", "size": 2, "mnemonic": "jne", - "operands": "0x14000a571" + "operands": "0x14000a571", + "stack_offset": 0 }, { "address": "0x14000a56b", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000a56e", "size": 3, "mnemonic": "mov", - "operands": "bpl, 1" + "operands": "bpl, 1", + "stack_offset": 0 }, { "address": "0x14000a571", "size": 3, "mnemonic": "cmp", - "operands": "edi, r13d" + "operands": "edi, r13d", + "stack_offset": 0 }, { "address": "0x14000a574", "size": 2, "mnemonic": "jne", - "operands": "0x14000a57c" + "operands": "0x14000a57c", + "stack_offset": 0 }, { "address": "0x14000a576", "size": 3, "mnemonic": "mov", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x14000a579", "size": 3, "mnemonic": "mov", - "operands": "r14b, 1" + "operands": "r14b, 1", + "stack_offset": 0 }, { "address": "0x14000a57c", "size": 3, "mnemonic": "test", - "operands": "bpl, bpl" + "operands": "bpl, bpl", + "stack_offset": 0 }, { "address": "0x14000a57f", "size": 2, "mnemonic": "je", - "operands": "0x14000a586" + "operands": "0x14000a586", + "stack_offset": 0 } ], "successors": [ @@ -32896,79 +36329,92 @@ "address": "0x14000acf2", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000acf3", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000acf4", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000acf6", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x4f0]" + "operands": "rbp, [rsp - 0x4f0]", + "stack_offset": 0 }, { "address": "0x14000acfe", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x5f0" + "operands": "rsp, 0x5f0", + "stack_offset": 0 }, { "address": "0x14000ad05", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x26334]" + "operands": "rax, qword ptr [rip + 0x26334]", + "stack_offset": 0 }, { "address": "0x14000ad0c", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000ad0f", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x4e0], rax" + "operands": "qword ptr [rbp + 0x4e0], rax", + "stack_offset": 0 }, { "address": "0x14000ad16", "size": 3, "mnemonic": "mov", - "operands": "edi, r8d" + "operands": "edi, r8d", + "stack_offset": 0 }, { "address": "0x14000ad19", "size": 2, "mnemonic": "mov", - "operands": "esi, edx" + "operands": "esi, edx", + "stack_offset": 0 }, { "address": "0x14000ad1b", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14000ad1d", "size": 3, "mnemonic": "cmp", - "operands": "ecx, -1" + "operands": "ecx, -1", + "stack_offset": 0 }, { "address": "0x14000ad20", "size": 2, "mnemonic": "je", - "operands": "0x14000ad27" + "operands": "0x14000ad27", + "stack_offset": 0 } ], "successors": [ @@ -32986,145 +36432,169 @@ "address": "0x14000ad27", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000ad29", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x70]" + "operands": "rcx, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000ad2e", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x98" + "operands": "r8d, 0x98", + "stack_offset": 0 }, { "address": "0x14000ad34", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x14000ad39", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000ad3b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000ad3f", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x4d0" + "operands": "r8d, 0x4d0", + "stack_offset": 0 }, { "address": "0x14000ad45", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x14000ad4a", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x48], 0" + "operands": "qword ptr [rsp + 0x48], 0", + "stack_offset": 0 }, { "address": "0x14000ad50", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x70]" + "operands": "rax, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000ad55", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x40], 0" + "operands": "qword ptr [rsp + 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000ad5b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000ad5f", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x50], 0" + "operands": "qword ptr [rsp + 0x50], 0", + "stack_offset": 0 }, { "address": "0x14000ad65", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x58], rax" + "operands": "qword ptr [rsp + 0x58], rax", + "stack_offset": 0 }, { "address": "0x14000ad6a", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x10]" + "operands": "rax, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000ad6e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rax" + "operands": "qword ptr [rsp + 0x60], rax", + "stack_offset": 0 }, { "address": "0x14000ad73", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x152df]" + "operands": "qword ptr [rip + 0x152df]", + "stack_offset": 0 }, { "address": "0x14000ad79", "size": 7, "mnemonic": "mov", - "operands": "r14, qword ptr [rbp + 0x108]" + "operands": "r14, qword ptr [rbp + 0x108]", + "stack_offset": 0 }, { "address": "0x14000ad80", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x40]" + "operands": "rdx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000ad85", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x14000ad88", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000ad8b", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x152cf]" + "operands": "qword ptr [rip + 0x152cf]", + "stack_offset": 0 }, { "address": "0x14000ad91", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000ad94", "size": 2, "mnemonic": "je", - "operands": "0x14000adcc" + "operands": "0x14000adcc", + "stack_offset": 0 } ], "successors": [ @@ -33142,151 +36612,176 @@ "address": "0x14000ad22", "size": 5, "mnemonic": "call", - "operands": "0x140005e38" + "operands": "0x140005e38", + "stack_offset": 0 }, { "address": "0x14000ad27", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000ad29", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x70]" + "operands": "rcx, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000ad2e", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x98" + "operands": "r8d, 0x98", + "stack_offset": 0 }, { "address": "0x14000ad34", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x14000ad39", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000ad3b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000ad3f", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x4d0" + "operands": "r8d, 0x4d0", + "stack_offset": 0 }, { "address": "0x14000ad45", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x14000ad4a", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x48], 0" + "operands": "qword ptr [rsp + 0x48], 0", + "stack_offset": 0 }, { "address": "0x14000ad50", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x70]" + "operands": "rax, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000ad55", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x40], 0" + "operands": "qword ptr [rsp + 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000ad5b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000ad5f", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x50], 0" + "operands": "qword ptr [rsp + 0x50], 0", + "stack_offset": 0 }, { "address": "0x14000ad65", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x58], rax" + "operands": "qword ptr [rsp + 0x58], rax", + "stack_offset": 0 }, { "address": "0x14000ad6a", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x10]" + "operands": "rax, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000ad6e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rax" + "operands": "qword ptr [rsp + 0x60], rax", + "stack_offset": 0 }, { "address": "0x14000ad73", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x152df]" + "operands": "qword ptr [rip + 0x152df]", + "stack_offset": 0 }, { "address": "0x14000ad79", "size": 7, "mnemonic": "mov", - "operands": "r14, qword ptr [rbp + 0x108]" + "operands": "r14, qword ptr [rbp + 0x108]", + "stack_offset": 0 }, { "address": "0x14000ad80", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x40]" + "operands": "rdx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000ad85", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x14000ad88", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000ad8b", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x152cf]" + "operands": "qword ptr [rip + 0x152cf]", + "stack_offset": 0 }, { "address": "0x14000ad91", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000ad94", "size": 2, "mnemonic": "je", - "operands": "0x14000adcc" + "operands": "0x14000adcc", + "stack_offset": 0 } ], "successors": [ @@ -33304,127 +36799,148 @@ "address": "0x14000adcc", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x508]" + "operands": "rax, qword ptr [rbp + 0x508]", + "stack_offset": 0 }, { "address": "0x14000add3", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x108], rax" + "operands": "qword ptr [rbp + 0x108], rax", + "stack_offset": 0 }, { "address": "0x14000adda", "size": 7, "mnemonic": "lea", - "operands": "rax, [rbp + 0x508]" + "operands": "rax, [rbp + 0x508]", + "stack_offset": 0 }, { "address": "0x14000ade1", "size": 4, "mnemonic": "add", - "operands": "rax, 8" + "operands": "rax, 8", + "stack_offset": 0 }, { "address": "0x14000ade5", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x70], esi" + "operands": "dword ptr [rsp + 0x70], esi", + "stack_offset": 0 }, { "address": "0x14000ade9", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0xa8], rax" + "operands": "qword ptr [rbp + 0xa8], rax", + "stack_offset": 0 }, { "address": "0x14000adf0", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x508]" + "operands": "rax, qword ptr [rbp + 0x508]", + "stack_offset": 0 }, { "address": "0x14000adf7", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x80], rax" + "operands": "qword ptr [rbp - 0x80], rax", + "stack_offset": 0 }, { "address": "0x14000adfb", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x74], edi" + "operands": "dword ptr [rsp + 0x74], edi", + "stack_offset": 0 }, { "address": "0x14000adff", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x152bb]" + "operands": "qword ptr [rip + 0x152bb]", + "stack_offset": 0 }, { "address": "0x14000ae05", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000ae07", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x14000ae09", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x15269]" + "operands": "qword ptr [rip + 0x15269]", + "stack_offset": 0 }, { "address": "0x14000ae0f", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x58]" + "operands": "rcx, [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000ae14", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x15256]" + "operands": "qword ptr [rip + 0x15256]", + "stack_offset": 0 }, { "address": "0x14000ae1a", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000ae1c", "size": 2, "mnemonic": "jne", - "operands": "0x14000ae2e" + "operands": "0x14000ae2e", + "stack_offset": 0 }, { "address": "0x14000ae1e", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14000ae20", "size": 2, "mnemonic": "jne", - "operands": "0x14000ae2e" + "operands": "0x14000ae2e", + "stack_offset": 0 }, { "address": "0x14000ae22", "size": 3, "mnemonic": "cmp", - "operands": "ebx, -1" + "operands": "ebx, -1", + "stack_offset": 0 }, { "address": "0x14000ae25", "size": 2, "mnemonic": "je", - "operands": "0x14000ae2e" + "operands": "0x14000ae2e", + "stack_offset": 0 } ], "successors": [ @@ -33442,199 +36958,232 @@ "address": "0x14000ad96", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x38], 0" + "operands": "qword ptr [rsp + 0x38], 0", + "stack_offset": 0 }, { "address": "0x14000ad9c", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x48]" + "operands": "rcx, [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000ada1", "size": 5, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsp + 0x40]" + "operands": "rdx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000ada6", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x14000ada9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x14000adae", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14000adb1", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x50]" + "operands": "rcx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000adb6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rcx" + "operands": "qword ptr [rsp + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x14000adbb", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000adbf", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rcx" + "operands": "qword ptr [rsp + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x14000adc4", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000adc6", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1529c]" + "operands": "qword ptr [rip + 0x1529c]", + "stack_offset": 0 }, { "address": "0x14000adcc", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x508]" + "operands": "rax, qword ptr [rbp + 0x508]", + "stack_offset": 0 }, { "address": "0x14000add3", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x108], rax" + "operands": "qword ptr [rbp + 0x108], rax", + "stack_offset": 0 }, { "address": "0x14000adda", "size": 7, "mnemonic": "lea", - "operands": "rax, [rbp + 0x508]" + "operands": "rax, [rbp + 0x508]", + "stack_offset": 0 }, { "address": "0x14000ade1", "size": 4, "mnemonic": "add", - "operands": "rax, 8" + "operands": "rax, 8", + "stack_offset": 0 }, { "address": "0x14000ade5", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x70], esi" + "operands": "dword ptr [rsp + 0x70], esi", + "stack_offset": 0 }, { "address": "0x14000ade9", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0xa8], rax" + "operands": "qword ptr [rbp + 0xa8], rax", + "stack_offset": 0 }, { "address": "0x14000adf0", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x508]" + "operands": "rax, qword ptr [rbp + 0x508]", + "stack_offset": 0 }, { "address": "0x14000adf7", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x80], rax" + "operands": "qword ptr [rbp - 0x80], rax", + "stack_offset": 0 }, { "address": "0x14000adfb", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x74], edi" + "operands": "dword ptr [rsp + 0x74], edi", + "stack_offset": 0 }, { "address": "0x14000adff", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x152bb]" + "operands": "qword ptr [rip + 0x152bb]", + "stack_offset": 0 }, { "address": "0x14000ae05", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000ae07", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x14000ae09", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x15269]" + "operands": "qword ptr [rip + 0x15269]", + "stack_offset": 0 }, { "address": "0x14000ae0f", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x58]" + "operands": "rcx, [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000ae14", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x15256]" + "operands": "qword ptr [rip + 0x15256]", + "stack_offset": 0 }, { "address": "0x14000ae1a", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000ae1c", "size": 2, "mnemonic": "jne", - "operands": "0x14000ae2e" + "operands": "0x14000ae2e", + "stack_offset": 0 }, { "address": "0x14000ae1e", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14000ae20", "size": 2, "mnemonic": "jne", - "operands": "0x14000ae2e" + "operands": "0x14000ae2e", + "stack_offset": 0 }, { "address": "0x14000ae22", "size": 3, "mnemonic": "cmp", - "operands": "ebx, -1" + "operands": "ebx, -1", + "stack_offset": 0 }, { "address": "0x14000ae25", "size": 2, "mnemonic": "je", - "operands": "0x14000ae2e" + "operands": "0x14000ae2e", + "stack_offset": 0 } ], "successors": [ @@ -33652,67 +37201,78 @@ "address": "0x14000ae2e", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x4e0]" + "operands": "rcx, qword ptr [rbp + 0x4e0]", + "stack_offset": 0 }, { "address": "0x14000ae35", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14000ae38", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14000ae3d", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x5f0]" + "operands": "r11, [rsp + 0x5f0]", + "stack_offset": 0 }, { "address": "0x14000ae45", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x28]" + "operands": "rbx, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x14000ae49", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x14000ae4d", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000ae50", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000ae52", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000ae53", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000ae54", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -33728,79 +37288,92 @@ "address": "0x14000ae27", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14000ae29", "size": 5, "mnemonic": "call", - "operands": "0x140005e38" + "operands": "0x140005e38", + "stack_offset": 0 }, { "address": "0x14000ae2e", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x4e0]" + "operands": "rcx, qword ptr [rbp + 0x4e0]", + "stack_offset": 0 }, { "address": "0x14000ae35", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14000ae38", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14000ae3d", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x5f0]" + "operands": "r11, [rsp + 0x5f0]", + "stack_offset": 0 }, { "address": "0x14000ae45", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x28]" + "operands": "rbx, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x14000ae49", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x14000ae4d", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000ae50", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000ae52", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000ae53", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000ae54", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -33822,145 +37395,169 @@ "address": "0x14000ae65", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000ae66", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000ae69", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14000ae6d", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000ae72", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x28377], 0" + "operands": "dword ptr [rip + 0x28377], 0", + "stack_offset": 0 }, { "address": "0x14000ae79", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000ae7d", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14000ae81", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000ae85", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000ae89", "size": 2, "mnemonic": "jne", - "operands": "0x14000ae9b" + "operands": "0x14000ae9b", + "stack_offset": 0 }, { "address": "0x14000ae8b", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x26596]" + "operands": "xmm0, xmmword ptr [rip + 0x26596]", + "stack_offset": 0 }, { "address": "0x14000ae92", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x14000ae96", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x14000ae9b", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x40]" + "operands": "rax, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000ae9f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14000aea4", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x30]" + "operands": "rax, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000aea8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14000aead", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x14000aeb2", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x14000aeb6", "size": 2, "mnemonic": "jne", - "operands": "0x14000aec3" + "operands": "0x14000aec3", + "stack_offset": 0 }, { "address": "0x14000aeb8", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x40]" + "operands": "rax, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000aebc", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rax + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rax + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14000aec3", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000aec7", "size": 2, "mnemonic": "je", - "operands": "0x14000aed8" + "operands": "0x14000aed8", + "stack_offset": 0 } ], "successors": [ @@ -33978,13 +37575,15 @@ "address": "0x14000aed8", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000aedc", "size": 2, "mnemonic": "je", - "operands": "0x14000aeed" + "operands": "0x14000aeed", + "stack_offset": 0 } ], "successors": [ @@ -34002,37 +37601,43 @@ "address": "0x14000aec9", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x14000aecc", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000aed0", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000aed5", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x14000aed8", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000aedc", "size": 2, "mnemonic": "je", - "operands": "0x14000aeed" + "operands": "0x14000aeed", + "stack_offset": 0 } ], "successors": [ @@ -34050,25 +37655,29 @@ "address": "0x14000aeed", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x80]" + "operands": "rbx, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x14000aef5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14000aef9", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000aefa", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -34084,49 +37693,57 @@ "address": "0x14000aede", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x14000aee1", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000aee5", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000aeea", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x14000aeed", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x80]" + "operands": "rbx, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x14000aef5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14000aef9", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000aefa", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -34148,133 +37765,155 @@ "address": "0x14000b33e", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b33f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000b342", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000b346", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000b34b", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x27e9e], 0" + "operands": "dword ptr [rip + 0x27e9e], 0", + "stack_offset": 0 }, { "address": "0x14000b352", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000b356", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14000b35a", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000b35e", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000b362", "size": 2, "mnemonic": "jne", - "operands": "0x14000b374" + "operands": "0x14000b374", + "stack_offset": 0 }, { "address": "0x14000b364", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x260bd]" + "operands": "xmm0, xmmword ptr [rip + 0x260bd]", + "stack_offset": 0 }, { "address": "0x14000b36b", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x14000b36f", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x14000b374", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x40]" + "operands": "rdx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000b378", "size": 5, "mnemonic": "call", - "operands": "0x14000b210" + "operands": "0x14000b210", + "stack_offset": 0 }, { "address": "0x14000b37d", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x14000b381", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x14000b383", "size": 2, "mnemonic": "jne", - "operands": "0x14000b390" + "operands": "0x14000b390", + "stack_offset": 0 }, { "address": "0x14000b385", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000b389", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14000b390", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000b394", "size": 2, "mnemonic": "je", - "operands": "0x14000b3a5" + "operands": "0x14000b3a5", + "stack_offset": 0 } ], "successors": [ @@ -34292,13 +37931,15 @@ "address": "0x14000b3a5", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000b3a9", "size": 2, "mnemonic": "je", - "operands": "0x14000b3ba" + "operands": "0x14000b3ba", + "stack_offset": 0 } ], "successors": [ @@ -34316,37 +37957,43 @@ "address": "0x14000b396", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x14000b399", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000b39d", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000b3a2", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x14000b3a5", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000b3a9", "size": 2, "mnemonic": "je", - "operands": "0x14000b3ba" + "operands": "0x14000b3ba", + "stack_offset": 0 } ], "successors": [ @@ -34364,37 +38011,43 @@ "address": "0x14000b3ba", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000b3bf", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000b3c1", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14000b3c6", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000b3ca", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b3cb", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -34410,61 +38063,71 @@ "address": "0x14000b3ab", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x14000b3ae", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000b3b2", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000b3b7", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x14000b3ba", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000b3bf", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000b3c1", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14000b3c6", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000b3ca", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b3cb", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -34486,151 +38149,176 @@ "address": "0x14000b590", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b591", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000b594", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000b598", "size": 4, "mnemonic": "and", - "operands": "dword ptr [rbp + 0x28], 0" + "operands": "dword ptr [rbp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x14000b59c", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x28]" + "operands": "rax, [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000b5a0", "size": 4, "mnemonic": "and", - "operands": "dword ptr [rbp + 0x20], 0" + "operands": "dword ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14000b5a4", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x20]" + "operands": "r9, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14000b5a8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x18], rax" + "operands": "qword ptr [rbp - 0x18], rax", + "stack_offset": 0 }, { "address": "0x14000b5ac", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x18]" + "operands": "r8, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14000b5b0", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x10]" + "operands": "rax, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000b5b4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x14000b5b8", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x1c]" + "operands": "rdx, [rbp - 0x1c]", + "stack_offset": 0 }, { "address": "0x14000b5bc", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x20]" + "operands": "rax, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000b5c0", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 8], rax" + "operands": "qword ptr [rbp - 8], rax", + "stack_offset": 0 }, { "address": "0x14000b5c4", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x18]" + "operands": "rcx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x14000b5c8", "size": 5, "mnemonic": "mov", - "operands": "eax, 8" + "operands": "eax, 8", + "stack_offset": 0 }, { "address": "0x14000b5cd", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x20], eax" + "operands": "dword ptr [rbp - 0x20], eax", + "stack_offset": 0 }, { "address": "0x14000b5d0", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x1c], eax" + "operands": "dword ptr [rbp - 0x1c], eax", + "stack_offset": 0 }, { "address": "0x14000b5d3", "size": 5, "mnemonic": "call", - "operands": "0x14000b468" + "operands": "0x14000b468", + "stack_offset": 0 }, { "address": "0x14000b5d8", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0x10], 0" + "operands": "byte ptr [rbp + 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000b5dc", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x20]" + "operands": "eax, dword ptr [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000b5df", "size": 4, "mnemonic": "cmovne", - "operands": "eax, dword ptr [rbp + 0x28]" + "operands": "eax, dword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000b5e3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000b5e7", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b5e8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -34652,121 +38340,141 @@ "address": "0x14000b682", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b683", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000b686", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000b68a", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000b68f", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000b692", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x27b57], 0" + "operands": "dword ptr [rip + 0x27b57], 0", + "stack_offset": 0 }, { "address": "0x14000b699", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000b69d", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14000b6a1", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000b6a5", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000b6a9", "size": 2, "mnemonic": "jne", - "operands": "0x14000b6bb" + "operands": "0x14000b6bb", + "stack_offset": 0 }, { "address": "0x14000b6ab", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x25d76]" + "operands": "xmm0, xmmword ptr [rip + 0x25d76]", + "stack_offset": 0 }, { "address": "0x14000b6b2", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x14000b6b6", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x14000b6bb", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14000b6be", "size": 2, "mnemonic": "jne", - "operands": "0x14000b6cb" + "operands": "0x14000b6cb", + "stack_offset": 0 }, { "address": "0x14000b6c0", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000b6c2", "size": 5, "mnemonic": "call", - "operands": "0x14000b58c" + "operands": "0x14000b58c", + "stack_offset": 0 }, { "address": "0x14000b6c7", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x14000b6c9", "size": 2, "mnemonic": "jmp", - "operands": "0x14000b6fd" + "operands": "0x14000b6fd", + "stack_offset": 0 } ], "successors": [ @@ -34783,37 +38491,43 @@ "address": "0x14000b6fd", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x14000b701", "size": 2, "mnemonic": "jne", - "operands": "0x14000b70e" + "operands": "0x14000b70e", + "stack_offset": 0 }, { "address": "0x14000b703", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x40]" + "operands": "rax, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000b707", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rax + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rax + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14000b70e", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000b712", "size": 2, "mnemonic": "je", - "operands": "0x14000b723" + "operands": "0x14000b723", + "stack_offset": 0 } ], "successors": [ @@ -34831,13 +38545,15 @@ "address": "0x14000b723", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000b727", "size": 2, "mnemonic": "je", - "operands": "0x14000b738" + "operands": "0x14000b738", + "stack_offset": 0 } ], "successors": [ @@ -34855,37 +38571,43 @@ "address": "0x14000b714", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x14000b717", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000b71b", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000b720", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x14000b723", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000b727", "size": 2, "mnemonic": "je", - "operands": "0x14000b738" + "operands": "0x14000b738", + "stack_offset": 0 } ], "successors": [ @@ -34903,37 +38625,43 @@ "address": "0x14000b738", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000b73d", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000b73f", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14000b744", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000b748", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b749", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -34949,61 +38677,71 @@ "address": "0x14000b729", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x14000b72c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000b730", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000b735", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x14000b738", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000b73d", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000b73f", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14000b744", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000b748", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b749", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -35025,133 +38763,155 @@ "address": "0x14000bace", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000bacf", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000bad2", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000bad6", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000badb", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x2770e], 0" + "operands": "dword ptr [rip + 0x2770e], 0", + "stack_offset": 0 }, { "address": "0x14000bae2", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000bae6", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14000baea", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000baee", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000baf2", "size": 2, "mnemonic": "jne", - "operands": "0x14000bb04" + "operands": "0x14000bb04", + "stack_offset": 0 }, { "address": "0x14000baf4", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x2592d]" + "operands": "xmm0, xmmword ptr [rip + 0x2592d]", + "stack_offset": 0 }, { "address": "0x14000bafb", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x14000baff", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x14000bb04", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x40]" + "operands": "r8, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000bb08", "size": 5, "mnemonic": "call", - "operands": "0x14000b960" + "operands": "0x14000b960", + "stack_offset": 0 }, { "address": "0x14000bb0d", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x14000bb11", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x14000bb13", "size": 2, "mnemonic": "jne", - "operands": "0x14000bb20" + "operands": "0x14000bb20", + "stack_offset": 0 }, { "address": "0x14000bb15", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000bb19", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14000bb20", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000bb24", "size": 2, "mnemonic": "je", - "operands": "0x14000bb35" + "operands": "0x14000bb35", + "stack_offset": 0 } ], "successors": [ @@ -35169,13 +38929,15 @@ "address": "0x14000bb35", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000bb39", "size": 2, "mnemonic": "je", - "operands": "0x14000bb4a" + "operands": "0x14000bb4a", + "stack_offset": 0 } ], "successors": [ @@ -35193,37 +38955,43 @@ "address": "0x14000bb26", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x14000bb29", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000bb2d", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000bb32", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x14000bb35", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000bb39", "size": 2, "mnemonic": "je", - "operands": "0x14000bb4a" + "operands": "0x14000bb4a", + "stack_offset": 0 } ], "successors": [ @@ -35241,37 +39009,43 @@ "address": "0x14000bb4a", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000bb4f", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000bb51", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14000bb56", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000bb5a", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000bb5b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -35287,61 +39061,71 @@ "address": "0x14000bb3b", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x14000bb3e", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000bb42", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000bb47", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x14000bb4a", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000bb4f", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000bb51", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14000bb56", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000bb5a", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000bb5b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -35363,85 +39147,99 @@ "address": "0x14000bb66", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000bb67", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000bb68", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000bb69", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000bb6b", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000bb6d", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000bb6f", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000bb71", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000bb75", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x80]" + "operands": "rbx, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x14000bb7d", "size": 3, "mnemonic": "mov", - "operands": "r15, r8" + "operands": "r15, r8", + "stack_offset": 0 }, { "address": "0x14000bb80", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x14000bb83", "size": 3, "mnemonic": "mov", - "operands": "r12, rcx" + "operands": "r12, rcx", + "stack_offset": 0 }, { "address": "0x14000bb86", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x14000bb89", "size": 2, "mnemonic": "je", - "operands": "0x14000bba5" + "operands": "0x14000bba5", + "stack_offset": 0 } ], "successors": [ @@ -35459,67 +39257,78 @@ "address": "0x14000bba5", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000bba7", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000bbac", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000bbb0", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000bbb2", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000bbb4", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000bbb6", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000bbb8", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000bbb9", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000bbba", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000bbbb", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -35535,13 +39344,15 @@ "address": "0x14000bb8b", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x14000bb8e", "size": 2, "mnemonic": "je", - "operands": "0x14000bba5" + "operands": "0x14000bba5", + "stack_offset": 0 } ], "successors": [ @@ -35559,97 +39370,113 @@ "address": "0x14000bb90", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000bb93", "size": 2, "mnemonic": "jne", - "operands": "0x14000bbbc" + "operands": "0x14000bbbc", + "stack_offset": 0 }, { "address": "0x14000bb95", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14000bb9a", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x14000bba0", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14000bba5", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000bba7", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000bbac", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000bbb0", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000bbb2", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000bbb4", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000bbb6", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000bbb8", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000bbb9", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000bbba", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000bbbb", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -35671,133 +39498,155 @@ "address": "0x14000c156", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c157", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000c15a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000c15e", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000c163", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x27086], 0" + "operands": "dword ptr [rip + 0x27086], 0", + "stack_offset": 0 }, { "address": "0x14000c16a", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000c16e", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14000c172", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000c176", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000c17a", "size": 2, "mnemonic": "jne", - "operands": "0x14000c18c" + "operands": "0x14000c18c", + "stack_offset": 0 }, { "address": "0x14000c17c", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x252a5]" + "operands": "xmm0, xmmword ptr [rip + 0x252a5]", + "stack_offset": 0 }, { "address": "0x14000c183", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x14000c187", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x14000c18c", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x40]" + "operands": "r9, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000c190", "size": 5, "mnemonic": "call", - "operands": "0x14000bec8" + "operands": "0x14000bec8", + "stack_offset": 0 }, { "address": "0x14000c195", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x14000c199", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x14000c19b", "size": 2, "mnemonic": "jne", - "operands": "0x14000c1a8" + "operands": "0x14000c1a8", + "stack_offset": 0 }, { "address": "0x14000c19d", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000c1a1", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14000c1a8", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000c1ac", "size": 2, "mnemonic": "je", - "operands": "0x14000c1bd" + "operands": "0x14000c1bd", + "stack_offset": 0 } ], "successors": [ @@ -35815,13 +39664,15 @@ "address": "0x14000c1bd", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000c1c1", "size": 2, "mnemonic": "je", - "operands": "0x14000c1d2" + "operands": "0x14000c1d2", + "stack_offset": 0 } ], "successors": [ @@ -35839,37 +39690,43 @@ "address": "0x14000c1ae", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x14000c1b1", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000c1b5", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000c1ba", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x14000c1bd", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000c1c1", "size": 2, "mnemonic": "je", - "operands": "0x14000c1d2" + "operands": "0x14000c1d2", + "stack_offset": 0 } ], "successors": [ @@ -35887,37 +39744,43 @@ "address": "0x14000c1d2", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000c1d7", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000c1d9", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14000c1de", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000c1e2", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c1e3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -35933,61 +39796,71 @@ "address": "0x14000c1c3", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x14000c1c6", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000c1ca", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000c1cf", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x14000c1d2", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000c1d7", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000c1d9", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14000c1de", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000c1e2", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c1e3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -36009,31 +39882,36 @@ "address": "0x14000c2b7", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c2b8", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000c2bb", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14000c2bf", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000c2c2", "size": 2, "mnemonic": "je", - "operands": "0x14000c2f1" + "operands": "0x14000c2f1", + "stack_offset": 0 } ], "successors": [ @@ -36051,25 +39929,29 @@ "address": "0x14000c2f1", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000c2f3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14000c2f7", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c2f8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -36085,13 +39967,15 @@ "address": "0x14000c2c4", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x14000c2c7", "size": 2, "mnemonic": "je", - "operands": "0x14000c2f1" + "operands": "0x14000c2f1", + "stack_offset": 0 } ], "successors": [ @@ -36109,91 +39993,106 @@ "address": "0x14000c2c9", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x14000c2cc", "size": 2, "mnemonic": "jne", - "operands": "0x14000c2f9" + "operands": "0x14000c2f9", + "stack_offset": 0 }, { "address": "0x14000c2ce", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x30]" + "operands": "rax, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000c2d2", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000c2d5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 - 0x50], rax" + "operands": "qword ptr [r11 - 0x50], rax", + "stack_offset": 0 }, { "address": "0x14000c2d9", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000c2db", "size": 4, "mnemonic": "and", - "operands": "qword ptr [r11 - 0x58], r9" + "operands": "qword ptr [r11 - 0x58], r9", + "stack_offset": 0 }, { "address": "0x14000c2df", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000c2e1", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rax + 0x30], 1" + "operands": "byte ptr [rax + 0x30], 1", + "stack_offset": 0 }, { "address": "0x14000c2e5", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x2c], 0x16" + "operands": "dword ptr [rax + 0x2c], 0x16", + "stack_offset": 0 }, { "address": "0x14000c2ec", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x14000c2f1", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000c2f3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14000c2f7", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c2f8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -36215,139 +40114,162 @@ "address": "0x14000c55e", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c55f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000c562", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14000c566", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000c56b", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x26c7e], 0" + "operands": "dword ptr [rip + 0x26c7e], 0", + "stack_offset": 0 }, { "address": "0x14000c572", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000c576", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14000c57a", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000c57e", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000c582", "size": 2, "mnemonic": "jne", - "operands": "0x14000c594" + "operands": "0x14000c594", + "stack_offset": 0 }, { "address": "0x14000c584", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x24e9d]" + "operands": "xmm0, xmmword ptr [rip + 0x24e9d]", + "stack_offset": 0 }, { "address": "0x14000c58b", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x14000c58f", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x14000c594", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x40]" + "operands": "rax, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000c598", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14000c59d", "size": 5, "mnemonic": "call", - "operands": "0x14000c2a4" + "operands": "0x14000c2a4", + "stack_offset": 0 }, { "address": "0x14000c5a2", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x14000c5a6", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14000c5a9", "size": 2, "mnemonic": "jne", - "operands": "0x14000c5b6" + "operands": "0x14000c5b6", + "stack_offset": 0 }, { "address": "0x14000c5ab", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000c5af", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14000c5b6", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000c5ba", "size": 2, "mnemonic": "je", - "operands": "0x14000c5cb" + "operands": "0x14000c5cb", + "stack_offset": 0 } ], "successors": [ @@ -36365,13 +40287,15 @@ "address": "0x14000c5cb", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000c5cf", "size": 2, "mnemonic": "je", - "operands": "0x14000c5e0" + "operands": "0x14000c5e0", + "stack_offset": 0 } ], "successors": [ @@ -36389,37 +40313,43 @@ "address": "0x14000c5bc", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x14000c5bf", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000c5c3", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000c5c8", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x14000c5cb", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000c5cf", "size": 2, "mnemonic": "je", - "operands": "0x14000c5e0" + "operands": "0x14000c5e0", + "stack_offset": 0 } ], "successors": [ @@ -36437,43 +40367,50 @@ "address": "0x14000c5e0", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000c5e5", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x14000c5e8", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x14000c5ec", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x18]" + "operands": "rdi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x14000c5f0", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000c5f3", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c5f4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -36489,67 +40426,78 @@ "address": "0x14000c5d1", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x14000c5d4", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000c5d8", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000c5dd", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x14000c5e0", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000c5e5", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x14000c5e8", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x14000c5ec", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x18]" + "operands": "rdi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x14000c5f0", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000c5f3", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c5f4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -36571,199 +40519,232 @@ "address": "0x14000c720", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c722", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000c723", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000c724", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x47]" + "operands": "rbp, [rsp - 0x47]", + "stack_offset": 0 }, { "address": "0x14000c729", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xb0" + "operands": "rsp, 0xb0", + "stack_offset": 0 }, { "address": "0x14000c730", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x39], 0" + "operands": "qword ptr [rbp - 0x39], 0", + "stack_offset": 0 }, { "address": "0x14000c735", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x26ab4], 0" + "operands": "dword ptr [rip + 0x26ab4], 0", + "stack_offset": 0 }, { "address": "0x14000c73c", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x29], 0" + "operands": "byte ptr [rbp - 0x29], 0", + "stack_offset": 0 }, { "address": "0x14000c740", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x11], 0" + "operands": "byte ptr [rbp - 0x11], 0", + "stack_offset": 0 }, { "address": "0x14000c744", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 9], 0" + "operands": "byte ptr [rbp - 9], 0", + "stack_offset": 0 }, { "address": "0x14000c748", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 1], 0" + "operands": "byte ptr [rbp - 1], 0", + "stack_offset": 0 }, { "address": "0x14000c74c", "size": 2, "mnemonic": "jne", - "operands": "0x14000c75e" + "operands": "0x14000c75e", + "stack_offset": 0 }, { "address": "0x14000c74e", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x24cd3]" + "operands": "xmm0, xmmword ptr [rip + 0x24cd3]", + "stack_offset": 0 }, { "address": "0x14000c755", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x11], 1" + "operands": "byte ptr [rbp - 0x11], 1", + "stack_offset": 0 }, { "address": "0x14000c759", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x21], xmm0" + "operands": "xmmword ptr [rbp - 0x21], xmm0", + "stack_offset": 0 }, { "address": "0x14000c75e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x6f], r9" + "operands": "qword ptr [rbp + 0x6f], r9", + "stack_offset": 0 }, { "address": "0x14000c762", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x67], r8d" + "operands": "dword ptr [rbp + 0x67], r8d", + "stack_offset": 0 }, { "address": "0x14000c766", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 7], rdx" + "operands": "qword ptr [rbp + 7], rdx", + "stack_offset": 0 }, { "address": "0x14000c76a", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x7f], rcx" + "operands": "qword ptr [rbp + 0x7f], rcx", + "stack_offset": 0 }, { "address": "0x14000c76e", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000c771", "size": 2, "mnemonic": "jne", - "operands": "0x14000c7a1" + "operands": "0x14000c7a1", + "stack_offset": 0 }, { "address": "0x14000c773", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x39]" + "operands": "rax, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14000c777", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 9], 1" + "operands": "byte ptr [rbp - 9], 1", + "stack_offset": 0 }, { "address": "0x14000c77b", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14000c780", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000c783", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14000c789", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000c78c", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000c78e", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0xd], 0x16" + "operands": "dword ptr [rbp - 0xd], 0x16", + "stack_offset": 0 }, { "address": "0x14000c795", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000c797", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x14000c79c", "size": 3, "mnemonic": "or", - "operands": "edi, 0xffffffff" + "operands": "edi, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14000c79f", "size": 2, "mnemonic": "jmp", - "operands": "0x14000c80d" + "operands": "0x14000c80d", + "stack_offset": 0 } ], "successors": [ @@ -36780,37 +40761,43 @@ "address": "0x14000c80d", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x11], 2" + "operands": "byte ptr [rbp - 0x11], 2", + "stack_offset": 0 }, { "address": "0x14000c811", "size": 2, "mnemonic": "jne", - "operands": "0x14000c81e" + "operands": "0x14000c81e", + "stack_offset": 0 }, { "address": "0x14000c813", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x39]" + "operands": "rcx, qword ptr [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14000c817", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14000c81e", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 9], 0" + "operands": "byte ptr [rbp - 9], 0", + "stack_offset": 0 }, { "address": "0x14000c822", "size": 2, "mnemonic": "je", - "operands": "0x14000c833" + "operands": "0x14000c833", + "stack_offset": 0 } ], "successors": [ @@ -36828,13 +40815,15 @@ "address": "0x14000c833", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 1], 0" + "operands": "byte ptr [rbp - 1], 0", + "stack_offset": 0 }, { "address": "0x14000c837", "size": 2, "mnemonic": "je", - "operands": "0x14000c848" + "operands": "0x14000c848", + "stack_offset": 0 } ], "successors": [ @@ -36852,37 +40841,43 @@ "address": "0x14000c824", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xd]" + "operands": "ebx, dword ptr [rbp - 0xd]", + "stack_offset": 0 }, { "address": "0x14000c827", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14000c82b", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000c830", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x14000c833", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 1], 0" + "operands": "byte ptr [rbp - 1], 0", + "stack_offset": 0 }, { "address": "0x14000c837", "size": 2, "mnemonic": "je", - "operands": "0x14000c848" + "operands": "0x14000c848", + "stack_offset": 0 } ], "successors": [ @@ -36900,37 +40895,43 @@ "address": "0x14000c848", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000c84a", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xb0" + "operands": "rsp, 0xb0", + "stack_offset": 0 }, { "address": "0x14000c851", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000c852", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000c853", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c854", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -36946,61 +40947,71 @@ "address": "0x14000c839", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 5]" + "operands": "ebx, dword ptr [rbp - 5]", + "stack_offset": 0 }, { "address": "0x14000c83c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14000c840", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000c845", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x14000c848", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000c84a", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xb0" + "operands": "rsp, 0xb0", + "stack_offset": 0 }, { "address": "0x14000c851", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000c852", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000c853", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c854", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -37022,115 +41033,134 @@ "address": "0x14000cb12", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000cb13", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000cb14", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000cb16", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000cb18", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000cb1a", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000cb1d", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000cb21", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 8]" + "operands": "rax, qword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x14000cb25", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000cb27", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000cb2a", "size": 3, "mnemonic": "mov", - "operands": "rsi, qword ptr [rax]" + "operands": "rsi, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000cb2d", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000cb30", "size": 3, "mnemonic": "mov", - "operands": "r14d, dword ptr [rax]" + "operands": "r14d, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000cb33", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x14000cb36", "size": 2, "mnemonic": "jne", - "operands": "0x14000cb48" + "operands": "0x14000cb48", + "stack_offset": 0 }, { "address": "0x14000cb38", "size": 3, "mnemonic": "mov", - "operands": "ecx, r14d" + "operands": "ecx, r14d", + "stack_offset": 0 }, { "address": "0x14000cb3b", "size": 5, "mnemonic": "call", - "operands": "0x14000f858" + "operands": "0x14000f858", + "stack_offset": 0 }, { "address": "0x14000cb40", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x14000cb43", "size": 5, "mnemonic": "jmp", - "operands": "0x14000cbf5" + "operands": "0x14000cbf5", + "stack_offset": 0 } ], "successors": [ @@ -37147,13 +41177,15 @@ "address": "0x14000cbf5", "size": 3, "mnemonic": "test", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x14000cbf8", "size": 2, "mnemonic": "je", - "operands": "0x14000cb94" + "operands": "0x14000cb94", + "stack_offset": 0 } ], "successors": [ @@ -37171,67 +41203,78 @@ "address": "0x14000cb94", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000cb96", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x40]" + "operands": "r11, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000cb9b", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x40]" + "operands": "rbx, qword ptr [r11 + 0x40]", + "stack_offset": 0 }, { "address": "0x14000cb9f", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x48]" + "operands": "rsi, qword ptr [r11 + 0x48]", + "stack_offset": 0 }, { "address": "0x14000cba3", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000cba6", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000cba8", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000cbaa", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000cbac", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000cbad", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000cbae", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -37247,103 +41290,120 @@ "address": "0x14000cbfa", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14000cbff", "size": 3, "mnemonic": "mov", - "operands": "r13, rax" + "operands": "r13, rax", + "stack_offset": 0 }, { "address": "0x14000cc02", "size": 3, "mnemonic": "mov", - "operands": "r9, r14" + "operands": "r9, r14", + "stack_offset": 0 }, { "address": "0x14000cc05", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000cc08", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000cc0a", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax + 0x90]" + "operands": "rcx, qword ptr [rax + 0x90]", + "stack_offset": 0 }, { "address": "0x14000cc11", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rcx" + "operands": "qword ptr [rbp - 0x10], rcx", + "stack_offset": 0 }, { "address": "0x14000cc15", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax + 0x88]" + "operands": "rcx, qword ptr [rax + 0x88]", + "stack_offset": 0 }, { "address": "0x14000cc1c", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x10]" + "operands": "rax, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14000cc20", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp + 0x38], 0" + "operands": "qword ptr [rbp + 0x38], 0", + "stack_offset": 0 }, { "address": "0x14000cc25", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 8], rcx" + "operands": "qword ptr [rbp - 8], rcx", + "stack_offset": 0 }, { "address": "0x14000cc29", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x38]" + "operands": "rcx, [rbp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000cc2d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14000cc32", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14000cc38", "size": 5, "mnemonic": "call", - "operands": "0x140015a74" + "operands": "0x140015a74", + "stack_offset": 0 }, { "address": "0x14000cc3d", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000cc3f", "size": 2, "mnemonic": "je", - "operands": "0x14000cc58" + "operands": "0x14000cc58", + "stack_offset": 0 } ], "successors": [ @@ -37361,37 +41421,43 @@ "address": "0x14000cc58", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x38]" + "operands": "rcx, qword ptr [rbp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000cc5c", "size": 4, "mnemonic": "add", - "operands": "rcx, 4" + "operands": "rcx, 4", + "stack_offset": 0 }, { "address": "0x14000cc60", "size": 5, "mnemonic": "call", - "operands": "0x140015200" + "operands": "0x140015200", + "stack_offset": 0 }, { "address": "0x14000cc65", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000cc68", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000cc6b", "size": 6, "mnemonic": "je", - "operands": "0x14000cb94" + "operands": "0x14000cb94", + "stack_offset": 0 } ], "successors": [ @@ -37409,13 +41475,15 @@ "address": "0x14000cc41", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x16" + "operands": "eax, 0x16", + "stack_offset": 0 }, { "address": "0x14000cc44", "size": 6, "mnemonic": "je", - "operands": "0x14000cd91" + "operands": "0x14000cd91", + "stack_offset": 0 } ], "successors": [ @@ -37433,67 +41501,78 @@ "address": "0x14000cc71", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rbp + 0x38]" + "operands": "r8, qword ptr [rbp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000cc75", "size": 4, "mnemonic": "lea", - "operands": "r15, [rax + 4]" + "operands": "r15, [rax + 4]", + "stack_offset": 0 }, { "address": "0x14000cc79", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x10]" + "operands": "rax, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14000cc7d", "size": 3, "mnemonic": "mov", - "operands": "r9, r14" + "operands": "r9, r14", + "stack_offset": 0 }, { "address": "0x14000cc80", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14000cc85", "size": 3, "mnemonic": "mov", - "operands": "rdx, r15" + "operands": "rdx, r15", + "stack_offset": 0 }, { "address": "0x14000cc88", "size": 6, "mnemonic": "or", - "operands": "qword ptr [rsp + 0x20], 0xffffffffffffffff" + "operands": "qword ptr [rsp + 0x20], 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14000cc8e", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000cc90", "size": 5, "mnemonic": "call", - "operands": "0x140015a74" + "operands": "0x140015a74", + "stack_offset": 0 }, { "address": "0x14000cc95", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000cc97", "size": 2, "mnemonic": "je", - "operands": "0x14000ccb3" + "operands": "0x14000ccb3", + "stack_offset": 0 } ], "successors": [ @@ -37511,43 +41590,50 @@ "address": "0x14000cd91", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14000cd97", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000cd9a", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000cd9d", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000cd9f", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000cda1", "size": 5, "mnemonic": "call", - "operands": "0x14000afd4" + "operands": "0x14000afd4", + "stack_offset": 0 }, { "address": "0x14000cda6", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -37563,13 +41649,15 @@ "address": "0x14000cc4a", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x22" + "operands": "eax, 0x22", + "stack_offset": 0 }, { "address": "0x14000cc4d", "size": 6, "mnemonic": "je", - "operands": "0x14000cd91" + "operands": "0x14000cd91", + "stack_offset": 0 } ], "successors": [ @@ -37587,43 +41675,50 @@ "address": "0x14000ccb3", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000ccb6", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp - 0x10]" + "operands": "rbx, qword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14000ccba", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax]" + "operands": "rcx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000ccbd", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x14000ccc1", "size": 5, "mnemonic": "mov", - "operands": "rdx, qword ptr [rcx + rbx + 0x30]" + "operands": "rdx, qword ptr [rcx + rbx + 0x30]", + "stack_offset": 0 }, { "address": "0x14000ccc6", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000ccc9", "size": 2, "mnemonic": "je", - "operands": "0x14000ccfb" + "operands": "0x14000ccfb", + "stack_offset": 0 } ], "successors": [ @@ -37641,13 +41736,15 @@ "address": "0x14000cc99", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x16" + "operands": "eax, 0x16", + "stack_offset": 0 }, { "address": "0x14000cc9c", "size": 6, "mnemonic": "je", - "operands": "0x14000cd91" + "operands": "0x14000cd91", + "stack_offset": 0 } ], "successors": [ @@ -37665,7 +41762,8 @@ "address": "0x14000cc53", "size": 5, "mnemonic": "jmp", - "operands": "0x14000cb94" + "operands": "0x14000cb94", + "stack_offset": 0 } ], "successors": [ @@ -37682,55 +41780,64 @@ "address": "0x14000ccfb", "size": 7, "mnemonic": "mov", - "operands": "eax, dword ptr [r13 + 0x3a8]" + "operands": "eax, dword ptr [r13 + 0x3a8]", + "stack_offset": 0 }, { "address": "0x14000cd02", "size": 6, "mnemonic": "test", - "operands": "dword ptr [rip + 0x24888], eax" + "operands": "dword ptr [rip + 0x24888], eax", + "stack_offset": 0 }, { "address": "0x14000cd08", "size": 2, "mnemonic": "jne", - "operands": "0x14000cd4e" + "operands": "0x14000cd4e", + "stack_offset": 0 }, { "address": "0x14000cd0a", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000cd0d", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax]" + "operands": "rcx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000cd10", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x14000cd14", "size": 5, "mnemonic": "mov", - "operands": "rdx, qword ptr [rcx + rbx + 0x30]" + "operands": "rdx, qword ptr [rcx + rbx + 0x30]", + "stack_offset": 0 }, { "address": "0x14000cd19", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000cd1c", "size": 2, "mnemonic": "je", - "operands": "0x14000cd4e" + "operands": "0x14000cd4e", + "stack_offset": 0 } ], "successors": [ @@ -37748,133 +41855,155 @@ "address": "0x14000cccb", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14000ccce", "size": 4, "mnemonic": "lock xadd", - "operands": "dword ptr [rdx], eax" + "operands": "dword ptr [rdx], eax", + "stack_offset": 0 }, { "address": "0x14000ccd2", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14000ccd5", "size": 2, "mnemonic": "jne", - "operands": "0x14000ccfb" + "operands": "0x14000ccfb", + "stack_offset": 0 }, { "address": "0x14000ccd7", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000ccda", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax]" + "operands": "rcx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000ccdd", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x14000cce1", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rbx + 0x30]" + "operands": "rcx, qword ptr [rcx + rbx + 0x30]", + "stack_offset": 0 }, { "address": "0x14000cce6", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14000cceb", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000ccee", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax]" + "operands": "rcx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000ccf1", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x14000ccf5", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rcx + rbx + 0x30], 0" + "operands": "qword ptr [rcx + rbx + 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000ccfb", "size": 7, "mnemonic": "mov", - "operands": "eax, dword ptr [r13 + 0x3a8]" + "operands": "eax, dword ptr [r13 + 0x3a8]", + "stack_offset": 0 }, { "address": "0x14000cd02", "size": 6, "mnemonic": "test", - "operands": "dword ptr [rip + 0x24888], eax" + "operands": "dword ptr [rip + 0x24888], eax", + "stack_offset": 0 }, { "address": "0x14000cd08", "size": 2, "mnemonic": "jne", - "operands": "0x14000cd4e" + "operands": "0x14000cd4e", + "stack_offset": 0 }, { "address": "0x14000cd0a", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000cd0d", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax]" + "operands": "rcx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000cd10", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x14000cd14", "size": 5, "mnemonic": "mov", - "operands": "rdx, qword ptr [rcx + rbx + 0x30]" + "operands": "rdx, qword ptr [rcx + rbx + 0x30]", + "stack_offset": 0 }, { "address": "0x14000cd19", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000cd1c", "size": 2, "mnemonic": "je", - "operands": "0x14000cd4e" + "operands": "0x14000cd4e", + "stack_offset": 0 } ], "successors": [ @@ -37892,13 +42021,15 @@ "address": "0x14000cca2", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x22" + "operands": "eax, 0x22", + "stack_offset": 0 }, { "address": "0x14000cca5", "size": 6, "mnemonic": "je", - "operands": "0x14000cd91" + "operands": "0x14000cd91", + "stack_offset": 0 } ], "successors": [ @@ -37916,79 +42047,92 @@ "address": "0x14000cd4e", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx + 0x10]" + "operands": "ecx, dword ptr [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x14000cd51", "size": 3, "mnemonic": "mov", - "operands": "rax, r15" + "operands": "rax, r15", + "stack_offset": 0 }, { "address": "0x14000cd54", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rsi], ecx" + "operands": "dword ptr [rsi], ecx", + "stack_offset": 0 }, { "address": "0x14000cd56", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi]" + "operands": "rcx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000cd59", "size": 3, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rcx]" + "operands": "rdx, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000cd5c", "size": 4, "mnemonic": "shl", - "operands": "rdx, 5" + "operands": "rdx, 5", + "stack_offset": 0 }, { "address": "0x14000cd60", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rdx + rbx + 0x30], rsi" + "operands": "qword ptr [rdx + rbx + 0x30], rsi", + "stack_offset": 0 }, { "address": "0x14000cd65", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi]" + "operands": "rcx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000cd68", "size": 3, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rcx]" + "operands": "rdx, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000cd6b", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x14000cd6e", "size": 4, "mnemonic": "shl", - "operands": "rdx, 5" + "operands": "rdx, 5", + "stack_offset": 0 }, { "address": "0x14000cd72", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdx + rbx], r15" + "operands": "qword ptr [rdx + rbx], r15", + "stack_offset": 0 }, { "address": "0x14000cd76", "size": 5, "mnemonic": "jmp", - "operands": "0x14000cb96" + "operands": "0x14000cb96", + "stack_offset": 0 } ], "successors": [ @@ -38005,157 +42149,183 @@ "address": "0x14000cd1e", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14000cd21", "size": 4, "mnemonic": "lock xadd", - "operands": "dword ptr [rdx], eax" + "operands": "dword ptr [rdx], eax", + "stack_offset": 0 }, { "address": "0x14000cd25", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14000cd28", "size": 2, "mnemonic": "jne", - "operands": "0x14000cd4e" + "operands": "0x14000cd4e", + "stack_offset": 0 }, { "address": "0x14000cd2a", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000cd2d", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax]" + "operands": "rcx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000cd30", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x14000cd34", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rbx + 0x30]" + "operands": "rcx, qword ptr [rcx + rbx + 0x30]", + "stack_offset": 0 }, { "address": "0x14000cd39", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14000cd3e", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000cd41", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax]" + "operands": "rcx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000cd44", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x14000cd48", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rcx + rbx + 0x30], 0" + "operands": "qword ptr [rcx + rbx + 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000cd4e", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx + 0x10]" + "operands": "ecx, dword ptr [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x14000cd51", "size": 3, "mnemonic": "mov", - "operands": "rax, r15" + "operands": "rax, r15", + "stack_offset": 0 }, { "address": "0x14000cd54", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rsi], ecx" + "operands": "dword ptr [rsi], ecx", + "stack_offset": 0 }, { "address": "0x14000cd56", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi]" + "operands": "rcx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000cd59", "size": 3, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rcx]" + "operands": "rdx, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000cd5c", "size": 4, "mnemonic": "shl", - "operands": "rdx, 5" + "operands": "rdx, 5", + "stack_offset": 0 }, { "address": "0x14000cd60", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rdx + rbx + 0x30], rsi" + "operands": "qword ptr [rdx + rbx + 0x30], rsi", + "stack_offset": 0 }, { "address": "0x14000cd65", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi]" + "operands": "rcx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000cd68", "size": 3, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rcx]" + "operands": "rdx, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000cd6b", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x14000cd6e", "size": 4, "mnemonic": "shl", - "operands": "rdx, 5" + "operands": "rdx, 5", + "stack_offset": 0 }, { "address": "0x14000cd72", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdx + rbx], r15" + "operands": "qword ptr [rdx + rbx], r15", + "stack_offset": 0 }, { "address": "0x14000cd76", "size": 5, "mnemonic": "jmp", - "operands": "0x14000cb96" + "operands": "0x14000cb96", + "stack_offset": 0 } ], "successors": [ @@ -38172,13 +42342,15 @@ "address": "0x14000ccab", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14000ccae", "size": 5, "mnemonic": "jmp", - "operands": "0x14000cb8f" + "operands": "0x14000cb8f", + "stack_offset": 0 } ], "successors": [ @@ -38195,61 +42367,71 @@ "address": "0x14000cb96", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x40]" + "operands": "r11, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000cb9b", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x40]" + "operands": "rbx, qword ptr [r11 + 0x40]", + "stack_offset": 0 }, { "address": "0x14000cb9f", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x48]" + "operands": "rsi, qword ptr [r11 + 0x48]", + "stack_offset": 0 }, { "address": "0x14000cba3", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000cba6", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000cba8", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000cbaa", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000cbac", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000cbad", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000cbae", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -38265,73 +42447,85 @@ "address": "0x14000cb8f", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14000cb94", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000cb96", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x40]" + "operands": "r11, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000cb9b", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x40]" + "operands": "rbx, qword ptr [r11 + 0x40]", + "stack_offset": 0 }, { "address": "0x14000cb9f", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x48]" + "operands": "rsi, qword ptr [r11 + 0x48]", + "stack_offset": 0 }, { "address": "0x14000cba3", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000cba6", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000cba8", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000cbaa", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000cbac", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000cbad", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000cbae", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -38353,115 +42547,134 @@ "address": "0x14000cdb1", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000cdb2", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000cdb5", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000cdb9", "size": 5, "mnemonic": "call", - "operands": "0x140012358" + "operands": "0x140012358", + "stack_offset": 0 }, { "address": "0x14000cdbe", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x10]" + "operands": "rax, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000cdc2", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x18], rax" + "operands": "qword ptr [rbp - 0x18], rax", + "stack_offset": 0 }, { "address": "0x14000cdc6", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp + 0x28]" + "operands": "r9, [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000cdca", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x18]" + "operands": "rax, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x14000cdce", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x14000cdd2", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x18]" + "operands": "r8, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14000cdd6", "size": 5, "mnemonic": "mov", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x14000cddb", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x20]" + "operands": "rdx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14000cddf", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x20]" + "operands": "rcx, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000cde3", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x28], eax" + "operands": "dword ptr [rbp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x14000cde6", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x20], eax" + "operands": "dword ptr [rbp - 0x20], eax", + "stack_offset": 0 }, { "address": "0x14000cde9", "size": 5, "mnemonic": "call", - "operands": "0x14000cac8" + "operands": "0x14000cac8", + "stack_offset": 0 }, { "address": "0x14000cdee", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000cdf2", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000cdf3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -38483,67 +42696,78 @@ "address": "0x14000e389", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000e38a", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000e38b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e38c", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000e38e", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000e390", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000e393", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000e397", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14000e399", "size": 3, "mnemonic": "mov", - "operands": "r14d, ecx" + "operands": "r14d, ecx", + "stack_offset": 0 }, { "address": "0x14000e39c", "size": 2, "mnemonic": "test", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000e39e", "size": 6, "mnemonic": "je", - "operands": "0x14000e4ee" + "operands": "0x14000e4ee", + "stack_offset": 0 } ], "successors": [ @@ -38561,55 +42785,64 @@ "address": "0x14000e4ee", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000e4f3", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000e4f5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000e4f9", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000e4fb", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000e4fd", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e4fe", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000e4ff", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000e500", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -38625,49 +42858,57 @@ "address": "0x14000e3a4", "size": 3, "mnemonic": "lea", - "operands": "eax, [rcx - 1]" + "operands": "eax, [rcx - 1]", + "stack_offset": 0 }, { "address": "0x14000e3a7", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14000e3aa", "size": 2, "mnemonic": "jbe", - "operands": "0x14000e3c2" + "operands": "0x14000e3c2", + "stack_offset": 0 }, { "address": "0x14000e3ac", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14000e3b1", "size": 5, "mnemonic": "mov", - "operands": "edi, 0x16" + "operands": "edi, 0x16", + "stack_offset": 0 }, { "address": "0x14000e3b6", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rax], edi" + "operands": "dword ptr [rax], edi", + "stack_offset": 0 }, { "address": "0x14000e3b8", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14000e3bd", "size": 5, "mnemonic": "jmp", - "operands": "0x14000e4ee" + "operands": "0x14000e4ee", + "stack_offset": 0 } ], "successors": [ @@ -38690,73 +42931,85 @@ "address": "0x14000ea35", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000ea36", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000ea39", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14000ea3d", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x20], 0xfffffffffffffffe" + "operands": "qword ptr [rbp - 0x20], 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x14000ea45", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rbx" + "operands": "qword ptr [rsp + 0x60], rbx", + "stack_offset": 0 }, { "address": "0x14000ea4a", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14000ea4c", "size": 3, "mnemonic": "test", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000ea4f", "size": 2, "mnemonic": "jne", - "operands": "0x14000ea9b" + "operands": "0x14000ea9b", + "stack_offset": 0 }, { "address": "0x14000ea51", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000ea53", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x11677]" + "operands": "qword ptr [rip + 0x11677]", + "stack_offset": 0 }, { "address": "0x14000ea59", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000ea5c", "size": 2, "mnemonic": "je", - "operands": "0x14000ea9b" + "operands": "0x14000ea9b", + "stack_offset": 0 } ], "successors": [ @@ -38780,241 +43033,281 @@ "address": "0x14000f36c", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000f36e", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000f36f", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000f370", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000f371", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000f373", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000f375", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000f377", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000f379", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x168]" + "operands": "rbp, [rsp - 0x168]", + "stack_offset": 0 }, { "address": "0x14000f381", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x268" + "operands": "rsp, 0x268", + "stack_offset": 0 }, { "address": "0x14000f388", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x21cb1]" + "operands": "rax, qword ptr [rip + 0x21cb1]", + "stack_offset": 0 }, { "address": "0x14000f38f", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000f392", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x150], rax" + "operands": "qword ptr [rbp + 0x150], rax", + "stack_offset": 0 }, { "address": "0x14000f399", "size": 7, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x1d0]" + "operands": "rdi, qword ptr [rbp + 0x1d0]", + "stack_offset": 0 }, { "address": "0x14000f3a0", "size": 3, "mnemonic": "xor", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14000f3a3", "size": 7, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x1d8]" + "operands": "rsi, qword ptr [rbp + 0x1d8]", + "stack_offset": 0 }, { "address": "0x14000f3aa", "size": 3, "mnemonic": "mov", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x14000f3ad", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x70], rax" + "operands": "qword ptr [rsp + 0x70], rax", + "stack_offset": 0 }, { "address": "0x14000f3b2", "size": 3, "mnemonic": "mov", - "operands": "r13, r9" + "operands": "r13, r9", + "stack_offset": 0 }, { "address": "0x14000f3b5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x78], rdx" + "operands": "qword ptr [rsp + 0x78], rdx", + "stack_offset": 0 }, { "address": "0x14000f3ba", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x14000f3bd", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rdi" + "operands": "qword ptr [rsp + 0x60], rdi", + "stack_offset": 0 }, { "address": "0x14000f3c2", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000f3c5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], rsi" + "operands": "qword ptr [rsp + 0x68], rsi", + "stack_offset": 0 }, { "address": "0x14000f3ca", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000f3cd", "size": 2, "mnemonic": "jne", - "operands": "0x14000f3f4" + "operands": "0x14000f3f4", + "stack_offset": 0 }, { "address": "0x14000f3cf", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000f3d1", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x150]" + "operands": "rcx, qword ptr [rbp + 0x150]", + "stack_offset": 0 }, { "address": "0x14000f3d8", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14000f3db", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14000f3e0", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x268" + "operands": "rsp, 0x268", + "stack_offset": 0 }, { "address": "0x14000f3e7", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000f3e9", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000f3eb", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000f3ed", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000f3ef", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000f3f0", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000f3f1", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000f3f2", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000f3f3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -39036,115 +43329,134 @@ "address": "0x14000f801", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000f802", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000f803", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000f804", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x14000f808", "size": 4, "mnemonic": "lea", - "operands": "rdi, [rax + 0x20]" + "operands": "rdi, [rax + 0x20]", + "stack_offset": 0 }, { "address": "0x14000f80c", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x14000f80e", "size": 4, "mnemonic": "add", - "operands": "rdi, -8" + "operands": "rdi, -8", + "stack_offset": 0 }, { "address": "0x14000f812", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x14000f815", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x14000f818", "size": 4, "mnemonic": "lea", - "operands": "rdi, [rdi + 8]" + "operands": "rdi, [rdi + 8]", + "stack_offset": 0 }, { "address": "0x14000f81c", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000f81f", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rdi]" + "operands": "r8, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000f822", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14000f825", "size": 5, "mnemonic": "call", - "operands": "0x140017480" + "operands": "0x140017480", + "stack_offset": 0 }, { "address": "0x14000f82a", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000f82c", "size": 2, "mnemonic": "jne", - "operands": "0x14000f842" + "operands": "0x14000f842", + "stack_offset": 0 }, { "address": "0x14000f82e", "size": 2, "mnemonic": "inc", - "operands": "ebx" + "operands": "ebx", + "stack_offset": 0 }, { "address": "0x14000f830", "size": 7, "mnemonic": "cmp", - "operands": "ebx, dword ptr [rsp + 0x80]" + "operands": "ebx, dword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x14000f837", "size": 2, "mnemonic": "jl", - "operands": "0x14000f818" + "operands": "0x14000f818", + "stack_offset": 0 } ], "successors": [ @@ -39162,61 +43474,71 @@ "address": "0x14000f818", "size": 4, "mnemonic": "lea", - "operands": "rdi, [rdi + 8]" + "operands": "rdi, [rdi + 8]", + "stack_offset": 0 }, { "address": "0x14000f81c", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000f81f", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rdi]" + "operands": "r8, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000f822", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14000f825", "size": 5, "mnemonic": "call", - "operands": "0x140017480" + "operands": "0x140017480", + "stack_offset": 0 }, { "address": "0x14000f82a", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000f82c", "size": 2, "mnemonic": "jne", - "operands": "0x14000f842" + "operands": "0x14000f842", + "stack_offset": 0 }, { "address": "0x14000f82e", "size": 2, "mnemonic": "inc", - "operands": "ebx" + "operands": "ebx", + "stack_offset": 0 }, { "address": "0x14000f830", "size": 7, "mnemonic": "cmp", - "operands": "ebx, dword ptr [rsp + 0x80]" + "operands": "ebx, dword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x14000f837", "size": 2, "mnemonic": "jl", - "operands": "0x14000f818" + "operands": "0x14000f818", + "stack_offset": 0 } ], "successors": [ @@ -39234,37 +43556,43 @@ "address": "0x14000f839", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x14000f83d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000f83e", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000f83f", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000f840", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000f841", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -39286,73 +43614,85 @@ "address": "0x14000f861", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000f862", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000f865", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000f869", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000f86e", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x38], 0" + "operands": "qword ptr [rbp - 0x38], 0", + "stack_offset": 0 }, { "address": "0x14000f873", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 5" + "operands": "ecx, 5", + "stack_offset": 0 }, { "address": "0x14000f876", "size": 2, "mnemonic": "jbe", - "operands": "0x14000f88c" + "operands": "0x14000f88c", + "stack_offset": 0 }, { "address": "0x14000f878", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14000f87d", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x14000f883", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14000f888", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000f88a", "size": 2, "mnemonic": "jmp", - "operands": "0x14000f8f3" + "operands": "0x14000f8f3", + "stack_offset": 0 } ], "successors": [ @@ -39369,19 +43709,22 @@ "address": "0x14000f8f3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000f8f7", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000f8f8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -39403,97 +43746,113 @@ "address": "0x14000faed", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000faee", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000faef", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000faf0", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000faf2", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000faf4", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000faf6", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000faf8", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x210" + "operands": "rsp, 0x210", + "stack_offset": 0 }, { "address": "0x14000faff", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2153a]" + "operands": "rax, qword ptr [rip + 0x2153a]", + "stack_offset": 0 }, { "address": "0x14000fb06", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000fb09", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x200], rax" + "operands": "qword ptr [rsp + 0x200], rax", + "stack_offset": 0 }, { "address": "0x14000fb11", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x14000fb14", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x14000fb17", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000fb1a", "size": 2, "mnemonic": "test", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000fb1c", "size": 2, "mnemonic": "je", - "operands": "0x14000fb3e" + "operands": "0x14000fb3e", + "stack_offset": 0 } ], "successors": [ @@ -39511,25 +43870,29 @@ "address": "0x14000fb3e", "size": 5, "mnemonic": "mov", - "operands": "ebp, 1" + "operands": "ebp, 1", + "stack_offset": 0 }, { "address": "0x14000fb43", "size": 3, "mnemonic": "mov", - "operands": "esi, r13d" + "operands": "esi, r13d", + "stack_offset": 0 }, { "address": "0x14000fb46", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14000fb49", "size": 6, "mnemonic": "je", - "operands": "0x14000fc8b" + "operands": "0x14000fc8b", + "stack_offset": 0 } ], "successors": [ @@ -39547,13 +43910,15 @@ "address": "0x14000fb1e", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14000fb21", "size": 2, "mnemonic": "je", - "operands": "0x14000fb2d" + "operands": "0x14000fb2d", + "stack_offset": 0 } ], "successors": [ @@ -39571,85 +43936,99 @@ "address": "0x14000fc8b", "size": 5, "mnemonic": "call", - "operands": "0x14000f8fc" + "operands": "0x14000f8fc", + "stack_offset": 0 }, { "address": "0x14000fc90", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x200]" + "operands": "rcx, qword ptr [rsp + 0x200]", + "stack_offset": 0 }, { "address": "0x14000fc98", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14000fc9b", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14000fca0", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x268]" + "operands": "rbx, qword ptr [rsp + 0x268]", + "stack_offset": 0 }, { "address": "0x14000fca8", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x210" + "operands": "rsp, 0x210", + "stack_offset": 0 }, { "address": "0x14000fcaf", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000fcb1", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000fcb3", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000fcb5", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000fcb7", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000fcb8", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000fcb9", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000fcba", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -39665,73 +44044,85 @@ "address": "0x14000fb4f", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [r8], 0x4c" + "operands": "word ptr [r8], 0x4c", + "stack_offset": 0 }, { "address": "0x14000fb54", "size": 6, "mnemonic": "jne", - "operands": "0x14000fcbf" + "operands": "0x14000fcbf", + "stack_offset": 0 }, { "address": "0x14000fb5a", "size": 6, "mnemonic": "cmp", - "operands": "word ptr [r8 + 2], 0x43" + "operands": "word ptr [r8 + 2], 0x43", + "stack_offset": 0 }, { "address": "0x14000fb60", "size": 6, "mnemonic": "jne", - "operands": "0x14000fcbf" + "operands": "0x14000fcbf", + "stack_offset": 0 }, { "address": "0x14000fb66", "size": 6, "mnemonic": "cmp", - "operands": "word ptr [r8 + 4], 0x5f" + "operands": "word ptr [r8 + 4], 0x5f", + "stack_offset": 0 }, { "address": "0x14000fb6c", "size": 6, "mnemonic": "jne", - "operands": "0x14000fcbf" + "operands": "0x14000fcbf", + "stack_offset": 0 }, { "address": "0x14000fb72", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x15f47]" + "operands": "rdx, [rip + 0x15f47]", + "stack_offset": 0 }, { "address": "0x14000fb79", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14000fb7c", "size": 5, "mnemonic": "call", - "operands": "0x14001a560" + "operands": "0x14001a560", + "stack_offset": 0 }, { "address": "0x14000fb81", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x14000fb84", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000fb87", "size": 6, "mnemonic": "je", - "operands": "0x14000fcbb" + "operands": "0x14000fcbb", + "stack_offset": 0 } ], "successors": [ @@ -39749,25 +44140,29 @@ "address": "0x14000fb2d", "size": 3, "mnemonic": "movsxd", - "operands": "rax, edx" + "operands": "rax, edx", + "stack_offset": 0 }, { "address": "0x14000fb30", "size": 4, "mnemonic": "shl", - "operands": "rax, 5" + "operands": "rax, 5", + "stack_offset": 0 }, { "address": "0x14000fb34", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + rcx + 0x28]" + "operands": "rax, qword ptr [rax + rcx + 0x28]", + "stack_offset": 0 }, { "address": "0x14000fb39", "size": 5, "mnemonic": "jmp", - "operands": "0x14000fc90" + "operands": "0x14000fc90", + "stack_offset": 0 } ], "successors": [ @@ -39784,13 +44179,15 @@ "address": "0x14000fb23", "size": 5, "mnemonic": "call", - "operands": "0x14000fd80" + "operands": "0x14000fd80", + "stack_offset": 0 }, { "address": "0x14000fb28", "size": 5, "mnemonic": "jmp", - "operands": "0x14000fc90" + "operands": "0x14000fc90", + "stack_offset": 0 } ], "successors": [ @@ -39807,13 +44204,15 @@ "address": "0x14000fcbb", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000fcbd", "size": 2, "mnemonic": "jmp", - "operands": "0x14000fc90" + "operands": "0x14000fc90", + "stack_offset": 0 } ], "successors": [ @@ -39830,25 +44229,29 @@ "address": "0x14000fb8d", "size": 3, "mnemonic": "mov", - "operands": "rbp, rax" + "operands": "rbp, rax", + "stack_offset": 0 }, { "address": "0x14000fb90", "size": 3, "mnemonic": "sub", - "operands": "rbp, rbx" + "operands": "rbp, rbx", + "stack_offset": 0 }, { "address": "0x14000fb93", "size": 3, "mnemonic": "sar", - "operands": "rbp, 1" + "operands": "rbp, 1", + "stack_offset": 0 }, { "address": "0x14000fb96", "size": 6, "mnemonic": "je", - "operands": "0x14000fcbb" + "operands": "0x14000fcbb", + "stack_offset": 0 } ], "successors": [ @@ -39866,79 +44269,92 @@ "address": "0x14000fc90", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x200]" + "operands": "rcx, qword ptr [rsp + 0x200]", + "stack_offset": 0 }, { "address": "0x14000fc98", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14000fc9b", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14000fca0", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x268]" + "operands": "rbx, qword ptr [rsp + 0x268]", + "stack_offset": 0 }, { "address": "0x14000fca8", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x210" + "operands": "rsp, 0x210", + "stack_offset": 0 }, { "address": "0x14000fcaf", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000fcb1", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000fcb3", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000fcb5", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000fcb7", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000fcb8", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000fcb9", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000fcba", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -39954,13 +44370,15 @@ "address": "0x14000fb9c", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rax], 0x3b" + "operands": "word ptr [rax], 0x3b", + "stack_offset": 0 }, { "address": "0x14000fba0", "size": 6, "mnemonic": "je", - "operands": "0x14000fcbb" + "operands": "0x14000fcbb", + "stack_offset": 0 } ], "successors": [ @@ -39978,91 +44396,106 @@ "address": "0x14000fba6", "size": 6, "mnemonic": "mov", - "operands": "r12d, 1" + "operands": "r12d, 1", + "stack_offset": 0 }, { "address": "0x14000fbac", "size": 7, "mnemonic": "lea", - "operands": "r15, [rip + 0x15e15]" + "operands": "r15, [rip + 0x15e15]", + "stack_offset": 0 }, { "address": "0x14000fbb3", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [r15]" + "operands": "rcx, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x14000fbb6", "size": 3, "mnemonic": "mov", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x14000fbb9", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x14000fbbc", "size": 5, "mnemonic": "call", - "operands": "0x140011460" + "operands": "0x140011460", + "stack_offset": 0 }, { "address": "0x14000fbc1", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000fbc3", "size": 2, "mnemonic": "jne", - "operands": "0x14000fbdb" + "operands": "0x14000fbdb", + "stack_offset": 0 }, { "address": "0x14000fbc5", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [r15]" + "operands": "rcx, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x14000fbc8", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14000fbcc", "size": 3, "mnemonic": "inc", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x14000fbcf", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [rcx + rax*2], r13w" + "operands": "word ptr [rcx + rax*2], r13w", + "stack_offset": 0 }, { "address": "0x14000fbd4", "size": 2, "mnemonic": "jne", - "operands": "0x14000fbcc" + "operands": "0x14000fbcc", + "stack_offset": 0 }, { "address": "0x14000fbd6", "size": 3, "mnemonic": "cmp", - "operands": "rbp, rax" + "operands": "rbp, rax", + "stack_offset": 0 }, { "address": "0x14000fbd9", "size": 2, "mnemonic": "je", - "operands": "0x14000fbee" + "operands": "0x14000fbee", + "stack_offset": 0 } ], "successors": [ @@ -40080,67 +44513,78 @@ "address": "0x14000fbee", "size": 4, "mnemonic": "add", - "operands": "r14, 2" + "operands": "r14, 2", + "stack_offset": 0 }, { "address": "0x14000fbf2", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x15ecf]" + "operands": "rdx, [rip + 0x15ecf]", + "stack_offset": 0 }, { "address": "0x14000fbf9", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x14000fbfc", "size": 5, "mnemonic": "call", - "operands": "0x14001a500" + "operands": "0x14001a500", + "stack_offset": 0 }, { "address": "0x14000fc01", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14000fc04", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000fc07", "size": 2, "mnemonic": "jne", - "operands": "0x14000fc14" + "operands": "0x14000fc14", + "stack_offset": 0 }, { "address": "0x14000fc09", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [r14], 0x3b" + "operands": "word ptr [r14], 0x3b", + "stack_offset": 0 }, { "address": "0x14000fc0e", "size": 6, "mnemonic": "jne", - "operands": "0x14000fcbb" + "operands": "0x14000fcbb", + "stack_offset": 0 }, { "address": "0x14000fc14", "size": 4, "mnemonic": "cmp", - "operands": "r12d, 5" + "operands": "r12d, 5", + "stack_offset": 0 }, { "address": "0x14000fc18", "size": 2, "mnemonic": "jg", - "operands": "0x14000fc64" + "operands": "0x14000fc64", + "stack_offset": 0 } ], "successors": [ @@ -40158,97 +44602,113 @@ "address": "0x14000fbdb", "size": 3, "mnemonic": "inc", - "operands": "r12d" + "operands": "r12d", + "stack_offset": 0 }, { "address": "0x14000fbde", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x15e43]" + "operands": "rax, [rip + 0x15e43]", + "stack_offset": 0 }, { "address": "0x14000fbe5", "size": 4, "mnemonic": "add", - "operands": "r15, 0x18" + "operands": "r15, 0x18", + "stack_offset": 0 }, { "address": "0x14000fbe9", "size": 3, "mnemonic": "cmp", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x14000fbec", "size": 2, "mnemonic": "jle", - "operands": "0x14000fbb3" + "operands": "0x14000fbb3", + "stack_offset": 0 }, { "address": "0x14000fbee", "size": 4, "mnemonic": "add", - "operands": "r14, 2" + "operands": "r14, 2", + "stack_offset": 0 }, { "address": "0x14000fbf2", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x15ecf]" + "operands": "rdx, [rip + 0x15ecf]", + "stack_offset": 0 }, { "address": "0x14000fbf9", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x14000fbfc", "size": 5, "mnemonic": "call", - "operands": "0x14001a500" + "operands": "0x14001a500", + "stack_offset": 0 }, { "address": "0x14000fc01", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14000fc04", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000fc07", "size": 2, "mnemonic": "jne", - "operands": "0x14000fc14" + "operands": "0x14000fc14", + "stack_offset": 0 }, { "address": "0x14000fc09", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [r14], 0x3b" + "operands": "word ptr [r14], 0x3b", + "stack_offset": 0 }, { "address": "0x14000fc0e", "size": 6, "mnemonic": "jne", - "operands": "0x14000fcbb" + "operands": "0x14000fcbb", + "stack_offset": 0 }, { "address": "0x14000fc14", "size": 4, "mnemonic": "cmp", - "operands": "r12d, 5" + "operands": "r12d, 5", + "stack_offset": 0 }, { "address": "0x14000fc18", "size": 2, "mnemonic": "jg", - "operands": "0x14000fc64" + "operands": "0x14000fc64", + "stack_offset": 0 } ], "successors": [ @@ -40266,25 +44726,29 @@ "address": "0x14000fc64", "size": 4, "mnemonic": "lea", - "operands": "rbx, [r14 + rbx*2]" + "operands": "rbx, [r14 + rbx*2]", + "stack_offset": 0 }, { "address": "0x14000fc68", "size": 3, "mnemonic": "movzx", - "operands": "eax, word ptr [rbx]" + "operands": "eax, word ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000fc6b", "size": 3, "mnemonic": "test", - "operands": "ax, ax" + "operands": "ax, ax", + "stack_offset": 0 }, { "address": "0x14000fc6e", "size": 2, "mnemonic": "je", - "operands": "0x14000fc80" + "operands": "0x14000fc80", + "stack_offset": 0 } ], "successors": [ @@ -40302,103 +44766,120 @@ "address": "0x14000fc1a", "size": 3, "mnemonic": "mov", - "operands": "r9, rbx" + "operands": "r9, rbx", + "stack_offset": 0 }, { "address": "0x14000fc1d", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x40]" + "operands": "rcx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000fc22", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14000fc25", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x83" + "operands": "edx, 0x83", + "stack_offset": 0 }, { "address": "0x14000fc2a", "size": 5, "mnemonic": "call", - "operands": "0x140017510" + "operands": "0x140017510", + "stack_offset": 0 }, { "address": "0x14000fc2f", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000fc31", "size": 6, "mnemonic": "jne", - "operands": "0x14000fd68" + "operands": "0x14000fd68", + "stack_offset": 0 }, { "address": "0x14000fc37", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbx + rbx]" + "operands": "rax, [rbx + rbx]", + "stack_offset": 0 }, { "address": "0x14000fc3b", "size": 6, "mnemonic": "cmp", - "operands": "rax, 0x106" + "operands": "rax, 0x106", + "stack_offset": 0 }, { "address": "0x14000fc41", "size": 6, "mnemonic": "jae", - "operands": "0x14000fd62" + "operands": "0x14000fd62", + "stack_offset": 0 }, { "address": "0x14000fc47", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x40]" + "operands": "r8, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000fc4c", "size": 6, "mnemonic": "mov", - "operands": "word ptr [rsp + rax + 0x40], r13w" + "operands": "word ptr [rsp + rax + 0x40], r13w", + "stack_offset": 0 }, { "address": "0x14000fc52", "size": 3, "mnemonic": "mov", - "operands": "edx, r12d" + "operands": "edx, r12d", + "stack_offset": 0 }, { "address": "0x14000fc55", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14000fc58", "size": 5, "mnemonic": "call", - "operands": "0x14000fd80" + "operands": "0x14000fd80", + "stack_offset": 0 }, { "address": "0x14000fc5d", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000fc60", "size": 2, "mnemonic": "je", - "operands": "0x14000fc64" + "operands": "0x14000fc64", + "stack_offset": 0 } ], "successors": [ @@ -40416,13 +44897,15 @@ "address": "0x14000fc80", "size": 2, "mnemonic": "test", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x14000fc82", "size": 6, "mnemonic": "je", - "operands": "0x14000fd5a" + "operands": "0x14000fd5a", + "stack_offset": 0 } ], "successors": [ @@ -40440,37 +44923,43 @@ "address": "0x14000fc70", "size": 4, "mnemonic": "add", - "operands": "rbx, 2" + "operands": "rbx, 2", + "stack_offset": 0 }, { "address": "0x14000fc74", "size": 3, "mnemonic": "movzx", - "operands": "eax, word ptr [rbx]" + "operands": "eax, word ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000fc77", "size": 3, "mnemonic": "test", - "operands": "ax, ax" + "operands": "ax, ax", + "stack_offset": 0 }, { "address": "0x14000fc7a", "size": 6, "mnemonic": "jne", - "operands": "0x14000fb72" + "operands": "0x14000fb72", + "stack_offset": 0 }, { "address": "0x14000fc80", "size": 2, "mnemonic": "test", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x14000fc82", "size": 6, "mnemonic": "je", - "operands": "0x14000fd5a" + "operands": "0x14000fd5a", + "stack_offset": 0 } ], "successors": [ @@ -40488,31 +44977,36 @@ "address": "0x14000fc62", "size": 2, "mnemonic": "inc", - "operands": "esi" + "operands": "esi", + "stack_offset": 0 }, { "address": "0x14000fc64", "size": 4, "mnemonic": "lea", - "operands": "rbx, [r14 + rbx*2]" + "operands": "rbx, [r14 + rbx*2]", + "stack_offset": 0 }, { "address": "0x14000fc68", "size": 3, "mnemonic": "movzx", - "operands": "eax, word ptr [rbx]" + "operands": "eax, word ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000fc6b", "size": 3, "mnemonic": "test", - "operands": "ax, ax" + "operands": "ax, ax", + "stack_offset": 0 }, { "address": "0x14000fc6e", "size": 2, "mnemonic": "je", - "operands": "0x14000fc80" + "operands": "0x14000fc80", + "stack_offset": 0 } ], "successors": [ @@ -40530,13 +45024,15 @@ "address": "0x14000fd5a", "size": 3, "mnemonic": "mov", - "operands": "rax, r13" + "operands": "rax, r13", + "stack_offset": 0 }, { "address": "0x14000fd5d", "size": 5, "mnemonic": "jmp", - "operands": "0x14000fc90" + "operands": "0x14000fc90", + "stack_offset": 0 } ], "successors": [ @@ -40553,91 +45049,106 @@ "address": "0x14000fc88", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14000fc8b", "size": 5, "mnemonic": "call", - "operands": "0x14000f8fc" + "operands": "0x14000f8fc", + "stack_offset": 0 }, { "address": "0x14000fc90", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x200]" + "operands": "rcx, qword ptr [rsp + 0x200]", + "stack_offset": 0 }, { "address": "0x14000fc98", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14000fc9b", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14000fca0", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x268]" + "operands": "rbx, qword ptr [rsp + 0x268]", + "stack_offset": 0 }, { "address": "0x14000fca8", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x210" + "operands": "rsp, 0x210", + "stack_offset": 0 }, { "address": "0x14000fcaf", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000fcb1", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000fcb3", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000fcb5", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000fcb7", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000fcb8", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000fcb9", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000fcba", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -40659,175 +45170,204 @@ "address": "0x14000fd85", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000fd86", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000fd87", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000fd88", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000fd8a", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000fd8c", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000fd8e", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000fd90", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x230]" + "operands": "rbp, [rsp - 0x230]", + "stack_offset": 0 }, { "address": "0x14000fd98", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x330" + "operands": "rsp, 0x330", + "stack_offset": 0 }, { "address": "0x14000fd9f", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2129a]" + "operands": "rax, qword ptr [rip + 0x2129a]", + "stack_offset": 0 }, { "address": "0x14000fda6", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000fda9", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x220], rax" + "operands": "qword ptr [rbp + 0x220], rax", + "stack_offset": 0 }, { "address": "0x14000fdb0", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x14000fdb3", "size": 3, "mnemonic": "movsxd", - "operands": "r12, edx" + "operands": "r12, edx", + "stack_offset": 0 }, { "address": "0x14000fdb6", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], r13d" + "operands": "dword ptr [rsp + 0x40], r13d", + "stack_offset": 0 }, { "address": "0x14000fdbb", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x14000fdbe", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000fdc1", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14000fdc6", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp + 0x70]" + "operands": "r9, [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000fdca", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x83" + "operands": "r8d, 0x83", + "stack_offset": 0 }, { "address": "0x14000fdd0", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x60]" + "operands": "rdx, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000fdd5", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14000fdd8", "size": 7, "mnemonic": "lea", - "operands": "r14, [rax + 0x2c8]" + "operands": "r14, [rax + 0x2c8]", + "stack_offset": 0 }, { "address": "0x14000fddf", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x40]" + "operands": "rax, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000fde4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14000fde9", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0x55" + "operands": "qword ptr [rsp + 0x20], 0x55", + "stack_offset": 0 }, { "address": "0x14000fdf2", "size": 5, "mnemonic": "call", - "operands": "0x14000f36c" + "operands": "0x14000f36c", + "stack_offset": 0 }, { "address": "0x14000fdf7", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000fdfa", "size": 6, "mnemonic": "je", - "operands": "0x140010021" + "operands": "0x140010021", + "stack_offset": 0 } ], "successors": [ @@ -40845,85 +45385,99 @@ "address": "0x140010021", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140010023", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x220]" + "operands": "rcx, qword ptr [rbp + 0x220]", + "stack_offset": 0 }, { "address": "0x14001002a", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14001002d", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140010032", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x388]" + "operands": "rbx, qword ptr [rsp + 0x388]", + "stack_offset": 0 }, { "address": "0x14001003a", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x330" + "operands": "rsp, 0x330", + "stack_offset": 0 }, { "address": "0x140010041", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140010043", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140010045", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140010047", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140010049", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001004a", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001004b", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001004c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -40939,97 +45493,113 @@ "address": "0x14000fe00", "size": 3, "mnemonic": "mov", - "operands": "r15, r12" + "operands": "r15, r12", + "stack_offset": 0 }, { "address": "0x14000fe03", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x60]" + "operands": "rcx, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000fe08", "size": 4, "mnemonic": "shl", - "operands": "r15, 5" + "operands": "r15, 5", + "stack_offset": 0 }, { "address": "0x14000fe0c", "size": 3, "mnemonic": "mov", - "operands": "rbx, r12" + "operands": "rbx, r12", + "stack_offset": 0 }, { "address": "0x14000fe0f", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [r15 + rdi + 0x28]" + "operands": "rax, qword ptr [r15 + rdi + 0x28]", + "stack_offset": 0 }, { "address": "0x14000fe14", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x14000fe17", "size": 3, "mnemonic": "sub", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14000fe1a", "size": 3, "mnemonic": "movzx", - "operands": "edx, word ptr [rcx]" + "operands": "edx, word ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000fe1d", "size": 5, "mnemonic": "movzx", - "operands": "r8d, word ptr [rcx + r9]" + "operands": "r8d, word ptr [rcx + r9]", + "stack_offset": 0 }, { "address": "0x14000fe22", "size": 3, "mnemonic": "sub", - "operands": "edx, r8d" + "operands": "edx, r8d", + "stack_offset": 0 }, { "address": "0x14000fe25", "size": 2, "mnemonic": "jne", - "operands": "0x14000fe30" + "operands": "0x14000fe30", + "stack_offset": 0 }, { "address": "0x14000fe27", "size": 4, "mnemonic": "add", - "operands": "rcx, 2" + "operands": "rcx, 2", + "stack_offset": 0 }, { "address": "0x14000fe2b", "size": 3, "mnemonic": "test", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000fe2e", "size": 2, "mnemonic": "jne", - "operands": "0x14000fe1a" + "operands": "0x14000fe1a", + "stack_offset": 0 }, { "address": "0x14000fe30", "size": 2, "mnemonic": "test", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000fe32", "size": 6, "mnemonic": "je", - "operands": "0x140010023" + "operands": "0x140010023", + "stack_offset": 0 } ], "successors": [ @@ -41047,79 +45617,92 @@ "address": "0x140010023", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x220]" + "operands": "rcx, qword ptr [rbp + 0x220]", + "stack_offset": 0 }, { "address": "0x14001002a", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14001002d", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140010032", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x388]" + "operands": "rbx, qword ptr [rsp + 0x388]", + "stack_offset": 0 }, { "address": "0x14001003a", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x330" + "operands": "rsp, 0x330", + "stack_offset": 0 }, { "address": "0x140010041", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140010043", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140010045", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140010047", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140010049", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001004a", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001004b", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001004c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -41135,61 +45718,71 @@ "address": "0x14000fe38", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x60]" + "operands": "rax, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000fe3d", "size": 4, "mnemonic": "or", - "operands": "rsi, 0xffffffffffffffff" + "operands": "rsi, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14000fe41", "size": 3, "mnemonic": "inc", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000fe44", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [rax + rsi*2], r13w" + "operands": "word ptr [rax + rsi*2], r13w", + "stack_offset": 0 }, { "address": "0x14000fe49", "size": 2, "mnemonic": "jne", - "operands": "0x14000fe41" + "operands": "0x14000fe41", + "stack_offset": 0 }, { "address": "0x14000fe4b", "size": 8, "mnemonic": "lea", - "operands": "rcx, [rsi*2 + 6]" + "operands": "rcx, [rsi*2 + 6]", + "stack_offset": 0 }, { "address": "0x14000fe53", "size": 5, "mnemonic": "call", - "operands": "0x140015200" + "operands": "0x140015200", + "stack_offset": 0 }, { "address": "0x14000fe58", "size": 3, "mnemonic": "mov", - "operands": "r13, rax" + "operands": "r13, rax", + "stack_offset": 0 }, { "address": "0x14000fe5b", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000fe5e", "size": 6, "mnemonic": "je", - "operands": "0x140010021" + "operands": "0x140010021", + "stack_offset": 0 } ], "successors": [ @@ -41207,127 +45800,148 @@ "address": "0x14000fe64", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [r15 + rdi + 0x28]" + "operands": "rcx, qword ptr [r15 + rdi + 0x28]", + "stack_offset": 0 }, { "address": "0x14000fe69", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x60]" + "operands": "r8, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000fe6e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], rcx" + "operands": "qword ptr [rsp + 0x48], rcx", + "stack_offset": 0 }, { "address": "0x14000fe73", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rsi + 1]" + "operands": "rdx, [rsi + 1]", + "stack_offset": 0 }, { "address": "0x14000fe77", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + r12*8 + 0x128]" + "operands": "rcx, qword ptr [rdi + r12*8 + 0x128]", + "stack_offset": 0 }, { "address": "0x14000fe7f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x50], rcx" + "operands": "qword ptr [rsp + 0x50], rcx", + "stack_offset": 0 }, { "address": "0x14000fe84", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdi + 0xc]" + "operands": "ecx, dword ptr [rdi + 0xc]", + "stack_offset": 0 }, { "address": "0x14000fe87", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x44], ecx" + "operands": "dword ptr [rsp + 0x44], ecx", + "stack_offset": 0 }, { "address": "0x14000fe8b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + 4]" + "operands": "rcx, [rax + 4]", + "stack_offset": 0 }, { "address": "0x14000fe8f", "size": 5, "mnemonic": "call", - "operands": "0x1400165b0" + "operands": "0x1400165b0", + "stack_offset": 0 }, { "address": "0x14000fe94", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x14000fe96", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000fe98", "size": 6, "mnemonic": "jne", - "operands": "0x1400100d1" + "operands": "0x1400100d1", + "stack_offset": 0 }, { "address": "0x14000fe9e", "size": 6, "mnemonic": "cmp", - "operands": "word ptr [rsp + 0x60], 0x43" + "operands": "word ptr [rsp + 0x60], 0x43", + "stack_offset": 0 }, { "address": "0x14000fea4", "size": 4, "mnemonic": "lea", - "operands": "rax, [r13 + 4]" + "operands": "rax, [r13 + 4]", + "stack_offset": 0 }, { "address": "0x14000fea8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [r15 + rdi + 0x28], rax" + "operands": "qword ptr [r15 + rdi + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14000fead", "size": 2, "mnemonic": "jne", - "operands": "0x14000feba" + "operands": "0x14000feba", + "stack_offset": 0 }, { "address": "0x14000feaf", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [rsp + 0x62], si" + "operands": "word ptr [rsp + 0x62], si", + "stack_offset": 0 }, { "address": "0x14000feb4", "size": 2, "mnemonic": "jne", - "operands": "0x14000feba" + "operands": "0x14000feba", + "stack_offset": 0 }, { "address": "0x14000feb6", "size": 2, "mnemonic": "mov", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x14000feb8", "size": 2, "mnemonic": "jmp", - "operands": "0x14000fec3" + "operands": "0x14000fec3", + "stack_offset": 0 } ], "successors": [ @@ -41344,67 +45958,78 @@ "address": "0x14000fec3", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rdi + r12*8 + 0x128], rax" + "operands": "qword ptr [rdi + r12*8 + 0x128], rax", + "stack_offset": 0 }, { "address": "0x14000fecb", "size": 4, "mnemonic": "cmp", - "operands": "r12d, 2" + "operands": "r12d, 2", + "stack_offset": 0 }, { "address": "0x14000fecf", "size": 6, "mnemonic": "jne", - "operands": "0x14000ffb0" + "operands": "0x14000ffb0", + "stack_offset": 0 }, { "address": "0x14000fed5", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0x40]" + "operands": "eax, dword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000fed9", "size": 3, "mnemonic": "mov", - "operands": "r8d, esi" + "operands": "r8d, esi", + "stack_offset": 0 }, { "address": "0x14000fedc", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rdi + 0xc], eax" + "operands": "dword ptr [rdi + 0xc], eax", + "stack_offset": 0 }, { "address": "0x14000fedf", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000fee2", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r14 + 0x20]" + "operands": "rcx, qword ptr [r14 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000fee6", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r14 + rdx*8]" + "operands": "eax, dword ptr [r14 + rdx*8]", + "stack_offset": 0 }, { "address": "0x14000feea", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0xc], eax" + "operands": "dword ptr [rdi + 0xc], eax", + "stack_offset": 0 }, { "address": "0x14000feed", "size": 2, "mnemonic": "je", - "operands": "0x14000ff08" + "operands": "0x14000ff08", + "stack_offset": 0 } ], "successors": [ @@ -41422,13 +46047,15 @@ "address": "0x14000ff08", "size": 3, "mnemonic": "test", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000ff0b", "size": 2, "mnemonic": "je", - "operands": "0x14000ff1b" + "operands": "0x14000ff1b", + "stack_offset": 0 } ], "successors": [ @@ -41446,43 +46073,50 @@ "address": "0x14000feef", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r14 + rdx*8]" + "operands": "rax, qword ptr [r14 + rdx*8]", + "stack_offset": 0 }, { "address": "0x14000fef3", "size": 3, "mnemonic": "inc", - "operands": "r8d" + "operands": "r8d", + "stack_offset": 0 }, { "address": "0x14000fef6", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r14 + rdx*8], rcx" + "operands": "qword ptr [r14 + rdx*8], rcx", + "stack_offset": 0 }, { "address": "0x14000fefa", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x14000fefd", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000ff00", "size": 4, "mnemonic": "cmp", - "operands": "rdx, 5" + "operands": "rdx, 5", + "stack_offset": 0 }, { "address": "0x14000ff04", "size": 2, "mnemonic": "jl", - "operands": "0x14000fee6" + "operands": "0x14000fee6", + "stack_offset": 0 } ], "successors": [ @@ -41500,91 +46134,106 @@ "address": "0x14000ff1b", "size": 4, "mnemonic": "cmp", - "operands": "r8d, 5" + "operands": "r8d, 5", + "stack_offset": 0 }, { "address": "0x14000ff1f", "size": 6, "mnemonic": "jne", - "operands": "0x14000ffa7" + "operands": "0x14000ffa7", + "stack_offset": 0 }, { "address": "0x14000ff25", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0xc]" + "operands": "eax, dword ptr [rdi + 0xc]", + "stack_offset": 0 }, { "address": "0x14000ff28", "size": 4, "mnemonic": "lea", - "operands": "r9d, [r8 + 0x7a]" + "operands": "r9d, [r8 + 0x7a]", + "stack_offset": 0 }, { "address": "0x14000ff2c", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], 1" + "operands": "dword ptr [rsp + 0x30], 1", + "stack_offset": 0 }, { "address": "0x14000ff34", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x159f5]" + "operands": "r8, [rip + 0x159f5]", + "stack_offset": 0 }, { "address": "0x14000ff3b", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x14000ff3f", "size": 4, "mnemonic": "lea", - "operands": "edx, [r9 - 0x7e]" + "operands": "edx, [r9 - 0x7e]", + "stack_offset": 0 }, { "address": "0x14000ff43", "size": 7, "mnemonic": "lea", - "operands": "rax, [rbp + 0x120]" + "operands": "rax, [rbp + 0x120]", + "stack_offset": 0 }, { "address": "0x14000ff4a", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000ff4c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14000ff51", "size": 5, "mnemonic": "call", - "operands": "0x140016050" + "operands": "0x140016050", + "stack_offset": 0 }, { "address": "0x14000ff56", "size": 2, "mnemonic": "mov", - "operands": "ecx, esi" + "operands": "ecx, esi", + "stack_offset": 0 }, { "address": "0x14000ff58", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000ff5a", "size": 2, "mnemonic": "je", - "operands": "0x14000ff96" + "operands": "0x14000ff96", + "stack_offset": 0 } ], "successors": [ @@ -41602,115 +46251,134 @@ "address": "0x14000ff0d", "size": 3, "mnemonic": "movsxd", - "operands": "rdx, r8d" + "operands": "rdx, r8d", + "stack_offset": 0 }, { "address": "0x14000ff10", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r14 + rdx*8]" + "operands": "rax, qword ptr [r14 + rdx*8]", + "stack_offset": 0 }, { "address": "0x14000ff14", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r14], rax" + "operands": "qword ptr [r14], rax", + "stack_offset": 0 }, { "address": "0x14000ff17", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r14 + rdx*8], rcx" + "operands": "qword ptr [r14 + rdx*8], rcx", + "stack_offset": 0 }, { "address": "0x14000ff1b", "size": 4, "mnemonic": "cmp", - "operands": "r8d, 5" + "operands": "r8d, 5", + "stack_offset": 0 }, { "address": "0x14000ff1f", "size": 6, "mnemonic": "jne", - "operands": "0x14000ffa7" + "operands": "0x14000ffa7", + "stack_offset": 0 }, { "address": "0x14000ff25", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0xc]" + "operands": "eax, dword ptr [rdi + 0xc]", + "stack_offset": 0 }, { "address": "0x14000ff28", "size": 4, "mnemonic": "lea", - "operands": "r9d, [r8 + 0x7a]" + "operands": "r9d, [r8 + 0x7a]", + "stack_offset": 0 }, { "address": "0x14000ff2c", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], 1" + "operands": "dword ptr [rsp + 0x30], 1", + "stack_offset": 0 }, { "address": "0x14000ff34", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x159f5]" + "operands": "r8, [rip + 0x159f5]", + "stack_offset": 0 }, { "address": "0x14000ff3b", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x14000ff3f", "size": 4, "mnemonic": "lea", - "operands": "edx, [r9 - 0x7e]" + "operands": "edx, [r9 - 0x7e]", + "stack_offset": 0 }, { "address": "0x14000ff43", "size": 7, "mnemonic": "lea", - "operands": "rax, [rbp + 0x120]" + "operands": "rax, [rbp + 0x120]", + "stack_offset": 0 }, { "address": "0x14000ff4a", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000ff4c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14000ff51", "size": 5, "mnemonic": "call", - "operands": "0x140016050" + "operands": "0x140016050", + "stack_offset": 0 }, { "address": "0x14000ff56", "size": 2, "mnemonic": "mov", - "operands": "ecx, esi" + "operands": "ecx, esi", + "stack_offset": 0 }, { "address": "0x14000ff58", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000ff5a", "size": 2, "mnemonic": "je", - "operands": "0x14000ff96" + "operands": "0x14000ff96", + "stack_offset": 0 } ], "successors": [ @@ -41728,19 +46396,22 @@ "address": "0x14000fee6", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r14 + rdx*8]" + "operands": "eax, dword ptr [r14 + rdx*8]", + "stack_offset": 0 }, { "address": "0x14000feea", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0xc], eax" + "operands": "dword ptr [rdi + 0xc], eax", + "stack_offset": 0 }, { "address": "0x14000feed", "size": 2, "mnemonic": "je", - "operands": "0x14000ff08" + "operands": "0x14000ff08", + "stack_offset": 0 } ], "successors": [ @@ -41758,7 +46429,8 @@ "address": "0x14000ff06", "size": 2, "mnemonic": "jmp", - "operands": "0x14000ff1b" + "operands": "0x14000ff1b", + "stack_offset": 0 } ], "successors": [ @@ -41775,49 +46447,57 @@ "address": "0x14000ff96", "size": 5, "mnemonic": "mov", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x14000ff9b", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x14000ff9e", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rdx + rax], ecx" + "operands": "dword ptr [rdx + rax], ecx", + "stack_offset": 0 }, { "address": "0x14000ffa1", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0xc]" + "operands": "eax, dword ptr [rdi + 0xc]", + "stack_offset": 0 }, { "address": "0x14000ffa4", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [r14], eax" + "operands": "dword ptr [r14], eax", + "stack_offset": 0 }, { "address": "0x14000ffa7", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r14 + 4]" + "operands": "eax, dword ptr [r14 + 4]", + "stack_offset": 0 }, { "address": "0x14000ffab", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rdi + 0x1c], eax" + "operands": "dword ptr [rdi + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x14000ffae", "size": 2, "mnemonic": "jmp", - "operands": "0x14000ffcc" + "operands": "0x14000ffcc", + "stack_offset": 0 } ], "successors": [ @@ -41834,43 +46514,50 @@ "address": "0x14000ff5c", "size": 7, "mnemonic": "lea", - "operands": "rax, [rbp + 0x120]" + "operands": "rax, [rbp + 0x120]", + "stack_offset": 0 }, { "address": "0x14000ff63", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x1ff" + "operands": "edx, 0x1ff", + "stack_offset": 0 }, { "address": "0x14000ff68", "size": 2, "mnemonic": "inc", - "operands": "ecx" + "operands": "ecx", + "stack_offset": 0 }, { "address": "0x14000ff6a", "size": 3, "mnemonic": "and", - "operands": "word ptr [rax], dx" + "operands": "word ptr [rax], dx", + "stack_offset": 0 }, { "address": "0x14000ff6d", "size": 4, "mnemonic": "lea", - "operands": "rax, [rax + 2]" + "operands": "rax, [rax + 2]", + "stack_offset": 0 }, { "address": "0x14000ff71", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 0x7f" + "operands": "ecx, 0x7f", + "stack_offset": 0 }, { "address": "0x14000ff74", "size": 2, "mnemonic": "jb", - "operands": "0x14000ff63" + "operands": "0x14000ff63", + "stack_offset": 0 } ], "successors": [ @@ -41888,43 +46575,50 @@ "address": "0x14000ffcc", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x159ed]" + "operands": "rdx, [rip + 0x159ed]", + "stack_offset": 0 }, { "address": "0x14000ffd3", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14000ffd6", "size": 4, "mnemonic": "lea", - "operands": "rax, [r12 + r12*2]" + "operands": "rax, [r12 + r12*2]", + "stack_offset": 0 }, { "address": "0x14000ffda", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx + rax*8]" + "operands": "rax, qword ptr [rdx + rax*8]", + "stack_offset": 0 }, { "address": "0x14000ffde", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x14000ffe3", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000ffe5", "size": 2, "mnemonic": "je", - "operands": "0x14001004d" + "operands": "0x14001004d", + "stack_offset": 0 } ], "successors": [ @@ -41942,37 +46636,43 @@ "address": "0x14000ff63", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x1ff" + "operands": "edx, 0x1ff", + "stack_offset": 0 }, { "address": "0x14000ff68", "size": 2, "mnemonic": "inc", - "operands": "ecx" + "operands": "ecx", + "stack_offset": 0 }, { "address": "0x14000ff6a", "size": 3, "mnemonic": "and", - "operands": "word ptr [rax], dx" + "operands": "word ptr [rax], dx", + "stack_offset": 0 }, { "address": "0x14000ff6d", "size": 4, "mnemonic": "lea", - "operands": "rax, [rax + 2]" + "operands": "rax, [rax + 2]", + "stack_offset": 0 }, { "address": "0x14000ff71", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 0x7f" + "operands": "ecx, 0x7f", + "stack_offset": 0 }, { "address": "0x14000ff74", "size": 2, "mnemonic": "jb", - "operands": "0x14000ff63" + "operands": "0x14000ff63", + "stack_offset": 0 } ], "successors": [ @@ -41990,91 +46690,106 @@ "address": "0x14000ff76", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0x21333]" + "operands": "rdx, qword ptr [rip + 0x21333]", + "stack_offset": 0 }, { "address": "0x14000ff7d", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x120]" + "operands": "rcx, [rbp + 0x120]", + "stack_offset": 0 }, { "address": "0x14000ff84", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0xfe" + "operands": "r8d, 0xfe", + "stack_offset": 0 }, { "address": "0x14000ff8a", "size": 5, "mnemonic": "call", - "operands": "0x14001ee30" + "operands": "0x14001ee30", + "stack_offset": 0 }, { "address": "0x14000ff8f", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000ff91", "size": 2, "mnemonic": "mov", - "operands": "ecx, esi" + "operands": "ecx, esi", + "stack_offset": 0 }, { "address": "0x14000ff93", "size": 3, "mnemonic": "sete", - "operands": "cl" + "operands": "cl", + "stack_offset": 0 }, { "address": "0x14000ff96", "size": 5, "mnemonic": "mov", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x14000ff9b", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x14000ff9e", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rdx + rax], ecx" + "operands": "dword ptr [rdx + rax], ecx", + "stack_offset": 0 }, { "address": "0x14000ffa1", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 0xc]" + "operands": "eax, dword ptr [rdi + 0xc]", + "stack_offset": 0 }, { "address": "0x14000ffa4", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [r14], eax" + "operands": "dword ptr [r14], eax", + "stack_offset": 0 }, { "address": "0x14000ffa7", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r14 + 4]" + "operands": "eax, dword ptr [r14 + 4]", + "stack_offset": 0 }, { "address": "0x14000ffab", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rdi + 0x1c], eax" + "operands": "dword ptr [rdi + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x14000ffae", "size": 2, "mnemonic": "jmp", - "operands": "0x14000ffcc" + "operands": "0x14000ffcc", + "stack_offset": 0 } ], "successors": [ @@ -42091,19 +46806,22 @@ "address": "0x14001004d", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x213e4]" + "operands": "rax, [rip + 0x213e4]", + "stack_offset": 0 }, { "address": "0x140010054", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rsp + 0x48], rax" + "operands": "qword ptr [rsp + 0x48], rax", + "stack_offset": 0 }, { "address": "0x140010059", "size": 2, "mnemonic": "je", - "operands": "0x1400100af" + "operands": "0x1400100af", + "stack_offset": 0 } ], "successors": [ @@ -42121,157 +46839,183 @@ "address": "0x14000ffe7", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x48]" + "operands": "rcx, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000ffec", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14000ffef", "size": 4, "mnemonic": "shl", - "operands": "rax, 5" + "operands": "rax, 5", + "stack_offset": 0 }, { "address": "0x14000fff3", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rax + rdi + 0x28], rcx" + "operands": "qword ptr [rax + rdi + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x14000fff8", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + r12*8 + 0x128]" + "operands": "rcx, qword ptr [rdi + r12*8 + 0x128]", + "stack_offset": 0 }, { "address": "0x140010000", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140010005", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x50]" + "operands": "rax, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001000a", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x14001000d", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rdi + r12*8 + 0x128], rax" + "operands": "qword ptr [rdi + r12*8 + 0x128], rax", + "stack_offset": 0 }, { "address": "0x140010015", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001001a", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0x44]" + "operands": "eax, dword ptr [rsp + 0x44]", + "stack_offset": 0 }, { "address": "0x14001001e", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rdi + 0xc], eax" + "operands": "dword ptr [rdi + 0xc], eax", + "stack_offset": 0 }, { "address": "0x140010021", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140010023", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x220]" + "operands": "rcx, qword ptr [rbp + 0x220]", + "stack_offset": 0 }, { "address": "0x14001002a", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14001002d", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140010032", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x388]" + "operands": "rbx, qword ptr [rsp + 0x388]", + "stack_offset": 0 }, { "address": "0x14001003a", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x330" + "operands": "rsp, 0x330", + "stack_offset": 0 }, { "address": "0x140010041", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140010043", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140010045", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140010047", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140010049", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001004a", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001004b", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001004c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -42287,43 +47031,50 @@ "address": "0x1400100af", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400100b2", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [r13], 1" + "operands": "dword ptr [r13], 1", + "stack_offset": 0 }, { "address": "0x1400100ba", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x1400100be", "size": 4, "mnemonic": "shl", - "operands": "rbx, 5" + "operands": "rbx, 5", + "stack_offset": 0 }, { "address": "0x1400100c2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rcx + rdi + 0x38], r13" + "operands": "qword ptr [rcx + rdi + 0x38], r13", + "stack_offset": 0 }, { "address": "0x1400100c7", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + rdi + 0x28]" + "operands": "rax, qword ptr [rbx + rdi + 0x28]", + "stack_offset": 0 }, { "address": "0x1400100cc", "size": 5, "mnemonic": "jmp", - "operands": "0x140010023" + "operands": "0x140010023", + "stack_offset": 0 } ], "successors": [ @@ -42340,157 +47091,183 @@ "address": "0x14001005b", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x14001005e", "size": 4, "mnemonic": "shl", - "operands": "rdx, 5" + "operands": "rdx, 5", + "stack_offset": 0 }, { "address": "0x140010062", "size": 3, "mnemonic": "or", - "operands": "ecx, 0xffffffff" + "operands": "ecx, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140010065", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx + rdi + 0x38]" + "operands": "rax, qword ptr [rdx + rdi + 0x38]", + "stack_offset": 0 }, { "address": "0x14001006a", "size": 4, "mnemonic": "lock xadd", - "operands": "dword ptr [rax], ecx" + "operands": "dword ptr [rax], ecx", + "stack_offset": 0 }, { "address": "0x14001006e", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 1" + "operands": "ecx, 1", + "stack_offset": 0 }, { "address": "0x140010071", "size": 2, "mnemonic": "jne", - "operands": "0x1400100af" + "operands": "0x1400100af", + "stack_offset": 0 }, { "address": "0x140010073", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdx + rdi + 0x38]" + "operands": "rcx, qword ptr [rdx + rdi + 0x38]", + "stack_offset": 0 }, { "address": "0x140010078", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001007d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140010080", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x140010084", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rdi + 0x30]" + "operands": "rcx, qword ptr [rcx + rdi + 0x30]", + "stack_offset": 0 }, { "address": "0x140010089", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001008e", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + r12*8 + 0x128]" + "operands": "rcx, qword ptr [rdi + r12*8 + 0x128]", + "stack_offset": 0 }, { "address": "0x140010096", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001009b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001009e", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x1400100a2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rcx + rdi + 0x28], rsi" + "operands": "qword ptr [rcx + rdi + 0x28], rsi", + "stack_offset": 0 }, { "address": "0x1400100a7", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rdi + r12*8 + 0x128], rsi" + "operands": "qword ptr [rdi + r12*8 + 0x128], rsi", + "stack_offset": 0 }, { "address": "0x1400100af", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400100b2", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [r13], 1" + "operands": "dword ptr [r13], 1", + "stack_offset": 0 }, { "address": "0x1400100ba", "size": 4, "mnemonic": "shl", - "operands": "rcx, 5" + "operands": "rcx, 5", + "stack_offset": 0 }, { "address": "0x1400100be", "size": 4, "mnemonic": "shl", - "operands": "rbx, 5" + "operands": "rbx, 5", + "stack_offset": 0 }, { "address": "0x1400100c2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rcx + rdi + 0x38], r13" + "operands": "qword ptr [rcx + rdi + 0x38], r13", + "stack_offset": 0 }, { "address": "0x1400100c7", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + rdi + 0x28]" + "operands": "rax, qword ptr [rbx + rdi + 0x28]", + "stack_offset": 0 }, { "address": "0x1400100cc", "size": 5, "mnemonic": "jmp", - "operands": "0x140010023" + "operands": "0x140010023", + "stack_offset": 0 } ], "successors": [ @@ -42513,157 +47290,183 @@ "address": "0x1400100ed", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400100ee", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400100ef", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400100f0", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400100f2", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400100f4", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400100f6", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400100f8", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x27]" + "operands": "rbp, [rsp - 0x27]", + "stack_offset": 0 }, { "address": "0x1400100fd", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x90" + "operands": "rsp, 0x90", + "stack_offset": 0 }, { "address": "0x140010104", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x20f35]" + "operands": "rax, qword ptr [rip + 0x20f35]", + "stack_offset": 0 }, { "address": "0x14001010b", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14001010e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x17], rax" + "operands": "qword ptr [rbp + 0x17], rax", + "stack_offset": 0 }, { "address": "0x140010112", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x140010115", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x1ca" + "operands": "r8d, 0x1ca", + "stack_offset": 0 }, { "address": "0x14001011b", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001011d", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140010120", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x140010125", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x140010128", "size": 4, "mnemonic": "lea", - "operands": "r12, [rbp - 0x41]" + "operands": "r12, [rbp - 0x41]", + "stack_offset": 0 }, { "address": "0x14001012c", "size": 3, "mnemonic": "mov", - "operands": "edi, r13d" + "operands": "edi, r13d", + "stack_offset": 0 }, { "address": "0x14001012f", "size": 4, "mnemonic": "lea", - "operands": "esi, [r13 + 1]" + "operands": "esi, [r13 + 1]", + "stack_offset": 0 }, { "address": "0x140010133", "size": 3, "mnemonic": "mov", - "operands": "r15d, r13d" + "operands": "r15d, r13d", + "stack_offset": 0 }, { "address": "0x140010136", "size": 4, "mnemonic": "cmp", - "operands": "rdi, 4" + "operands": "rdi, 4", + "stack_offset": 0 }, { "address": "0x14001013a", "size": 6, "mnemonic": "jae", - "operands": "0x1400102ba" + "operands": "0x1400102ba", + "stack_offset": 0 }, { "address": "0x140010140", "size": 4, "mnemonic": "cmp", - "operands": "r15d, 2" + "operands": "r15d, 2", + "stack_offset": 0 }, { "address": "0x140010144", "size": 2, "mnemonic": "je", - "operands": "0x140010157" + "operands": "0x140010157", + "stack_offset": 0 } ], "successors": [ @@ -42681,91 +47484,106 @@ "address": "0x140010157", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001015b", "size": 3, "mnemonic": "inc", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x14001015e", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [r14 + rax*2], r13w" + "operands": "word ptr [r14 + rax*2], r13w", + "stack_offset": 0 }, { "address": "0x140010163", "size": 2, "mnemonic": "jne", - "operands": "0x14001015b" + "operands": "0x14001015b", + "stack_offset": 0 }, { "address": "0x140010165", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [r12 - 8], r14" + "operands": "qword ptr [r12 - 8], r14", + "stack_offset": 0 }, { "address": "0x14001016a", "size": 3, "mnemonic": "add", - "operands": "rdi, rsi" + "operands": "rdi, rsi", + "stack_offset": 0 }, { "address": "0x14001016d", "size": 4, "mnemonic": "lea", - "operands": "r14, [r14 + rax*2]" + "operands": "r14, [r14 + rax*2]", + "stack_offset": 0 }, { "address": "0x140010171", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r12], rax" + "operands": "qword ptr [r12], rax", + "stack_offset": 0 }, { "address": "0x140010175", "size": 4, "mnemonic": "movzx", - "operands": "eax, word ptr [r14]" + "operands": "eax, word ptr [r14]", + "stack_offset": 0 }, { "address": "0x140010179", "size": 4, "mnemonic": "add", - "operands": "r14, 2" + "operands": "r14, 2", + "stack_offset": 0 }, { "address": "0x14001017d", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [r12 + 8], r15d" + "operands": "dword ptr [r12 + 8], r15d", + "stack_offset": 0 }, { "address": "0x140010182", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x140010184", "size": 4, "mnemonic": "add", - "operands": "r12, 0x18" + "operands": "r12, 0x18", + "stack_offset": 0 }, { "address": "0x140010188", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001018a", "size": 2, "mnemonic": "je", - "operands": "0x14001019a" + "operands": "0x14001019a", + "stack_offset": 0 } ], "successors": [ @@ -42783,25 +47601,29 @@ "address": "0x140010146", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x15983]" + "operands": "rdx, [rip + 0x15983]", + "stack_offset": 0 }, { "address": "0x14001014d", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140010150", "size": 5, "mnemonic": "call", - "operands": "0x14001a500" + "operands": "0x14001a500", + "stack_offset": 0 }, { "address": "0x140010155", "size": 2, "mnemonic": "jmp", - "operands": "0x140010165" + "operands": "0x140010165", + "stack_offset": 0 } ], "successors": [ @@ -42818,13 +47640,15 @@ "address": "0x14001019a", "size": 3, "mnemonic": "sub", - "operands": "rdi, rsi" + "operands": "rdi, rsi", + "stack_offset": 0 }, { "address": "0x14001019d", "size": 6, "mnemonic": "je", - "operands": "0x1400102ac" + "operands": "0x1400102ac", + "stack_offset": 0 } ], "successors": [ @@ -42842,13 +47666,15 @@ "address": "0x14001018c", "size": 3, "mnemonic": "sub", - "operands": "ecx, 0x2d" + "operands": "ecx, 0x2d", + "stack_offset": 0 }, { "address": "0x14001018f", "size": 2, "mnemonic": "je", - "operands": "0x140010133" + "operands": "0x140010133", + "stack_offset": 0 } ], "successors": [ @@ -42866,67 +47692,78 @@ "address": "0x140010165", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [r12 - 8], r14" + "operands": "qword ptr [r12 - 8], r14", + "stack_offset": 0 }, { "address": "0x14001016a", "size": 3, "mnemonic": "add", - "operands": "rdi, rsi" + "operands": "rdi, rsi", + "stack_offset": 0 }, { "address": "0x14001016d", "size": 4, "mnemonic": "lea", - "operands": "r14, [r14 + rax*2]" + "operands": "r14, [r14 + rax*2]", + "stack_offset": 0 }, { "address": "0x140010171", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r12], rax" + "operands": "qword ptr [r12], rax", + "stack_offset": 0 }, { "address": "0x140010175", "size": 4, "mnemonic": "movzx", - "operands": "eax, word ptr [r14]" + "operands": "eax, word ptr [r14]", + "stack_offset": 0 }, { "address": "0x140010179", "size": 4, "mnemonic": "add", - "operands": "r14, 2" + "operands": "r14, 2", + "stack_offset": 0 }, { "address": "0x14001017d", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [r12 + 8], r15d" + "operands": "dword ptr [r12 + 8], r15d", + "stack_offset": 0 }, { "address": "0x140010182", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x140010184", "size": 4, "mnemonic": "add", - "operands": "r12, 0x18" + "operands": "r12, 0x18", + "stack_offset": 0 }, { "address": "0x140010188", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001018a", "size": 2, "mnemonic": "je", - "operands": "0x14001019a" + "operands": "0x14001019a", + "stack_offset": 0 } ], "successors": [ @@ -42944,25 +47781,29 @@ "address": "0x1400102ac", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x49]" + "operands": "rdx, [rbp - 0x49]", + "stack_offset": 0 }, { "address": "0x1400102b0", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400102b3", "size": 5, "mnemonic": "call", - "operands": "0x14001032c" + "operands": "0x14001032c", + "stack_offset": 0 }, { "address": "0x1400102b8", "size": 2, "mnemonic": "jmp", - "operands": "0x1400102bc" + "operands": "0x1400102bc", + "stack_offset": 0 } ], "successors": [ @@ -42979,13 +47820,15 @@ "address": "0x1400101a3", "size": 3, "mnemonic": "sub", - "operands": "rdi, rsi" + "operands": "rdi, rsi", + "stack_offset": 0 }, { "address": "0x1400101a6", "size": 6, "mnemonic": "je", - "operands": "0x140010264" + "operands": "0x140010264", + "stack_offset": 0 } ], "successors": [ @@ -43003,31 +47846,36 @@ "address": "0x140010133", "size": 3, "mnemonic": "mov", - "operands": "r15d, r13d" + "operands": "r15d, r13d", + "stack_offset": 0 }, { "address": "0x140010136", "size": 4, "mnemonic": "cmp", - "operands": "rdi, 4" + "operands": "rdi, 4", + "stack_offset": 0 }, { "address": "0x14001013a", "size": 6, "mnemonic": "jae", - "operands": "0x1400102ba" + "operands": "0x1400102ba", + "stack_offset": 0 }, { "address": "0x140010140", "size": 4, "mnemonic": "cmp", - "operands": "r15d, 2" + "operands": "r15d, 2", + "stack_offset": 0 }, { "address": "0x140010144", "size": 2, "mnemonic": "je", - "operands": "0x140010157" + "operands": "0x140010157", + "stack_offset": 0 } ], "successors": [ @@ -43045,13 +47893,15 @@ "address": "0x140010191", "size": 2, "mnemonic": "sub", - "operands": "ecx, esi" + "operands": "ecx, esi", + "stack_offset": 0 }, { "address": "0x140010193", "size": 2, "mnemonic": "je", - "operands": "0x1400101ff" + "operands": "0x1400101ff", + "stack_offset": 0 } ], "successors": [ @@ -43069,79 +47919,92 @@ "address": "0x1400102bc", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x17]" + "operands": "rcx, qword ptr [rbp + 0x17]", + "stack_offset": 0 }, { "address": "0x1400102c0", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x1400102c3", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x1400102c8", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0xe0]" + "operands": "rbx, qword ptr [rsp + 0xe0]", + "stack_offset": 0 }, { "address": "0x1400102d0", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x90" + "operands": "rsp, 0x90", + "stack_offset": 0 }, { "address": "0x1400102d7", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400102d9", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400102db", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400102dd", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400102df", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400102e0", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400102e1", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400102e2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -43157,31 +48020,36 @@ "address": "0x140010264", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x49]" + "operands": "rdx, [rbp - 0x49]", + "stack_offset": 0 }, { "address": "0x140010268", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001026b", "size": 5, "mnemonic": "call", - "operands": "0x14001032c" + "operands": "0x14001032c", + "stack_offset": 0 }, { "address": "0x140010270", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140010272", "size": 2, "mnemonic": "je", - "operands": "0x1400102a4" + "operands": "0x1400102a4", + "stack_offset": 0 } ], "successors": [ @@ -43199,13 +48067,15 @@ "address": "0x1400101ac", "size": 3, "mnemonic": "sub", - "operands": "rdi, rsi" + "operands": "rdi, rsi", + "stack_offset": 0 }, { "address": "0x1400101af", "size": 2, "mnemonic": "je", - "operands": "0x14001020a" + "operands": "0x14001020a", + "stack_offset": 0 } ], "successors": [ @@ -43223,13 +48093,15 @@ "address": "0x1400101ff", "size": 6, "mnemonic": "mov", - "operands": "r15d, 2" + "operands": "r15d, 2", + "stack_offset": 0 }, { "address": "0x140010205", "size": 5, "mnemonic": "jmp", - "operands": "0x140010136" + "operands": "0x140010136", + "stack_offset": 0 } ], "successors": [ @@ -43246,13 +48118,15 @@ "address": "0x140010195", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 0x31" + "operands": "ecx, 0x31", + "stack_offset": 0 }, { "address": "0x140010198", "size": 2, "mnemonic": "je", - "operands": "0x140010133" + "operands": "0x140010133", + "stack_offset": 0 } ], "successors": [ @@ -43270,19 +48144,22 @@ "address": "0x1400102a4", "size": 3, "mnemonic": "mov", - "operands": "sil, r13b" + "operands": "sil, r13b", + "stack_offset": 0 }, { "address": "0x1400102a7", "size": 3, "mnemonic": "mov", - "operands": "al, sil" + "operands": "al, sil", + "stack_offset": 0 }, { "address": "0x1400102aa", "size": 2, "mnemonic": "jmp", - "operands": "0x1400102bc" + "operands": "0x1400102bc", + "stack_offset": 0 } ], "successors": [ @@ -43299,109 +48176,127 @@ "address": "0x140010274", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x31]" + "operands": "rdx, [rbp - 0x31]", + "stack_offset": 0 }, { "address": "0x140010278", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001027b", "size": 5, "mnemonic": "call", - "operands": "0x1400104ac" + "operands": "0x1400104ac", + "stack_offset": 0 }, { "address": "0x140010280", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140010282", "size": 2, "mnemonic": "jne", - "operands": "0x1400102a7" + "operands": "0x1400102a7", + "stack_offset": 0 }, { "address": "0x140010284", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x31]" + "operands": "rdx, [rbp - 0x31]", + "stack_offset": 0 }, { "address": "0x140010288", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001028b", "size": 5, "mnemonic": "call", - "operands": "0x1400103b8" + "operands": "0x1400103b8", + "stack_offset": 0 }, { "address": "0x140010290", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140010292", "size": 2, "mnemonic": "jne", - "operands": "0x1400102a7" + "operands": "0x1400102a7", + "stack_offset": 0 }, { "address": "0x140010294", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x31]" + "operands": "rdx, [rbp - 0x31]", + "stack_offset": 0 }, { "address": "0x140010298", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001029b", "size": 5, "mnemonic": "call", - "operands": "0x1400102e4" + "operands": "0x1400102e4", + "stack_offset": 0 }, { "address": "0x1400102a0", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400102a2", "size": 2, "mnemonic": "jne", - "operands": "0x1400102a7" + "operands": "0x1400102a7", + "stack_offset": 0 }, { "address": "0x1400102a4", "size": 3, "mnemonic": "mov", - "operands": "sil, r13b" + "operands": "sil, r13b", + "stack_offset": 0 }, { "address": "0x1400102a7", "size": 3, "mnemonic": "mov", - "operands": "al, sil" + "operands": "al, sil", + "stack_offset": 0 }, { "address": "0x1400102aa", "size": 2, "mnemonic": "jmp", - "operands": "0x1400102bc" + "operands": "0x1400102bc", + "stack_offset": 0 } ], "successors": [ @@ -43418,31 +48313,36 @@ "address": "0x14001020a", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x49]" + "operands": "rdx, [rbp - 0x49]", + "stack_offset": 0 }, { "address": "0x14001020e", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140010211", "size": 5, "mnemonic": "call", - "operands": "0x14001032c" + "operands": "0x14001032c", + "stack_offset": 0 }, { "address": "0x140010216", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140010218", "size": 6, "mnemonic": "je", - "operands": "0x1400102a4" + "operands": "0x1400102a4", + "stack_offset": 0 } ], "successors": [ @@ -43460,43 +48360,50 @@ "address": "0x1400101b1", "size": 3, "mnemonic": "cmp", - "operands": "rdi, rsi" + "operands": "rdi, rsi", + "stack_offset": 0 }, { "address": "0x1400101b4", "size": 6, "mnemonic": "jne", - "operands": "0x1400102ba" + "operands": "0x1400102ba", + "stack_offset": 0 }, { "address": "0x1400101ba", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x49]" + "operands": "rdx, [rbp - 0x49]", + "stack_offset": 0 }, { "address": "0x1400101be", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400101c1", "size": 5, "mnemonic": "call", - "operands": "0x14001032c" + "operands": "0x14001032c", + "stack_offset": 0 }, { "address": "0x1400101c6", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400101c8", "size": 6, "mnemonic": "je", - "operands": "0x1400102a4" + "operands": "0x1400102a4", + "stack_offset": 0 } ], "successors": [ @@ -43514,25 +48421,29 @@ "address": "0x140010136", "size": 4, "mnemonic": "cmp", - "operands": "rdi, 4" + "operands": "rdi, 4", + "stack_offset": 0 }, { "address": "0x14001013a", "size": 6, "mnemonic": "jae", - "operands": "0x1400102ba" + "operands": "0x1400102ba", + "stack_offset": 0 }, { "address": "0x140010140", "size": 4, "mnemonic": "cmp", - "operands": "r15d, 2" + "operands": "r15d, 2", + "stack_offset": 0 }, { "address": "0x140010144", "size": 2, "mnemonic": "je", - "operands": "0x140010157" + "operands": "0x140010157", + "stack_offset": 0 } ], "successors": [ @@ -43550,31 +48461,36 @@ "address": "0x14001021e", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x31]" + "operands": "rdx, [rbp - 0x31]", + "stack_offset": 0 }, { "address": "0x140010222", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140010225", "size": 5, "mnemonic": "call", - "operands": "0x1400104ac" + "operands": "0x1400104ac", + "stack_offset": 0 }, { "address": "0x14001022a", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001022c", "size": 2, "mnemonic": "je", - "operands": "0x14001024e" + "operands": "0x14001024e", + "stack_offset": 0 } ], "successors": [ @@ -43592,31 +48508,36 @@ "address": "0x1400101ce", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x31]" + "operands": "rdx, [rbp - 0x31]", + "stack_offset": 0 }, { "address": "0x1400101d2", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400101d5", "size": 5, "mnemonic": "call", - "operands": "0x1400104ac" + "operands": "0x1400104ac", + "stack_offset": 0 }, { "address": "0x1400101da", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400101dc", "size": 6, "mnemonic": "je", - "operands": "0x1400102a4" + "operands": "0x1400102a4", + "stack_offset": 0 } ], "successors": [ @@ -43634,31 +48555,36 @@ "address": "0x14001024e", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x31]" + "operands": "rdx, [rbp - 0x31]", + "stack_offset": 0 }, { "address": "0x140010252", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140010255", "size": 5, "mnemonic": "call", - "operands": "0x1400103b8" + "operands": "0x1400103b8", + "stack_offset": 0 }, { "address": "0x14001025a", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001025c", "size": 2, "mnemonic": "je", - "operands": "0x1400102a4" + "operands": "0x1400102a4", + "stack_offset": 0 } ], "successors": [ @@ -43676,91 +48602,106 @@ "address": "0x14001022e", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x140010232", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140010235", "size": 5, "mnemonic": "call", - "operands": "0x1400103b8" + "operands": "0x1400103b8", + "stack_offset": 0 }, { "address": "0x14001023a", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001023c", "size": 2, "mnemonic": "jne", - "operands": "0x1400102a7" + "operands": "0x1400102a7", + "stack_offset": 0 }, { "address": "0x14001023e", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x140010242", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140010245", "size": 5, "mnemonic": "call", - "operands": "0x1400102e4" + "operands": "0x1400102e4", + "stack_offset": 0 }, { "address": "0x14001024a", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001024c", "size": 2, "mnemonic": "jne", - "operands": "0x1400102a7" + "operands": "0x1400102a7", + "stack_offset": 0 }, { "address": "0x14001024e", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x31]" + "operands": "rdx, [rbp - 0x31]", + "stack_offset": 0 }, { "address": "0x140010252", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140010255", "size": 5, "mnemonic": "call", - "operands": "0x1400103b8" + "operands": "0x1400103b8", + "stack_offset": 0 }, { "address": "0x14001025a", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001025c", "size": 2, "mnemonic": "je", - "operands": "0x1400102a4" + "operands": "0x1400102a4", + "stack_offset": 0 } ], "successors": [ @@ -43778,31 +48719,36 @@ "address": "0x1400101e2", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x1400101e6", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400101e9", "size": 5, "mnemonic": "call", - "operands": "0x1400103b8" + "operands": "0x1400103b8", + "stack_offset": 0 }, { "address": "0x1400101ee", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400101f0", "size": 6, "mnemonic": "je", - "operands": "0x1400102a4" + "operands": "0x1400102a4", + "stack_offset": 0 } ], "successors": [ @@ -43820,13 +48766,15 @@ "address": "0x14001025e", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x140010262", "size": 2, "mnemonic": "jmp", - "operands": "0x140010298" + "operands": "0x140010298", + "stack_offset": 0 } ], "successors": [ @@ -43843,13 +48791,15 @@ "address": "0x1400101f6", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 1]" + "operands": "rdx, [rbp - 1]", + "stack_offset": 0 }, { "address": "0x1400101fa", "size": 5, "mnemonic": "jmp", - "operands": "0x140010298" + "operands": "0x140010298", + "stack_offset": 0 } ], "successors": [ @@ -43866,43 +48816,50 @@ "address": "0x140010298", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001029b", "size": 5, "mnemonic": "call", - "operands": "0x1400102e4" + "operands": "0x1400102e4", + "stack_offset": 0 }, { "address": "0x1400102a0", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400102a2", "size": 2, "mnemonic": "jne", - "operands": "0x1400102a7" + "operands": "0x1400102a7", + "stack_offset": 0 }, { "address": "0x1400102a4", "size": 3, "mnemonic": "mov", - "operands": "sil, r13b" + "operands": "sil, r13b", + "stack_offset": 0 }, { "address": "0x1400102a7", "size": 3, "mnemonic": "mov", - "operands": "al, sil" + "operands": "al, sil", + "stack_offset": 0 }, { "address": "0x1400102aa", "size": 2, "mnemonic": "jmp", - "operands": "0x1400102bc" + "operands": "0x1400102bc", + "stack_offset": 0 } ], "successors": [ @@ -43925,109 +48882,127 @@ "address": "0x1400109ba", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400109bb", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x1400109be", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x1400109c2", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x10]" + "operands": "rax, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x1400109c6", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x18], rax" + "operands": "qword ptr [rbp - 0x18], rax", + "stack_offset": 0 }, { "address": "0x1400109ca", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp + 0x28]" + "operands": "r9, [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x1400109ce", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x18]" + "operands": "rax, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x1400109d2", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x1400109d6", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x18]" + "operands": "r8, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x1400109da", "size": 5, "mnemonic": "mov", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x1400109df", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x20]" + "operands": "rdx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x1400109e3", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x20]" + "operands": "rcx, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400109e7", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x28], eax" + "operands": "dword ptr [rbp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x1400109ea", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x20], eax" + "operands": "dword ptr [rbp - 0x20], eax", + "stack_offset": 0 }, { "address": "0x1400109ed", "size": 5, "mnemonic": "call", - "operands": "0x1400105f4" + "operands": "0x1400105f4", + "stack_offset": 0 }, { "address": "0x1400109f2", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x1400109f6", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400109f7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -44049,121 +49024,141 @@ "address": "0x140010c1a", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140010c1b", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140010c1c", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010c1d", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140010c1f", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140010c21", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140010c23", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140010c25", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xa0" + "operands": "rsp, 0xa0", + "stack_offset": 0 }, { "address": "0x140010c2c", "size": 3, "mnemonic": "mov", - "operands": "r12, qword ptr [rdx]" + "operands": "r12, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140010c2f", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x140010c32", "size": 4, "mnemonic": "movzx", - "operands": "esi, r9b" + "operands": "esi, r9b", + "stack_offset": 0 }, { "address": "0x140010c36", "size": 3, "mnemonic": "mov", - "operands": "r15d, r8d" + "operands": "r15d, r8d", + "stack_offset": 0 }, { "address": "0x140010c39", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x90], r12" + "operands": "qword ptr [rsp + 0x90], r12", + "stack_offset": 0 }, { "address": "0x140010c41", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140010c44", "size": 3, "mnemonic": "test", - "operands": "r12, r12" + "operands": "r12, r12", + "stack_offset": 0 }, { "address": "0x140010c47", "size": 2, "mnemonic": "jne", - "operands": "0x140010c5b" + "operands": "0x140010c5b", + "stack_offset": 0 }, { "address": "0x140010c49", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x140010c4e", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x140010c54", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x140010c59", "size": 2, "mnemonic": "jmp", - "operands": "0x140010c8d" + "operands": "0x140010c8d", + "stack_offset": 0 } ], "successors": [ @@ -44180,19 +49175,22 @@ "address": "0x140010c8d", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + 8]" + "operands": "rcx, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x140010c91", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140010c94", "size": 6, "mnemonic": "je", - "operands": "0x140011308" + "operands": "0x140011308", + "stack_offset": 0 } ], "successors": [ @@ -44210,13 +49208,15 @@ "address": "0x140011308", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001130a", "size": 5, "mnemonic": "jmp", - "operands": "0x14001138f" + "operands": "0x14001138f", + "stack_offset": 0 } ], "successors": [ @@ -44233,19 +49233,22 @@ "address": "0x140010c9a", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x140010c9d", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rax" + "operands": "qword ptr [rcx], rax", + "stack_offset": 0 }, { "address": "0x140010ca0", "size": 5, "mnemonic": "jmp", - "operands": "0x140011308" + "operands": "0x140011308", + "stack_offset": 0 } ], "successors": [ @@ -44262,61 +49265,71 @@ "address": "0x14001138f", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0xf0]" + "operands": "rbx, qword ptr [rsp + 0xf0]", + "stack_offset": 0 }, { "address": "0x140011397", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xa0" + "operands": "rsp, 0xa0", + "stack_offset": 0 }, { "address": "0x14001139e", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400113a0", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400113a2", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400113a4", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400113a6", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400113a7", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400113a8", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400113a9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -44338,163 +49351,190 @@ "address": "0x1400113b6", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400113b7", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x1400113ba", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x1400113be", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x1400113c3", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x21e26], 0" + "operands": "dword ptr [rip + 0x21e26], 0", + "stack_offset": 0 }, { "address": "0x1400113ca", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x1400113ce", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x1400113d2", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x1400113d6", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x1400113da", "size": 2, "mnemonic": "jne", - "operands": "0x1400113ec" + "operands": "0x1400113ec", + "stack_offset": 0 }, { "address": "0x1400113dc", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x20045]" + "operands": "xmm0, xmmword ptr [rip + 0x20045]", + "stack_offset": 0 }, { "address": "0x1400113e3", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x1400113e7", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x1400113ec", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x48], 0" + "operands": "qword ptr [rbp - 0x48], 0", + "stack_offset": 0 }, { "address": "0x1400113f1", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x50]" + "operands": "rdx, [rbp - 0x50]", + "stack_offset": 0 }, { "address": "0x1400113f5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x50], rcx" + "operands": "qword ptr [rbp - 0x50], rcx", + "stack_offset": 0 }, { "address": "0x1400113f9", "size": 3, "mnemonic": "mov", - "operands": "r9b, 1" + "operands": "r9b, 1", + "stack_offset": 0 }, { "address": "0x1400113fc", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140011400", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0xa" + "operands": "r8d, 0xa", + "stack_offset": 0 }, { "address": "0x140011406", "size": 5, "mnemonic": "call", - "operands": "0x140010c10" + "operands": "0x140010c10", + "stack_offset": 0 }, { "address": "0x14001140b", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x14001140f", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140011411", "size": 2, "mnemonic": "jne", - "operands": "0x14001141e" + "operands": "0x14001141e", + "stack_offset": 0 }, { "address": "0x140011413", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140011417", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14001141e", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140011422", "size": 2, "mnemonic": "je", - "operands": "0x140011433" + "operands": "0x140011433", + "stack_offset": 0 } ], "successors": [ @@ -44512,13 +49552,15 @@ "address": "0x140011433", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140011437", "size": 2, "mnemonic": "je", - "operands": "0x140011448" + "operands": "0x140011448", + "stack_offset": 0 } ], "successors": [ @@ -44536,37 +49578,43 @@ "address": "0x140011424", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x140011427", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14001142b", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140011430", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x140011433", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140011437", "size": 2, "mnemonic": "je", - "operands": "0x140011448" + "operands": "0x140011448", + "stack_offset": 0 } ], "successors": [ @@ -44584,43 +49632,50 @@ "address": "0x140011448", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14001144d", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14001144f", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x140011453", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x18]" + "operands": "rdi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140011457", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14001145a", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001145b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -44636,67 +49691,78 @@ "address": "0x140011439", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x14001143c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140011440", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140011445", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x140011448", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14001144d", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14001144f", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x140011453", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x18]" + "operands": "rdi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140011457", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14001145a", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001145b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -44718,289 +49784,337 @@ "address": "0x1400115bc", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400115be", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x1400115c1", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x1400115c5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x28], rcx" + "operands": "qword ptr [rbp - 0x28], rcx", + "stack_offset": 0 }, { "address": "0x1400115c9", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x28]" + "operands": "rax, [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x1400115cd", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x18], rax" + "operands": "qword ptr [rbp - 0x18], rax", + "stack_offset": 0 }, { "address": "0x1400115d1", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp + 0x20]" + "operands": "r9, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400115d5", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x1400115da", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x18]" + "operands": "r8, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x1400115de", "size": 5, "mnemonic": "mov", - "operands": "eax, 5" + "operands": "eax, 5", + "stack_offset": 0 }, { "address": "0x1400115e3", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x20], eax" + "operands": "dword ptr [rbp + 0x20], eax", + "stack_offset": 0 }, { "address": "0x1400115e6", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x28], eax" + "operands": "dword ptr [rbp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x1400115e9", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x28]" + "operands": "rax, [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x1400115ed", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x1400115f1", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x20]" + "operands": "rax, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x1400115f5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 8], rax" + "operands": "qword ptr [rbp - 8], rax", + "stack_offset": 0 }, { "address": "0x1400115f9", "size": 5, "mnemonic": "mov", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x1400115fe", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x30], eax" + "operands": "dword ptr [rbp - 0x30], eax", + "stack_offset": 0 }, { "address": "0x140011601", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x2c], eax" + "operands": "dword ptr [rbp - 0x2c], eax", + "stack_offset": 0 }, { "address": "0x140011604", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x21c2d]" + "operands": "rax, [rip + 0x21c2d]", + "stack_offset": 0 }, { "address": "0x14001160b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x20], rax" + "operands": "qword ptr [rbp - 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001160f", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rcx + 0x28], edx" + "operands": "dword ptr [rcx + 0x28], edx", + "stack_offset": 0 }, { "address": "0x140011612", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x14197]" + "operands": "rcx, [rip + 0x14197]", + "stack_offset": 0 }, { "address": "0x140011619", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x28]" + "operands": "rax, qword ptr [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x14001161d", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rax], rcx" + "operands": "qword ptr [rax], rcx", + "stack_offset": 0 }, { "address": "0x140011620", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x20119]" + "operands": "rcx, [rip + 0x20119]", + "stack_offset": 0 }, { "address": "0x140011627", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x28]" + "operands": "rax, qword ptr [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x14001162b", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x3a8], edx" + "operands": "dword ptr [rax + 0x3a8], edx", + "stack_offset": 0 }, { "address": "0x140011631", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x28]" + "operands": "rax, qword ptr [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x140011635", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x88], rcx" + "operands": "qword ptr [rax + 0x88], rcx", + "stack_offset": 0 }, { "address": "0x14001163c", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rdx + 0x42]" + "operands": "ecx, [rdx + 0x42]", + "stack_offset": 0 }, { "address": "0x14001163f", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x28]" + "operands": "rax, qword ptr [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x140011643", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp + 0x28]" + "operands": "rdx, [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x140011647", "size": 7, "mnemonic": "mov", - "operands": "word ptr [rax + 0xbc], cx" + "operands": "word ptr [rax + 0xbc], cx", + "stack_offset": 0 }, { "address": "0x14001164e", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x28]" + "operands": "rax, qword ptr [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x140011652", "size": 7, "mnemonic": "mov", - "operands": "word ptr [rax + 0x1c2], cx" + "operands": "word ptr [rax + 0x1c2], cx", + "stack_offset": 0 }, { "address": "0x140011659", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x18]" + "operands": "rcx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x14001165d", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x28]" + "operands": "rax, qword ptr [rbp - 0x28]", + "stack_offset": 0 }, { "address": "0x140011661", "size": 8, "mnemonic": "and", - "operands": "qword ptr [rax + 0x3a0], 0" + "operands": "qword ptr [rax + 0x3a0], 0", + "stack_offset": 0 }, { "address": "0x140011669", "size": 5, "mnemonic": "call", - "operands": "0x140011494" + "operands": "0x140011494", + "stack_offset": 0 }, { "address": "0x14001166e", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x30]" + "operands": "r9, [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x140011672", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x10]" + "operands": "r8, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140011676", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x2c]" + "operands": "rdx, [rbp - 0x2c]", + "stack_offset": 0 }, { "address": "0x14001167a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x18]" + "operands": "rcx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x14001167e", "size": 5, "mnemonic": "call", - "operands": "0x140011514" + "operands": "0x140011514", + "stack_offset": 0 }, { "address": "0x140011683", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x140011687", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140011688", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -45022,109 +50136,127 @@ "address": "0x1400116ac", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400116ae", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x1400116b1", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x1400116b5", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x18]" + "operands": "rax, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x1400116b9", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x18], rcx" + "operands": "qword ptr [rbp - 0x18], rcx", + "stack_offset": 0 }, { "address": "0x1400116bd", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x1400116c1", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x140e8]" + "operands": "rdx, [rip + 0x140e8]", + "stack_offset": 0 }, { "address": "0x1400116c8", "size": 5, "mnemonic": "mov", - "operands": "eax, 5" + "operands": "eax, 5", + "stack_offset": 0 }, { "address": "0x1400116cd", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x20], eax" + "operands": "dword ptr [rbp + 0x20], eax", + "stack_offset": 0 }, { "address": "0x1400116d0", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x28], eax" + "operands": "dword ptr [rbp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x1400116d3", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x18]" + "operands": "rax, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x1400116d7", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 8], rax" + "operands": "qword ptr [rbp - 8], rax", + "stack_offset": 0 }, { "address": "0x1400116db", "size": 5, "mnemonic": "mov", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x1400116e0", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x20], eax" + "operands": "dword ptr [rbp - 0x20], eax", + "stack_offset": 0 }, { "address": "0x1400116e3", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x1c], eax" + "operands": "dword ptr [rbp - 0x1c], eax", + "stack_offset": 0 }, { "address": "0x1400116e6", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x1400116e9", "size": 3, "mnemonic": "cmp", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x1400116ec", "size": 2, "mnemonic": "je", - "operands": "0x1400116fa" + "operands": "0x1400116fa", + "stack_offset": 0 } ], "successors": [ @@ -45142,235 +50274,274 @@ "address": "0x1400116fa", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x70]" + "operands": "rcx, qword ptr [rcx + 0x70]", + "stack_offset": 0 }, { "address": "0x1400116fe", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011703", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011707", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x58]" + "operands": "rcx, qword ptr [rcx + 0x58]", + "stack_offset": 0 }, { "address": "0x14001170b", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011710", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011714", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x60]" + "operands": "rcx, qword ptr [rcx + 0x60]", + "stack_offset": 0 }, { "address": "0x140011718", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001171d", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011721", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x68]" + "operands": "rcx, qword ptr [rcx + 0x68]", + "stack_offset": 0 }, { "address": "0x140011725", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001172a", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14001172e", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x48]" + "operands": "rcx, qword ptr [rcx + 0x48]", + "stack_offset": 0 }, { "address": "0x140011732", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011737", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14001173b", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x50]" + "operands": "rcx, qword ptr [rcx + 0x50]", + "stack_offset": 0 }, { "address": "0x14001173f", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011744", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011748", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x78]" + "operands": "rcx, qword ptr [rcx + 0x78]", + "stack_offset": 0 }, { "address": "0x14001174c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011751", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011755", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x80]" + "operands": "rcx, qword ptr [rcx + 0x80]", + "stack_offset": 0 }, { "address": "0x14001175c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011761", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011765", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x3c0]" + "operands": "rcx, qword ptr [rcx + 0x3c0]", + "stack_offset": 0 }, { "address": "0x14001176c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011771", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp + 0x20]" + "operands": "r9, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x140011775", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x10]" + "operands": "r8, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140011779", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp + 0x28]" + "operands": "rdx, [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001177d", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x18]" + "operands": "rcx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x140011781", "size": 5, "mnemonic": "call", - "operands": "0x14001155c" + "operands": "0x14001155c", + "stack_offset": 0 }, { "address": "0x140011786", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x20]" + "operands": "r9, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14001178a", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 8]" + "operands": "r8, [rbp - 8]", + "stack_offset": 0 }, { "address": "0x14001178e", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x1c]" + "operands": "rdx, [rbp - 0x1c]", + "stack_offset": 0 }, { "address": "0x140011792", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x18]" + "operands": "rcx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x140011796", "size": 5, "mnemonic": "call", - "operands": "0x1400114d4" + "operands": "0x1400114d4", + "stack_offset": 0 }, { "address": "0x14001179b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001179f", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400117a0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -45386,253 +50557,295 @@ "address": "0x1400116ee", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x1400116f1", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x1400116f6", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x1400116fa", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x70]" + "operands": "rcx, qword ptr [rcx + 0x70]", + "stack_offset": 0 }, { "address": "0x1400116fe", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011703", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011707", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x58]" + "operands": "rcx, qword ptr [rcx + 0x58]", + "stack_offset": 0 }, { "address": "0x14001170b", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011710", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011714", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x60]" + "operands": "rcx, qword ptr [rcx + 0x60]", + "stack_offset": 0 }, { "address": "0x140011718", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001171d", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011721", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x68]" + "operands": "rcx, qword ptr [rcx + 0x68]", + "stack_offset": 0 }, { "address": "0x140011725", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001172a", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14001172e", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x48]" + "operands": "rcx, qword ptr [rcx + 0x48]", + "stack_offset": 0 }, { "address": "0x140011732", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011737", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14001173b", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x50]" + "operands": "rcx, qword ptr [rcx + 0x50]", + "stack_offset": 0 }, { "address": "0x14001173f", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011744", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011748", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x78]" + "operands": "rcx, qword ptr [rcx + 0x78]", + "stack_offset": 0 }, { "address": "0x14001174c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011751", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011755", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x80]" + "operands": "rcx, qword ptr [rcx + 0x80]", + "stack_offset": 0 }, { "address": "0x14001175c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011761", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140011765", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x3c0]" + "operands": "rcx, qword ptr [rcx + 0x3c0]", + "stack_offset": 0 }, { "address": "0x14001176c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140011771", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp + 0x20]" + "operands": "r9, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x140011775", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x10]" + "operands": "r8, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140011779", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp + 0x28]" + "operands": "rdx, [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001177d", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x18]" + "operands": "rcx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x140011781", "size": 5, "mnemonic": "call", - "operands": "0x14001155c" + "operands": "0x14001155c", + "stack_offset": 0 }, { "address": "0x140011786", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x20]" + "operands": "r9, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14001178a", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 8]" + "operands": "r8, [rbp - 8]", + "stack_offset": 0 }, { "address": "0x14001178e", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x1c]" + "operands": "rdx, [rbp - 0x1c]", + "stack_offset": 0 }, { "address": "0x140011792", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x18]" + "operands": "rcx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x140011796", "size": 5, "mnemonic": "call", - "operands": "0x1400114d4" + "operands": "0x1400114d4", + "stack_offset": 0 }, { "address": "0x14001179b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001179f", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400117a0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -45654,403 +50867,470 @@ "address": "0x140012ca7", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140012ca8", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140012ca9", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140012caa", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140012cac", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140012cae", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140012cb0", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140012cb2", "size": 4, "mnemonic": "lea", - "operands": "rbp, [rax - 0x57]" + "operands": "rbp, [rax - 0x57]", + "stack_offset": 0 }, { "address": "0x140012cb6", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xd0" + "operands": "rsp, 0xd0", + "stack_offset": 0 }, { "address": "0x140012cbd", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbp - 9], 0xfffffffffffffffe" + "operands": "qword ptr [rbp - 9], 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x140012cc5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rbx" + "operands": "qword ptr [rax + 8], rbx", + "stack_offset": 0 }, { "address": "0x140012cc9", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1e370]" + "operands": "rax, qword ptr [rip + 0x1e370]", + "stack_offset": 0 }, { "address": "0x140012cd0", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140012cd3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x17], rax" + "operands": "qword ptr [rbp + 0x17], rax", + "stack_offset": 0 }, { "address": "0x140012cd7", "size": 3, "mnemonic": "mov", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x140012cda", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x41], r8" + "operands": "qword ptr [rbp - 0x41], r8", + "stack_offset": 0 }, { "address": "0x140012cde", "size": 3, "mnemonic": "movsxd", - "operands": "r14, edx" + "operands": "r14, edx", + "stack_offset": 0 }, { "address": "0x140012ce1", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140012ce4", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x7f]" + "operands": "rax, qword ptr [rbp + 0x7f]", + "stack_offset": 0 }, { "address": "0x140012ce8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x59], rax" + "operands": "qword ptr [rbp - 0x59], rax", + "stack_offset": 0 }, { "address": "0x140012cec", "size": 3, "mnemonic": "mov", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x140012cef", "size": 3, "mnemonic": "mov", - "operands": "r13, r14" + "operands": "r13, r14", + "stack_offset": 0 }, { "address": "0x140012cf2", "size": 4, "mnemonic": "sar", - "operands": "r13, 6" + "operands": "r13, 6", + "stack_offset": 0 }, { "address": "0x140012cf6", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x39], r13" + "operands": "qword ptr [rbp - 0x39], r13", + "stack_offset": 0 }, { "address": "0x140012cfa", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip - 0x12d01]" + "operands": "rcx, [rip - 0x12d01]", + "stack_offset": 0 }, { "address": "0x140012d01", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x140012d04", "size": 4, "mnemonic": "lea", - "operands": "r15, [rax + rax*8]" + "operands": "r15, [rax + rax*8]", + "stack_offset": 0 }, { "address": "0x140012d08", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + r13*8 + 0x33300]" + "operands": "rax, qword ptr [rcx + r13*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x140012d10", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + r15*8 + 0x28]" + "operands": "rax, qword ptr [rax + r15*8 + 0x28]", + "stack_offset": 0 }, { "address": "0x140012d15", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x19], rax" + "operands": "qword ptr [rbp - 0x19], rax", + "stack_offset": 0 }, { "address": "0x140012d19", "size": 3, "mnemonic": "mov", - "operands": "r12d, r9d" + "operands": "r12d, r9d", + "stack_offset": 0 }, { "address": "0x140012d1c", "size": 3, "mnemonic": "add", - "operands": "r12, r8" + "operands": "r12, r8", + "stack_offset": 0 }, { "address": "0x140012d1f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x61], r12" + "operands": "qword ptr [rbp - 0x61], r12", + "stack_offset": 0 }, { "address": "0x140012d23", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xd4d7]" + "operands": "qword ptr [rip + 0xd4d7]", + "stack_offset": 0 }, { "address": "0x140012d29", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x49], eax" + "operands": "dword ptr [rbp - 0x49], eax", + "stack_offset": 0 }, { "address": "0x140012d2c", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140012d2e", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rbp - 0x59]" + "operands": "r10, qword ptr [rbp - 0x59]", + "stack_offset": 0 }, { "address": "0x140012d32", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [r10 + 0x28], dil" + "operands": "byte ptr [r10 + 0x28], dil", + "stack_offset": 0 }, { "address": "0x140012d36", "size": 2, "mnemonic": "jne", - "operands": "0x140012d44" + "operands": "0x140012d44", + "stack_offset": 0 }, { "address": "0x140012d38", "size": 3, "mnemonic": "mov", - "operands": "rcx, r10" + "operands": "rcx, r10", + "stack_offset": 0 }, { "address": "0x140012d3b", "size": 5, "mnemonic": "call", - "operands": "0x14000d940" + "operands": "0x14000d940", + "stack_offset": 0 }, { "address": "0x140012d40", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rbp - 0x59]" + "operands": "r10, qword ptr [rbp - 0x59]", + "stack_offset": 0 }, { "address": "0x140012d44", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r10 + 0x18]" + "operands": "rcx, qword ptr [r10 + 0x18]", + "stack_offset": 0 }, { "address": "0x140012d48", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rcx + 0xc]" + "operands": "ecx, dword ptr [rcx + 0xc]", + "stack_offset": 0 }, { "address": "0x140012d4b", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x45], ecx" + "operands": "dword ptr [rbp - 0x45], ecx", + "stack_offset": 0 }, { "address": "0x140012d4e", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140012d50", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x140012d53", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 8], eax" + "operands": "dword ptr [rbx + 8], eax", + "stack_offset": 0 }, { "address": "0x140012d56", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rbp - 0x41], r12" + "operands": "qword ptr [rbp - 0x41], r12", + "stack_offset": 0 }, { "address": "0x140012d5a", "size": 6, "mnemonic": "jae", - "operands": "0x14001310d" + "operands": "0x14001310d", + "stack_offset": 0 }, { "address": "0x140012d60", "size": 3, "mnemonic": "mov", - "operands": "r11, r14" + "operands": "r11, r14", + "stack_offset": 0 }, { "address": "0x140012d63", "size": 4, "mnemonic": "sar", - "operands": "r11, 6" + "operands": "r11, 6", + "stack_offset": 0 }, { "address": "0x140012d67", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x11], r11" + "operands": "qword ptr [rbp - 0x11], r11", + "stack_offset": 0 }, { "address": "0x140012d6b", "size": 2, "mnemonic": "mov", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x140012d6d", "size": 2, "mnemonic": "mov", - "operands": "al, byte ptr [rsi]" + "operands": "al, byte ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140012d6f", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x71], al" + "operands": "byte ptr [rbp - 0x71], al", + "stack_offset": 0 }, { "address": "0x140012d72", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x6d], edi" + "operands": "dword ptr [rbp - 0x6d], edi", + "stack_offset": 0 }, { "address": "0x140012d75", "size": 6, "mnemonic": "mov", - "operands": "r12d, 1" + "operands": "r12d, 1", + "stack_offset": 0 }, { "address": "0x140012d7b", "size": 6, "mnemonic": "cmp", - "operands": "ecx, 0xfde9" + "operands": "ecx, 0xfde9", + "stack_offset": 0 }, { "address": "0x140012d81", "size": 6, "mnemonic": "jne", - "operands": "0x140012f14" + "operands": "0x140012f14", + "stack_offset": 0 }, { "address": "0x140012d87", "size": 2, "mnemonic": "mov", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x140012d89", "size": 3, "mnemonic": "mov", - "operands": "r14, rdi" + "operands": "r14, rdi", + "stack_offset": 0 }, { "address": "0x140012d8c", "size": 7, "mnemonic": "lea", - "operands": "r12, [rip - 0x12d93]" + "operands": "r12, [rip - 0x12d93]", + "stack_offset": 0 }, { "address": "0x140012d93", "size": 8, "mnemonic": "lea", - "operands": "rcx, [r15*8 + 0x3e]" + "operands": "rcx, [r15*8 + 0x3e]", + "stack_offset": 0 }, { "address": "0x140012d9b", "size": 8, "mnemonic": "add", - "operands": "rcx, qword ptr [r12 + r11*8 + 0x33300]" + "operands": "rcx, qword ptr [r12 + r11*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x140012da3", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rcx], dil" + "operands": "byte ptr [rcx], dil", + "stack_offset": 0 }, { "address": "0x140012da6", "size": 2, "mnemonic": "je", - "operands": "0x140012db6" + "operands": "0x140012db6", + "stack_offset": 0 } ], "successors": [ @@ -46068,85 +51348,99 @@ "address": "0x140012db6", "size": 3, "mnemonic": "test", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x140012db9", "size": 6, "mnemonic": "jle", - "operands": "0x140012eaa" + "operands": "0x140012eaa", + "stack_offset": 0 }, { "address": "0x140012dbf", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [r12 + r13*8 + 0x33300]" + "operands": "rax, qword ptr [r12 + r13*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x140012dc7", "size": 6, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rax + r15*8 + 0x3e]" + "operands": "ecx, byte ptr [rax + r15*8 + 0x3e]", + "stack_offset": 0 }, { "address": "0x140012dcd", "size": 9, "mnemonic": "movsx", - "operands": "r12d, byte ptr [rcx + r12 + 0x31490]" + "operands": "r12d, byte ptr [rcx + r12 + 0x31490]", + "stack_offset": 0 }, { "address": "0x140012dd6", "size": 3, "mnemonic": "inc", - "operands": "r12d" + "operands": "r12d", + "stack_offset": 0 }, { "address": "0x140012dd9", "size": 3, "mnemonic": "mov", - "operands": "eax, r12d" + "operands": "eax, r12d", + "stack_offset": 0 }, { "address": "0x140012ddc", "size": 2, "mnemonic": "sub", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x140012dde", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x51], eax" + "operands": "dword ptr [rbp - 0x51], eax", + "stack_offset": 0 }, { "address": "0x140012de1", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rbp - 0x61]" + "operands": "r8, qword ptr [rbp - 0x61]", + "stack_offset": 0 }, { "address": "0x140012de5", "size": 3, "mnemonic": "sub", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140012de8", "size": 3, "mnemonic": "movsxd", - "operands": "r9, eax" + "operands": "r9, eax", + "stack_offset": 0 }, { "address": "0x140012deb", "size": 3, "mnemonic": "cmp", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x140012dee", "size": 6, "mnemonic": "jg", - "operands": "0x140013081" + "operands": "0x140013081", + "stack_offset": 0 } ], "successors": [ @@ -46164,31 +51458,36 @@ "address": "0x140012da8", "size": 2, "mnemonic": "inc", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x140012daa", "size": 3, "mnemonic": "inc", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140012dad", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x140012db0", "size": 4, "mnemonic": "cmp", - "operands": "r14, 5" + "operands": "r14, 5", + "stack_offset": 0 }, { "address": "0x140012db4", "size": 2, "mnemonic": "jl", - "operands": "0x140012da3" + "operands": "0x140012da3", + "stack_offset": 0 } ], "successors": [ @@ -46206,79 +51505,92 @@ "address": "0x140013081", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x140013084", "size": 2, "mnemonic": "jle", - "operands": "0x1400130b1" + "operands": "0x1400130b1", + "stack_offset": 0 }, { "address": "0x140013086", "size": 3, "mnemonic": "sub", - "operands": "rsi, r14" + "operands": "rsi, r14", + "stack_offset": 0 }, { "address": "0x140013089", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip - 0x13090]" + "operands": "r9, [rip - 0x13090]", + "stack_offset": 0 }, { "address": "0x140013090", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r14 + r15*8]" + "operands": "rdx, [r14 + r15*8]", + "stack_offset": 0 }, { "address": "0x140013094", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [r9 + r13*8 + 0x33300]" + "operands": "rcx, qword ptr [r9 + r13*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x14001309c", "size": 4, "mnemonic": "mov", - "operands": "al, byte ptr [rsi + r14]" + "operands": "al, byte ptr [rsi + r14]", + "stack_offset": 0 }, { "address": "0x1400130a0", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdx + rcx + 0x3e], al" + "operands": "byte ptr [rdx + rcx + 0x3e], al", + "stack_offset": 0 }, { "address": "0x1400130a4", "size": 2, "mnemonic": "inc", - "operands": "edi" + "operands": "edi", + "stack_offset": 0 }, { "address": "0x1400130a6", "size": 3, "mnemonic": "inc", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400130a9", "size": 3, "mnemonic": "movsxd", - "operands": "rax, edi" + "operands": "rax, edi", + "stack_offset": 0 }, { "address": "0x1400130ac", "size": 3, "mnemonic": "cmp", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x1400130af", "size": 2, "mnemonic": "jl", - "operands": "0x140013090" + "operands": "0x140013090", + "stack_offset": 0 } ], "successors": [ @@ -46296,61 +51608,71 @@ "address": "0x140012df4", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140012df7", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip - 0x12dfe]" + "operands": "r8, [rip - 0x12dfe]", + "stack_offset": 0 }, { "address": "0x140012dfe", "size": 8, "mnemonic": "lea", - "operands": "rdx, [r15*8 + 0x3e]" + "operands": "rdx, [r15*8 + 0x3e]", + "stack_offset": 0 }, { "address": "0x140012e06", "size": 8, "mnemonic": "add", - "operands": "rdx, qword ptr [r8 + r11*8 + 0x33300]" + "operands": "rdx, qword ptr [r8 + r11*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x140012e0e", "size": 2, "mnemonic": "mov", - "operands": "al, byte ptr [rdx]" + "operands": "al, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140012e10", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp + rcx - 1], al" + "operands": "byte ptr [rbp + rcx - 1], al", + "stack_offset": 0 }, { "address": "0x140012e14", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x140012e17", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x140012e1a", "size": 3, "mnemonic": "cmp", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140012e1d", "size": 2, "mnemonic": "jl", - "operands": "0x140012e0e" + "operands": "0x140012e0e", + "stack_offset": 0 } ], "successors": [ @@ -46368,13 +51690,15 @@ "address": "0x140012da3", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rcx], dil" + "operands": "byte ptr [rcx], dil", + "stack_offset": 0 }, { "address": "0x140012da6", "size": 2, "mnemonic": "je", - "operands": "0x140012db6" + "operands": "0x140012db6", + "stack_offset": 0 } ], "successors": [ @@ -46392,55 +51716,64 @@ "address": "0x140013090", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r14 + r15*8]" + "operands": "rdx, [r14 + r15*8]", + "stack_offset": 0 }, { "address": "0x140013094", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [r9 + r13*8 + 0x33300]" + "operands": "rcx, qword ptr [r9 + r13*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x14001309c", "size": 4, "mnemonic": "mov", - "operands": "al, byte ptr [rsi + r14]" + "operands": "al, byte ptr [rsi + r14]", + "stack_offset": 0 }, { "address": "0x1400130a0", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdx + rcx + 0x3e], al" + "operands": "byte ptr [rdx + rcx + 0x3e], al", + "stack_offset": 0 }, { "address": "0x1400130a4", "size": 2, "mnemonic": "inc", - "operands": "edi" + "operands": "edi", + "stack_offset": 0 }, { "address": "0x1400130a6", "size": 3, "mnemonic": "inc", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400130a9", "size": 3, "mnemonic": "movsxd", - "operands": "rax, edi" + "operands": "rax, edi", + "stack_offset": 0 }, { "address": "0x1400130ac", "size": 3, "mnemonic": "cmp", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x1400130af", "size": 2, "mnemonic": "jl", - "operands": "0x140013090" + "operands": "0x140013090", + "stack_offset": 0 } ], "successors": [ @@ -46458,13 +51791,15 @@ "address": "0x1400130b1", "size": 4, "mnemonic": "add", - "operands": "dword ptr [rbx + 4], r8d" + "operands": "dword ptr [rbx + 4], r8d", + "stack_offset": 0 }, { "address": "0x1400130b5", "size": 2, "mnemonic": "jmp", - "operands": "0x14001310d" + "operands": "0x14001310d", + "stack_offset": 0 } ], "successors": [ @@ -46481,37 +51816,43 @@ "address": "0x140012e0e", "size": 2, "mnemonic": "mov", - "operands": "al, byte ptr [rdx]" + "operands": "al, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140012e10", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp + rcx - 1], al" + "operands": "byte ptr [rbp + rcx - 1], al", + "stack_offset": 0 }, { "address": "0x140012e14", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x140012e17", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x140012e1a", "size": 3, "mnemonic": "cmp", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140012e1d", "size": 2, "mnemonic": "jl", - "operands": "0x140012e0e" + "operands": "0x140012e0e", + "stack_offset": 0 } ], "successors": [ @@ -46529,97 +51870,113 @@ "address": "0x140012e1f", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x140012e22", "size": 2, "mnemonic": "jle", - "operands": "0x140012e41" + "operands": "0x140012e41", + "stack_offset": 0 }, { "address": "0x140012e24", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 1]" + "operands": "rcx, [rbp - 1]", + "stack_offset": 0 }, { "address": "0x140012e28", "size": 3, "mnemonic": "add", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140012e2b", "size": 3, "mnemonic": "mov", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x140012e2e", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x140012e31", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x140012e36", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rbp - 0x59]" + "operands": "r10, qword ptr [rbp - 0x59]", + "stack_offset": 0 }, { "address": "0x140012e3a", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip - 0x12e41]" + "operands": "r8, [rip - 0x12e41]", + "stack_offset": 0 }, { "address": "0x140012e41", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140012e44", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdx + r15*8]" + "operands": "rcx, [rdx + r15*8]", + "stack_offset": 0 }, { "address": "0x140012e48", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [r8 + r13*8 + 0x33300]" + "operands": "rax, qword ptr [r8 + r13*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x140012e50", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rcx + rax + 0x3e], dil" + "operands": "byte ptr [rcx + rax + 0x3e], dil", + "stack_offset": 0 }, { "address": "0x140012e55", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x140012e58", "size": 3, "mnemonic": "cmp", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140012e5b", "size": 2, "mnemonic": "jl", - "operands": "0x140012e44" + "operands": "0x140012e44", + "stack_offset": 0 } ], "successors": [ @@ -46637,85 +51994,99 @@ "address": "0x14001310d", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140013110", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x17]" + "operands": "rcx, qword ptr [rbp + 0x17]", + "stack_offset": 0 }, { "address": "0x140013114", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140013117", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14001311c", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x110]" + "operands": "rbx, qword ptr [rsp + 0x110]", + "stack_offset": 0 }, { "address": "0x140013124", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xd0" + "operands": "rsp, 0xd0", + "stack_offset": 0 }, { "address": "0x14001312b", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001312d", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001312f", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140013131", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140013133", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140013134", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140013135", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140013136", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -46731,37 +52102,43 @@ "address": "0x140012e44", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdx + r15*8]" + "operands": "rcx, [rdx + r15*8]", + "stack_offset": 0 }, { "address": "0x140012e48", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [r8 + r13*8 + 0x33300]" + "operands": "rax, qword ptr [r8 + r13*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x140012e50", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rcx + rax + 0x3e], dil" + "operands": "byte ptr [rcx + rax + 0x3e], dil", + "stack_offset": 0 }, { "address": "0x140012e55", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x140012e58", "size": 3, "mnemonic": "cmp", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140012e5b", "size": 2, "mnemonic": "jl", - "operands": "0x140012e44" + "operands": "0x140012e44", + "stack_offset": 0 } ], "successors": [ @@ -46779,97 +52156,113 @@ "address": "0x140012e5d", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x31], rdi" + "operands": "qword ptr [rbp - 0x31], rdi", + "stack_offset": 0 }, { "address": "0x140012e61", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 1]" + "operands": "rax, [rbp - 1]", + "stack_offset": 0 }, { "address": "0x140012e65", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x29], rax" + "operands": "qword ptr [rbp - 0x29], rax", + "stack_offset": 0 }, { "address": "0x140012e69", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140012e6b", "size": 4, "mnemonic": "cmp", - "operands": "r12d, 4" + "operands": "r12d, 4", + "stack_offset": 0 }, { "address": "0x140012e6f", "size": 3, "mnemonic": "sete", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x140012e72", "size": 2, "mnemonic": "inc", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x140012e74", "size": 3, "mnemonic": "mov", - "operands": "r12d, eax" + "operands": "r12d, eax", + "stack_offset": 0 }, { "address": "0x140012e77", "size": 3, "mnemonic": "mov", - "operands": "r8d, eax" + "operands": "r8d, eax", + "stack_offset": 0 }, { "address": "0x140012e7a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r10" + "operands": "qword ptr [rsp + 0x20], r10", + "stack_offset": 0 }, { "address": "0x140012e7f", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x31]" + "operands": "r9, [rbp - 0x31]", + "stack_offset": 0 }, { "address": "0x140012e83", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x29]" + "operands": "rdx, [rbp - 0x29]", + "stack_offset": 0 }, { "address": "0x140012e87", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x6d]" + "operands": "rcx, [rbp - 0x6d]", + "stack_offset": 0 }, { "address": "0x140012e8b", "size": 5, "mnemonic": "call", - "operands": "0x140016e74" + "operands": "0x140016e74", + "stack_offset": 0 }, { "address": "0x140012e90", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x140012e94", "size": 6, "mnemonic": "je", - "operands": "0x14001310d" + "operands": "0x14001310d", + "stack_offset": 0 } ], "successors": [ @@ -46887,31 +52280,36 @@ "address": "0x140012e9a", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp - 0x51]" + "operands": "eax, dword ptr [rbp - 0x51]", + "stack_offset": 0 }, { "address": "0x140012e9d", "size": 2, "mnemonic": "dec", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x140012e9f", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, eax" + "operands": "rcx, eax", + "stack_offset": 0 }, { "address": "0x140012ea2", "size": 3, "mnemonic": "add", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x140012ea5", "size": 5, "mnemonic": "jmp", - "operands": "0x140012fac" + "operands": "0x140012fac", + "stack_offset": 0 } ], "successors": [ @@ -46928,85 +52326,99 @@ "address": "0x140012fac", "size": 3, "mnemonic": "inc", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140012faf", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rdi" + "operands": "qword ptr [rsp + 0x38], rdi", + "stack_offset": 0 }, { "address": "0x140012fb4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rdi" + "operands": "qword ptr [rsp + 0x30], rdi", + "stack_offset": 0 }, { "address": "0x140012fb9", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], 5" + "operands": "dword ptr [rsp + 0x28], 5", + "stack_offset": 0 }, { "address": "0x140012fc1", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0xf]" + "operands": "rax, [rbp + 0xf]", + "stack_offset": 0 }, { "address": "0x140012fc5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140012fca", "size": 3, "mnemonic": "mov", - "operands": "r9d, r12d" + "operands": "r9d, r12d", + "stack_offset": 0 }, { "address": "0x140012fcd", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x6d]" + "operands": "r8, [rbp - 0x6d]", + "stack_offset": 0 }, { "address": "0x140012fd1", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140012fd3", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp - 0x49]" + "operands": "ecx, dword ptr [rbp - 0x49]", + "stack_offset": 0 }, { "address": "0x140012fd6", "size": 5, "mnemonic": "call", - "operands": "0x1400170bc" + "operands": "0x1400170bc", + "stack_offset": 0 }, { "address": "0x140012fdb", "size": 3, "mnemonic": "mov", - "operands": "r14d, eax" + "operands": "r14d, eax", + "stack_offset": 0 }, { "address": "0x140012fde", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140012fe0", "size": 6, "mnemonic": "je", - "operands": "0x14001310d" + "operands": "0x14001310d", + "stack_offset": 0 } ], "successors": [ @@ -47024,61 +52436,71 @@ "address": "0x140012fe6", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x69], edi" + "operands": "dword ptr [rbp - 0x69], edi", + "stack_offset": 0 }, { "address": "0x140012fe9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x140012fee", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x69]" + "operands": "r9, [rbp - 0x69]", + "stack_offset": 0 }, { "address": "0x140012ff2", "size": 3, "mnemonic": "mov", - "operands": "r8d, eax" + "operands": "r8d, eax", + "stack_offset": 0 }, { "address": "0x140012ff5", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp + 0xf]" + "operands": "rdx, [rbp + 0xf]", + "stack_offset": 0 }, { "address": "0x140012ff9", "size": 4, "mnemonic": "mov", - "operands": "r12, qword ptr [rbp - 0x19]" + "operands": "r12, qword ptr [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x140012ffd", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140013000", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xd14a]" + "operands": "qword ptr [rip + 0xd14a]", + "stack_offset": 0 }, { "address": "0x140013006", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140013008", "size": 6, "mnemonic": "je", - "operands": "0x140013105" + "operands": "0x140013105", + "stack_offset": 0 } ], "successors": [ @@ -47096,97 +52518,113 @@ "address": "0x140013105", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xcfed]" + "operands": "qword ptr [rip + 0xcfed]", + "stack_offset": 0 }, { "address": "0x14001310b", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rbx], eax" + "operands": "dword ptr [rbx], eax", + "stack_offset": 0 }, { "address": "0x14001310d", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140013110", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x17]" + "operands": "rcx, qword ptr [rbp + 0x17]", + "stack_offset": 0 }, { "address": "0x140013114", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140013117", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14001311c", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x110]" + "operands": "rbx, qword ptr [rsp + 0x110]", + "stack_offset": 0 }, { "address": "0x140013124", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xd0" + "operands": "rsp, 0xd0", + "stack_offset": 0 }, { "address": "0x14001312b", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001312d", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001312f", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140013131", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140013133", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140013134", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140013135", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140013136", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -47202,37 +52640,43 @@ "address": "0x14001300e", "size": 3, "mnemonic": "mov", - "operands": "edx, dword ptr [rbx + 8]" + "operands": "edx, dword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140013011", "size": 3, "mnemonic": "sub", - "operands": "edx, dword ptr [rbp - 0x41]" + "operands": "edx, dword ptr [rbp - 0x41]", + "stack_offset": 0 }, { "address": "0x140013014", "size": 2, "mnemonic": "add", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x140013016", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 4], edx" + "operands": "dword ptr [rbx + 4], edx", + "stack_offset": 0 }, { "address": "0x140013019", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp - 0x69], r14d" + "operands": "dword ptr [rbp - 0x69], r14d", + "stack_offset": 0 }, { "address": "0x14001301d", "size": 6, "mnemonic": "jb", - "operands": "0x14001310d" + "operands": "0x14001310d", + "stack_offset": 0 } ], "successors": [ @@ -47250,73 +52694,85 @@ "address": "0x140013023", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x71], 0xa" + "operands": "byte ptr [rbp - 0x71], 0xa", + "stack_offset": 0 }, { "address": "0x140013027", "size": 2, "mnemonic": "jne", - "operands": "0x140013067" + "operands": "0x140013067", + "stack_offset": 0 }, { "address": "0x140013029", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xd" + "operands": "eax, 0xd", + "stack_offset": 0 }, { "address": "0x14001302e", "size": 4, "mnemonic": "mov", - "operands": "word ptr [rbp - 0x71], ax" + "operands": "word ptr [rbp - 0x71], ax", + "stack_offset": 0 }, { "address": "0x140013032", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x140013037", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x69]" + "operands": "r9, [rbp - 0x69]", + "stack_offset": 0 }, { "address": "0x14001303b", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rax - 0xc]" + "operands": "r8d, [rax - 0xc]", + "stack_offset": 0 }, { "address": "0x14001303f", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x71]" + "operands": "rdx, [rbp - 0x71]", + "stack_offset": 0 }, { "address": "0x140013043", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140013046", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xd104]" + "operands": "qword ptr [rip + 0xd104]", + "stack_offset": 0 }, { "address": "0x14001304c", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001304e", "size": 6, "mnemonic": "je", - "operands": "0x140013105" + "operands": "0x140013105", + "stack_offset": 0 } ], "successors": [ @@ -47334,13 +52790,15 @@ "address": "0x140013054", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp - 0x69], 1" + "operands": "dword ptr [rbp - 0x69], 1", + "stack_offset": 0 }, { "address": "0x140013058", "size": 6, "mnemonic": "jb", - "operands": "0x14001310d" + "operands": "0x14001310d", + "stack_offset": 0 } ], "successors": [ @@ -47358,55 +52816,64 @@ "address": "0x14001305e", "size": 3, "mnemonic": "inc", - "operands": "dword ptr [rbx + 8]" + "operands": "dword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140013061", "size": 3, "mnemonic": "inc", - "operands": "dword ptr [rbx + 4]" + "operands": "dword ptr [rbx + 4]", + "stack_offset": 0 }, { "address": "0x140013064", "size": 3, "mnemonic": "mov", - "operands": "edx, dword ptr [rbx + 4]" + "operands": "edx, dword ptr [rbx + 4]", + "stack_offset": 0 }, { "address": "0x140013067", "size": 4, "mnemonic": "cmp", - "operands": "rsi, qword ptr [rbp - 0x61]" + "operands": "rsi, qword ptr [rbp - 0x61]", + "stack_offset": 0 }, { "address": "0x14001306b", "size": 6, "mnemonic": "jae", - "operands": "0x14001310d" + "operands": "0x14001310d", + "stack_offset": 0 }, { "address": "0x140013071", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rbp - 0x59]" + "operands": "r10, qword ptr [rbp - 0x59]", + "stack_offset": 0 }, { "address": "0x140013075", "size": 4, "mnemonic": "mov", - "operands": "r11, qword ptr [rbp - 0x11]" + "operands": "r11, qword ptr [rbp - 0x11]", + "stack_offset": 0 }, { "address": "0x140013079", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp - 0x45]" + "operands": "ecx, dword ptr [rbp - 0x45]", + "stack_offset": 0 }, { "address": "0x14001307c", "size": 5, "mnemonic": "jmp", - "operands": "0x140012d6d" + "operands": "0x140012d6d", + "stack_offset": 0 } ], "successors": [ @@ -47423,79 +52890,92 @@ "address": "0x140012d6d", "size": 2, "mnemonic": "mov", - "operands": "al, byte ptr [rsi]" + "operands": "al, byte ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140012d6f", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x71], al" + "operands": "byte ptr [rbp - 0x71], al", + "stack_offset": 0 }, { "address": "0x140012d72", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x6d], edi" + "operands": "dword ptr [rbp - 0x6d], edi", + "stack_offset": 0 }, { "address": "0x140012d75", "size": 6, "mnemonic": "mov", - "operands": "r12d, 1" + "operands": "r12d, 1", + "stack_offset": 0 }, { "address": "0x140012d7b", "size": 6, "mnemonic": "cmp", - "operands": "ecx, 0xfde9" + "operands": "ecx, 0xfde9", + "stack_offset": 0 }, { "address": "0x140012d81", "size": 6, "mnemonic": "jne", - "operands": "0x140012f14" + "operands": "0x140012f14", + "stack_offset": 0 }, { "address": "0x140012d87", "size": 2, "mnemonic": "mov", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x140012d89", "size": 3, "mnemonic": "mov", - "operands": "r14, rdi" + "operands": "r14, rdi", + "stack_offset": 0 }, { "address": "0x140012d8c", "size": 7, "mnemonic": "lea", - "operands": "r12, [rip - 0x12d93]" + "operands": "r12, [rip - 0x12d93]", + "stack_offset": 0 }, { "address": "0x140012d93", "size": 8, "mnemonic": "lea", - "operands": "rcx, [r15*8 + 0x3e]" + "operands": "rcx, [r15*8 + 0x3e]", + "stack_offset": 0 }, { "address": "0x140012d9b", "size": 8, "mnemonic": "add", - "operands": "rcx, qword ptr [r12 + r11*8 + 0x33300]" + "operands": "rcx, qword ptr [r12 + r11*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x140012da3", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rcx], dil" + "operands": "byte ptr [rcx], dil", + "stack_offset": 0 }, { "address": "0x140012da6", "size": 2, "mnemonic": "je", - "operands": "0x140012db6" + "operands": "0x140012db6", + "stack_offset": 0 } ], "successors": [ @@ -47519,103 +52999,120 @@ "address": "0x1400135f0", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400135f2", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400135f3", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400135f4", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400135f5", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400135f7", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400135f9", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400135fb", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400135fd", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140013600", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x68" + "operands": "rsp, 0x68", + "stack_offset": 0 }, { "address": "0x140013604", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140013606", "size": 3, "mnemonic": "mov", - "operands": "r14d, r8d" + "operands": "r14d, r8d", + "stack_offset": 0 }, { "address": "0x140013609", "size": 3, "mnemonic": "movsxd", - "operands": "r13, ecx" + "operands": "r13, ecx", + "stack_offset": 0 }, { "address": "0x14001360c", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x14001360f", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x140013612", "size": 3, "mnemonic": "test", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140013615", "size": 6, "mnemonic": "je", - "operands": "0x14001390c" + "operands": "0x14001390c", + "stack_offset": 0 } ], "successors": [ @@ -47633,67 +53130,78 @@ "address": "0x14001390c", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001390e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x68" + "operands": "rsp, 0x68", + "stack_offset": 0 }, { "address": "0x140013912", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140013914", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140013916", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140013918", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001391a", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001391b", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001391c", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001391d", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001391e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -47709,91 +53217,106 @@ "address": "0x14001361b", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001361e", "size": 2, "mnemonic": "jne", - "operands": "0x140013657" + "operands": "0x140013657", + "stack_offset": 0 }, { "address": "0x140013620", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r9 + 0x38], 1" + "operands": "byte ptr [r9 + 0x38], 1", + "stack_offset": 0 }, { "address": "0x140013625", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140013628", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r9 + 0x34], edi" + "operands": "dword ptr [r9 + 0x34], edi", + "stack_offset": 0 }, { "address": "0x14001362c", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001362e", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r9 + 0x30], 1" + "operands": "byte ptr [r9 + 0x30], 1", + "stack_offset": 0 }, { "address": "0x140013633", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140013635", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [r9 + 0x2c], 0x16" + "operands": "dword ptr [r9 + 0x2c], 0x16", + "stack_offset": 0 }, { "address": "0x14001363d", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140013640", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rbx" + "operands": "qword ptr [rsp + 0x28], rbx", + "stack_offset": 0 }, { "address": "0x140013645", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x14001364a", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x14001364f", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140013652", "size": 5, "mnemonic": "jmp", - "operands": "0x14001390e" + "operands": "0x14001390e", + "stack_offset": 0 } ], "successors": [ @@ -47810,61 +53333,71 @@ "address": "0x14001390e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x68" + "operands": "rsp, 0x68", + "stack_offset": 0 }, { "address": "0x140013912", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140013914", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140013916", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140013918", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001391a", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001391b", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001391c", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001391d", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001391e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -47886,181 +53419,211 @@ "address": "0x140013c57", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140013c58", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140013c59", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140013c5a", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140013c5c", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140013c5e", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140013c60", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140013c62", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140013c66", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x140013c69", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140013c6c", "size": 5, "mnemonic": "call", - "operands": "0x140012934" + "operands": "0x140012934", + "stack_offset": 0 }, { "address": "0x140013c71", "size": 3, "mnemonic": "movsxd", - "operands": "r12, eax" + "operands": "r12, eax", + "stack_offset": 0 }, { "address": "0x140013c74", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1f685]" + "operands": "rdx, [rip + 0x1f685]", + "stack_offset": 0 }, { "address": "0x140013c7b", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140013c7d", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140013c80", "size": 3, "mnemonic": "and", - "operands": "ecx, 0x3f" + "operands": "ecx, 0x3f", + "stack_offset": 0 }, { "address": "0x140013c83", "size": 3, "mnemonic": "mov", - "operands": "r15d, edi" + "operands": "r15d, edi", + "stack_offset": 0 }, { "address": "0x140013c86", "size": 3, "mnemonic": "mov", - "operands": "rax, r12" + "operands": "rax, r12", + "stack_offset": 0 }, { "address": "0x140013c89", "size": 4, "mnemonic": "sar", - "operands": "rax, 6" + "operands": "rax, 6", + "stack_offset": 0 }, { "address": "0x140013c8d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rax" + "operands": "qword ptr [rsp + 0x60], rax", + "stack_offset": 0 }, { "address": "0x140013c92", "size": 4, "mnemonic": "lea", - "operands": "r13, [rcx + rcx*8]" + "operands": "r13, [rcx + rcx*8]", + "stack_offset": 0 }, { "address": "0x140013c96", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx + rax*8]" + "operands": "rax, qword ptr [rdx + rax*8]", + "stack_offset": 0 }, { "address": "0x140013c9a", "size": 5, "mnemonic": "mov", - "operands": "sil, byte ptr [rax + r13*8 + 0x39]" + "operands": "sil, byte ptr [rax + r13*8 + 0x39]", + "stack_offset": 0 }, { "address": "0x140013c9f", "size": 4, "mnemonic": "cmp", - "operands": "sil, 1" + "operands": "sil, 1", + "stack_offset": 0 }, { "address": "0x140013ca3", "size": 4, "mnemonic": "sete", - "operands": "r15b" + "operands": "r15b", + "stack_offset": 0 }, { "address": "0x140013ca7", "size": 3, "mnemonic": "inc", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140013caa", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x10], edi" + "operands": "dword ptr [rbx + 0x10], edi", + "stack_offset": 0 }, { "address": "0x140013cad", "size": 2, "mnemonic": "jne", - "operands": "0x140013cb7" + "operands": "0x140013cb7", + "stack_offset": 0 }, { "address": "0x140013caf", "size": 3, "mnemonic": "mov", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x140013cb2", "size": 5, "mnemonic": "jmp", - "operands": "0x140013d8e" + "operands": "0x140013d8e", + "stack_offset": 0 } ], "successors": [ @@ -48077,61 +53640,71 @@ "address": "0x140013d8e", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x68]" + "operands": "rbx, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140013d93", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140013d97", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140013d99", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140013d9b", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140013d9d", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140013d9f", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140013da0", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140013da1", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140013da2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -48153,139 +53726,162 @@ "address": "0x140013da9", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140013daa", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140013dab", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140013dac", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140013dae", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140013db0", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140013db2", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140013db4", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x1050" + "operands": "eax, 0x1050", + "stack_offset": 0 }, { "address": "0x140013db9", "size": 5, "mnemonic": "call", - "operands": "0x1400057a0" + "operands": "0x1400057a0", + "stack_offset": 0 }, { "address": "0x140013dbe", "size": 3, "mnemonic": "sub", - "operands": "rsp, rax" + "operands": "rsp, rax", + "stack_offset": 0 }, { "address": "0x140013dc1", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1d278]" + "operands": "rax, qword ptr [rip + 0x1d278]", + "stack_offset": 0 }, { "address": "0x140013dc8", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140013dcb", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x1040], rax" + "operands": "qword ptr [rsp + 0x1040], rax", + "stack_offset": 0 }, { "address": "0x140013dd3", "size": 3, "mnemonic": "mov", - "operands": "r15, r8" + "operands": "r15, r8", + "stack_offset": 0 }, { "address": "0x140013dd6", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x140013dd9", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140013ddc", "size": 5, "mnemonic": "call", - "operands": "0x140012934" + "operands": "0x140012934", + "stack_offset": 0 }, { "address": "0x140013de1", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140013de3", "size": 3, "mnemonic": "movsxd", - "operands": "r14, eax" + "operands": "r14, eax", + "stack_offset": 0 }, { "address": "0x140013de6", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x10], edi" + "operands": "dword ptr [rbx + 0x10], edi", + "stack_offset": 0 }, { "address": "0x140013de9", "size": 2, "mnemonic": "jne", - "operands": "0x140013df3" + "operands": "0x140013df3", + "stack_offset": 0 }, { "address": "0x140013deb", "size": 3, "mnemonic": "mov", - "operands": "rax, rbp" + "operands": "rax, rbp", + "stack_offset": 0 }, { "address": "0x140013dee", "size": 5, "mnemonic": "jmp", - "operands": "0x140013eff" + "operands": "0x140013eff", + "stack_offset": 0 } ], "successors": [ @@ -48302,79 +53898,92 @@ "address": "0x140013eff", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x1040]" + "operands": "rcx, qword ptr [rsp + 0x1040]", + "stack_offset": 0 }, { "address": "0x140013f07", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140013f0a", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140013f0f", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x1090]" + "operands": "rbx, qword ptr [rsp + 0x1090]", + "stack_offset": 0 }, { "address": "0x140013f17", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x1050" + "operands": "rsp, 0x1050", + "stack_offset": 0 }, { "address": "0x140013f1e", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140013f20", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140013f22", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140013f24", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140013f26", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140013f27", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140013f28", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140013f29", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -48396,133 +54005,155 @@ "address": "0x140013f8e", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140013f8f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140013f92", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140013f96", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x140013f9b", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x1f24e], 0" + "operands": "dword ptr [rip + 0x1f24e], 0", + "stack_offset": 0 }, { "address": "0x140013fa2", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x140013fa6", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x140013faa", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140013fae", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140013fb2", "size": 2, "mnemonic": "jne", - "operands": "0x140013fc4" + "operands": "0x140013fc4", + "stack_offset": 0 }, { "address": "0x140013fb4", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x1d46d]" + "operands": "xmm0, xmmword ptr [rip + 0x1d46d]", + "stack_offset": 0 }, { "address": "0x140013fbb", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x140013fbf", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x140013fc4", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x40]" + "operands": "rdx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140013fc8", "size": 5, "mnemonic": "call", - "operands": "0x140013a8c" + "operands": "0x140013a8c", + "stack_offset": 0 }, { "address": "0x140013fcd", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x140013fd1", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x140013fd4", "size": 2, "mnemonic": "jne", - "operands": "0x140013fe1" + "operands": "0x140013fe1", + "stack_offset": 0 }, { "address": "0x140013fd6", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140013fda", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x140013fe1", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140013fe5", "size": 2, "mnemonic": "je", - "operands": "0x140013ff6" + "operands": "0x140013ff6", + "stack_offset": 0 } ], "successors": [ @@ -48540,13 +54171,15 @@ "address": "0x140013ff6", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140013ffa", "size": 2, "mnemonic": "je", - "operands": "0x14001400b" + "operands": "0x14001400b", + "stack_offset": 0 } ], "successors": [ @@ -48564,37 +54197,43 @@ "address": "0x140013fe7", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x140013fea", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140013fee", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140013ff3", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x140013ff6", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140013ffa", "size": 2, "mnemonic": "je", - "operands": "0x14001400b" + "operands": "0x14001400b", + "stack_offset": 0 } ], "successors": [ @@ -48612,37 +54251,43 @@ "address": "0x14001400b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140014010", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140014013", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140014018", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14001401c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001401d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -48658,61 +54303,71 @@ "address": "0x140013ffc", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x140013fff", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140014003", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140014008", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x14001400b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140014010", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140014013", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140014018", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14001401c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001401d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -48734,139 +54389,162 @@ "address": "0x140014279", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001427a", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001427b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001427c", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001427e", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140014280", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140014282", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140014284", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140014288", "size": 3, "mnemonic": "movsxd", - "operands": "r15, ecx" + "operands": "r15, ecx", + "stack_offset": 0 }, { "address": "0x14001428b", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001428d", "size": 3, "mnemonic": "mov", - "operands": "rax, r15" + "operands": "rax, r15", + "stack_offset": 0 }, { "address": "0x140014290", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x1f069]" + "operands": "rcx, [rip + 0x1f069]", + "stack_offset": 0 }, { "address": "0x140014297", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x14001429a", "size": 3, "mnemonic": "mov", - "operands": "r12, r15" + "operands": "r12, r15", + "stack_offset": 0 }, { "address": "0x14001429d", "size": 4, "mnemonic": "sar", - "operands": "r12, 6" + "operands": "r12, 6", + "stack_offset": 0 }, { "address": "0x1400142a1", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x1400142a4", "size": 4, "mnemonic": "lea", - "operands": "r9d, [rdi + 0xa]" + "operands": "r9d, [rdi + 0xa]", + "stack_offset": 0 }, { "address": "0x1400142a8", "size": 3, "mnemonic": "mov", - "operands": "r14, r15" + "operands": "r14, r15", + "stack_offset": 0 }, { "address": "0x1400142ab", "size": 4, "mnemonic": "lea", - "operands": "rbp, [rax + rax*8]" + "operands": "rbp, [rax + rax*8]", + "stack_offset": 0 }, { "address": "0x1400142af", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + r12*8]" + "operands": "rax, qword ptr [rcx + r12*8]", + "stack_offset": 0 }, { "address": "0x1400142b3", "size": 5, "mnemonic": "mov", - "operands": "r10, qword ptr [rax + rbp*8 + 0x28]" + "operands": "r10, qword ptr [rax + rbp*8 + 0x28]", + "stack_offset": 0 }, { "address": "0x1400142b8", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x1400142bb", "size": 2, "mnemonic": "je", - "operands": "0x1400142ca" + "operands": "0x1400142ca", + "stack_offset": 0 } ], "successors": [ @@ -48884,67 +54562,78 @@ "address": "0x1400142ca", "size": 5, "mnemonic": "and", - "operands": "byte ptr [rax + rbp*8 + 0x38], 0xfb" + "operands": "byte ptr [rax + rbp*8 + 0x38], 0xfb", + "stack_offset": 0 }, { "address": "0x1400142cf", "size": 4, "mnemonic": "lea", - "operands": "r8, [rdx + r8*2]" + "operands": "r8, [rdx + r8*2]", + "stack_offset": 0 }, { "address": "0x1400142d3", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x1400142d6", "size": 3, "mnemonic": "mov", - "operands": "rbx, rsi" + "operands": "rbx, rsi", + "stack_offset": 0 }, { "address": "0x1400142d9", "size": 3, "mnemonic": "cmp", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x1400142dc", "size": 6, "mnemonic": "jae", - "operands": "0x14001444e" + "operands": "0x14001444e", + "stack_offset": 0 }, { "address": "0x1400142e2", "size": 6, "mnemonic": "mov", - "operands": "r11d, 0xd" + "operands": "r11d, 0xd", + "stack_offset": 0 }, { "address": "0x1400142e8", "size": 4, "mnemonic": "lea", - "operands": "r13d, [r11 - 0xb]" + "operands": "r13d, [r11 - 0xb]", + "stack_offset": 0 }, { "address": "0x1400142ec", "size": 3, "mnemonic": "movzx", - "operands": "edx, word ptr [rax]" + "operands": "edx, word ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400142ef", "size": 4, "mnemonic": "cmp", - "operands": "dx, 0x1a" + "operands": "dx, 0x1a", + "stack_offset": 0 }, { "address": "0x1400142f3", "size": 6, "mnemonic": "je", - "operands": "0x140014419" + "operands": "0x140014419", + "stack_offset": 0 } ], "successors": [ @@ -48962,25 +54651,29 @@ "address": "0x1400142bd", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rdx], r9w" + "operands": "word ptr [rdx], r9w", + "stack_offset": 0 }, { "address": "0x1400142c1", "size": 2, "mnemonic": "jne", - "operands": "0x1400142ca" + "operands": "0x1400142ca", + "stack_offset": 0 }, { "address": "0x1400142c3", "size": 5, "mnemonic": "or", - "operands": "byte ptr [rax + rbp*8 + 0x38], 4" + "operands": "byte ptr [rax + rbp*8 + 0x38], 4", + "stack_offset": 0 }, { "address": "0x1400142c8", "size": 2, "mnemonic": "jmp", - "operands": "0x1400142cf" + "operands": "0x1400142cf", + "stack_offset": 0 } ], "successors": [ @@ -48997,79 +54690,92 @@ "address": "0x140014419", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x14001441c", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x1eedd]" + "operands": "r9, [rip + 0x1eedd]", + "stack_offset": 0 }, { "address": "0x140014423", "size": 3, "mnemonic": "and", - "operands": "ecx, 0x3f" + "operands": "ecx, 0x3f", + "stack_offset": 0 }, { "address": "0x140014426", "size": 3, "mnemonic": "mov", - "operands": "rax, r15" + "operands": "rax, r15", + "stack_offset": 0 }, { "address": "0x140014429", "size": 4, "mnemonic": "sar", - "operands": "rax, 6" + "operands": "rax, 6", + "stack_offset": 0 }, { "address": "0x14001442d", "size": 4, "mnemonic": "lea", - "operands": "r8, [rcx + rcx*8]" + "operands": "r8, [rcx + rcx*8]", + "stack_offset": 0 }, { "address": "0x140014431", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r9 + rax*8]" + "operands": "rcx, qword ptr [r9 + rax*8]", + "stack_offset": 0 }, { "address": "0x140014435", "size": 5, "mnemonic": "mov", - "operands": "al, byte ptr [rcx + r8*8 + 0x38]" + "operands": "al, byte ptr [rcx + r8*8 + 0x38]", + "stack_offset": 0 }, { "address": "0x14001443a", "size": 2, "mnemonic": "test", - "operands": "al, 0x40" + "operands": "al, 0x40", + "stack_offset": 0 }, { "address": "0x14001443c", "size": 2, "mnemonic": "jne", - "operands": "0x140014448" + "operands": "0x140014448", + "stack_offset": 0 }, { "address": "0x14001443e", "size": 3, "mnemonic": "or", - "operands": "al, r13b" + "operands": "al, r13b", + "stack_offset": 0 }, { "address": "0x140014441", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rcx + r8*8 + 0x38], al" + "operands": "byte ptr [rcx + r8*8 + 0x38], al", + "stack_offset": 0 }, { "address": "0x140014446", "size": 2, "mnemonic": "jmp", - "operands": "0x14001444e" + "operands": "0x14001444e", + "stack_offset": 0 } ], "successors": [ @@ -49086,61 +54792,71 @@ "address": "0x1400142f9", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + 2]" + "operands": "rcx, [rax + 2]", + "stack_offset": 0 }, { "address": "0x1400142fd", "size": 4, "mnemonic": "cmp", - "operands": "dx, r11w" + "operands": "dx, r11w", + "stack_offset": 0 }, { "address": "0x140014301", "size": 2, "mnemonic": "jne", - "operands": "0x140014317" + "operands": "0x140014317", + "stack_offset": 0 }, { "address": "0x140014303", "size": 3, "mnemonic": "cmp", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x140014306", "size": 2, "mnemonic": "jae", - "operands": "0x140014337" + "operands": "0x140014337", + "stack_offset": 0 }, { "address": "0x140014308", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rcx], r9w" + "operands": "word ptr [rcx], r9w", + "stack_offset": 0 }, { "address": "0x14001430c", "size": 2, "mnemonic": "jne", - "operands": "0x140014317" + "operands": "0x140014317", + "stack_offset": 0 }, { "address": "0x14001430e", "size": 4, "mnemonic": "add", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x140014312", "size": 3, "mnemonic": "mov", - "operands": "edx, r9d" + "operands": "edx, r9d", + "stack_offset": 0 }, { "address": "0x140014315", "size": 2, "mnemonic": "jmp", - "operands": "0x14001431a" + "operands": "0x14001431a", + "stack_offset": 0 } ], "successors": [ @@ -49157,61 +54873,71 @@ "address": "0x1400142cf", "size": 4, "mnemonic": "lea", - "operands": "r8, [rdx + r8*2]" + "operands": "r8, [rdx + r8*2]", + "stack_offset": 0 }, { "address": "0x1400142d3", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x1400142d6", "size": 3, "mnemonic": "mov", - "operands": "rbx, rsi" + "operands": "rbx, rsi", + "stack_offset": 0 }, { "address": "0x1400142d9", "size": 3, "mnemonic": "cmp", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x1400142dc", "size": 6, "mnemonic": "jae", - "operands": "0x14001444e" + "operands": "0x14001444e", + "stack_offset": 0 }, { "address": "0x1400142e2", "size": 6, "mnemonic": "mov", - "operands": "r11d, 0xd" + "operands": "r11d, 0xd", + "stack_offset": 0 }, { "address": "0x1400142e8", "size": 4, "mnemonic": "lea", - "operands": "r13d, [r11 - 0xb]" + "operands": "r13d, [r11 - 0xb]", + "stack_offset": 0 }, { "address": "0x1400142ec", "size": 3, "mnemonic": "movzx", - "operands": "edx, word ptr [rax]" + "operands": "edx, word ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400142ef", "size": 4, "mnemonic": "cmp", - "operands": "dx, 0x1a" + "operands": "dx, 0x1a", + "stack_offset": 0 }, { "address": "0x1400142f3", "size": 6, "mnemonic": "je", - "operands": "0x140014419" + "operands": "0x140014419", + "stack_offset": 0 } ], "successors": [ @@ -49229,79 +54955,92 @@ "address": "0x14001444e", "size": 3, "mnemonic": "sub", - "operands": "rbx, rsi" + "operands": "rbx, rsi", + "stack_offset": 0 }, { "address": "0x140014451", "size": 3, "mnemonic": "sar", - "operands": "rbx, 1" + "operands": "rbx, 1", + "stack_offset": 0 }, { "address": "0x140014454", "size": 3, "mnemonic": "lea", - "operands": "eax, [rbx + rbx]" + "operands": "eax, [rbx + rbx]", + "stack_offset": 0 }, { "address": "0x140014457", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x88]" + "operands": "rbx, qword ptr [rsp + 0x88]", + "stack_offset": 0 }, { "address": "0x14001445f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140014463", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140014465", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140014467", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140014469", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001446b", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001446c", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001446d", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001446e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -49317,43 +55056,50 @@ "address": "0x14001431a", "size": 3, "mnemonic": "mov", - "operands": "word ptr [rbx], dx" + "operands": "word ptr [rbx], dx", + "stack_offset": 0 }, { "address": "0x14001431d", "size": 3, "mnemonic": "mov", - "operands": "r9, r13" + "operands": "r9, r13", + "stack_offset": 0 }, { "address": "0x140014320", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140014323", "size": 6, "mnemonic": "mov", - "operands": "r9d, 0xa" + "operands": "r9d, 0xa", + "stack_offset": 0 }, { "address": "0x140014329", "size": 4, "mnemonic": "lea", - "operands": "rbx, [rbx + r13]" + "operands": "rbx, [rbx + r13]", + "stack_offset": 0 }, { "address": "0x14001432d", "size": 3, "mnemonic": "cmp", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x140014330", "size": 2, "mnemonic": "jb", - "operands": "0x1400142ec" + "operands": "0x1400142ec", + "stack_offset": 0 } ], "successors": [ @@ -49371,19 +55117,22 @@ "address": "0x1400142ec", "size": 3, "mnemonic": "movzx", - "operands": "edx, word ptr [rax]" + "operands": "edx, word ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400142ef", "size": 4, "mnemonic": "cmp", - "operands": "dx, 0x1a" + "operands": "dx, 0x1a", + "stack_offset": 0 }, { "address": "0x1400142f3", "size": 6, "mnemonic": "je", - "operands": "0x140014419" + "operands": "0x140014419", + "stack_offset": 0 } ], "successors": [ @@ -49401,7 +55150,8 @@ "address": "0x140014332", "size": 5, "mnemonic": "jmp", - "operands": "0x14001444e" + "operands": "0x14001444e", + "stack_offset": 0 } ], "successors": [ @@ -49424,127 +55174,148 @@ "address": "0x140014475", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140014476", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140014477", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140014478", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001447a", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001447c", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001447e", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140014480", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140014484", "size": 3, "mnemonic": "movsxd", - "operands": "rbp, ecx" + "operands": "rbp, ecx", + "stack_offset": 0 }, { "address": "0x140014487", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0x1448e]" + "operands": "r11, [rip - 0x1448e]", + "stack_offset": 0 }, { "address": "0x14001448e", "size": 3, "mnemonic": "mov", - "operands": "r14, rbp" + "operands": "r14, rbp", + "stack_offset": 0 }, { "address": "0x140014491", "size": 3, "mnemonic": "mov", - "operands": "r15, rbp" + "operands": "r15, rbp", + "stack_offset": 0 }, { "address": "0x140014494", "size": 4, "mnemonic": "sar", - "operands": "r15, 6" + "operands": "r15, 6", + "stack_offset": 0 }, { "address": "0x140014498", "size": 4, "mnemonic": "and", - "operands": "r14d, 0x3f" + "operands": "r14d, 0x3f", + "stack_offset": 0 }, { "address": "0x14001449c", "size": 3, "mnemonic": "mov", - "operands": "r12, r9" + "operands": "r12, r9", + "stack_offset": 0 }, { "address": "0x14001449f", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x1400144a2", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [r11 + r15*8 + 0x33300]" + "operands": "rax, qword ptr [r11 + r15*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x1400144aa", "size": 4, "mnemonic": "lea", - "operands": "rsi, [r14 + r14*8]" + "operands": "rsi, [r14 + r14*8]", + "stack_offset": 0 }, { "address": "0x1400144ae", "size": 5, "mnemonic": "mov", - "operands": "r10, qword ptr [rax + rsi*8 + 0x28]" + "operands": "r10, qword ptr [rax + rsi*8 + 0x28]", + "stack_offset": 0 }, { "address": "0x1400144b3", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x1400144b6", "size": 2, "mnemonic": "je", - "operands": "0x1400144c4" + "operands": "0x1400144c4", + "stack_offset": 0 } ], "successors": [ @@ -49562,61 +55333,71 @@ "address": "0x1400144c4", "size": 5, "mnemonic": "and", - "operands": "byte ptr [rax + rsi*8 + 0x38], 0xfb" + "operands": "byte ptr [rax + rsi*8 + 0x38], 0xfb", + "stack_offset": 0 }, { "address": "0x1400144c9", "size": 4, "mnemonic": "lea", - "operands": "r9, [rdx + r8]" + "operands": "r9, [rdx + r8]", + "stack_offset": 0 }, { "address": "0x1400144cd", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x1400144d0", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x1400144d3", "size": 6, "mnemonic": "mov", - "operands": "r13d, 1" + "operands": "r13d, 1", + "stack_offset": 0 }, { "address": "0x1400144d9", "size": 3, "mnemonic": "cmp", - "operands": "rdi, r9" + "operands": "rdi, r9", + "stack_offset": 0 }, { "address": "0x1400144dc", "size": 6, "mnemonic": "jae", - "operands": "0x1400145dc" + "operands": "0x1400145dc", + "stack_offset": 0 }, { "address": "0x1400144e2", "size": 2, "mnemonic": "mov", - "operands": "cl, byte ptr [rax]" + "operands": "cl, byte ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400144e4", "size": 3, "mnemonic": "cmp", - "operands": "cl, 0x1a" + "operands": "cl, 0x1a", + "stack_offset": 0 }, { "address": "0x1400144e7", "size": 6, "mnemonic": "je", - "operands": "0x1400145b9" + "operands": "0x1400145b9", + "stack_offset": 0 } ], "successors": [ @@ -49634,25 +55415,29 @@ "address": "0x1400144b8", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rdx], 0xa" + "operands": "byte ptr [rdx], 0xa", + "stack_offset": 0 }, { "address": "0x1400144bb", "size": 2, "mnemonic": "jne", - "operands": "0x1400144c4" + "operands": "0x1400144c4", + "stack_offset": 0 }, { "address": "0x1400144bd", "size": 5, "mnemonic": "or", - "operands": "byte ptr [rax + rsi*8 + 0x38], 4" + "operands": "byte ptr [rax + rsi*8 + 0x38], 4", + "stack_offset": 0 }, { "address": "0x1400144c2", "size": 2, "mnemonic": "jmp", - "operands": "0x1400144c9" + "operands": "0x1400144c9", + "stack_offset": 0 } ], "successors": [ @@ -49669,49 +55454,57 @@ "address": "0x1400145b9", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [r11 + r15*8 + 0x33300]" + "operands": "r8, qword ptr [r11 + r15*8 + 0x33300]", + "stack_offset": 0 }, { "address": "0x1400145c1", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r14 + r14*8]" + "operands": "rdx, [r14 + r14*8]", + "stack_offset": 0 }, { "address": "0x1400145c5", "size": 5, "mnemonic": "mov", - "operands": "al, byte ptr [r8 + rdx*8 + 0x38]" + "operands": "al, byte ptr [r8 + rdx*8 + 0x38]", + "stack_offset": 0 }, { "address": "0x1400145ca", "size": 2, "mnemonic": "test", - "operands": "al, 0x40" + "operands": "al, 0x40", + "stack_offset": 0 }, { "address": "0x1400145cc", "size": 2, "mnemonic": "jne", - "operands": "0x1400145d7" + "operands": "0x1400145d7", + "stack_offset": 0 }, { "address": "0x1400145ce", "size": 2, "mnemonic": "or", - "operands": "al, 2" + "operands": "al, 2", + "stack_offset": 0 }, { "address": "0x1400145d0", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r8 + rdx*8 + 0x38], al" + "operands": "byte ptr [r8 + rdx*8 + 0x38], al", + "stack_offset": 0 }, { "address": "0x1400145d5", "size": 2, "mnemonic": "jmp", - "operands": "0x1400145dc" + "operands": "0x1400145dc", + "stack_offset": 0 } ], "successors": [ @@ -49728,61 +55521,71 @@ "address": "0x1400144ed", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rax + 1]" + "operands": "rdx, [rax + 1]", + "stack_offset": 0 }, { "address": "0x1400144f1", "size": 3, "mnemonic": "cmp", - "operands": "cl, 0xd" + "operands": "cl, 0xd", + "stack_offset": 0 }, { "address": "0x1400144f4", "size": 2, "mnemonic": "jne", - "operands": "0x140014509" + "operands": "0x140014509", + "stack_offset": 0 }, { "address": "0x1400144f6", "size": 3, "mnemonic": "cmp", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x1400144f9", "size": 2, "mnemonic": "jae", - "operands": "0x14001451b" + "operands": "0x14001451b", + "stack_offset": 0 }, { "address": "0x1400144fb", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rdx], 0xa" + "operands": "byte ptr [rdx], 0xa", + "stack_offset": 0 }, { "address": "0x1400144fe", "size": 2, "mnemonic": "jne", - "operands": "0x140014509" + "operands": "0x140014509", + "stack_offset": 0 }, { "address": "0x140014500", "size": 4, "mnemonic": "add", - "operands": "rax, 2" + "operands": "rax, 2", + "stack_offset": 0 }, { "address": "0x140014504", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rbx], 0xa" + "operands": "byte ptr [rbx], 0xa", + "stack_offset": 0 }, { "address": "0x140014507", "size": 2, "mnemonic": "jmp", - "operands": "0x14001450e" + "operands": "0x14001450e", + "stack_offset": 0 } ], "successors": [ @@ -49799,55 +55602,64 @@ "address": "0x1400144c9", "size": 4, "mnemonic": "lea", - "operands": "r9, [rdx + r8]" + "operands": "r9, [rdx + r8]", + "stack_offset": 0 }, { "address": "0x1400144cd", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x1400144d0", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x1400144d3", "size": 6, "mnemonic": "mov", - "operands": "r13d, 1" + "operands": "r13d, 1", + "stack_offset": 0 }, { "address": "0x1400144d9", "size": 3, "mnemonic": "cmp", - "operands": "rdi, r9" + "operands": "rdi, r9", + "stack_offset": 0 }, { "address": "0x1400144dc", "size": 6, "mnemonic": "jae", - "operands": "0x1400145dc" + "operands": "0x1400145dc", + "stack_offset": 0 }, { "address": "0x1400144e2", "size": 2, "mnemonic": "mov", - "operands": "cl, byte ptr [rax]" + "operands": "cl, byte ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400144e4", "size": 3, "mnemonic": "cmp", - "operands": "cl, 0x1a" + "operands": "cl, 0x1a", + "stack_offset": 0 }, { "address": "0x1400144e7", "size": 6, "mnemonic": "je", - "operands": "0x1400145b9" + "operands": "0x1400145b9", + "stack_offset": 0 } ], "successors": [ @@ -49865,25 +55677,29 @@ "address": "0x1400145dc", "size": 2, "mnemonic": "sub", - "operands": "ebx, edi" + "operands": "ebx, edi", + "stack_offset": 0 }, { "address": "0x1400145de", "size": 2, "mnemonic": "jne", - "operands": "0x1400145e7" + "operands": "0x1400145e7", + "stack_offset": 0 }, { "address": "0x1400145e0", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400145e2", "size": 5, "mnemonic": "jmp", - "operands": "0x140014787" + "operands": "0x140014787", + "stack_offset": 0 } ], "successors": [ @@ -49900,19 +55716,22 @@ "address": "0x14001450e", "size": 3, "mnemonic": "inc", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140014511", "size": 3, "mnemonic": "cmp", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x140014514", "size": 2, "mnemonic": "jb", - "operands": "0x1400144e2" + "operands": "0x1400144e2", + "stack_offset": 0 } ], "successors": [ @@ -49930,61 +55749,71 @@ "address": "0x140014787", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x80]" + "operands": "rbx, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x14001478f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140014793", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140014795", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140014797", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140014799", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001479b", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001479c", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001479d", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001479e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -50000,19 +55829,22 @@ "address": "0x1400144e2", "size": 2, "mnemonic": "mov", - "operands": "cl, byte ptr [rax]" + "operands": "cl, byte ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400144e4", "size": 3, "mnemonic": "cmp", - "operands": "cl, 0x1a" + "operands": "cl, 0x1a", + "stack_offset": 0 }, { "address": "0x1400144e7", "size": 6, "mnemonic": "je", - "operands": "0x1400145b9" + "operands": "0x1400145b9", + "stack_offset": 0 } ], "successors": [ @@ -50030,7 +55862,8 @@ "address": "0x140014516", "size": 5, "mnemonic": "jmp", - "operands": "0x1400145dc" + "operands": "0x1400145dc", + "stack_offset": 0 } ], "successors": [ @@ -50053,115 +55886,134 @@ "address": "0x1400148ca", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400148cb", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400148cc", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400148cd", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400148cf", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400148d1", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400148d3", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400148d5", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x1400148d9", "size": 3, "mnemonic": "movsxd", - "operands": "r13, ecx" + "operands": "r13, ecx", + "stack_offset": 0 }, { "address": "0x1400148dc", "size": 3, "mnemonic": "mov", - "operands": "r9, rdx" + "operands": "r9, rdx", + "stack_offset": 0 }, { "address": "0x1400148df", "size": 3, "mnemonic": "mov", - "operands": "r12d, r8d" + "operands": "r12d, r8d", + "stack_offset": 0 }, { "address": "0x1400148e2", "size": 4, "mnemonic": "cmp", - "operands": "r13d, -2" + "operands": "r13d, -2", + "stack_offset": 0 }, { "address": "0x1400148e6", "size": 2, "mnemonic": "jne", - "operands": "0x140014901" + "operands": "0x140014901", + "stack_offset": 0 }, { "address": "0x1400148e8", "size": 5, "mnemonic": "call", - "operands": "0x14000d854" + "operands": "0x14000d854", + "stack_offset": 0 }, { "address": "0x1400148ed", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x1400148ef", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rax], esi" + "operands": "dword ptr [rax], esi", + "stack_offset": 0 }, { "address": "0x1400148f1", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x1400148f6", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 9" + "operands": "dword ptr [rax], 9", + "stack_offset": 0 }, { "address": "0x1400148fc", "size": 5, "mnemonic": "jmp", - "operands": "0x140014d04" + "operands": "0x140014d04", + "stack_offset": 0 } ], "successors": [ @@ -50178,67 +56030,78 @@ "address": "0x140014d04", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140014d07", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0xb0]" + "operands": "rbx, qword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140014d0f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140014d13", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140014d15", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140014d17", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140014d19", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140014d1b", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140014d1c", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140014d1d", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140014d1e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -50260,133 +56123,155 @@ "address": "0x140014efa", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140014efb", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140014efe", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140014f02", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x140014f07", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x1e2e2], 0" + "operands": "dword ptr [rip + 0x1e2e2], 0", + "stack_offset": 0 }, { "address": "0x140014f0e", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x140014f12", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x140014f16", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140014f1a", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140014f1e", "size": 2, "mnemonic": "jne", - "operands": "0x140014f30" + "operands": "0x140014f30", + "stack_offset": 0 }, { "address": "0x140014f20", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x1c501]" + "operands": "xmm0, xmmword ptr [rip + 0x1c501]", + "stack_offset": 0 }, { "address": "0x140014f27", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x140014f2b", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x140014f30", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x40]" + "operands": "r9, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140014f34", "size": 5, "mnemonic": "call", - "operands": "0x140014d20" + "operands": "0x140014d20", + "stack_offset": 0 }, { "address": "0x140014f39", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x140014f3d", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x140014f40", "size": 2, "mnemonic": "jne", - "operands": "0x140014f4d" + "operands": "0x140014f4d", + "stack_offset": 0 }, { "address": "0x140014f42", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140014f46", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x140014f4d", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140014f51", "size": 2, "mnemonic": "je", - "operands": "0x140014f62" + "operands": "0x140014f62", + "stack_offset": 0 } ], "successors": [ @@ -50404,13 +56289,15 @@ "address": "0x140014f62", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140014f66", "size": 2, "mnemonic": "je", - "operands": "0x140014f77" + "operands": "0x140014f77", + "stack_offset": 0 } ], "successors": [ @@ -50428,37 +56315,43 @@ "address": "0x140014f53", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x140014f56", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140014f5a", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140014f5f", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x140014f62", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140014f66", "size": 2, "mnemonic": "je", - "operands": "0x140014f77" + "operands": "0x140014f77", + "stack_offset": 0 } ], "successors": [ @@ -50476,37 +56369,43 @@ "address": "0x140014f77", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140014f7c", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140014f7f", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140014f84", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140014f88", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140014f89", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -50522,61 +56421,71 @@ "address": "0x140014f68", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x140014f6b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140014f6f", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140014f74", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x140014f77", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140014f7c", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140014f7f", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140014f84", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140014f88", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140014f89", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -50598,133 +56507,155 @@ "address": "0x140014f9e", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140014f9f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140014fa2", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140014fa6", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x140014fab", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x1e23e], 0" + "operands": "dword ptr [rip + 0x1e23e], 0", + "stack_offset": 0 }, { "address": "0x140014fb2", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x140014fb6", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x140014fba", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140014fbe", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140014fc2", "size": 2, "mnemonic": "jne", - "operands": "0x140014fd4" + "operands": "0x140014fd4", + "stack_offset": 0 }, { "address": "0x140014fc4", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x1c45d]" + "operands": "xmm0, xmmword ptr [rip + 0x1c45d]", + "stack_offset": 0 }, { "address": "0x140014fcb", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x140014fcf", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x140014fd4", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x40]" + "operands": "r9, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140014fd8", "size": 5, "mnemonic": "call", - "operands": "0x140014e40" + "operands": "0x140014e40", + "stack_offset": 0 }, { "address": "0x140014fdd", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x140014fe1", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x140014fe4", "size": 2, "mnemonic": "jne", - "operands": "0x140014ff1" + "operands": "0x140014ff1", + "stack_offset": 0 }, { "address": "0x140014fe6", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140014fea", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x140014ff1", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140014ff5", "size": 2, "mnemonic": "je", - "operands": "0x140015006" + "operands": "0x140015006", + "stack_offset": 0 } ], "successors": [ @@ -50742,13 +56673,15 @@ "address": "0x140015006", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14001500a", "size": 2, "mnemonic": "je", - "operands": "0x14001501b" + "operands": "0x14001501b", + "stack_offset": 0 } ], "successors": [ @@ -50766,37 +56699,43 @@ "address": "0x140014ff7", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x140014ffa", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140014ffe", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140015003", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x140015006", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14001500a", "size": 2, "mnemonic": "je", - "operands": "0x14001501b" + "operands": "0x14001501b", + "stack_offset": 0 } ], "successors": [ @@ -50814,37 +56753,43 @@ "address": "0x14001501b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140015020", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140015023", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140015028", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14001502c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001502d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -50860,61 +56805,71 @@ "address": "0x14001500c", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x14001500f", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140015013", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140015018", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x14001501b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140015020", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140015023", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140015028", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14001502c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001502d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -50936,151 +56891,176 @@ "address": "0x140015582", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015583", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140015586", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14001558a", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14001558f", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x1dc5a], 0" + "operands": "dword ptr [rip + 0x1dc5a], 0", + "stack_offset": 0 }, { "address": "0x140015596", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x14001559a", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14001559e", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x1400155a2", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x1400155a6", "size": 2, "mnemonic": "jne", - "operands": "0x1400155b8" + "operands": "0x1400155b8", + "stack_offset": 0 }, { "address": "0x1400155a8", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x1be79]" + "operands": "xmm0, xmmword ptr [rip + 0x1be79]", + "stack_offset": 0 }, { "address": "0x1400155af", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x1400155b3", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x1400155b8", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x40]" + "operands": "rax, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x1400155bc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x1400155c1", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x30]" + "operands": "rax, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400155c5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x1400155ca", "size": 5, "mnemonic": "call", - "operands": "0x140015260" + "operands": "0x140015260", + "stack_offset": 0 }, { "address": "0x1400155cf", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x1400155d3", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x1400155d5", "size": 2, "mnemonic": "jne", - "operands": "0x1400155e2" + "operands": "0x1400155e2", + "stack_offset": 0 }, { "address": "0x1400155d7", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x1400155db", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x1400155e2", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x1400155e6", "size": 2, "mnemonic": "je", - "operands": "0x1400155f7" + "operands": "0x1400155f7", + "stack_offset": 0 } ], "successors": [ @@ -51098,13 +57078,15 @@ "address": "0x1400155f7", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x1400155fb", "size": 2, "mnemonic": "je", - "operands": "0x14001560c" + "operands": "0x14001560c", + "stack_offset": 0 } ], "successors": [ @@ -51122,37 +57104,43 @@ "address": "0x1400155e8", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x1400155eb", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x1400155ef", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x1400155f4", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x1400155f7", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x1400155fb", "size": 2, "mnemonic": "je", - "operands": "0x14001560c" + "operands": "0x14001560c", + "stack_offset": 0 } ], "successors": [ @@ -51170,43 +57158,50 @@ "address": "0x14001560c", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140015611", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140015613", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x140015617", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x18]" + "operands": "rdi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x14001561b", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14001561e", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001561f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -51222,67 +57217,78 @@ "address": "0x1400155fd", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x140015600", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140015604", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140015609", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x14001560c", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140015611", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140015613", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x140015617", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x18]" + "operands": "rdi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x14001561b", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14001561e", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001561f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -51304,133 +57310,155 @@ "address": "0x140015734", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015736", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015737", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140015738", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140015739", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001573b", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001573d", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001573f", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140015741", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140015744", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x78" + "operands": "rsp, 0x78", + "stack_offset": 0 }, { "address": "0x140015748", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1b8f1]" + "operands": "rax, qword ptr [rip + 0x1b8f1]", + "stack_offset": 0 }, { "address": "0x14001574f", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140015752", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x18], rax" + "operands": "qword ptr [rbp - 0x18], rax", + "stack_offset": 0 }, { "address": "0x140015756", "size": 3, "mnemonic": "xor", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x140015759", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x30], rdx" + "operands": "qword ptr [rbp - 0x30], rdx", + "stack_offset": 0 }, { "address": "0x14001575d", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x38], r12d" + "operands": "dword ptr [rbp - 0x38], r12d", + "stack_offset": 0 }, { "address": "0x140015761", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x140015764", "size": 3, "mnemonic": "mov", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x140015767", "size": 3, "mnemonic": "mov", - "operands": "r15, rcx" + "operands": "r15, rcx", + "stack_offset": 0 }, { "address": "0x14001576a", "size": 3, "mnemonic": "mov", - "operands": "edi, r12d" + "operands": "edi, r12d", + "stack_offset": 0 }, { "address": "0x14001576d", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140015770", "size": 2, "mnemonic": "je", - "operands": "0x14001577e" + "operands": "0x14001577e", + "stack_offset": 0 } ], "successors": [ @@ -51448,73 +57476,85 @@ "address": "0x14001577e", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140015781", "size": 2, "mnemonic": "jne", - "operands": "0x1400157b0" + "operands": "0x1400157b0", + "stack_offset": 0 }, { "address": "0x140015783", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r9 + 0x30], 1" + "operands": "byte ptr [r9 + 0x30], 1", + "stack_offset": 0 }, { "address": "0x140015788", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14001578b", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [r9 + 0x2c], 0x16" + "operands": "dword ptr [r9 + 0x2c], 0x16", + "stack_offset": 0 }, { "address": "0x140015793", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140015795", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140015798", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rbx" + "operands": "qword ptr [rsp + 0x28], rbx", + "stack_offset": 0 }, { "address": "0x14001579d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r12" + "operands": "qword ptr [rsp + 0x20], r12", + "stack_offset": 0 }, { "address": "0x1400157a2", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x1400157a7", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x1400157ab", "size": 5, "mnemonic": "jmp", - "operands": "0x140015a56" + "operands": "0x140015a56", + "stack_offset": 0 } ], "successors": [ @@ -51531,25 +57571,29 @@ "address": "0x140015772", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x140015775", "size": 2, "mnemonic": "jne", - "operands": "0x14001577e" + "operands": "0x14001577e", + "stack_offset": 0 }, { "address": "0x140015777", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015779", "size": 5, "mnemonic": "jmp", - "operands": "0x140015a56" + "operands": "0x140015a56", + "stack_offset": 0 } ], "successors": [ @@ -51566,79 +57610,92 @@ "address": "0x140015a56", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x18]" + "operands": "rcx, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140015a5a", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140015a5d", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140015a62", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x78" + "operands": "rsp, 0x78", + "stack_offset": 0 }, { "address": "0x140015a66", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140015a68", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140015a6a", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140015a6c", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140015a6e", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140015a6f", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140015a70", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015a71", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015a72", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -51660,67 +57717,78 @@ "address": "0x140015a7e", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015a7f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140015a82", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x140015a86", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x140015a8b", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x38]" + "operands": "rax, qword ptr [rbp + 0x38]", + "stack_offset": 0 }, { "address": "0x140015a8f", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x140015a93", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x140015a97", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140015a9b", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140015a9f", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140015aa2", "size": 2, "mnemonic": "je", - "operands": "0x140015aa9" + "operands": "0x140015aa9", + "stack_offset": 0 } ], "successors": [ @@ -51738,103 +57806,120 @@ "address": "0x140015aa9", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x1d740], 0" + "operands": "dword ptr [rip + 0x1d740], 0", + "stack_offset": 0 }, { "address": "0x140015ab0", "size": 2, "mnemonic": "jne", - "operands": "0x140015ac2" + "operands": "0x140015ac2", + "stack_offset": 0 }, { "address": "0x140015ab2", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x1b96f]" + "operands": "xmm0, xmmword ptr [rip + 0x1b96f]", + "stack_offset": 0 }, { "address": "0x140015ab9", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x140015abd", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x140015ac2", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x40]" + "operands": "rax, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140015ac6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140015acb", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x30]" + "operands": "rax, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x140015acf", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140015ad4", "size": 5, "mnemonic": "call", - "operands": "0x140015620" + "operands": "0x140015620", + "stack_offset": 0 }, { "address": "0x140015ad9", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x140015add", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140015adf", "size": 2, "mnemonic": "jne", - "operands": "0x140015aec" + "operands": "0x140015aec", + "stack_offset": 0 }, { "address": "0x140015ae1", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140015ae5", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x140015aec", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140015af0", "size": 2, "mnemonic": "je", - "operands": "0x140015b01" + "operands": "0x140015b01", + "stack_offset": 0 } ], "successors": [ @@ -51852,13 +57937,15 @@ "address": "0x140015aa4", "size": 3, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax]" + "operands": "xmm0, xmmword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140015aa7", "size": 2, "mnemonic": "jmp", - "operands": "0x140015ab9" + "operands": "0x140015ab9", + "stack_offset": 0 } ], "successors": [ @@ -51875,13 +57962,15 @@ "address": "0x140015b01", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140015b05", "size": 2, "mnemonic": "je", - "operands": "0x140015b16" + "operands": "0x140015b16", + "stack_offset": 0 } ], "successors": [ @@ -51899,37 +57988,43 @@ "address": "0x140015af2", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0x14]" + "operands": "ebx, dword ptr [rbp - 0x14]", + "stack_offset": 0 }, { "address": "0x140015af5", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140015af9", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140015afe", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x20], ebx" + "operands": "dword ptr [rax + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x140015b01", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140015b05", "size": 2, "mnemonic": "je", - "operands": "0x140015b16" + "operands": "0x140015b16", + "stack_offset": 0 } ], "successors": [ @@ -51947,85 +58042,99 @@ "address": "0x140015ab9", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x140015abd", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x140015ac2", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x40]" + "operands": "rax, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140015ac6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140015acb", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x30]" + "operands": "rax, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x140015acf", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140015ad4", "size": 5, "mnemonic": "call", - "operands": "0x140015620" + "operands": "0x140015620", + "stack_offset": 0 }, { "address": "0x140015ad9", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x140015add", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140015adf", "size": 2, "mnemonic": "jne", - "operands": "0x140015aec" + "operands": "0x140015aec", + "stack_offset": 0 }, { "address": "0x140015ae1", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x40]" + "operands": "rcx, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140015ae5", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x140015aec", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140015af0", "size": 2, "mnemonic": "je", - "operands": "0x140015b01" + "operands": "0x140015b01", + "stack_offset": 0 } ], "successors": [ @@ -52043,43 +58152,50 @@ "address": "0x140015b16", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140015b1b", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140015b1d", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x140015b21", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x18]" + "operands": "rdi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140015b25", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140015b28", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015b29", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -52095,67 +58211,78 @@ "address": "0x140015b07", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rbp - 0xc]" + "operands": "ebx, dword ptr [rbp - 0xc]", + "stack_offset": 0 }, { "address": "0x140015b0a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x40]" + "operands": "rcx, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140015b0e", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x140015b13", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x24], ebx" + "operands": "dword ptr [rax + 0x24], ebx", + "stack_offset": 0 }, { "address": "0x140015b16", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140015b1b", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140015b1d", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x140015b21", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x18]" + "operands": "rdi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140015b25", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140015b28", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015b29", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -52177,91 +58304,106 @@ "address": "0x140015c13", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015c14", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140015c17", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x80" + "operands": "rsp, 0x80", + "stack_offset": 0 }, { "address": "0x140015c1e", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1b41b]" + "operands": "rax, qword ptr [rip + 0x1b41b]", + "stack_offset": 0 }, { "address": "0x140015c25", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140015c28", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x140015c2c", "size": 2, "mnemonic": "mov", - "operands": "esi, edx" + "operands": "esi, edx", + "stack_offset": 0 }, { "address": "0x140015c2e", "size": 3, "mnemonic": "movsxd", - "operands": "rdi, ecx" + "operands": "rdi, ecx", + "stack_offset": 0 }, { "address": "0x140015c31", "size": 3, "mnemonic": "mov", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140015c34", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x38]" + "operands": "rcx, [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x140015c38", "size": 5, "mnemonic": "call", - "operands": "0x14000d89c" + "operands": "0x14000d89c", + "stack_offset": 0 }, { "address": "0x140015c3d", "size": 3, "mnemonic": "lea", - "operands": "eax, [rdi + 1]" + "operands": "eax, [rdi + 1]", + "stack_offset": 0 }, { "address": "0x140015c40", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140015c42", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x100" + "operands": "eax, 0x100", + "stack_offset": 0 }, { "address": "0x140015c47", "size": 2, "mnemonic": "ja", - "operands": "0x140015c56" + "operands": "0x140015c56", + "stack_offset": 0 } ], "successors": [ @@ -52279,79 +58421,92 @@ "address": "0x140015c56", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp - 0x30]" + "operands": "rdx, qword ptr [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x140015c5a", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140015c5c", "size": 3, "mnemonic": "sar", - "operands": "eax, 8" + "operands": "eax, 8", + "stack_offset": 0 }, { "address": "0x140015c5f", "size": 6, "mnemonic": "mov", - "operands": "r10d, 1" + "operands": "r10d, 1", + "stack_offset": 0 }, { "address": "0x140015c65", "size": 3, "mnemonic": "movzx", - "operands": "ecx, al" + "operands": "ecx, al", + "stack_offset": 0 }, { "address": "0x140015c68", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140015c6b", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rax + rcx*2], bx" + "operands": "word ptr [rax + rcx*2], bx", + "stack_offset": 0 }, { "address": "0x140015c6f", "size": 2, "mnemonic": "jge", - "operands": "0x140015c81" + "operands": "0x140015c81", + "stack_offset": 0 }, { "address": "0x140015c71", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x40], cl" + "operands": "byte ptr [rbp - 0x40], cl", + "stack_offset": 0 }, { "address": "0x140015c74", "size": 4, "mnemonic": "lea", - "operands": "r9d, [r10 + 1]" + "operands": "r9d, [r10 + 1]", + "stack_offset": 0 }, { "address": "0x140015c78", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x3f], dil" + "operands": "byte ptr [rbp - 0x3f], dil", + "stack_offset": 0 }, { "address": "0x140015c7c", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x3e], bl" + "operands": "byte ptr [rbp - 0x3e], bl", + "stack_offset": 0 }, { "address": "0x140015c7f", "size": 2, "mnemonic": "jmp", - "operands": "0x140015c8b" + "operands": "0x140015c8b", + "stack_offset": 0 } ], "successors": [ @@ -52368,25 +58523,29 @@ "address": "0x140015c49", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x30]" + "operands": "rax, qword ptr [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x140015c4d", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140015c50", "size": 4, "mnemonic": "movzx", - "operands": "eax, word ptr [rcx + rdi*2]" + "operands": "eax, word ptr [rcx + rdi*2]", + "stack_offset": 0 }, { "address": "0x140015c54", "size": 2, "mnemonic": "jmp", - "operands": "0x140015cd5" + "operands": "0x140015cd5", + "stack_offset": 0 } ], "successors": [ @@ -52403,97 +58562,113 @@ "address": "0x140015c8b", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015c8d", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], r10d" + "operands": "dword ptr [rsp + 0x30], r10d", + "stack_offset": 0 }, { "address": "0x140015c92", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x18], eax" + "operands": "dword ptr [rbp - 0x18], eax", + "stack_offset": 0 }, { "address": "0x140015c95", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x40]" + "operands": "r8, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x140015c99", "size": 4, "mnemonic": "mov", - "operands": "word ptr [rbp - 0x14], ax" + "operands": "word ptr [rbp - 0x14], ax", + "stack_offset": 0 }, { "address": "0x140015c9d", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x30]" + "operands": "rcx, [rbp - 0x30]", + "stack_offset": 0 }, { "address": "0x140015ca1", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx + 0xc]" + "operands": "eax, dword ptr [rdx + 0xc]", + "stack_offset": 0 }, { "address": "0x140015ca4", "size": 3, "mnemonic": "mov", - "operands": "edx, r10d" + "operands": "edx, r10d", + "stack_offset": 0 }, { "address": "0x140015ca7", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x140015cab", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x18]" + "operands": "rax, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x140015caf", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140015cb4", "size": 5, "mnemonic": "call", - "operands": "0x140016050" + "operands": "0x140016050", + "stack_offset": 0 }, { "address": "0x140015cb9", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015cbb", "size": 2, "mnemonic": "jne", - "operands": "0x140015cd1" + "operands": "0x140015cd1", + "stack_offset": 0 }, { "address": "0x140015cbd", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x20], bl" + "operands": "byte ptr [rbp - 0x20], bl", + "stack_offset": 0 }, { "address": "0x140015cc0", "size": 2, "mnemonic": "je", - "operands": "0x140015ccd" + "operands": "0x140015ccd", + "stack_offset": 0 } ], "successors": [ @@ -52511,19 +58686,22 @@ "address": "0x140015cd5", "size": 2, "mnemonic": "and", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x140015cd7", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x20], bl" + "operands": "byte ptr [rbp - 0x20], bl", + "stack_offset": 0 }, { "address": "0x140015cda", "size": 2, "mnemonic": "je", - "operands": "0x140015ce7" + "operands": "0x140015ce7", + "stack_offset": 0 } ], "successors": [ @@ -52541,13 +58719,15 @@ "address": "0x140015ccd", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015ccf", "size": 2, "mnemonic": "jmp", - "operands": "0x140015ce7" + "operands": "0x140015ce7", + "stack_offset": 0 } ], "successors": [ @@ -52564,25 +58744,29 @@ "address": "0x140015cc2", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x38]" + "operands": "rax, qword ptr [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x140015cc6", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rax + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rax + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x140015ccd", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015ccf", "size": 2, "mnemonic": "jmp", - "operands": "0x140015ce7" + "operands": "0x140015ce7", + "stack_offset": 0 } ], "successors": [ @@ -52599,61 +58783,71 @@ "address": "0x140015ce7", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x10]" + "operands": "rcx, qword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140015ceb", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140015cee", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140015cf3", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x80]" + "operands": "r11, [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140015cfb", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x140015cff", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x18]" + "operands": "rsi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140015d03", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x20]" + "operands": "rdi, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x140015d07", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140015d0a", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015d0b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -52669,73 +58863,85 @@ "address": "0x140015cdc", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x38]" + "operands": "rcx, qword ptr [rbp - 0x38]", + "stack_offset": 0 }, { "address": "0x140015ce0", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x140015ce7", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x10]" + "operands": "rcx, qword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140015ceb", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140015cee", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140015cf3", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x80]" + "operands": "r11, [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140015cfb", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x140015cff", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x18]" + "operands": "rsi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140015d03", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x20]" + "operands": "rdi, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x140015d07", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140015d0a", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015d0b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -52757,181 +58963,211 @@ "address": "0x140015d0c", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015d0e", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140015d10", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140015d12", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x140015d16", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp + 0x40]" + "operands": "rbp, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140015d1b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x50], rbx" + "operands": "qword ptr [rbp + 0x50], rbx", + "stack_offset": 0 }, { "address": "0x140015d1f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x58], rsi" + "operands": "qword ptr [rbp + 0x58], rsi", + "stack_offset": 0 }, { "address": "0x140015d23", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x60], rdi" + "operands": "qword ptr [rbp + 0x60], rdi", + "stack_offset": 0 }, { "address": "0x140015d27", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x68], r12" + "operands": "qword ptr [rbp + 0x68], r12", + "stack_offset": 0 }, { "address": "0x140015d2b", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1b30e]" + "operands": "rax, qword ptr [rip + 0x1b30e]", + "stack_offset": 0 }, { "address": "0x140015d32", "size": 3, "mnemonic": "xor", - "operands": "rax, rbp" + "operands": "rax, rbp", + "stack_offset": 0 }, { "address": "0x140015d35", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x28], rax" + "operands": "qword ptr [rbp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140015d39", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x140015d3c", "size": 3, "mnemonic": "mov", - "operands": "r15, r9" + "operands": "r15, r9", + "stack_offset": 0 }, { "address": "0x140015d3f", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x140015d42", "size": 3, "mnemonic": "mov", - "operands": "esi, r8d" + "operands": "esi, r8d", + "stack_offset": 0 }, { "address": "0x140015d45", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 8]" + "operands": "rcx, [rbp + 8]", + "stack_offset": 0 }, { "address": "0x140015d49", "size": 5, "mnemonic": "call", - "operands": "0x14000d89c" + "operands": "0x14000d89c", + "stack_offset": 0 }, { "address": "0x140015d4e", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x10]" + "operands": "rax, qword ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140015d52", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140015d55", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140015d58", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x140015d5a", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140015d5d", "size": 4, "mnemonic": "mov", - "operands": "r12d, dword ptr [rax + 0xc]" + "operands": "r12d, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x140015d61", "size": 5, "mnemonic": "call", - "operands": "0x140011ff0" + "operands": "0x140011ff0", + "stack_offset": 0 }, { "address": "0x140015d66", "size": 3, "mnemonic": "movsxd", - "operands": "rdi, eax" + "operands": "rdi, eax", + "stack_offset": 0 }, { "address": "0x140015d69", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015d6b", "size": 2, "mnemonic": "jne", - "operands": "0x140015d74" + "operands": "0x140015d74", + "stack_offset": 0 }, { "address": "0x140015d6d", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140015d6f", "size": 5, "mnemonic": "jmp", - "operands": "0x140015e4e" + "operands": "0x140015e4e", + "stack_offset": 0 } ], "successors": [ @@ -52948,13 +59184,15 @@ "address": "0x140015e4e", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0x20], 0" + "operands": "byte ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x140015e52", "size": 2, "mnemonic": "je", - "operands": "0x140015e5f" + "operands": "0x140015e5f", + "stack_offset": 0 } ], "successors": [ @@ -52972,79 +59210,92 @@ "address": "0x140015e5f", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140015e61", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x28]" + "operands": "rcx, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x140015e65", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x140015e68", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140015e6d", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0x50]" + "operands": "rbx, qword ptr [rbp + 0x50]", + "stack_offset": 0 }, { "address": "0x140015e71", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x58]" + "operands": "rsi, qword ptr [rbp + 0x58]", + "stack_offset": 0 }, { "address": "0x140015e75", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x60]" + "operands": "rdi, qword ptr [rbp + 0x60]", + "stack_offset": 0 }, { "address": "0x140015e79", "size": 4, "mnemonic": "mov", - "operands": "r12, qword ptr [rbp + 0x68]" + "operands": "r12, qword ptr [rbp + 0x68]", + "stack_offset": 0 }, { "address": "0x140015e7d", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x30]" + "operands": "rsp, [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x140015e81", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140015e83", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140015e85", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015e86", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -53060,91 +59311,106 @@ "address": "0x140015e54", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 8]" + "operands": "rax, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x140015e58", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rax + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rax + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x140015e5f", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140015e61", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x28]" + "operands": "rcx, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x140015e65", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x140015e68", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140015e6d", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0x50]" + "operands": "rbx, qword ptr [rbp + 0x50]", + "stack_offset": 0 }, { "address": "0x140015e71", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x58]" + "operands": "rsi, qword ptr [rbp + 0x58]", + "stack_offset": 0 }, { "address": "0x140015e75", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x60]" + "operands": "rdi, qword ptr [rbp + 0x60]", + "stack_offset": 0 }, { "address": "0x140015e79", "size": 4, "mnemonic": "mov", - "operands": "r12, qword ptr [rbp + 0x68]" + "operands": "r12, qword ptr [rbp + 0x68]", + "stack_offset": 0 }, { "address": "0x140015e7d", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x30]" + "operands": "rsp, [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x140015e81", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140015e83", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140015e85", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015e86", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -53166,157 +59432,183 @@ "address": "0x140015e8a", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015e8b", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140015e8c", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140015e8d", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140015e8f", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140015e91", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140015e93", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xd0" + "operands": "rsp, 0xd0", + "stack_offset": 0 }, { "address": "0x140015e9a", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1b19f]" + "operands": "rax, qword ptr [rip + 0x1b19f]", + "stack_offset": 0 }, { "address": "0x140015ea1", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140015ea4", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0xc0], rax" + "operands": "qword ptr [rsp + 0xc0], rax", + "stack_offset": 0 }, { "address": "0x140015eac", "size": 8, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x130]" + "operands": "rsi, qword ptr [rsp + 0x130]", + "stack_offset": 0 }, { "address": "0x140015eb4", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140015eb6", "size": 3, "mnemonic": "mov", - "operands": "ebp, r9d" + "operands": "ebp, r9d", + "stack_offset": 0 }, { "address": "0x140015eb9", "size": 3, "mnemonic": "mov", - "operands": "r14, r8" + "operands": "r14, r8", + "stack_offset": 0 }, { "address": "0x140015ebc", "size": 3, "mnemonic": "mov", - "operands": "r12, rcx" + "operands": "r12, rcx", + "stack_offset": 0 }, { "address": "0x140015ebf", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rdi" + "operands": "qword ptr [rsi], rdi", + "stack_offset": 0 }, { "address": "0x140015ec2", "size": 3, "mnemonic": "cmp", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140015ec5", "size": 6, "mnemonic": "jne", - "operands": "0x140015fa5" + "operands": "0x140015fa5", + "stack_offset": 0 }, { "address": "0x140015ecb", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x40]" + "operands": "r9, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140015ed0", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], 0x80" + "operands": "dword ptr [rsp + 0x20], 0x80", + "stack_offset": 0 }, { "address": "0x140015ed8", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebp" + "operands": "r8d, ebp", + "stack_offset": 0 }, { "address": "0x140015edb", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140015ede", "size": 5, "mnemonic": "call", - "operands": "0x140015d0c" + "operands": "0x140015d0c", + "stack_offset": 0 }, { "address": "0x140015ee3", "size": 3, "mnemonic": "movsxd", - "operands": "rbx, eax" + "operands": "rbx, eax", + "stack_offset": 0 }, { "address": "0x140015ee6", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015ee8", "size": 2, "mnemonic": "je", - "operands": "0x140015f2d" + "operands": "0x140015f2d", + "stack_offset": 0 } ], "successors": [ @@ -53334,73 +59626,85 @@ "address": "0x140015f2d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xa1c5]" + "operands": "qword ptr [rip + 0xa1c5]", + "stack_offset": 0 }, { "address": "0x140015f33", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x7a" + "operands": "eax, 0x7a", + "stack_offset": 0 }, { "address": "0x140015f36", "size": 6, "mnemonic": "jne", - "operands": "0x140016016" + "operands": "0x140016016", + "stack_offset": 0 }, { "address": "0x140015f3c", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140015f3f", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], edi" + "operands": "dword ptr [rsp + 0x20], edi", + "stack_offset": 0 }, { "address": "0x140015f43", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebp" + "operands": "r8d, ebp", + "stack_offset": 0 }, { "address": "0x140015f46", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140015f49", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140015f4c", "size": 5, "mnemonic": "call", - "operands": "0x140015d0c" + "operands": "0x140015d0c", + "stack_offset": 0 }, { "address": "0x140015f51", "size": 3, "mnemonic": "movsxd", - "operands": "r15, eax" + "operands": "r15, eax", + "stack_offset": 0 }, { "address": "0x140015f54", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015f56", "size": 6, "mnemonic": "je", - "operands": "0x140016016" + "operands": "0x140016016", + "stack_offset": 0 } ], "successors": [ @@ -53418,49 +59722,57 @@ "address": "0x140015eea", "size": 3, "mnemonic": "lea", - "operands": "edx, [rdi + 1]" + "operands": "edx, [rdi + 1]", + "stack_offset": 0 }, { "address": "0x140015eed", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140015ef0", "size": 5, "mnemonic": "call", - "operands": "0x140011a80" + "operands": "0x140011a80", + "stack_offset": 0 }, { "address": "0x140015ef5", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140015ef7", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x140015efa", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140015eff", "size": 3, "mnemonic": "cmp", - "operands": "qword ptr [rsi], rdi" + "operands": "qword ptr [rsi], rdi", + "stack_offset": 0 }, { "address": "0x140015f02", "size": 6, "mnemonic": "je", - "operands": "0x140016016" + "operands": "0x140016016", + "stack_offset": 0 } ], "successors": [ @@ -53478,79 +59790,92 @@ "address": "0x140016016", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140016019", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xc0]" + "operands": "rcx, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140016021", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140016024", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140016029", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xd0" + "operands": "rsp, 0xd0", + "stack_offset": 0 }, { "address": "0x140016030", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016032", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140016034", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140016036", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140016037", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140016038", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140016039", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001603a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -53566,37 +59891,43 @@ "address": "0x140015f5c", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x140015f5f", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140015f64", "size": 5, "mnemonic": "call", - "operands": "0x140011a80" + "operands": "0x140011a80", + "stack_offset": 0 }, { "address": "0x140015f69", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140015f6c", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140015f6f", "size": 2, "mnemonic": "je", - "operands": "0x140015f96" + "operands": "0x140015f96", + "stack_offset": 0 } ], "successors": [ @@ -53614,61 +59945,71 @@ "address": "0x140015f08", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsi]" + "operands": "rcx, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140015f0b", "size": 3, "mnemonic": "lea", - "operands": "eax, [rbx - 1]" + "operands": "eax, [rbx - 1]", + "stack_offset": 0 }, { "address": "0x140015f0e", "size": 3, "mnemonic": "movsxd", - "operands": "r9, eax" + "operands": "r9, eax", + "stack_offset": 0 }, { "address": "0x140015f11", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x40]" + "operands": "r8, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140015f16", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140015f19", "size": 5, "mnemonic": "call", - "operands": "0x14001c3c0" + "operands": "0x14001c3c0", + "stack_offset": 0 }, { "address": "0x140015f1e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015f20", "size": 6, "mnemonic": "jne", - "operands": "0x14001603b" + "operands": "0x14001603b", + "stack_offset": 0 }, { "address": "0x140015f26", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015f28", "size": 5, "mnemonic": "jmp", - "operands": "0x140016019" + "operands": "0x140016019", + "stack_offset": 0 } ], "successors": [ @@ -53685,31 +60026,36 @@ "address": "0x140015f96", "size": 3, "mnemonic": "or", - "operands": "edi, 0xffffffff" + "operands": "edi, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140015f99", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140015f9c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140015fa1", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140015fa3", "size": 2, "mnemonic": "jmp", - "operands": "0x140016019" + "operands": "0x140016019", + "stack_offset": 0 } ], "successors": [ @@ -53726,49 +60072,57 @@ "address": "0x140015f71", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x140015f74", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], r15d" + "operands": "dword ptr [rsp + 0x20], r15d", + "stack_offset": 0 }, { "address": "0x140015f79", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebp" + "operands": "r8d, ebp", + "stack_offset": 0 }, { "address": "0x140015f7c", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140015f7f", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140015f82", "size": 5, "mnemonic": "call", - "operands": "0x140015d0c" + "operands": "0x140015d0c", + "stack_offset": 0 }, { "address": "0x140015f87", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015f89", "size": 2, "mnemonic": "je", - "operands": "0x140015f96" + "operands": "0x140015f96", + "stack_offset": 0 } ], "successors": [ @@ -53786,73 +60140,85 @@ "address": "0x140016019", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xc0]" + "operands": "rcx, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140016021", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140016024", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140016029", "size": 7, "mnemonic": "add", - "operands": "rsp, 0xd0" + "operands": "rsp, 0xd0", + "stack_offset": 0 }, { "address": "0x140016030", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016032", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140016034", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140016036", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140016037", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140016038", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140016039", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001603a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -53868,25 +60234,29 @@ "address": "0x140015f8b", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140015f8e", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x140015f91", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x140015f94", "size": 2, "mnemonic": "jmp", - "operands": "0x140015f99" + "operands": "0x140015f99", + "stack_offset": 0 } ], "successors": [ @@ -53903,25 +60273,29 @@ "address": "0x140015f99", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140015f9c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140015fa1", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140015fa3", "size": 2, "mnemonic": "jmp", - "operands": "0x140016019" + "operands": "0x140016019", + "stack_offset": 0 } ], "successors": [ @@ -53944,235 +60318,274 @@ "address": "0x140016050", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140016052", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140016054", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140016056", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140016058", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001605a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14001605e", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp + 0x30]" + "operands": "rbp, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140016063", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x60], rbx" + "operands": "qword ptr [rbp + 0x60], rbx", + "stack_offset": 0 }, { "address": "0x140016067", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x68], rsi" + "operands": "qword ptr [rbp + 0x68], rsi", + "stack_offset": 0 }, { "address": "0x14001606b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x70], rdi" + "operands": "qword ptr [rbp + 0x70], rdi", + "stack_offset": 0 }, { "address": "0x14001606f", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1afca]" + "operands": "rax, qword ptr [rip + 0x1afca]", + "stack_offset": 0 }, { "address": "0x140016076", "size": 3, "mnemonic": "xor", - "operands": "rax, rbp" + "operands": "rax, rbp", + "stack_offset": 0 }, { "address": "0x140016079", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x28], rax" + "operands": "qword ptr [rbp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14001607d", "size": 3, "mnemonic": "mov", - "operands": "r13d, edx" + "operands": "r13d, edx", + "stack_offset": 0 }, { "address": "0x140016080", "size": 3, "mnemonic": "mov", - "operands": "r15d, r9d" + "operands": "r15d, r9d", + "stack_offset": 0 }, { "address": "0x140016083", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x140016086", "size": 3, "mnemonic": "mov", - "operands": "r12, r8" + "operands": "r12, r8", + "stack_offset": 0 }, { "address": "0x140016089", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 8]" + "operands": "rcx, [rbp + 8]", + "stack_offset": 0 }, { "address": "0x14001608d", "size": 5, "mnemonic": "call", - "operands": "0x14000d89c" + "operands": "0x14000d89c", + "stack_offset": 0 }, { "address": "0x140016092", "size": 6, "mnemonic": "mov", - "operands": "edi, dword ptr [rbp + 0x88]" + "operands": "edi, dword ptr [rbp + 0x88]", + "stack_offset": 0 }, { "address": "0x140016098", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001609a", "size": 2, "mnemonic": "jne", - "operands": "0x1400160a3" + "operands": "0x1400160a3", + "stack_offset": 0 }, { "address": "0x14001609c", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x10]" + "operands": "rax, qword ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x1400160a0", "size": 3, "mnemonic": "mov", - "operands": "edi, dword ptr [rax + 0xc]" + "operands": "edi, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x1400160a3", "size": 6, "mnemonic": "neg", - "operands": "dword ptr [rbp + 0x90]" + "operands": "dword ptr [rbp + 0x90]", + "stack_offset": 0 }, { "address": "0x1400160a9", "size": 3, "mnemonic": "mov", - "operands": "r9d, r15d" + "operands": "r9d, r15d", + "stack_offset": 0 }, { "address": "0x1400160ac", "size": 3, "mnemonic": "mov", - "operands": "r8, r12" + "operands": "r8, r12", + "stack_offset": 0 }, { "address": "0x1400160af", "size": 2, "mnemonic": "mov", - "operands": "ecx, edi" + "operands": "ecx, edi", + "stack_offset": 0 }, { "address": "0x1400160b1", "size": 2, "mnemonic": "sbb", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400160b3", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x28], 0" + "operands": "dword ptr [rsp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x1400160b8", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x1400160be", "size": 3, "mnemonic": "and", - "operands": "edx, 8" + "operands": "edx, 8", + "stack_offset": 0 }, { "address": "0x1400160c1", "size": 2, "mnemonic": "inc", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x1400160c3", "size": 5, "mnemonic": "call", - "operands": "0x14001702c" + "operands": "0x14001702c", + "stack_offset": 0 }, { "address": "0x1400160c8", "size": 3, "mnemonic": "movsxd", - "operands": "r14, eax" + "operands": "r14, eax", + "stack_offset": 0 }, { "address": "0x1400160cb", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400160cd", "size": 2, "mnemonic": "jne", - "operands": "0x1400160d6" + "operands": "0x1400160d6", + "stack_offset": 0 }, { "address": "0x1400160cf", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x1400160d1", "size": 5, "mnemonic": "jmp", - "operands": "0x1400161a6" + "operands": "0x1400161a6", + "stack_offset": 0 } ], "successors": [ @@ -54189,13 +60602,15 @@ "address": "0x1400161a6", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0x20], 0" + "operands": "byte ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x1400161aa", "size": 2, "mnemonic": "je", - "operands": "0x1400161b7" + "operands": "0x1400161b7", + "stack_offset": 0 } ], "successors": [ @@ -54213,85 +60628,99 @@ "address": "0x1400161b7", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x1400161b9", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x28]" + "operands": "rcx, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x1400161bd", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x1400161c0", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x1400161c5", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0x60]" + "operands": "rbx, qword ptr [rbp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400161c9", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x68]" + "operands": "rsi, qword ptr [rbp + 0x68]", + "stack_offset": 0 }, { "address": "0x1400161cd", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x70]" + "operands": "rdi, qword ptr [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400161d1", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x30]" + "operands": "rsp, [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400161d5", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400161d7", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400161d9", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400161db", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400161dd", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400161de", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -54307,97 +60736,113 @@ "address": "0x1400161ac", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 8]" + "operands": "rax, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x1400161b0", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rax + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rax + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x1400161b7", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x1400161b9", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x28]" + "operands": "rcx, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x1400161bd", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x1400161c0", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x1400161c5", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0x60]" + "operands": "rbx, qword ptr [rbp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400161c9", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x68]" + "operands": "rsi, qword ptr [rbp + 0x68]", + "stack_offset": 0 }, { "address": "0x1400161cd", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x70]" + "operands": "rdi, qword ptr [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400161d1", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x30]" + "operands": "rsp, [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400161d5", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400161d7", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400161d9", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400161db", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400161dd", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400161de", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -54419,157 +60864,183 @@ "address": "0x1400161e0", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400161e2", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400161e4", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400161e6", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400161e8", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400161ea", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x1400161ee", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp + 0x50]" + "operands": "rbp, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400161f3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x40], rbx" + "operands": "qword ptr [rbp + 0x40], rbx", + "stack_offset": 0 }, { "address": "0x1400161f7", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x48], rsi" + "operands": "qword ptr [rbp + 0x48], rsi", + "stack_offset": 0 }, { "address": "0x1400161fb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x50], rdi" + "operands": "qword ptr [rbp + 0x50], rdi", + "stack_offset": 0 }, { "address": "0x1400161ff", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1ae3a]" + "operands": "rax, qword ptr [rip + 0x1ae3a]", + "stack_offset": 0 }, { "address": "0x140016206", "size": 3, "mnemonic": "xor", - "operands": "rax, rbp" + "operands": "rax, rbp", + "stack_offset": 0 }, { "address": "0x140016209", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 8], rax" + "operands": "qword ptr [rbp + 8], rax", + "stack_offset": 0 }, { "address": "0x14001620d", "size": 4, "mnemonic": "movsxd", - "operands": "rdi, dword ptr [rbp + 0x60]" + "operands": "rdi, dword ptr [rbp + 0x60]", + "stack_offset": 0 }, { "address": "0x140016211", "size": 3, "mnemonic": "mov", - "operands": "rsi, r9" + "operands": "rsi, r9", + "stack_offset": 0 }, { "address": "0x140016214", "size": 3, "mnemonic": "mov", - "operands": "r12d, r8d" + "operands": "r12d, r8d", + "stack_offset": 0 }, { "address": "0x140016217", "size": 3, "mnemonic": "mov", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x14001621a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001621d", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001621f", "size": 2, "mnemonic": "jle", - "operands": "0x140016235" + "operands": "0x140016235", + "stack_offset": 0 }, { "address": "0x140016221", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140016224", "size": 3, "mnemonic": "mov", - "operands": "rcx, r9" + "operands": "rcx, r9", + "stack_offset": 0 }, { "address": "0x140016227", "size": 5, "mnemonic": "call", - "operands": "0x14000d9c0" + "operands": "0x14000d9c0", + "stack_offset": 0 }, { "address": "0x14001622c", "size": 2, "mnemonic": "cmp", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14001622e", "size": 3, "mnemonic": "lea", - "operands": "edi, [rax + 1]" + "operands": "edi, [rax + 1]", + "stack_offset": 0 }, { "address": "0x140016231", "size": 2, "mnemonic": "jl", - "operands": "0x140016235" + "operands": "0x140016235", + "stack_offset": 0 } ], "successors": [ @@ -54587,115 +61058,134 @@ "address": "0x140016235", "size": 4, "mnemonic": "mov", - "operands": "r14d, dword ptr [rbp + 0x78]" + "operands": "r14d, dword ptr [rbp + 0x78]", + "stack_offset": 0 }, { "address": "0x140016239", "size": 3, "mnemonic": "test", - "operands": "r14d, r14d" + "operands": "r14d, r14d", + "stack_offset": 0 }, { "address": "0x14001623c", "size": 2, "mnemonic": "jne", - "operands": "0x140016245" + "operands": "0x140016245", + "stack_offset": 0 }, { "address": "0x14001623e", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140016241", "size": 4, "mnemonic": "mov", - "operands": "r14d, dword ptr [rax + 0xc]" + "operands": "r14d, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x140016245", "size": 6, "mnemonic": "neg", - "operands": "dword ptr [rbp + 0x80]" + "operands": "dword ptr [rbp + 0x80]", + "stack_offset": 0 }, { "address": "0x14001624b", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x14001624e", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140016251", "size": 3, "mnemonic": "mov", - "operands": "ecx, r14d" + "operands": "ecx, r14d", + "stack_offset": 0 }, { "address": "0x140016254", "size": 2, "mnemonic": "sbb", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140016256", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x28], 0" + "operands": "dword ptr [rsp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x14001625b", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x140016261", "size": 3, "mnemonic": "and", - "operands": "edx, 8" + "operands": "edx, 8", + "stack_offset": 0 }, { "address": "0x140016264", "size": 2, "mnemonic": "inc", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x140016266", "size": 5, "mnemonic": "call", - "operands": "0x14001702c" + "operands": "0x14001702c", + "stack_offset": 0 }, { "address": "0x14001626b", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001626d", "size": 3, "mnemonic": "movsxd", - "operands": "r15, eax" + "operands": "r15, eax", + "stack_offset": 0 }, { "address": "0x140016270", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140016272", "size": 6, "mnemonic": "je", - "operands": "0x1400164eb" + "operands": "0x1400164eb", + "stack_offset": 0 } ], "successors": [ @@ -54713,121 +61203,141 @@ "address": "0x140016233", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140016235", "size": 4, "mnemonic": "mov", - "operands": "r14d, dword ptr [rbp + 0x78]" + "operands": "r14d, dword ptr [rbp + 0x78]", + "stack_offset": 0 }, { "address": "0x140016239", "size": 3, "mnemonic": "test", - "operands": "r14d, r14d" + "operands": "r14d, r14d", + "stack_offset": 0 }, { "address": "0x14001623c", "size": 2, "mnemonic": "jne", - "operands": "0x140016245" + "operands": "0x140016245", + "stack_offset": 0 }, { "address": "0x14001623e", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140016241", "size": 4, "mnemonic": "mov", - "operands": "r14d, dword ptr [rax + 0xc]" + "operands": "r14d, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x140016245", "size": 6, "mnemonic": "neg", - "operands": "dword ptr [rbp + 0x80]" + "operands": "dword ptr [rbp + 0x80]", + "stack_offset": 0 }, { "address": "0x14001624b", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x14001624e", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140016251", "size": 3, "mnemonic": "mov", - "operands": "ecx, r14d" + "operands": "ecx, r14d", + "stack_offset": 0 }, { "address": "0x140016254", "size": 2, "mnemonic": "sbb", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140016256", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x28], 0" + "operands": "dword ptr [rsp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x14001625b", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x140016261", "size": 3, "mnemonic": "and", - "operands": "edx, 8" + "operands": "edx, 8", + "stack_offset": 0 }, { "address": "0x140016264", "size": 2, "mnemonic": "inc", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x140016266", "size": 5, "mnemonic": "call", - "operands": "0x14001702c" + "operands": "0x14001702c", + "stack_offset": 0 }, { "address": "0x14001626b", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001626d", "size": 3, "mnemonic": "movsxd", - "operands": "r15, eax" + "operands": "r15, eax", + "stack_offset": 0 }, { "address": "0x140016270", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140016272", "size": 6, "mnemonic": "je", - "operands": "0x1400164eb" + "operands": "0x1400164eb", + "stack_offset": 0 } ], "successors": [ @@ -54845,79 +61355,92 @@ "address": "0x1400164eb", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 8]" + "operands": "rcx, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x1400164ef", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x1400164f2", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x1400164f7", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0x40]" + "operands": "rbx, qword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400164fb", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x48]" + "operands": "rsi, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x1400164ff", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x50]" + "operands": "rdi, qword ptr [rbp + 0x50]", + "stack_offset": 0 }, { "address": "0x140016503", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x10]" + "operands": "rsp, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140016507", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016509", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001650b", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001650d", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001650f", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140016510", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -54933,43 +61456,50 @@ "address": "0x140016278", "size": 3, "mnemonic": "mov", - "operands": "rax, r15" + "operands": "rax, r15", + "stack_offset": 0 }, { "address": "0x14001627b", "size": 3, "mnemonic": "add", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001627e", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + 0x10]" + "operands": "rcx, [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140016282", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140016285", "size": 3, "mnemonic": "sbb", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140016288", "size": 3, "mnemonic": "and", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14001628b", "size": 6, "mnemonic": "je", - "operands": "0x1400164ce" + "operands": "0x1400164ce", + "stack_offset": 0 } ], "successors": [ @@ -54987,25 +61517,29 @@ "address": "0x1400164ce", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x1400164d1", "size": 2, "mnemonic": "mov", - "operands": "esi, edx" + "operands": "esi, edx", + "stack_offset": 0 }, { "address": "0x1400164d3", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400164d6", "size": 2, "mnemonic": "je", - "operands": "0x1400164e9" + "operands": "0x1400164e9", + "stack_offset": 0 } ], "successors": [ @@ -55023,19 +61557,22 @@ "address": "0x140016291", "size": 10, "mnemonic": "movabs", - "operands": "r8, 0xffffffffffffff0" + "operands": "r8, 0xffffffffffffff0", + "stack_offset": 0 }, { "address": "0x14001629b", "size": 6, "mnemonic": "cmp", - "operands": "rax, 0x400" + "operands": "rax, 0x400", + "stack_offset": 0 }, { "address": "0x1400162a1", "size": 2, "mnemonic": "ja", - "operands": "0x1400162d4" + "operands": "0x1400162d4", + "stack_offset": 0 } ], "successors": [ @@ -55053,85 +61590,99 @@ "address": "0x1400164e9", "size": 2, "mnemonic": "mov", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x1400164eb", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 8]" + "operands": "rcx, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x1400164ef", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x1400164f2", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x1400164f7", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0x40]" + "operands": "rbx, qword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400164fb", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x48]" + "operands": "rsi, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x1400164ff", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x50]" + "operands": "rdi, qword ptr [rbp + 0x50]", + "stack_offset": 0 }, { "address": "0x140016503", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x10]" + "operands": "rsp, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140016507", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016509", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001650b", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001650d", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001650f", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140016510", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -55147,109 +61698,127 @@ "address": "0x1400164d8", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx - 0x10]" + "operands": "rcx, [rbx - 0x10]", + "stack_offset": 0 }, { "address": "0x1400164dc", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0xdddd" + "operands": "dword ptr [rcx], 0xdddd", + "stack_offset": 0 }, { "address": "0x1400164e2", "size": 2, "mnemonic": "jne", - "operands": "0x1400164e9" + "operands": "0x1400164e9", + "stack_offset": 0 }, { "address": "0x1400164e4", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x1400164e9", "size": 2, "mnemonic": "mov", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x1400164eb", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 8]" + "operands": "rcx, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x1400164ef", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x1400164f2", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x1400164f7", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0x40]" + "operands": "rbx, qword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400164fb", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rbp + 0x48]" + "operands": "rsi, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x1400164ff", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x50]" + "operands": "rdi, qword ptr [rbp + 0x50]", + "stack_offset": 0 }, { "address": "0x140016503", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x10]" + "operands": "rsp, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140016507", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016509", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001650b", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001650d", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001650f", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140016510", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -55265,37 +61834,43 @@ "address": "0x1400162d4", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x1400162d7", "size": 5, "mnemonic": "call", - "operands": "0x140015200" + "operands": "0x140015200", + "stack_offset": 0 }, { "address": "0x1400162dc", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400162de", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400162e1", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400162e4", "size": 2, "mnemonic": "je", - "operands": "0x1400162f0" + "operands": "0x1400162f0", + "stack_offset": 0 } ], "successors": [ @@ -55313,19 +61888,22 @@ "address": "0x1400162a3", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + 0xf]" + "operands": "rcx, [rax + 0xf]", + "stack_offset": 0 }, { "address": "0x1400162a7", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x1400162aa", "size": 2, "mnemonic": "ja", - "operands": "0x1400162af" + "operands": "0x1400162af", + "stack_offset": 0 } ], "successors": [ @@ -55343,13 +61921,15 @@ "address": "0x1400162f0", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400162f3", "size": 6, "mnemonic": "je", - "operands": "0x1400164d1" + "operands": "0x1400164d1", + "stack_offset": 0 } ], "successors": [ @@ -55367,25 +61947,29 @@ "address": "0x1400162e6", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0xdddd" + "operands": "dword ptr [rax], 0xdddd", + "stack_offset": 0 }, { "address": "0x1400162ec", "size": 4, "mnemonic": "add", - "operands": "rbx, 0x10" + "operands": "rbx, 0x10", + "stack_offset": 0 }, { "address": "0x1400162f0", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400162f3", "size": 6, "mnemonic": "je", - "operands": "0x1400164d1" + "operands": "0x1400164d1", + "stack_offset": 0 } ], "successors": [ @@ -55403,43 +61987,50 @@ "address": "0x1400162af", "size": 4, "mnemonic": "and", - "operands": "rcx, 0xfffffffffffffff0" + "operands": "rcx, 0xfffffffffffffff0", + "stack_offset": 0 }, { "address": "0x1400162b3", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x1400162b6", "size": 5, "mnemonic": "call", - "operands": "0x1400057a0" + "operands": "0x1400057a0", + "stack_offset": 0 }, { "address": "0x1400162bb", "size": 3, "mnemonic": "sub", - "operands": "rsp, rcx" + "operands": "rsp, rcx", + "stack_offset": 0 }, { "address": "0x1400162be", "size": 5, "mnemonic": "lea", - "operands": "rbx, [rsp + 0x50]" + "operands": "rbx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400162c3", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400162c6", "size": 6, "mnemonic": "je", - "operands": "0x1400164d1" + "operands": "0x1400164d1", + "stack_offset": 0 } ], "successors": [ @@ -55457,49 +62048,57 @@ "address": "0x1400162ac", "size": 3, "mnemonic": "mov", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x1400162af", "size": 4, "mnemonic": "and", - "operands": "rcx, 0xfffffffffffffff0" + "operands": "rcx, 0xfffffffffffffff0", + "stack_offset": 0 }, { "address": "0x1400162b3", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x1400162b6", "size": 5, "mnemonic": "call", - "operands": "0x1400057a0" + "operands": "0x1400057a0", + "stack_offset": 0 }, { "address": "0x1400162bb", "size": 3, "mnemonic": "sub", - "operands": "rsp, rcx" + "operands": "rsp, rcx", + "stack_offset": 0 }, { "address": "0x1400162be", "size": 5, "mnemonic": "lea", - "operands": "rbx, [rsp + 0x50]" + "operands": "rbx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400162c3", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400162c6", "size": 6, "mnemonic": "je", - "operands": "0x1400164d1" + "operands": "0x1400164d1", + "stack_offset": 0 } ], "successors": [ @@ -55517,19 +62116,22 @@ "address": "0x1400164d1", "size": 2, "mnemonic": "mov", - "operands": "esi, edx" + "operands": "esi, edx", + "stack_offset": 0 }, { "address": "0x1400164d3", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400164d6", "size": 2, "mnemonic": "je", - "operands": "0x1400164e9" + "operands": "0x1400164e9", + "stack_offset": 0 } ], "successors": [ @@ -55547,61 +62149,71 @@ "address": "0x1400162f9", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], r15d" + "operands": "dword ptr [rsp + 0x28], r15d", + "stack_offset": 0 }, { "address": "0x1400162fe", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x140016301", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140016304", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rbx" + "operands": "qword ptr [rsp + 0x20], rbx", + "stack_offset": 0 }, { "address": "0x140016309", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x14001630e", "size": 3, "mnemonic": "mov", - "operands": "ecx, r14d" + "operands": "ecx, r14d", + "stack_offset": 0 }, { "address": "0x140016311", "size": 5, "mnemonic": "call", - "operands": "0x14001702c" + "operands": "0x14001702c", + "stack_offset": 0 }, { "address": "0x140016316", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140016318", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001631a", "size": 6, "mnemonic": "je", - "operands": "0x1400164d1" + "operands": "0x1400164d1", + "stack_offset": 0 } ], "successors": [ @@ -55619,13 +62231,15 @@ "address": "0x1400162cc", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rbx], 0xcccc" + "operands": "dword ptr [rbx], 0xcccc", + "stack_offset": 0 }, { "address": "0x1400162d2", "size": 2, "mnemonic": "jmp", - "operands": "0x1400162ec" + "operands": "0x1400162ec", + "stack_offset": 0 } ], "successors": [ @@ -55642,85 +62256,99 @@ "address": "0x140016320", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rdx" + "operands": "qword ptr [rsp + 0x40], rdx", + "stack_offset": 0 }, { "address": "0x140016325", "size": 3, "mnemonic": "mov", - "operands": "r9d, r15d" + "operands": "r9d, r15d", + "stack_offset": 0 }, { "address": "0x140016328", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rdx" + "operands": "qword ptr [rsp + 0x38], rdx", + "stack_offset": 0 }, { "address": "0x14001632d", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140016330", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rdx" + "operands": "qword ptr [rsp + 0x30], rdx", + "stack_offset": 0 }, { "address": "0x140016335", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140016338", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], edx" + "operands": "dword ptr [rsp + 0x28], edx", + "stack_offset": 0 }, { "address": "0x14001633c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdx" + "operands": "qword ptr [rsp + 0x20], rdx", + "stack_offset": 0 }, { "address": "0x140016341", "size": 3, "mnemonic": "mov", - "operands": "edx, r12d" + "operands": "edx, r12d", + "stack_offset": 0 }, { "address": "0x140016344", "size": 5, "mnemonic": "call", - "operands": "0x1400121ec" + "operands": "0x1400121ec", + "stack_offset": 0 }, { "address": "0x140016349", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001634b", "size": 3, "mnemonic": "movsxd", - "operands": "rsi, eax" + "operands": "rsi, eax", + "stack_offset": 0 }, { "address": "0x14001634e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140016350", "size": 6, "mnemonic": "je", - "operands": "0x1400164d1" + "operands": "0x1400164d1", + "stack_offset": 0 } ], "successors": [ @@ -55738,19 +62366,22 @@ "address": "0x1400162ec", "size": 4, "mnemonic": "add", - "operands": "rbx, 0x10" + "operands": "rbx, 0x10", + "stack_offset": 0 }, { "address": "0x1400162f0", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400162f3", "size": 6, "mnemonic": "je", - "operands": "0x1400164d1" + "operands": "0x1400164d1", + "stack_offset": 0 } ], "successors": [ @@ -55768,19 +62399,22 @@ "address": "0x140016356", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x400" + "operands": "r8d, 0x400", + "stack_offset": 0 }, { "address": "0x14001635c", "size": 3, "mnemonic": "test", - "operands": "r8d, r12d" + "operands": "r8d, r12d", + "stack_offset": 0 }, { "address": "0x14001635f", "size": 2, "mnemonic": "je", - "operands": "0x1400163b2" + "operands": "0x1400163b2", + "stack_offset": 0 } ], "successors": [ @@ -55798,43 +62432,50 @@ "address": "0x1400163b2", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x1400163b5", "size": 3, "mnemonic": "add", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400163b8", "size": 4, "mnemonic": "lea", - "operands": "rax, [rcx + 0x10]" + "operands": "rax, [rcx + 0x10]", + "stack_offset": 0 }, { "address": "0x1400163bc", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x1400163bf", "size": 3, "mnemonic": "sbb", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400163c2", "size": 3, "mnemonic": "and", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x1400163c5", "size": 6, "mnemonic": "je", - "operands": "0x1400164b1" + "operands": "0x1400164b1", + "stack_offset": 0 } ], "successors": [ @@ -55852,19 +62493,22 @@ "address": "0x140016361", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x70]" + "operands": "eax, dword ptr [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x140016364", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140016366", "size": 6, "mnemonic": "je", - "operands": "0x1400164d8" + "operands": "0x1400164d8", + "stack_offset": 0 } ], "successors": [ @@ -55882,19 +62526,22 @@ "address": "0x1400164b1", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x1400164b4", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x1400164b7", "size": 2, "mnemonic": "je", - "operands": "0x1400164ca" + "operands": "0x1400164ca", + "stack_offset": 0 } ], "successors": [ @@ -55912,13 +62559,15 @@ "address": "0x1400163cb", "size": 3, "mnemonic": "cmp", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x1400163ce", "size": 2, "mnemonic": "ja", - "operands": "0x140016405" + "operands": "0x140016405", + "stack_offset": 0 } ], "successors": [ @@ -55936,13 +62585,15 @@ "address": "0x14001636c", "size": 2, "mnemonic": "cmp", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001636e", "size": 6, "mnemonic": "jg", - "operands": "0x1400164d1" + "operands": "0x1400164d1", + "stack_offset": 0 } ], "successors": [ @@ -55960,13 +62611,15 @@ "address": "0x1400164ca", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x1400164cc", "size": 2, "mnemonic": "jmp", - "operands": "0x1400164d8" + "operands": "0x1400164d8", + "stack_offset": 0 } ], "successors": [ @@ -55983,37 +62636,43 @@ "address": "0x1400164b9", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdi - 0x10]" + "operands": "rcx, [rdi - 0x10]", + "stack_offset": 0 }, { "address": "0x1400164bd", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0xdddd" + "operands": "dword ptr [rcx], 0xdddd", + "stack_offset": 0 }, { "address": "0x1400164c3", "size": 2, "mnemonic": "jne", - "operands": "0x1400164ca" + "operands": "0x1400164ca", + "stack_offset": 0 }, { "address": "0x1400164c5", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x1400164ca", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x1400164cc", "size": 2, "mnemonic": "jmp", - "operands": "0x1400164d8" + "operands": "0x1400164d8", + "stack_offset": 0 } ], "successors": [ @@ -56030,31 +62689,36 @@ "address": "0x140016405", "size": 5, "mnemonic": "call", - "operands": "0x140015200" + "operands": "0x140015200", + "stack_offset": 0 }, { "address": "0x14001640a", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001640c", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14001640f", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140016412", "size": 2, "mnemonic": "je", - "operands": "0x14001641e" + "operands": "0x14001641e", + "stack_offset": 0 } ], "successors": [ @@ -56072,19 +62736,22 @@ "address": "0x1400163d0", "size": 4, "mnemonic": "lea", - "operands": "rax, [rcx + 0xf]" + "operands": "rax, [rcx + 0xf]", + "stack_offset": 0 }, { "address": "0x1400163d4", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x1400163d7", "size": 2, "mnemonic": "ja", - "operands": "0x1400163e3" + "operands": "0x1400163e3", + "stack_offset": 0 } ], "successors": [ @@ -56102,97 +62769,113 @@ "address": "0x140016374", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rdx" + "operands": "qword ptr [rsp + 0x40], rdx", + "stack_offset": 0 }, { "address": "0x140016379", "size": 3, "mnemonic": "mov", - "operands": "r9d, r15d" + "operands": "r9d, r15d", + "stack_offset": 0 }, { "address": "0x14001637c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rdx" + "operands": "qword ptr [rsp + 0x38], rdx", + "stack_offset": 0 }, { "address": "0x140016381", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140016384", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rdx" + "operands": "qword ptr [rsp + 0x30], rdx", + "stack_offset": 0 }, { "address": "0x140016389", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x14001638c", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x140016390", "size": 3, "mnemonic": "mov", - "operands": "edx, r12d" + "operands": "edx, r12d", + "stack_offset": 0 }, { "address": "0x140016393", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x68]" + "operands": "rax, qword ptr [rbp + 0x68]", + "stack_offset": 0 }, { "address": "0x140016397", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001639c", "size": 5, "mnemonic": "call", - "operands": "0x1400121ec" + "operands": "0x1400121ec", + "stack_offset": 0 }, { "address": "0x1400163a1", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400163a3", "size": 2, "mnemonic": "mov", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x1400163a5", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400163a7", "size": 6, "mnemonic": "jne", - "operands": "0x1400164d8" + "operands": "0x1400164d8", + "stack_offset": 0 }, { "address": "0x1400163ad", "size": 5, "mnemonic": "jmp", - "operands": "0x1400164d1" + "operands": "0x1400164d1", + "stack_offset": 0 } ], "successors": [ @@ -56209,13 +62892,15 @@ "address": "0x14001641e", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x140016421", "size": 6, "mnemonic": "je", - "operands": "0x1400164ca" + "operands": "0x1400164ca", + "stack_offset": 0 } ], "successors": [ @@ -56233,25 +62918,29 @@ "address": "0x140016414", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0xdddd" + "operands": "dword ptr [rax], 0xdddd", + "stack_offset": 0 }, { "address": "0x14001641a", "size": 4, "mnemonic": "add", - "operands": "rdi, 0x10" + "operands": "rdi, 0x10", + "stack_offset": 0 }, { "address": "0x14001641e", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x140016421", "size": 6, "mnemonic": "je", - "operands": "0x1400164ca" + "operands": "0x1400164ca", + "stack_offset": 0 } ], "successors": [ @@ -56269,37 +62958,43 @@ "address": "0x1400163e3", "size": 4, "mnemonic": "and", - "operands": "rax, 0xfffffffffffffff0" + "operands": "rax, 0xfffffffffffffff0", + "stack_offset": 0 }, { "address": "0x1400163e7", "size": 5, "mnemonic": "call", - "operands": "0x1400057a0" + "operands": "0x1400057a0", + "stack_offset": 0 }, { "address": "0x1400163ec", "size": 3, "mnemonic": "sub", - "operands": "rsp, rax" + "operands": "rsp, rax", + "stack_offset": 0 }, { "address": "0x1400163ef", "size": 5, "mnemonic": "lea", - "operands": "rdi, [rsp + 0x50]" + "operands": "rdi, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400163f4", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x1400163f7", "size": 6, "mnemonic": "je", - "operands": "0x1400164ca" + "operands": "0x1400164ca", + "stack_offset": 0 } ], "successors": [ @@ -56317,43 +63012,50 @@ "address": "0x1400163d9", "size": 10, "mnemonic": "movabs", - "operands": "rax, 0xffffffffffffff0" + "operands": "rax, 0xffffffffffffff0", + "stack_offset": 0 }, { "address": "0x1400163e3", "size": 4, "mnemonic": "and", - "operands": "rax, 0xfffffffffffffff0" + "operands": "rax, 0xfffffffffffffff0", + "stack_offset": 0 }, { "address": "0x1400163e7", "size": 5, "mnemonic": "call", - "operands": "0x1400057a0" + "operands": "0x1400057a0", + "stack_offset": 0 }, { "address": "0x1400163ec", "size": 3, "mnemonic": "sub", - "operands": "rsp, rax" + "operands": "rsp, rax", + "stack_offset": 0 }, { "address": "0x1400163ef", "size": 5, "mnemonic": "lea", - "operands": "rdi, [rsp + 0x50]" + "operands": "rdi, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400163f4", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x1400163f7", "size": 6, "mnemonic": "je", - "operands": "0x1400164ca" + "operands": "0x1400164ca", + "stack_offset": 0 } ], "successors": [ @@ -56371,79 +63073,92 @@ "address": "0x140016427", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rdx" + "operands": "qword ptr [rsp + 0x40], rdx", + "stack_offset": 0 }, { "address": "0x14001642c", "size": 3, "mnemonic": "mov", - "operands": "r9d, r15d" + "operands": "r9d, r15d", + "stack_offset": 0 }, { "address": "0x14001642f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rdx" + "operands": "qword ptr [rsp + 0x38], rdx", + "stack_offset": 0 }, { "address": "0x140016434", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140016437", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rdx" + "operands": "qword ptr [rsp + 0x30], rdx", + "stack_offset": 0 }, { "address": "0x14001643c", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x14001643f", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], esi" + "operands": "dword ptr [rsp + 0x28], esi", + "stack_offset": 0 }, { "address": "0x140016443", "size": 3, "mnemonic": "mov", - "operands": "edx, r12d" + "operands": "edx, r12d", + "stack_offset": 0 }, { "address": "0x140016446", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x14001644b", "size": 5, "mnemonic": "call", - "operands": "0x1400121ec" + "operands": "0x1400121ec", + "stack_offset": 0 }, { "address": "0x140016450", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140016452", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140016454", "size": 2, "mnemonic": "je", - "operands": "0x1400164b4" + "operands": "0x1400164b4", + "stack_offset": 0 } ], "successors": [ @@ -56461,13 +63176,15 @@ "address": "0x1400163fd", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rdi], 0xcccc" + "operands": "dword ptr [rdi], 0xcccc", + "stack_offset": 0 }, { "address": "0x140016403", "size": 2, "mnemonic": "jmp", - "operands": "0x14001641a" + "operands": "0x14001641a", + "stack_offset": 0 } ], "successors": [ @@ -56484,13 +63201,15 @@ "address": "0x1400164b4", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x1400164b7", "size": 2, "mnemonic": "je", - "operands": "0x1400164ca" + "operands": "0x1400164ca", + "stack_offset": 0 } ], "successors": [ @@ -56508,91 +63227,106 @@ "address": "0x140016456", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x70]" + "operands": "eax, dword ptr [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x140016459", "size": 3, "mnemonic": "mov", - "operands": "r9d, esi" + "operands": "r9d, esi", + "stack_offset": 0 }, { "address": "0x14001645c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rdx" + "operands": "qword ptr [rsp + 0x38], rdx", + "stack_offset": 0 }, { "address": "0x140016461", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x140016464", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rdx" + "operands": "qword ptr [rsp + 0x30], rdx", + "stack_offset": 0 }, { "address": "0x140016469", "size": 3, "mnemonic": "mov", - "operands": "ecx, r14d" + "operands": "ecx, r14d", + "stack_offset": 0 }, { "address": "0x14001646c", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001646e", "size": 2, "mnemonic": "jne", - "operands": "0x140016486" + "operands": "0x140016486", + "stack_offset": 0 }, { "address": "0x140016470", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], edx" + "operands": "dword ptr [rsp + 0x28], edx", + "stack_offset": 0 }, { "address": "0x140016474", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdx" + "operands": "qword ptr [rsp + 0x20], rdx", + "stack_offset": 0 }, { "address": "0x140016479", "size": 5, "mnemonic": "call", - "operands": "0x1400170bc" + "operands": "0x1400170bc", + "stack_offset": 0 }, { "address": "0x14001647e", "size": 2, "mnemonic": "mov", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x140016480", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140016482", "size": 2, "mnemonic": "jne", - "operands": "0x14001649e" + "operands": "0x14001649e", + "stack_offset": 0 }, { "address": "0x140016484", "size": 2, "mnemonic": "jmp", - "operands": "0x1400164b4" + "operands": "0x1400164b4", + "stack_offset": 0 } ], "successors": [ @@ -56609,19 +63343,22 @@ "address": "0x14001641a", "size": 4, "mnemonic": "add", - "operands": "rdi, 0x10" + "operands": "rdi, 0x10", + "stack_offset": 0 }, { "address": "0x14001641e", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x140016421", "size": 6, "mnemonic": "je", - "operands": "0x1400164ca" + "operands": "0x1400164ca", + "stack_offset": 0 } ], "successors": [ @@ -56645,175 +63382,204 @@ "address": "0x140016bca", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140016bcb", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140016bcc", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140016bcd", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140016bcf", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140016bd1", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016bd3", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x140016bd7", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1a462]" + "operands": "rax, qword ptr [rip + 0x1a462]", + "stack_offset": 0 }, { "address": "0x140016bde", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140016be1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rax" + "operands": "qword ptr [rsp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x140016be6", "size": 8, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0xa0]" + "operands": "rsi, qword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x140016bee", "size": 7, "mnemonic": "lea", - "operands": "rbx, [rip + 0x1cb4b]" + "operands": "rbx, [rip + 0x1cb4b]", + "stack_offset": 0 }, { "address": "0x140016bf5", "size": 3, "mnemonic": "xor", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x140016bf8", "size": 7, "mnemonic": "lea", - "operands": "rdi, [rip + 0xa881]" + "operands": "rdi, [rip + 0xa881]", + "stack_offset": 0 }, { "address": "0x140016bff", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x140016c02", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x140016c05", "size": 3, "mnemonic": "mov", - "operands": "r15, rdx" + "operands": "r15, rdx", + "stack_offset": 0 }, { "address": "0x140016c08", "size": 4, "mnemonic": "cmovne", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x140016c0c", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140016c0f", "size": 5, "mnemonic": "lea", - "operands": "ebp, [r12 + 1]" + "operands": "ebp, [r12 + 1]", + "stack_offset": 0 }, { "address": "0x140016c14", "size": 4, "mnemonic": "cmovne", - "operands": "rbp, r8" + "operands": "rbp, r8", + "stack_offset": 0 }, { "address": "0x140016c18", "size": 4, "mnemonic": "cmovne", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140016c1c", "size": 3, "mnemonic": "neg", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x140016c1f", "size": 3, "mnemonic": "sbb", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x140016c22", "size": 3, "mnemonic": "and", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140016c25", "size": 3, "mnemonic": "test", - "operands": "rbp, rbp" + "operands": "rbp, rbp", + "stack_offset": 0 }, { "address": "0x140016c28", "size": 2, "mnemonic": "jne", - "operands": "0x140016c36" + "operands": "0x140016c36", + "stack_offset": 0 }, { "address": "0x140016c2a", "size": 7, "mnemonic": "mov", - "operands": "rax, 0xfffffffffffffffe" + "operands": "rax, 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x140016c31", "size": 5, "mnemonic": "jmp", - "operands": "0x140016d69" + "operands": "0x140016d69", + "stack_offset": 0 } ], "successors": [ @@ -56830,73 +63596,85 @@ "address": "0x140016d69", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x30]" + "operands": "rcx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140016d6e", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140016d71", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140016d76", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x140016d7a", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016d7c", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140016d7e", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140016d80", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140016d81", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140016d82", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140016d83", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140016d84", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -56918,91 +63696,106 @@ "address": "0x140017260", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140017262", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140017263", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x140017267", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x14001726a", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x14001726d", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140017270", "size": 2, "mnemonic": "jne", - "operands": "0x14001728e" + "operands": "0x14001728e", + "stack_offset": 0 }, { "address": "0x140017272", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x140017277", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x14001727d", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x140017282", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x7fffffff" + "operands": "eax, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x140017287", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x14001728b", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001728c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001728d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -57024,121 +63817,141 @@ "address": "0x140017819", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001781a", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001781b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001781c", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001781e", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140017820", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140017822", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140017824", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140017827", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14001782b", "size": 3, "mnemonic": "xor", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14001782e", "size": 3, "mnemonic": "mov", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x140017831", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140017834", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140017837", "size": 2, "mnemonic": "jne", - "operands": "0x140017850" + "operands": "0x140017850", + "stack_offset": 0 }, { "address": "0x140017839", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14001783e", "size": 4, "mnemonic": "lea", - "operands": "ebx, [r13 + 0x16]" + "operands": "ebx, [r13 + 0x16]", + "stack_offset": 0 }, { "address": "0x140017842", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rax], ebx" + "operands": "dword ptr [rax], ebx", + "stack_offset": 0 }, { "address": "0x140017844", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x140017849", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x14001784b", "size": 5, "mnemonic": "jmp", - "operands": "0x140017a20" + "operands": "0x140017a20", + "stack_offset": 0 } ], "successors": [ @@ -57155,61 +63968,71 @@ "address": "0x140017a20", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x90]" + "operands": "rbx, qword ptr [rsp + 0x90]", + "stack_offset": 0 }, { "address": "0x140017a28", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x140017a2c", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140017a2e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140017a30", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140017a32", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140017a34", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017a35", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140017a36", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140017a37", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -57231,103 +64054,120 @@ "address": "0x140017bd4", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140017bd6", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140017bd7", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140017bd8", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017bd9", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140017bdb", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140017bdd", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140017bdf", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x240]" + "operands": "rbp, [rsp - 0x240]", + "stack_offset": 0 }, { "address": "0x140017be7", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x340" + "operands": "rsp, 0x340", + "stack_offset": 0 }, { "address": "0x140017bee", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1944b]" + "operands": "rax, qword ptr [rip + 0x1944b]", + "stack_offset": 0 }, { "address": "0x140017bf5", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140017bf8", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x230], rax" + "operands": "qword ptr [rbp + 0x230], rax", + "stack_offset": 0 }, { "address": "0x140017bff", "size": 3, "mnemonic": "mov", - "operands": "r12, r8" + "operands": "r12, r8", + "stack_offset": 0 }, { "address": "0x140017c02", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140017c05", "size": 10, "mnemonic": "movabs", - "operands": "rbx, 0x200000000801" + "operands": "rbx, 0x200000000801", + "stack_offset": 0 }, { "address": "0x140017c0f", "size": 3, "mnemonic": "cmp", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x140017c12", "size": 2, "mnemonic": "je", - "operands": "0x140017c36" + "operands": "0x140017c36", + "stack_offset": 0 } ], "successors": [ @@ -57345,37 +64185,43 @@ "address": "0x140017c36", "size": 3, "mnemonic": "mov", - "operands": "r8b, byte ptr [rdx]" + "operands": "r8b, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140017c39", "size": 4, "mnemonic": "cmp", - "operands": "r8b, 0x3a" + "operands": "r8b, 0x3a", + "stack_offset": 0 }, { "address": "0x140017c3d", "size": 2, "mnemonic": "jne", - "operands": "0x140017c5d" + "operands": "0x140017c5d", + "stack_offset": 0 }, { "address": "0x140017c3f", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdi + 1]" + "operands": "rax, [rdi + 1]", + "stack_offset": 0 }, { "address": "0x140017c43", "size": 3, "mnemonic": "cmp", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140017c46", "size": 2, "mnemonic": "je", - "operands": "0x140017c5d" + "operands": "0x140017c5d", + "stack_offset": 0 } ], "successors": [ @@ -57393,25 +64239,29 @@ "address": "0x140017c14", "size": 2, "mnemonic": "mov", - "operands": "al, byte ptr [rdx]" + "operands": "al, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140017c16", "size": 2, "mnemonic": "sub", - "operands": "al, 0x2f" + "operands": "al, 0x2f", + "stack_offset": 0 }, { "address": "0x140017c18", "size": 2, "mnemonic": "cmp", - "operands": "al, 0x2d" + "operands": "al, 0x2d", + "stack_offset": 0 }, { "address": "0x140017c1a", "size": 2, "mnemonic": "ja", - "operands": "0x140017c26" + "operands": "0x140017c26", + "stack_offset": 0 } ], "successors": [ @@ -57429,25 +64279,29 @@ "address": "0x140017c5d", "size": 4, "mnemonic": "sub", - "operands": "r8b, 0x2f" + "operands": "r8b, 0x2f", + "stack_offset": 0 }, { "address": "0x140017c61", "size": 3, "mnemonic": "xor", - "operands": "r14d, r14d" + "operands": "r14d, r14d", + "stack_offset": 0 }, { "address": "0x140017c64", "size": 4, "mnemonic": "cmp", - "operands": "r8b, 0x2d" + "operands": "r8b, 0x2d", + "stack_offset": 0 }, { "address": "0x140017c68", "size": 2, "mnemonic": "ja", - "operands": "0x140017c76" + "operands": "0x140017c76", + "stack_offset": 0 } ], "successors": [ @@ -57465,37 +64319,43 @@ "address": "0x140017c48", "size": 3, "mnemonic": "mov", - "operands": "r9, r12" + "operands": "r9, r12", + "stack_offset": 0 }, { "address": "0x140017c4b", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140017c4e", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140017c50", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140017c53", "size": 5, "mnemonic": "call", - "operands": "0x140017a50" + "operands": "0x140017a50", + "stack_offset": 0 }, { "address": "0x140017c58", "size": 5, "mnemonic": "jmp", - "operands": "0x140017f11" + "operands": "0x140017f11", + "stack_offset": 0 } ], "successors": [ @@ -57512,67 +64372,78 @@ "address": "0x140017c26", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140017c29", "size": 5, "mnemonic": "call", - "operands": "0x14001cea8" + "operands": "0x14001cea8", + "stack_offset": 0 }, { "address": "0x140017c2e", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140017c31", "size": 3, "mnemonic": "cmp", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140017c34", "size": 2, "mnemonic": "jne", - "operands": "0x140017c14" + "operands": "0x140017c14", + "stack_offset": 0 }, { "address": "0x140017c36", "size": 3, "mnemonic": "mov", - "operands": "r8b, byte ptr [rdx]" + "operands": "r8b, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140017c39", "size": 4, "mnemonic": "cmp", - "operands": "r8b, 0x3a" + "operands": "r8b, 0x3a", + "stack_offset": 0 }, { "address": "0x140017c3d", "size": 2, "mnemonic": "jne", - "operands": "0x140017c5d" + "operands": "0x140017c5d", + "stack_offset": 0 }, { "address": "0x140017c3f", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdi + 1]" + "operands": "rax, [rdi + 1]", + "stack_offset": 0 }, { "address": "0x140017c43", "size": 3, "mnemonic": "cmp", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140017c46", "size": 2, "mnemonic": "je", - "operands": "0x140017c5d" + "operands": "0x140017c5d", + "stack_offset": 0 } ], "successors": [ @@ -57590,19 +64461,22 @@ "address": "0x140017c1c", "size": 4, "mnemonic": "movsx", - "operands": "rax, al" + "operands": "rax, al", + "stack_offset": 0 }, { "address": "0x140017c20", "size": 4, "mnemonic": "bt", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140017c24", "size": 2, "mnemonic": "jb", - "operands": "0x140017c36" + "operands": "0x140017c36", + "stack_offset": 0 } ], "successors": [ @@ -57620,157 +64494,183 @@ "address": "0x140017c76", "size": 3, "mnemonic": "mov", - "operands": "al, r14b" + "operands": "al, r14b", + "stack_offset": 0 }, { "address": "0x140017c79", "size": 3, "mnemonic": "sub", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140017c7c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x20]" + "operands": "rcx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x140017c80", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x140017c83", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x250" + "operands": "r8d, 0x250", + "stack_offset": 0 }, { "address": "0x140017c89", "size": 2, "mnemonic": "neg", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x140017c8b", "size": 3, "mnemonic": "sbb", - "operands": "r13, r13" + "operands": "r13, r13", + "stack_offset": 0 }, { "address": "0x140017c8e", "size": 3, "mnemonic": "and", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x140017c91", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140017c93", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], r13" + "operands": "qword ptr [rsp + 0x38], r13", + "stack_offset": 0 }, { "address": "0x140017c98", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x140017c9d", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140017c9f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], r14" + "operands": "qword ptr [rsp + 0x40], r14", + "stack_offset": 0 }, { "address": "0x140017ca4", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x70]" + "operands": "rcx, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140017ca9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], r14" + "operands": "qword ptr [rsp + 0x48], r14", + "stack_offset": 0 }, { "address": "0x140017cae", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x50], r14" + "operands": "qword ptr [rsp + 0x50], r14", + "stack_offset": 0 }, { "address": "0x140017cb3", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x58], r14" + "operands": "qword ptr [rsp + 0x58], r14", + "stack_offset": 0 }, { "address": "0x140017cb8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], r14" + "operands": "qword ptr [rsp + 0x60], r14", + "stack_offset": 0 }, { "address": "0x140017cbd", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x68], r14b" + "operands": "byte ptr [rsp + 0x68], r14b", + "stack_offset": 0 }, { "address": "0x140017cc2", "size": 5, "mnemonic": "call", - "operands": "0x14000d89c" + "operands": "0x14000d89c", + "stack_offset": 0 }, { "address": "0x140017cc7", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x78]" + "operands": "rax, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140017ccc", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xfde9" + "operands": "ecx, 0xfde9", + "stack_offset": 0 }, { "address": "0x140017cd1", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0xc], ecx" + "operands": "dword ptr [rax + 0xc], ecx", + "stack_offset": 0 }, { "address": "0x140017cd4", "size": 2, "mnemonic": "jne", - "operands": "0x140017ced" + "operands": "0x140017ced", + "stack_offset": 0 }, { "address": "0x140017cd6", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x78], r14b" + "operands": "byte ptr [rbp - 0x78], r14b", + "stack_offset": 0 }, { "address": "0x140017cda", "size": 2, "mnemonic": "je", - "operands": "0x140017ce8" + "operands": "0x140017ce8", + "stack_offset": 0 } ], "successors": [ @@ -57788,25 +64688,29 @@ "address": "0x140017c6a", "size": 4, "mnemonic": "movsx", - "operands": "rax, r8b" + "operands": "rax, r8b", + "stack_offset": 0 }, { "address": "0x140017c6e", "size": 4, "mnemonic": "bt", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140017c72", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140017c74", "size": 2, "mnemonic": "jb", - "operands": "0x140017c79" + "operands": "0x140017c79", + "stack_offset": 0 } ], "successors": [ @@ -57824,73 +64728,85 @@ "address": "0x140017f11", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x230]" + "operands": "rcx, qword ptr [rbp + 0x230]", + "stack_offset": 0 }, { "address": "0x140017f18", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140017f1b", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140017f20", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x340" + "operands": "rsp, 0x340", + "stack_offset": 0 }, { "address": "0x140017f27", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140017f29", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140017f2b", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140017f2d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017f2e", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140017f2f", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140017f30", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140017f31", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -57906,13 +64822,15 @@ "address": "0x140017ce8", "size": 3, "mnemonic": "mov", - "operands": "r9d, ecx" + "operands": "r9d, ecx", + "stack_offset": 0 }, { "address": "0x140017ceb", "size": 2, "mnemonic": "jmp", - "operands": "0x140017d25" + "operands": "0x140017d25", + "stack_offset": 0 } ], "successors": [ @@ -57929,25 +64847,29 @@ "address": "0x140017cdc", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x70]" + "operands": "rax, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140017ce1", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rax + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rax + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x140017ce8", "size": 3, "mnemonic": "mov", - "operands": "r9d, ecx" + "operands": "r9d, ecx", + "stack_offset": 0 }, { "address": "0x140017ceb", "size": 2, "mnemonic": "jmp", - "operands": "0x140017d25" + "operands": "0x140017d25", + "stack_offset": 0 } ], "successors": [ @@ -57964,151 +64886,176 @@ "address": "0x140017c79", "size": 3, "mnemonic": "sub", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140017c7c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x20]" + "operands": "rcx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x140017c80", "size": 3, "mnemonic": "inc", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x140017c83", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x250" + "operands": "r8d, 0x250", + "stack_offset": 0 }, { "address": "0x140017c89", "size": 2, "mnemonic": "neg", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x140017c8b", "size": 3, "mnemonic": "sbb", - "operands": "r13, r13" + "operands": "r13, r13", + "stack_offset": 0 }, { "address": "0x140017c8e", "size": 3, "mnemonic": "and", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x140017c91", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140017c93", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], r13" + "operands": "qword ptr [rsp + 0x38], r13", + "stack_offset": 0 }, { "address": "0x140017c98", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x140017c9d", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140017c9f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], r14" + "operands": "qword ptr [rsp + 0x40], r14", + "stack_offset": 0 }, { "address": "0x140017ca4", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x70]" + "operands": "rcx, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140017ca9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], r14" + "operands": "qword ptr [rsp + 0x48], r14", + "stack_offset": 0 }, { "address": "0x140017cae", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x50], r14" + "operands": "qword ptr [rsp + 0x50], r14", + "stack_offset": 0 }, { "address": "0x140017cb3", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x58], r14" + "operands": "qword ptr [rsp + 0x58], r14", + "stack_offset": 0 }, { "address": "0x140017cb8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], r14" + "operands": "qword ptr [rsp + 0x60], r14", + "stack_offset": 0 }, { "address": "0x140017cbd", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x68], r14b" + "operands": "byte ptr [rsp + 0x68], r14b", + "stack_offset": 0 }, { "address": "0x140017cc2", "size": 5, "mnemonic": "call", - "operands": "0x14000d89c" + "operands": "0x14000d89c", + "stack_offset": 0 }, { "address": "0x140017cc7", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x78]" + "operands": "rax, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140017ccc", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xfde9" + "operands": "ecx, 0xfde9", + "stack_offset": 0 }, { "address": "0x140017cd1", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0xc], ecx" + "operands": "dword ptr [rax + 0xc], ecx", + "stack_offset": 0 }, { "address": "0x140017cd4", "size": 2, "mnemonic": "jne", - "operands": "0x140017ced" + "operands": "0x140017ced", + "stack_offset": 0 }, { "address": "0x140017cd6", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x78], r14b" + "operands": "byte ptr [rbp - 0x78], r14b", + "stack_offset": 0 }, { "address": "0x140017cda", "size": 2, "mnemonic": "je", - "operands": "0x140017ce8" + "operands": "0x140017ce8", + "stack_offset": 0 } ], "successors": [ @@ -58126,145 +65073,169 @@ "address": "0x140017d25", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x30]" + "operands": "r8, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140017d2a", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140017d2d", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x40]" + "operands": "rdx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140017d32", "size": 5, "mnemonic": "call", - "operands": "0x14000d9d8" + "operands": "0x14000d9d8", + "stack_offset": 0 }, { "address": "0x140017d37", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x50]" + "operands": "rcx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140017d3c", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x20]" + "operands": "r8, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x140017d40", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140017d42", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], r14d" + "operands": "dword ptr [rsp + 0x28], r14d", + "stack_offset": 0 }, { "address": "0x140017d47", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r14" + "operands": "qword ptr [rsp + 0x20], r14", + "stack_offset": 0 }, { "address": "0x140017d4c", "size": 4, "mnemonic": "cmovne", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140017d50", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140017d53", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140017d55", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x84e5]" + "operands": "qword ptr [rip + 0x84e5]", + "stack_offset": 0 }, { "address": "0x140017d5b", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140017d5e", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x140017d62", "size": 2, "mnemonic": "jne", - "operands": "0x140017d8e" + "operands": "0x140017d8e", + "stack_offset": 0 }, { "address": "0x140017d64", "size": 3, "mnemonic": "mov", - "operands": "r9, r12" + "operands": "r9, r12", + "stack_offset": 0 }, { "address": "0x140017d67", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140017d6a", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140017d6c", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140017d6f", "size": 5, "mnemonic": "call", - "operands": "0x140017a50" + "operands": "0x140017a50", + "stack_offset": 0 }, { "address": "0x140017d74", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x140017d76", "size": 5, "mnemonic": "cmp", - "operands": "byte ptr [rsp + 0x68], r14b" + "operands": "byte ptr [rsp + 0x68], r14b", + "stack_offset": 0 }, { "address": "0x140017d7b", "size": 2, "mnemonic": "je", - "operands": "0x140017d87" + "operands": "0x140017d87", + "stack_offset": 0 } ], "successors": [ @@ -58282,13 +65253,15 @@ "address": "0x140017d87", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x140017d89", "size": 5, "mnemonic": "jmp", - "operands": "0x140017f11" + "operands": "0x140017f11", + "stack_offset": 0 } ], "successors": [ @@ -58305,25 +65278,29 @@ "address": "0x140017d7d", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x50]" + "operands": "rcx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140017d82", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140017d87", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x140017d89", "size": 5, "mnemonic": "jmp", - "operands": "0x140017f11" + "operands": "0x140017f11", + "stack_offset": 0 } ], "successors": [ @@ -58346,109 +65323,127 @@ "address": "0x140017f46", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140017f47", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x1a0]" + "operands": "rbp, [rsp - 0x1a0]", + "stack_offset": 0 }, { "address": "0x140017f4f", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x2a0" + "operands": "rsp, 0x2a0", + "stack_offset": 0 }, { "address": "0x140017f56", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x190e3]" + "operands": "rax, qword ptr [rip + 0x190e3]", + "stack_offset": 0 }, { "address": "0x140017f5d", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140017f60", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x190], rax" + "operands": "qword ptr [rbp + 0x190], rax", + "stack_offset": 0 }, { "address": "0x140017f67", "size": 3, "mnemonic": "mov", - "operands": "edi, r8d" + "operands": "edi, r8d", + "stack_offset": 0 }, { "address": "0x140017f6a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x140017f6d", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x105" + "operands": "r8d, 0x105", + "stack_offset": 0 }, { "address": "0x140017f73", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x80]" + "operands": "rdx, [rbp - 0x80]", + "stack_offset": 0 }, { "address": "0x140017f77", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x81db]" + "operands": "qword ptr [rip + 0x81db]", + "stack_offset": 0 }, { "address": "0x140017f7d", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140017f7f", "size": 2, "mnemonic": "jne", - "operands": "0x140017f95" + "operands": "0x140017f95", + "stack_offset": 0 }, { "address": "0x140017f81", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x8171]" + "operands": "qword ptr [rip + 0x8171]", + "stack_offset": 0 }, { "address": "0x140017f87", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x140017f89", "size": 5, "mnemonic": "call", - "operands": "0x14000d808" + "operands": "0x14000d808", + "stack_offset": 0 }, { "address": "0x140017f8e", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140017f90", "size": 5, "mnemonic": "jmp", - "operands": "0x140018039" + "operands": "0x140018039", + "stack_offset": 0 } ], "successors": [ @@ -58465,55 +65460,64 @@ "address": "0x140018039", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x190]" + "operands": "rcx, qword ptr [rbp + 0x190]", + "stack_offset": 0 }, { "address": "0x140018040", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140018043", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140018048", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x2a0]" + "operands": "r11, [rsp + 0x2a0]", + "stack_offset": 0 }, { "address": "0x140018050", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x18]" + "operands": "rbx, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140018054", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x20]" + "operands": "rdi, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x140018058", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14001805b", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001805c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -58535,85 +65539,99 @@ "address": "0x140018352", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140018353", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x680]" + "operands": "rbp, [rsp - 0x680]", + "stack_offset": 0 }, { "address": "0x14001835b", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x780" + "operands": "rsp, 0x780", + "stack_offset": 0 }, { "address": "0x140018362", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x18cd7]" + "operands": "rax, qword ptr [rip + 0x18cd7]", + "stack_offset": 0 }, { "address": "0x140018369", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14001836c", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x670], rax" + "operands": "qword ptr [rbp + 0x670], rax", + "stack_offset": 0 }, { "address": "0x140018373", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140018375", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140018378", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rcx + 4]" + "operands": "ecx, dword ptr [rcx + 4]", + "stack_offset": 0 }, { "address": "0x14001837b", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x14001837e", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x60], eax" + "operands": "dword ptr [rsp + 0x60], eax", + "stack_offset": 0 }, { "address": "0x140018382", "size": 5, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0x50], xmm0" + "operands": "xmmword ptr [rsp + 0x50], xmm0", + "stack_offset": 0 }, { "address": "0x140018387", "size": 6, "mnemonic": "cmp", - "operands": "ecx, 0xfde9" + "operands": "ecx, 0xfde9", + "stack_offset": 0 }, { "address": "0x14001838d", "size": 6, "mnemonic": "je", - "operands": "0x1400184da" + "operands": "0x1400184da", + "stack_offset": 0 } ], "successors": [ @@ -58631,43 +65649,50 @@ "address": "0x1400184da", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400184dc", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdi + 0x19]" + "operands": "rcx, [rdi + 0x19]", + "stack_offset": 0 }, { "address": "0x1400184e0", "size": 5, "mnemonic": "mov", - "operands": "ebx, 0x100" + "operands": "ebx, 0x100", + "stack_offset": 0 }, { "address": "0x1400184e5", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rdx - 0x61]" + "operands": "r8d, [rdx - 0x61]", + "stack_offset": 0 }, { "address": "0x1400184e9", "size": 4, "mnemonic": "lea", - "operands": "eax, [r8 + 0x20]" + "operands": "eax, [r8 + 0x20]", + "stack_offset": 0 }, { "address": "0x1400184ed", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x19" + "operands": "eax, 0x19", + "stack_offset": 0 }, { "address": "0x1400184f0", "size": 2, "mnemonic": "ja", - "operands": "0x1400184fa" + "operands": "0x1400184fa", + "stack_offset": 0 } ], "successors": [ @@ -58685,25 +65710,29 @@ "address": "0x140018393", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x50]" + "operands": "rdx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140018398", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x7cb2]" + "operands": "qword ptr [rip + 0x7cb2]", + "stack_offset": 0 }, { "address": "0x14001839e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400183a0", "size": 6, "mnemonic": "je", - "operands": "0x1400184da" + "operands": "0x1400184da", + "stack_offset": 0 } ], "successors": [ @@ -58721,13 +65750,15 @@ "address": "0x1400184fa", "size": 4, "mnemonic": "cmp", - "operands": "r8d, 0x19" + "operands": "r8d, 0x19", + "stack_offset": 0 }, { "address": "0x1400184fe", "size": 2, "mnemonic": "ja", - "operands": "0x140018508" + "operands": "0x140018508", + "stack_offset": 0 } ], "successors": [ @@ -58745,19 +65776,22 @@ "address": "0x1400184f2", "size": 3, "mnemonic": "or", - "operands": "byte ptr [rcx], 0x10" + "operands": "byte ptr [rcx], 0x10", + "stack_offset": 0 }, { "address": "0x1400184f5", "size": 3, "mnemonic": "lea", - "operands": "eax, [rdx + 0x20]" + "operands": "eax, [rdx + 0x20]", + "stack_offset": 0 }, { "address": "0x1400184f8", "size": 2, "mnemonic": "jmp", - "operands": "0x14001850a" + "operands": "0x14001850a", + "stack_offset": 0 } ], "successors": [ @@ -58774,49 +65808,57 @@ "address": "0x1400183a6", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400183a8", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x70]" + "operands": "rcx, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400183ad", "size": 5, "mnemonic": "mov", - "operands": "ebx, 0x100" + "operands": "ebx, 0x100", + "stack_offset": 0 }, { "address": "0x1400183b2", "size": 2, "mnemonic": "mov", - "operands": "byte ptr [rcx], al" + "operands": "byte ptr [rcx], al", + "stack_offset": 0 }, { "address": "0x1400183b4", "size": 2, "mnemonic": "inc", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x1400183b6", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x1400183b9", "size": 2, "mnemonic": "cmp", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x1400183bb", "size": 2, "mnemonic": "jb", - "operands": "0x1400183b2" + "operands": "0x1400183b2", + "stack_offset": 0 } ], "successors": [ @@ -58834,37 +65876,43 @@ "address": "0x140018508", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001850a", "size": 6, "mnemonic": "mov", - "operands": "byte ptr [rcx + 0x100], al" + "operands": "byte ptr [rcx + 0x100], al", + "stack_offset": 0 }, { "address": "0x140018510", "size": 2, "mnemonic": "inc", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x140018512", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x140018515", "size": 2, "mnemonic": "cmp", - "operands": "edx, ebx" + "operands": "edx, ebx", + "stack_offset": 0 }, { "address": "0x140018517", "size": 2, "mnemonic": "jb", - "operands": "0x1400184e5" + "operands": "0x1400184e5", + "stack_offset": 0 } ], "successors": [ @@ -58882,19 +65930,22 @@ "address": "0x140018500", "size": 3, "mnemonic": "or", - "operands": "byte ptr [rcx], 0x20" + "operands": "byte ptr [rcx], 0x20", + "stack_offset": 0 }, { "address": "0x140018503", "size": 3, "mnemonic": "lea", - "operands": "eax, [rdx - 0x20]" + "operands": "eax, [rdx - 0x20]", + "stack_offset": 0 }, { "address": "0x140018506", "size": 2, "mnemonic": "jmp", - "operands": "0x14001850a" + "operands": "0x14001850a", + "stack_offset": 0 } ], "successors": [ @@ -58911,31 +65962,36 @@ "address": "0x14001850a", "size": 6, "mnemonic": "mov", - "operands": "byte ptr [rcx + 0x100], al" + "operands": "byte ptr [rcx + 0x100], al", + "stack_offset": 0 }, { "address": "0x140018510", "size": 2, "mnemonic": "inc", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x140018512", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x140018515", "size": 2, "mnemonic": "cmp", - "operands": "edx, ebx" + "operands": "edx, ebx", + "stack_offset": 0 }, { "address": "0x140018517", "size": 2, "mnemonic": "jb", - "operands": "0x1400184e5" + "operands": "0x1400184e5", + "stack_offset": 0 } ], "successors": [ @@ -58953,31 +66009,36 @@ "address": "0x1400183b2", "size": 2, "mnemonic": "mov", - "operands": "byte ptr [rcx], al" + "operands": "byte ptr [rcx], al", + "stack_offset": 0 }, { "address": "0x1400183b4", "size": 2, "mnemonic": "inc", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x1400183b6", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x1400183b9", "size": 2, "mnemonic": "cmp", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x1400183bb", "size": 2, "mnemonic": "jb", - "operands": "0x1400183b2" + "operands": "0x1400183b2", + "stack_offset": 0 } ], "successors": [ @@ -58995,25 +66056,29 @@ "address": "0x1400183bd", "size": 4, "mnemonic": "mov", - "operands": "al, byte ptr [rsp + 0x56]" + "operands": "al, byte ptr [rsp + 0x56]", + "stack_offset": 0 }, { "address": "0x1400183c1", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x56]" + "operands": "rdx, [rsp + 0x56]", + "stack_offset": 0 }, { "address": "0x1400183c6", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x70], 0x20" + "operands": "byte ptr [rsp + 0x70], 0x20", + "stack_offset": 0 }, { "address": "0x1400183cb", "size": 2, "mnemonic": "jmp", - "operands": "0x1400183ed" + "operands": "0x1400183ed", + "stack_offset": 0 } ], "successors": [ @@ -59030,25 +66095,29 @@ "address": "0x1400184e5", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rdx - 0x61]" + "operands": "r8d, [rdx - 0x61]", + "stack_offset": 0 }, { "address": "0x1400184e9", "size": 4, "mnemonic": "lea", - "operands": "eax, [r8 + 0x20]" + "operands": "eax, [r8 + 0x20]", + "stack_offset": 0 }, { "address": "0x1400184ed", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x19" + "operands": "eax, 0x19", + "stack_offset": 0 }, { "address": "0x1400184f0", "size": 2, "mnemonic": "ja", - "operands": "0x1400184fa" + "operands": "0x1400184fa", + "stack_offset": 0 } ], "successors": [ @@ -59066,55 +66135,64 @@ "address": "0x140018519", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x670]" + "operands": "rcx, qword ptr [rbp + 0x670]", + "stack_offset": 0 }, { "address": "0x140018520", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x140018523", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x140018528", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x780]" + "operands": "r11, [rsp + 0x780]", + "stack_offset": 0 }, { "address": "0x140018530", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x18]" + "operands": "rbx, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140018534", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x20]" + "operands": "rdi, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x140018538", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14001853b", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001853c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -59130,265 +66208,309 @@ "address": "0x1400183ed", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400183ef", "size": 2, "mnemonic": "jne", - "operands": "0x1400183cd" + "operands": "0x1400183cd", + "stack_offset": 0 }, { "address": "0x1400183f1", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 4]" + "operands": "eax, dword ptr [rdi + 4]", + "stack_offset": 0 }, { "address": "0x1400183f4", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x70]" + "operands": "r8, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400183f9", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x30], 0" + "operands": "dword ptr [rsp + 0x30], 0", + "stack_offset": 0 }, { "address": "0x1400183fe", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x140018401", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x140018405", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x14001840a", "size": 7, "mnemonic": "lea", - "operands": "rax, [rbp + 0x270]" + "operands": "rax, [rbp + 0x270]", + "stack_offset": 0 }, { "address": "0x140018411", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140018413", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140018418", "size": 5, "mnemonic": "call", - "operands": "0x140016050" + "operands": "0x140016050", + "stack_offset": 0 }, { "address": "0x14001841d", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x40], 0" + "operands": "dword ptr [rsp + 0x40], 0", + "stack_offset": 0 }, { "address": "0x140018422", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x70]" + "operands": "r9, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140018427", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 4]" + "operands": "eax, dword ptr [rdi + 4]", + "stack_offset": 0 }, { "address": "0x14001842a", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebx" + "operands": "r8d, ebx", + "stack_offset": 0 }, { "address": "0x14001842d", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rdi + 0x220]" + "operands": "rdx, qword ptr [rdi + 0x220]", + "stack_offset": 0 }, { "address": "0x140018434", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140018436", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], eax" + "operands": "dword ptr [rsp + 0x38], eax", + "stack_offset": 0 }, { "address": "0x14001843a", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x70]" + "operands": "rax, [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x14001843e", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], ebx" + "operands": "dword ptr [rsp + 0x30], ebx", + "stack_offset": 0 }, { "address": "0x140018442", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140018447", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], ebx" + "operands": "dword ptr [rsp + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x14001844b", "size": 5, "mnemonic": "call", - "operands": "0x140016514" + "operands": "0x140016514", + "stack_offset": 0 }, { "address": "0x140018450", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x40], 0" + "operands": "dword ptr [rsp + 0x40], 0", + "stack_offset": 0 }, { "address": "0x140018455", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x70]" + "operands": "r9, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14001845a", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdi + 4]" + "operands": "eax, dword ptr [rdi + 4]", + "stack_offset": 0 }, { "address": "0x14001845d", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x200" + "operands": "r8d, 0x200", + "stack_offset": 0 }, { "address": "0x140018463", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rdi + 0x220]" + "operands": "rdx, qword ptr [rdi + 0x220]", + "stack_offset": 0 }, { "address": "0x14001846a", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14001846c", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], eax" + "operands": "dword ptr [rsp + 0x38], eax", + "stack_offset": 0 }, { "address": "0x140018470", "size": 7, "mnemonic": "lea", - "operands": "rax, [rbp + 0x170]" + "operands": "rax, [rbp + 0x170]", + "stack_offset": 0 }, { "address": "0x140018477", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], ebx" + "operands": "dword ptr [rsp + 0x30], ebx", + "stack_offset": 0 }, { "address": "0x14001847b", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140018480", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], ebx" + "operands": "dword ptr [rsp + 0x20], ebx", + "stack_offset": 0 }, { "address": "0x140018484", "size": 5, "mnemonic": "call", - "operands": "0x140016514" + "operands": "0x140016514", + "stack_offset": 0 }, { "address": "0x140018489", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp + 0x70]" + "operands": "r8, [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x14001848d", "size": 3, "mnemonic": "sub", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x140018490", "size": 7, "mnemonic": "lea", - "operands": "r9, [rbp + 0x170]" + "operands": "r9, [rbp + 0x170]", + "stack_offset": 0 }, { "address": "0x140018497", "size": 3, "mnemonic": "sub", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x14001849a", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rbp + 0x270]" + "operands": "rdx, [rbp + 0x270]", + "stack_offset": 0 }, { "address": "0x1400184a1", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdi + 0x19]" + "operands": "rax, [rdi + 0x19]", + "stack_offset": 0 }, { "address": "0x1400184a5", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rdx], 1" + "operands": "byte ptr [rdx], 1", + "stack_offset": 0 }, { "address": "0x1400184a8", "size": 2, "mnemonic": "je", - "operands": "0x1400184b4" + "operands": "0x1400184b4", + "stack_offset": 0 } ], "successors": [ @@ -59406,13 +66528,15 @@ "address": "0x1400184b4", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rdx], 2" + "operands": "byte ptr [rdx], 2", + "stack_offset": 0 }, { "address": "0x1400184b7", "size": 2, "mnemonic": "je", - "operands": "0x1400184c3" + "operands": "0x1400184c3", + "stack_offset": 0 } ], "successors": [ @@ -59430,19 +66554,22 @@ "address": "0x1400184aa", "size": 3, "mnemonic": "or", - "operands": "byte ptr [rax], 0x10" + "operands": "byte ptr [rax], 0x10", + "stack_offset": 0 }, { "address": "0x1400184ad", "size": 5, "mnemonic": "mov", - "operands": "cl, byte ptr [r8 + rax - 0x19]" + "operands": "cl, byte ptr [r8 + rax - 0x19]", + "stack_offset": 0 }, { "address": "0x1400184b2", "size": 2, "mnemonic": "jmp", - "operands": "0x1400184c5" + "operands": "0x1400184c5", + "stack_offset": 0 } ], "successors": [ @@ -59459,43 +66586,50 @@ "address": "0x1400184c3", "size": 2, "mnemonic": "xor", - "operands": "cl, cl" + "operands": "cl, cl", + "stack_offset": 0 }, { "address": "0x1400184c5", "size": 6, "mnemonic": "mov", - "operands": "byte ptr [rax + 0x100], cl" + "operands": "byte ptr [rax + 0x100], cl", + "stack_offset": 0 }, { "address": "0x1400184cb", "size": 4, "mnemonic": "add", - "operands": "rdx, 2" + "operands": "rdx, 2", + "stack_offset": 0 }, { "address": "0x1400184cf", "size": 3, "mnemonic": "inc", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x1400184d2", "size": 4, "mnemonic": "sub", - "operands": "rbx, 1" + "operands": "rbx, 1", + "stack_offset": 0 }, { "address": "0x1400184d6", "size": 2, "mnemonic": "jne", - "operands": "0x1400184a5" + "operands": "0x1400184a5", + "stack_offset": 0 }, { "address": "0x1400184d8", "size": 2, "mnemonic": "jmp", - "operands": "0x140018519" + "operands": "0x140018519", + "stack_offset": 0 } ], "successors": [ @@ -59512,19 +66646,22 @@ "address": "0x1400184b9", "size": 3, "mnemonic": "or", - "operands": "byte ptr [rax], 0x20" + "operands": "byte ptr [rax], 0x20", + "stack_offset": 0 }, { "address": "0x1400184bc", "size": 5, "mnemonic": "mov", - "operands": "cl, byte ptr [rax + r9 - 0x19]" + "operands": "cl, byte ptr [rax + r9 - 0x19]", + "stack_offset": 0 }, { "address": "0x1400184c1", "size": 2, "mnemonic": "jmp", - "operands": "0x1400184c5" + "operands": "0x1400184c5", + "stack_offset": 0 } ], "successors": [ @@ -59541,37 +66678,43 @@ "address": "0x1400184c5", "size": 6, "mnemonic": "mov", - "operands": "byte ptr [rax + 0x100], cl" + "operands": "byte ptr [rax + 0x100], cl", + "stack_offset": 0 }, { "address": "0x1400184cb", "size": 4, "mnemonic": "add", - "operands": "rdx, 2" + "operands": "rdx, 2", + "stack_offset": 0 }, { "address": "0x1400184cf", "size": 3, "mnemonic": "inc", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x1400184d2", "size": 4, "mnemonic": "sub", - "operands": "rbx, 1" + "operands": "rbx, 1", + "stack_offset": 0 }, { "address": "0x1400184d6", "size": 2, "mnemonic": "jne", - "operands": "0x1400184a5" + "operands": "0x1400184a5", + "stack_offset": 0 }, { "address": "0x1400184d8", "size": 2, "mnemonic": "jmp", - "operands": "0x140018519" + "operands": "0x140018519", + "stack_offset": 0 } ], "successors": [ @@ -59594,115 +66737,134 @@ "address": "0x140018553", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140018554", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140018555", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140018557", "size": 7, "mnemonic": "lea", - "operands": "rbp, [rax - 0x188]" + "operands": "rbp, [rax - 0x188]", + "stack_offset": 0 }, { "address": "0x14001855e", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x270" + "operands": "rsp, 0x270", + "stack_offset": 0 }, { "address": "0x140018565", "size": 3, "mnemonic": "mov", - "operands": "r14b, dl" + "operands": "r14b, dl", + "stack_offset": 0 }, { "address": "0x140018568", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14001856a", "size": 3, "mnemonic": "mov", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001856d", "size": 3, "mnemonic": "mov", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x140018570", "size": 5, "mnemonic": "call", - "operands": "0x1400187b0" + "operands": "0x1400187b0", + "stack_offset": 0 }, { "address": "0x140018575", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x140018577", "size": 5, "mnemonic": "call", - "operands": "0x140018230" + "operands": "0x140018230", + "stack_offset": 0 }, { "address": "0x14001857c", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x1a0]" + "operands": "rcx, qword ptr [rbp + 0x1a0]", + "stack_offset": 0 }, { "address": "0x140018583", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140018585", "size": 7, "mnemonic": "mov", - "operands": "r8, qword ptr [rcx + 0x88]" + "operands": "r8, qword ptr [rcx + 0x88]", + "stack_offset": 0 }, { "address": "0x14001858c", "size": 4, "mnemonic": "cmp", - "operands": "eax, dword ptr [r8 + 4]" + "operands": "eax, dword ptr [r8 + 4]", + "stack_offset": 0 }, { "address": "0x140018590", "size": 2, "mnemonic": "jne", - "operands": "0x140018599" + "operands": "0x140018599", + "stack_offset": 0 }, { "address": "0x140018592", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140018594", "size": 5, "mnemonic": "jmp", - "operands": "0x140018797" + "operands": "0x140018797", + "stack_offset": 0 } ], "successors": [ @@ -59719,49 +66881,57 @@ "address": "0x140018797", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x270]" + "operands": "r11, [rsp + 0x270]", + "stack_offset": 0 }, { "address": "0x14001879f", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x1400187a3", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x28]" + "operands": "rsi, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x1400187a7", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x1400187aa", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400187ac", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400187ad", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x1400187ae", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -59783,97 +66953,113 @@ "address": "0x140018d4d", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140018d4e", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140018d4f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140018d50", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140018d52", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140018d54", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140018d56", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140018d58", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140018d5c", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x140018d5e", "size": 2, "mnemonic": "mov", - "operands": "ebx, edx" + "operands": "ebx, edx", + "stack_offset": 0 }, { "address": "0x140018d60", "size": 3, "mnemonic": "mov", - "operands": "r15, rcx" + "operands": "r15, rcx", + "stack_offset": 0 }, { "address": "0x140018d63", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140018d66", "size": 2, "mnemonic": "jne", - "operands": "0x140018d78" + "operands": "0x140018d78", + "stack_offset": 0 }, { "address": "0x140018d68", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x140018d6d", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x140018d73", "size": 5, "mnemonic": "jmp", - "operands": "0x14001906b" + "operands": "0x14001906b", + "stack_offset": 0 } ], "successors": [ @@ -59890,67 +67076,78 @@ "address": "0x14001906b", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001906f", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x80]" + "operands": "rbx, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140019077", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001907b", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001907d", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001907f", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140019081", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140019083", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140019084", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140019085", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140019086", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -59972,115 +67169,134 @@ "address": "0x140019647", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140019648", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001964a", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001964c", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001964e", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140019650", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140019653", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x140019657", "size": 3, "mnemonic": "xor", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14001965a", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rcx" + "operands": "qword ptr [rbp - 0x10], rcx", + "stack_offset": 0 }, { "address": "0x14001965e", "size": 4, "mnemonic": "and", - "operands": "qword ptr [rbp - 8], r15" + "operands": "qword ptr [rbp - 8], r15", + "stack_offset": 0 }, { "address": "0x140019662", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140019665", "size": 7, "mnemonic": "cmp", - "operands": "qword ptr [rcx + 0x140], r15" + "operands": "qword ptr [rcx + 0x140], r15", + "stack_offset": 0 }, { "address": "0x14001966c", "size": 2, "mnemonic": "jne", - "operands": "0x14001968d" + "operands": "0x14001968d", + "stack_offset": 0 }, { "address": "0x14001966e", "size": 7, "mnemonic": "cmp", - "operands": "qword ptr [rcx + 0x148], r15" + "operands": "qword ptr [rcx + 0x148], r15", + "stack_offset": 0 }, { "address": "0x140019675", "size": 2, "mnemonic": "jne", - "operands": "0x14001968d" + "operands": "0x14001968d", + "stack_offset": 0 }, { "address": "0x140019677", "size": 3, "mnemonic": "xor", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x14001967a", "size": 7, "mnemonic": "lea", - "operands": "rsi, [rip + 0x17b7f]" + "operands": "rsi, [rip + 0x17b7f]", + "stack_offset": 0 }, { "address": "0x140019681", "size": 7, "mnemonic": "lea", - "operands": "rbx, [rcx + 0xf8]" + "operands": "rbx, [rcx + 0xf8]", + "stack_offset": 0 }, { "address": "0x140019688", "size": 5, "mnemonic": "jmp", - "operands": "0x140019ae7" + "operands": "0x140019ae7", + "stack_offset": 0 } ], "successors": [ @@ -60097,19 +67313,22 @@ "address": "0x140019ae7", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [r14 + 0xf0]" + "operands": "rax, qword ptr [r14 + 0xf0]", + "stack_offset": 0 }, { "address": "0x140019aee", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140019af1", "size": 2, "mnemonic": "je", - "operands": "0x140019af6" + "operands": "0x140019af6", + "stack_offset": 0 } ], "successors": [ @@ -60127,19 +67346,22 @@ "address": "0x140019af6", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [r14 + 0xe0]" + "operands": "rcx, qword ptr [r14 + 0xe0]", + "stack_offset": 0 }, { "address": "0x140019afd", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140019b00", "size": 2, "mnemonic": "je", - "operands": "0x140019b22" + "operands": "0x140019b22", + "stack_offset": 0 } ], "successors": [ @@ -60157,25 +67379,29 @@ "address": "0x140019af3", "size": 3, "mnemonic": "lock dec", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140019af6", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [r14 + 0xe0]" + "operands": "rcx, qword ptr [r14 + 0xe0]", + "stack_offset": 0 }, { "address": "0x140019afd", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140019b00", "size": 2, "mnemonic": "je", - "operands": "0x140019b22" + "operands": "0x140019b22", + "stack_offset": 0 } ], "successors": [ @@ -60193,91 +67419,106 @@ "address": "0x140019b22", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [r14 + 0xf0], r15" + "operands": "qword ptr [r14 + 0xf0], r15", + "stack_offset": 0 }, { "address": "0x140019b29", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140019b2b", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [r14 + 0xe0], r12" + "operands": "qword ptr [r14 + 0xe0], r12", + "stack_offset": 0 }, { "address": "0x140019b32", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rsi" + "operands": "qword ptr [rbx], rsi", + "stack_offset": 0 }, { "address": "0x140019b35", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x40]" + "operands": "r11, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140019b3a", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x30]" + "operands": "rbx, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x140019b3e", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x38]" + "operands": "rsi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x140019b42", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x40]" + "operands": "rdi, qword ptr [r11 + 0x40]", + "stack_offset": 0 }, { "address": "0x140019b46", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140019b49", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140019b4b", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140019b4d", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140019b4f", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140019b51", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140019b52", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -60293,139 +67534,162 @@ "address": "0x140019b02", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140019b05", "size": 4, "mnemonic": "lock xadd", - "operands": "dword ptr [rcx], eax" + "operands": "dword ptr [rcx], eax", + "stack_offset": 0 }, { "address": "0x140019b09", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140019b0c", "size": 2, "mnemonic": "jne", - "operands": "0x140019b22" + "operands": "0x140019b22", + "stack_offset": 0 }, { "address": "0x140019b0e", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx]" + "operands": "rcx, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140019b11", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019b16", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [r14 + 0xe0]" + "operands": "rcx, qword ptr [r14 + 0xe0]", + "stack_offset": 0 }, { "address": "0x140019b1d", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019b22", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [r14 + 0xf0], r15" + "operands": "qword ptr [r14 + 0xf0], r15", + "stack_offset": 0 }, { "address": "0x140019b29", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140019b2b", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [r14 + 0xe0], r12" + "operands": "qword ptr [r14 + 0xe0], r12", + "stack_offset": 0 }, { "address": "0x140019b32", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rsi" + "operands": "qword ptr [rbx], rsi", + "stack_offset": 0 }, { "address": "0x140019b35", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x40]" + "operands": "r11, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140019b3a", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x30]" + "operands": "rbx, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x140019b3e", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x38]" + "operands": "rsi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x140019b42", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x40]" + "operands": "rdi, qword ptr [r11 + 0x40]", + "stack_offset": 0 }, { "address": "0x140019b46", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140019b49", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140019b4b", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140019b4d", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140019b4f", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140019b51", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140019b52", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -60447,1255 +67711,1464 @@ "address": "0x140019eeb", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140019eec", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140019eee", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140019ef0", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140019ef2", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140019ef4", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140019ef7", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x140019efb", "size": 7, "mnemonic": "mov", - "operands": "r14, qword ptr [rdx + 0x150]" + "operands": "r14, qword ptr [rdx + 0x150]", + "stack_offset": 0 }, { "address": "0x140019f02", "size": 3, "mnemonic": "mov", - "operands": "r12, rcx" + "operands": "r12, rcx", + "stack_offset": 0 }, { "address": "0x140019f05", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x140019f07", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rdx" + "operands": "qword ptr [rbp - 0x10], rdx", + "stack_offset": 0 }, { "address": "0x140019f0b", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140019f0e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 8], rsi" + "operands": "qword ptr [rbp - 8], rsi", + "stack_offset": 0 }, { "address": "0x140019f12", "size": 5, "mnemonic": "call", - "operands": "0x14000ef78" + "operands": "0x14000ef78", + "stack_offset": 0 }, { "address": "0x140019f17", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [r12 + 0x2b8], rax" + "operands": "qword ptr [r12 + 0x2b8], rax", + "stack_offset": 0 }, { "address": "0x140019f1f", "size": 4, "mnemonic": "lea", - "operands": "r15d, [rsi + 0x31]" + "operands": "r15d, [rsi + 0x31]", + "stack_offset": 0 }, { "address": "0x140019f23", "size": 4, "mnemonic": "lea", - "operands": "r13d, [rsi + 7]" + "operands": "r13d, [rsi + 7]", + "stack_offset": 0 }, { "address": "0x140019f27", "size": 4, "mnemonic": "lea", - "operands": "ecx, [r15 - 0x30]" + "operands": "ecx, [r15 - 0x30]", + "stack_offset": 0 }, { "address": "0x140019f2b", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x24924925" + "operands": "eax, 0x24924925", + "stack_offset": 0 }, { "address": "0x140019f30", "size": 2, "mnemonic": "mul", - "operands": "ecx" + "operands": "ecx", + "stack_offset": 0 }, { "address": "0x140019f32", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x140019f34", "size": 3, "mnemonic": "mov", - "operands": "r9d, r15d" + "operands": "r9d, r15d", + "stack_offset": 0 }, { "address": "0x140019f37", "size": 2, "mnemonic": "sub", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x140019f39", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140019f3c", "size": 2, "mnemonic": "shr", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140019f3e", "size": 2, "mnemonic": "add", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x140019f40", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140019f45", "size": 3, "mnemonic": "shr", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x140019f48", "size": 3, "mnemonic": "imul", - "operands": "eax, eax, 7" + "operands": "eax, eax, 7", + "stack_offset": 0 }, { "address": "0x140019f4b", "size": 2, "mnemonic": "sub", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x140019f4d", "size": 4, "mnemonic": "lea", - "operands": "rdi, [r12 + rcx*8]" + "operands": "rdi, [r12 + rcx*8]", + "stack_offset": 0 }, { "address": "0x140019f51", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140019f55", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x140019f5a", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x140019f5f", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x140019f61", "size": 4, "mnemonic": "lea", - "operands": "r9d, [r15 - 7]" + "operands": "r9d, [r15 - 7]", + "stack_offset": 0 }, { "address": "0x140019f65", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdi + 0x38]" + "operands": "rax, [rdi + 0x38]", + "stack_offset": 0 }, { "address": "0x140019f69", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140019f6c", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140019f71", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140019f76", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140019f7a", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x140019f7f", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x140019f81", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140019f85", "size": 7, "mnemonic": "lea", - "operands": "rax, [rdi + 0x160]" + "operands": "rax, [rdi + 0x160]", + "stack_offset": 0 }, { "address": "0x140019f8c", "size": 3, "mnemonic": "mov", - "operands": "r9d, r15d" + "operands": "r9d, r15d", + "stack_offset": 0 }, { "address": "0x140019f8f", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140019f92", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140019f97", "size": 5, "mnemonic": "mov", - "operands": "edx, 2" + "operands": "edx, 2", + "stack_offset": 0 }, { "address": "0x140019f9c", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x140019fa1", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x140019fa3", "size": 4, "mnemonic": "lea", - "operands": "r9d, [r15 - 7]" + "operands": "r9d, [r15 - 7]", + "stack_offset": 0 }, { "address": "0x140019fa7", "size": 7, "mnemonic": "lea", - "operands": "rax, [rdi + 0x198]" + "operands": "rax, [rdi + 0x198]", + "stack_offset": 0 }, { "address": "0x140019fae", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140019fb1", "size": 5, "mnemonic": "mov", - "operands": "edx, 2" + "operands": "edx, 2", + "stack_offset": 0 }, { "address": "0x140019fb6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140019fbb", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140019fbf", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x140019fc4", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x140019fc6", "size": 3, "mnemonic": "inc", - "operands": "r15d" + "operands": "r15d", + "stack_offset": 0 }, { "address": "0x140019fc9", "size": 4, "mnemonic": "sub", - "operands": "r13, 1" + "operands": "r13, 1", + "stack_offset": 0 }, { "address": "0x140019fcd", "size": 6, "mnemonic": "jne", - "operands": "0x140019f27" + "operands": "0x140019f27", + "stack_offset": 0 }, { "address": "0x140019fd3", "size": 4, "mnemonic": "lea", - "operands": "r15d, [r13 + 0x38]" + "operands": "r15d, [r13 + 0x38]", + "stack_offset": 0 }, { "address": "0x140019fd7", "size": 4, "mnemonic": "lea", - "operands": "r13d, [r15 - 0x2c]" + "operands": "r13d, [r15 - 0x2c]", + "stack_offset": 0 }, { "address": "0x140019fdb", "size": 8, "mnemonic": "lea", - "operands": "rdi, [r12 + 0xd0]" + "operands": "rdi, [r12 + 0xd0]", + "stack_offset": 0 }, { "address": "0x140019fe3", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdi - 0x60]" + "operands": "rax, [rdi - 0x60]", + "stack_offset": 0 }, { "address": "0x140019fe7", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140019fea", "size": 4, "mnemonic": "lea", - "operands": "r9d, [r15 + 0xc]" + "operands": "r9d, [r15 + 0xc]", + "stack_offset": 0 }, { "address": "0x140019fee", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140019ff3", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140019ff8", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x140019ffc", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a001", "size": 3, "mnemonic": "mov", - "operands": "r9d, r15d" + "operands": "r9d, r15d", + "stack_offset": 0 }, { "address": "0x14001a004", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x14001a009", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a00c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a010", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x14001a015", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a017", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a01c", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a01e", "size": 4, "mnemonic": "lea", - "operands": "r9d, [r15 + 0xc]" + "operands": "r9d, [r15 + 0xc]", + "stack_offset": 0 }, { "address": "0x14001a022", "size": 7, "mnemonic": "lea", - "operands": "rax, [rdi + 0x100]" + "operands": "rax, [rdi + 0x100]", + "stack_offset": 0 }, { "address": "0x14001a029", "size": 5, "mnemonic": "mov", - "operands": "ebx, 2" + "operands": "ebx, 2", + "stack_offset": 0 }, { "address": "0x14001a02e", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a031", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a036", "size": 2, "mnemonic": "mov", - "operands": "edx, ebx" + "operands": "edx, ebx", + "stack_offset": 0 }, { "address": "0x14001a038", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a03c", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a041", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a043", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a047", "size": 7, "mnemonic": "lea", - "operands": "rax, [rdi + 0x160]" + "operands": "rax, [rdi + 0x160]", + "stack_offset": 0 }, { "address": "0x14001a04e", "size": 3, "mnemonic": "mov", - "operands": "r9d, r15d" + "operands": "r9d, r15d", + "stack_offset": 0 }, { "address": "0x14001a051", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a054", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a059", "size": 2, "mnemonic": "mov", - "operands": "edx, ebx" + "operands": "edx, ebx", + "stack_offset": 0 }, { "address": "0x14001a05b", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a060", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a062", "size": 4, "mnemonic": "add", - "operands": "rdi, 8" + "operands": "rdi, 8", + "stack_offset": 0 }, { "address": "0x14001a066", "size": 3, "mnemonic": "inc", - "operands": "r15d" + "operands": "r15d", + "stack_offset": 0 }, { "address": "0x14001a069", "size": 4, "mnemonic": "sub", - "operands": "r13, 1" + "operands": "r13, 1", + "stack_offset": 0 }, { "address": "0x14001a06d", "size": 6, "mnemonic": "jne", - "operands": "0x140019fe3" + "operands": "0x140019fe3", + "stack_offset": 0 }, { "address": "0x14001a073", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x130]" + "operands": "rax, [r12 + 0x130]", + "stack_offset": 0 }, { "address": "0x14001a07b", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a07e", "size": 3, "mnemonic": "lea", - "operands": "edi, [rbx + 0x26]" + "operands": "edi, [rbx + 0x26]", + "stack_offset": 0 }, { "address": "0x14001a081", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a086", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x14001a089", "size": 3, "mnemonic": "lea", - "operands": "edx, [rbx - 1]" + "operands": "edx, [rbx - 1]", + "stack_offset": 0 }, { "address": "0x14001a08c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a090", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a095", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a097", "size": 3, "mnemonic": "lea", - "operands": "ebx, [rdi + 1]" + "operands": "ebx, [rdi + 1]", + "stack_offset": 0 }, { "address": "0x14001a09a", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x138]" + "operands": "rax, [r12 + 0x138]", + "stack_offset": 0 }, { "address": "0x14001a0a2", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14001a0a5", "size": 4, "mnemonic": "lea", - "operands": "r13d, [rdi - 0x27]" + "operands": "r13d, [rdi - 0x27]", + "stack_offset": 0 }, { "address": "0x14001a0a9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a0ae", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a0b1", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a0b5", "size": 3, "mnemonic": "mov", - "operands": "edx, r13d" + "operands": "edx, r13d", + "stack_offset": 0 }, { "address": "0x14001a0b8", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a0bd", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x14001a0c0", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a0c4", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a0c6", "size": 3, "mnemonic": "lea", - "operands": "edi, [rbx - 0x27]" + "operands": "edi, [rbx - 0x27]", + "stack_offset": 0 }, { "address": "0x14001a0c9", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x290]" + "operands": "rax, [r12 + 0x290]", + "stack_offset": 0 }, { "address": "0x14001a0d1", "size": 2, "mnemonic": "mov", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x14001a0d3", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a0d6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a0db", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a0e0", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a0e2", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a0e6", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x298]" + "operands": "rax, [r12 + 0x298]", + "stack_offset": 0 }, { "address": "0x14001a0ee", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14001a0f1", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a0f4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a0f9", "size": 2, "mnemonic": "mov", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x14001a0fb", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a100", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a102", "size": 4, "mnemonic": "lea", - "operands": "r15d, [rbx - 0xa]" + "operands": "r15d, [rbx - 0xa]", + "stack_offset": 0 }, { "address": "0x14001a106", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x140]" + "operands": "rax, [r12 + 0x140]", + "stack_offset": 0 }, { "address": "0x14001a10e", "size": 3, "mnemonic": "mov", - "operands": "r9d, r15d" + "operands": "r9d, r15d", + "stack_offset": 0 }, { "address": "0x14001a111", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a114", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a119", "size": 3, "mnemonic": "mov", - "operands": "edx, r13d" + "operands": "edx, r13d", + "stack_offset": 0 }, { "address": "0x14001a11c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a120", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a125", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a127", "size": 3, "mnemonic": "lea", - "operands": "edi, [rbx - 9]" + "operands": "edi, [rbx - 9]", + "stack_offset": 0 }, { "address": "0x14001a12a", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x148]" + "operands": "rax, [r12 + 0x148]", + "stack_offset": 0 }, { "address": "0x14001a132", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x14001a135", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a138", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a13d", "size": 3, "mnemonic": "mov", - "operands": "edx, r13d" + "operands": "edx, r13d", + "stack_offset": 0 }, { "address": "0x14001a140", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a144", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a149", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a14b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a14f", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x150]" + "operands": "rax, [r12 + 0x150]", + "stack_offset": 0 }, { "address": "0x14001a157", "size": 5, "mnemonic": "mov", - "operands": "ebx, 0x1003" + "operands": "ebx, 0x1003", + "stack_offset": 0 }, { "address": "0x14001a15c", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14001a15f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a164", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a167", "size": 3, "mnemonic": "mov", - "operands": "edx, r13d" + "operands": "edx, r13d", + "stack_offset": 0 }, { "address": "0x14001a16a", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a16f", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a171", "size": 4, "mnemonic": "lea", - "operands": "r9d, [rbx + 6]" + "operands": "r9d, [rbx + 6]", + "stack_offset": 0 }, { "address": "0x14001a175", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x158]" + "operands": "rax, [r12 + 0x158]", + "stack_offset": 0 }, { "address": "0x14001a17d", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a180", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001a182", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a187", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a18b", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a190", "size": 3, "mnemonic": "mov", - "operands": "r9d, r15d" + "operands": "r9d, r15d", + "stack_offset": 0 }, { "address": "0x14001a193", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a197", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a199", "size": 4, "mnemonic": "lea", - "operands": "r15d, [r13 + 1]" + "operands": "r15d, [r13 + 1]", + "stack_offset": 0 }, { "address": "0x14001a19d", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x2a0]" + "operands": "rax, [r12 + 0x2a0]", + "stack_offset": 0 }, { "address": "0x14001a1a5", "size": 3, "mnemonic": "mov", - "operands": "edx, r15d" + "operands": "edx, r15d", + "stack_offset": 0 }, { "address": "0x14001a1a8", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a1ab", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a1b0", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a1b5", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a1b7", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x2a8]" + "operands": "rax, [r12 + 0x2a8]", + "stack_offset": 0 }, { "address": "0x14001a1bf", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x14001a1c2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a1c7", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a1ca", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a1ce", "size": 3, "mnemonic": "mov", - "operands": "edx, r15d" + "operands": "edx, r15d", + "stack_offset": 0 }, { "address": "0x14001a1d1", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a1d6", "size": 2, "mnemonic": "or", - "operands": "esi, eax" + "operands": "esi, eax", + "stack_offset": 0 }, { "address": "0x14001a1d8", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x10]" + "operands": "rcx, [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001a1dc", "size": 8, "mnemonic": "lea", - "operands": "rax, [r12 + 0x2b0]" + "operands": "rax, [r12 + 0x2b0]", + "stack_offset": 0 }, { "address": "0x14001a1e4", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14001a1e7", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x14001a1ea", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001a1ef", "size": 3, "mnemonic": "mov", - "operands": "edx, r15d" + "operands": "edx, r15d", + "stack_offset": 0 }, { "address": "0x14001a1f2", "size": 5, "mnemonic": "call", - "operands": "0x140015e88" + "operands": "0x140015e88", + "stack_offset": 0 }, { "address": "0x14001a1f7", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x40]" + "operands": "r11, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001a1fc", "size": 2, "mnemonic": "or", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x14001a1fe", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x30]" + "operands": "rbx, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a202", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x38]" + "operands": "rsi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a206", "size": 3, "mnemonic": "sete", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x14001a209", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x40]" + "operands": "rdi, qword ptr [r11 + 0x40]", + "stack_offset": 0 }, { "address": "0x14001a20d", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14001a210", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001a212", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001a214", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001a216", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001a218", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001a219", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -61717,181 +69190,211 @@ "address": "0x14001bbdc", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001bbde", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001bbdf", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001bbe0", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001bbe1", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001bbe3", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001bbe5", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001bbe7", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14001bbea", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001bbee", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1544b]" + "operands": "rax, qword ptr [rip + 0x1544b]", + "stack_offset": 0 }, { "address": "0x14001bbf5", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14001bbf8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x14001bbfc", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x14001bbff", "size": 3, "mnemonic": "mov", - "operands": "r15, rdx" + "operands": "r15, rdx", + "stack_offset": 0 }, { "address": "0x14001bc02", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x14001bc05", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14001bc0a", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14001bc0d", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001bc0f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x20], rax" + "operands": "qword ptr [rbp - 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001bc13", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x18], eax" + "operands": "dword ptr [rbp - 0x18], eax", + "stack_offset": 0 }, { "address": "0x14001bc16", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14001bc1b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x20]" + "operands": "rcx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14001bc1f", "size": 3, "mnemonic": "xor", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x14001bc22", "size": 7, "mnemonic": "lea", - "operands": "rbx, [rsi + 0xa0]" + "operands": "rbx, [rsi + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001bc29", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x3a0], rcx" + "operands": "qword ptr [rax + 0x3a0], rcx", + "stack_offset": 0 }, { "address": "0x14001bc30", "size": 7, "mnemonic": "lea", - "operands": "rax, [r14 + 0x80]" + "operands": "rax, [r14 + 0x80]", + "stack_offset": 0 }, { "address": "0x14001bc37", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rsi + 0x98], r14" + "operands": "qword ptr [rsi + 0x98], r14", + "stack_offset": 0 }, { "address": "0x14001bc3e", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x14001bc41", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001bc44", "size": 2, "mnemonic": "je", - "operands": "0x14001bc64" + "operands": "0x14001bc64", + "stack_offset": 0 } ], "successors": [ @@ -61909,25 +69412,29 @@ "address": "0x14001bc64", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x20], r12d" + "operands": "dword ptr [rbp - 0x20], r12d", + "stack_offset": 0 }, { "address": "0x14001bc68", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi + 0x98]" + "operands": "rax, qword ptr [rsi + 0x98]", + "stack_offset": 0 }, { "address": "0x14001bc6f", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001bc72", "size": 2, "mnemonic": "je", - "operands": "0x14001bcee" + "operands": "0x14001bcee", + "stack_offset": 0 } ], "successors": [ @@ -61945,13 +69452,15 @@ "address": "0x14001bc46", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rax], r12w" + "operands": "word ptr [rax], r12w", + "stack_offset": 0 }, { "address": "0x14001bc4a", "size": 2, "mnemonic": "je", - "operands": "0x14001bc64" + "operands": "0x14001bc64", + "stack_offset": 0 } ], "successors": [ @@ -61969,19 +69478,22 @@ "address": "0x14001bcee", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14001bcf1", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001bcf4", "size": 2, "mnemonic": "je", - "operands": "0x14001bd47" + "operands": "0x14001bd47", + "stack_offset": 0 } ], "successors": [ @@ -61999,13 +69511,15 @@ "address": "0x14001bc74", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rax], r12w" + "operands": "word ptr [rax], r12w", + "stack_offset": 0 }, { "address": "0x14001bc78", "size": 2, "mnemonic": "je", - "operands": "0x14001bcee" + "operands": "0x14001bcee", + "stack_offset": 0 } ], "successors": [ @@ -62023,55 +69537,64 @@ "address": "0x14001bc4c", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0xb3ed]" + "operands": "rdx, qword ptr [rip + 0xb3ed]", + "stack_offset": 0 }, { "address": "0x14001bc53", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0xb276]" + "operands": "rcx, [rip + 0xb276]", + "stack_offset": 0 }, { "address": "0x14001bc5a", "size": 2, "mnemonic": "dec", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x14001bc5c", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x14001bc5f", "size": 5, "mnemonic": "call", - "operands": "0x14001bb54" + "operands": "0x14001bb54", + "stack_offset": 0 }, { "address": "0x14001bc64", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x20], r12d" + "operands": "dword ptr [rbp - 0x20], r12d", + "stack_offset": 0 }, { "address": "0x14001bc68", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi + 0x98]" + "operands": "rax, qword ptr [rsi + 0x98]", + "stack_offset": 0 }, { "address": "0x14001bc6f", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001bc72", "size": 2, "mnemonic": "je", - "operands": "0x14001bcee" + "operands": "0x14001bcee", + "stack_offset": 0 } ], "successors": [ @@ -62089,37 +69612,43 @@ "address": "0x14001bd47", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x20], 0x104" + "operands": "dword ptr [rbp - 0x20], 0x104", + "stack_offset": 0 }, { "address": "0x14001bd4e", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x4484]" + "operands": "qword ptr [rip + 0x4484]", + "stack_offset": 0 }, { "address": "0x14001bd54", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x18], eax" + "operands": "dword ptr [rbp - 0x18], eax", + "stack_offset": 0 }, { "address": "0x14001bd57", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x1c], eax" + "operands": "dword ptr [rbp - 0x1c], eax", + "stack_offset": 0 }, { "address": "0x14001bd5a", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp - 0x20], r12d" + "operands": "dword ptr [rbp - 0x20], r12d", + "stack_offset": 0 }, { "address": "0x14001bd5e", "size": 6, "mnemonic": "je", - "operands": "0x14001be3f" + "operands": "0x14001be3f", + "stack_offset": 0 } ], "successors": [ @@ -62137,13 +69666,15 @@ "address": "0x14001bcf6", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rax], r12w" + "operands": "word ptr [rax], r12w", + "stack_offset": 0 }, { "address": "0x14001bcfa", "size": 2, "mnemonic": "je", - "operands": "0x14001bd47" + "operands": "0x14001bd47", + "stack_offset": 0 } ], "successors": [ @@ -62161,19 +69692,22 @@ "address": "0x14001bc7a", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14001bc7d", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001bc80", "size": 2, "mnemonic": "je", - "operands": "0x14001bc93" + "operands": "0x14001bc93", + "stack_offset": 0 } ], "successors": [ @@ -62191,79 +69725,92 @@ "address": "0x14001be3f", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001be41", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x10]" + "operands": "rcx, qword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001be45", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14001be48", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14001be4d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001be51", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001be53", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001be55", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001be57", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001be58", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001be59", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001be5a", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001be5b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -62279,55 +69826,64 @@ "address": "0x14001bd64", "size": 7, "mnemonic": "lea", - "operands": "rax, [r14 + 0x100]" + "operands": "rax, [r14 + 0x100]", + "stack_offset": 0 }, { "address": "0x14001bd6b", "size": 3, "mnemonic": "neg", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001bd6e", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x20]" + "operands": "rdx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14001bd72", "size": 3, "mnemonic": "sbb", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001bd75", "size": 3, "mnemonic": "and", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14001bd78", "size": 5, "mnemonic": "call", - "operands": "0x14001b9e4" + "operands": "0x14001b9e4", + "stack_offset": 0 }, { "address": "0x14001bd7d", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x14001bd7f", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001bd81", "size": 6, "mnemonic": "je", - "operands": "0x14001be3f" + "operands": "0x14001be3f", + "stack_offset": 0 } ], "successors": [ @@ -62345,109 +69901,127 @@ "address": "0x14001bcfc", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14001bd01", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14001bd04", "size": 4, "mnemonic": "or", - "operands": "rcx, 0xffffffffffffffff" + "operands": "rcx, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001bd08", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0xa0]" + "operands": "rax, qword ptr [rax + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001bd0f", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x14001bd12", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [rax + rcx*2], r12w" + "operands": "word ptr [rax + rcx*2], r12w", + "stack_offset": 0 }, { "address": "0x14001bd17", "size": 2, "mnemonic": "jne", - "operands": "0x14001bd0f" + "operands": "0x14001bd0f", + "stack_offset": 0 }, { "address": "0x14001bd19", "size": 4, "mnemonic": "cmp", - "operands": "rcx, 3" + "operands": "rcx, 3", + "stack_offset": 0 }, { "address": "0x14001bd1d", "size": 3, "mnemonic": "mov", - "operands": "eax, r12d" + "operands": "eax, r12d", + "stack_offset": 0 }, { "address": "0x14001bd20", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip - 0x92f]" + "operands": "rcx, [rip - 0x92f]", + "stack_offset": 0 }, { "address": "0x14001bd27", "size": 3, "mnemonic": "sete", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x14001bd2a", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rdx + 0xb4], eax" + "operands": "dword ptr [rdx + 0xb4], eax", + "stack_offset": 0 }, { "address": "0x14001bd30", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x14001bd35", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x44a5]" + "operands": "qword ptr [rip + 0x44a5]", + "stack_offset": 0 }, { "address": "0x14001bd3b", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbp - 0x20], 4" + "operands": "byte ptr [rbp - 0x20], 4", + "stack_offset": 0 }, { "address": "0x14001bd3f", "size": 2, "mnemonic": "jne", - "operands": "0x14001bd5a" + "operands": "0x14001bd5a", + "stack_offset": 0 }, { "address": "0x14001bd41", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x20], r12d" + "operands": "dword ptr [rbp - 0x20], r12d", + "stack_offset": 0 }, { "address": "0x14001bd45", "size": 2, "mnemonic": "jmp", - "operands": "0x14001bd5a" + "operands": "0x14001bd5a", + "stack_offset": 0 } ], "successors": [ @@ -62464,67 +70038,78 @@ "address": "0x14001bc93", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x20]" + "operands": "rcx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14001bc97", "size": 5, "mnemonic": "call", - "operands": "0x14001b5b0" + "operands": "0x14001b5b0", + "stack_offset": 0 }, { "address": "0x14001bc9c", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp - 0x20], r12d" + "operands": "dword ptr [rbp - 0x20], r12d", + "stack_offset": 0 }, { "address": "0x14001bca0", "size": 6, "mnemonic": "jne", - "operands": "0x14001bd64" + "operands": "0x14001bd64", + "stack_offset": 0 }, { "address": "0x14001bca6", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0xb213]" + "operands": "rdx, qword ptr [rip + 0xb213]", + "stack_offset": 0 }, { "address": "0x14001bcad", "size": 7, "mnemonic": "lea", - "operands": "r8, [rsi + 0x98]" + "operands": "r8, [rsi + 0x98]", + "stack_offset": 0 }, { "address": "0x14001bcb4", "size": 2, "mnemonic": "dec", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x14001bcb6", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0xadf3]" + "operands": "rcx, [rip + 0xadf3]", + "stack_offset": 0 }, { "address": "0x14001bcbd", "size": 5, "mnemonic": "call", - "operands": "0x14001bb54" + "operands": "0x14001bb54", + "stack_offset": 0 }, { "address": "0x14001bcc2", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001bcc4", "size": 6, "mnemonic": "je", - "operands": "0x14001bd5a" + "operands": "0x14001bd5a", + "stack_offset": 0 } ], "successors": [ @@ -62542,13 +70127,15 @@ "address": "0x14001bc82", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rax], r12w" + "operands": "word ptr [rax], r12w", + "stack_offset": 0 }, { "address": "0x14001bc86", "size": 2, "mnemonic": "je", - "operands": "0x14001bc93" + "operands": "0x14001bc93", + "stack_offset": 0 } ], "successors": [ @@ -62566,25 +70153,29 @@ "address": "0x14001bd87", "size": 3, "mnemonic": "movzx", - "operands": "ecx, bx" + "operands": "ecx, bx", + "stack_offset": 0 }, { "address": "0x14001bd8a", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x44c0]" + "operands": "qword ptr [rip + 0x44c0]", + "stack_offset": 0 }, { "address": "0x14001bd90", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001bd92", "size": 6, "mnemonic": "je", - "operands": "0x14001be3f" + "operands": "0x14001be3f", + "stack_offset": 0 } ], "successors": [ @@ -62602,13 +70193,15 @@ "address": "0x14001bd5a", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp - 0x20], r12d" + "operands": "dword ptr [rbp - 0x20], r12d", + "stack_offset": 0 }, { "address": "0x14001bd5e", "size": 6, "mnemonic": "je", - "operands": "0x14001be3f" + "operands": "0x14001be3f", + "stack_offset": 0 } ], "successors": [ @@ -62626,19 +70219,22 @@ "address": "0x14001bcca", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14001bccd", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001bcd0", "size": 2, "mnemonic": "je", - "operands": "0x14001bce3" + "operands": "0x14001bce3", + "stack_offset": 0 } ], "successors": [ @@ -62656,19 +70252,22 @@ "address": "0x14001bc88", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x20]" + "operands": "rcx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14001bc8c", "size": 5, "mnemonic": "call", - "operands": "0x14001b4e0" + "operands": "0x14001b4e0", + "stack_offset": 0 }, { "address": "0x14001bc91", "size": 2, "mnemonic": "jmp", - "operands": "0x14001bc9c" + "operands": "0x14001bc9c", + "stack_offset": 0 } ], "successors": [ @@ -62685,31 +70284,36 @@ "address": "0x14001bd98", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp - 0x1c]" + "operands": "ecx, dword ptr [rbp - 0x1c]", + "stack_offset": 0 }, { "address": "0x14001bd9b", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x14001bda0", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x442a]" + "operands": "qword ptr [rip + 0x442a]", + "stack_offset": 0 }, { "address": "0x14001bda6", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001bda8", "size": 6, "mnemonic": "je", - "operands": "0x14001be3f" + "operands": "0x14001be3f", + "stack_offset": 0 } ], "successors": [ @@ -62727,19 +70331,22 @@ "address": "0x14001bce3", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x20]" + "operands": "rcx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14001bce7", "size": 5, "mnemonic": "call", - "operands": "0x14001b5b0" + "operands": "0x14001b5b0", + "stack_offset": 0 }, { "address": "0x14001bcec", "size": 2, "mnemonic": "jmp", - "operands": "0x14001bd5a" + "operands": "0x14001bd5a", + "stack_offset": 0 } ], "successors": [ @@ -62756,13 +70363,15 @@ "address": "0x14001bcd2", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rax], r12w" + "operands": "word ptr [rax], r12w", + "stack_offset": 0 }, { "address": "0x14001bcd6", "size": 2, "mnemonic": "je", - "operands": "0x14001bce3" + "operands": "0x14001bce3", + "stack_offset": 0 } ], "successors": [ @@ -62780,55 +70389,64 @@ "address": "0x14001bc9c", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp - 0x20], r12d" + "operands": "dword ptr [rbp - 0x20], r12d", + "stack_offset": 0 }, { "address": "0x14001bca0", "size": 6, "mnemonic": "jne", - "operands": "0x14001bd64" + "operands": "0x14001bd64", + "stack_offset": 0 }, { "address": "0x14001bca6", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0xb213]" + "operands": "rdx, qword ptr [rip + 0xb213]", + "stack_offset": 0 }, { "address": "0x14001bcad", "size": 7, "mnemonic": "lea", - "operands": "r8, [rsi + 0x98]" + "operands": "r8, [rsi + 0x98]", + "stack_offset": 0 }, { "address": "0x14001bcb4", "size": 2, "mnemonic": "dec", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x14001bcb6", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0xadf3]" + "operands": "rcx, [rip + 0xadf3]", + "stack_offset": 0 }, { "address": "0x14001bcbd", "size": 5, "mnemonic": "call", - "operands": "0x14001bb54" + "operands": "0x14001bb54", + "stack_offset": 0 }, { "address": "0x14001bcc2", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001bcc4", "size": 6, "mnemonic": "je", - "operands": "0x14001bd5a" + "operands": "0x14001bd5a", + "stack_offset": 0 } ], "successors": [ @@ -62846,13 +70464,15 @@ "address": "0x14001bdae", "size": 3, "mnemonic": "test", - "operands": "r15, r15" + "operands": "r15, r15", + "stack_offset": 0 }, { "address": "0x14001bdb1", "size": 2, "mnemonic": "je", - "operands": "0x14001bdb6" + "operands": "0x14001bdb6", + "stack_offset": 0 } ], "successors": [ @@ -62870,19 +70490,22 @@ "address": "0x14001bcd8", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x20]" + "operands": "rcx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14001bcdc", "size": 5, "mnemonic": "call", - "operands": "0x14001b4e0" + "operands": "0x14001b4e0", + "stack_offset": 0 }, { "address": "0x14001bce1", "size": 2, "mnemonic": "jmp", - "operands": "0x14001bd5a" + "operands": "0x14001bd5a", + "stack_offset": 0 } ], "successors": [ @@ -62899,49 +70522,57 @@ "address": "0x14001bdb6", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp - 0x1c]" + "operands": "ecx, dword ptr [rbp - 0x1c]", + "stack_offset": 0 }, { "address": "0x14001bdb9", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rsi + 0x2f0]" + "operands": "rdx, [rsi + 0x2f0]", + "stack_offset": 0 }, { "address": "0x14001bdc0", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14001bdc3", "size": 4, "mnemonic": "lea", - "operands": "esi, [r9 + 0x55]" + "operands": "esi, [r9 + 0x55]", + "stack_offset": 0 }, { "address": "0x14001bdc7", "size": 3, "mnemonic": "mov", - "operands": "r8d, esi" + "operands": "r8d, esi", + "stack_offset": 0 }, { "address": "0x14001bdca", "size": 5, "mnemonic": "call", - "operands": "0x140012164" + "operands": "0x140012164", + "stack_offset": 0 }, { "address": "0x14001bdcf", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x14001bdd2", "size": 2, "mnemonic": "je", - "operands": "0x14001be38" + "operands": "0x14001be38", + "stack_offset": 0 } ], "successors": [ @@ -62959,55 +70590,64 @@ "address": "0x14001bdb3", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [r15], ebx" + "operands": "dword ptr [r15], ebx", + "stack_offset": 0 }, { "address": "0x14001bdb6", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp - 0x1c]" + "operands": "ecx, dword ptr [rbp - 0x1c]", + "stack_offset": 0 }, { "address": "0x14001bdb9", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rsi + 0x2f0]" + "operands": "rdx, [rsi + 0x2f0]", + "stack_offset": 0 }, { "address": "0x14001bdc0", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14001bdc3", "size": 4, "mnemonic": "lea", - "operands": "esi, [r9 + 0x55]" + "operands": "esi, [r9 + 0x55]", + "stack_offset": 0 }, { "address": "0x14001bdc7", "size": 3, "mnemonic": "mov", - "operands": "r8d, esi" + "operands": "r8d, esi", + "stack_offset": 0 }, { "address": "0x14001bdca", "size": 5, "mnemonic": "call", - "operands": "0x140012164" + "operands": "0x140012164", + "stack_offset": 0 }, { "address": "0x14001bdcf", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x14001bdd2", "size": 2, "mnemonic": "je", - "operands": "0x14001be38" + "operands": "0x14001be38", + "stack_offset": 0 } ], "successors": [ @@ -63025,13 +70665,15 @@ "address": "0x14001be38", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001be3d", "size": 2, "mnemonic": "jmp", - "operands": "0x14001be41" + "operands": "0x14001be41", + "stack_offset": 0 } ], "successors": [ @@ -63048,79 +70690,92 @@ "address": "0x14001bdd4", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp - 0x1c]" + "operands": "ecx, dword ptr [rbp - 0x1c]", + "stack_offset": 0 }, { "address": "0x14001bdd7", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rdi + 0x120]" + "operands": "rdx, [rdi + 0x120]", + "stack_offset": 0 }, { "address": "0x14001bdde", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14001bde1", "size": 3, "mnemonic": "mov", - "operands": "r8d, esi" + "operands": "r8d, esi", + "stack_offset": 0 }, { "address": "0x14001bde4", "size": 5, "mnemonic": "call", - "operands": "0x140012164" + "operands": "0x140012164", + "stack_offset": 0 }, { "address": "0x14001bde9", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp - 0x1c]" + "operands": "ecx, dword ptr [rbp - 0x1c]", + "stack_offset": 0 }, { "address": "0x14001bdec", "size": 5, "mnemonic": "mov", - "operands": "esi, 0x40" + "operands": "esi, 0x40", + "stack_offset": 0 }, { "address": "0x14001bdf1", "size": 3, "mnemonic": "mov", - "operands": "r9d, esi" + "operands": "r9d, esi", + "stack_offset": 0 }, { "address": "0x14001bdf4", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14001bdf7", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x1001" + "operands": "edx, 0x1001", + "stack_offset": 0 }, { "address": "0x14001bdfc", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x43c6]" + "operands": "qword ptr [rip + 0x43c6]", + "stack_offset": 0 }, { "address": "0x14001be02", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001be04", "size": 2, "mnemonic": "je", - "operands": "0x14001be3f" + "operands": "0x14001be3f", + "stack_offset": 0 } ], "successors": [ @@ -63138,73 +70793,85 @@ "address": "0x14001be41", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x10]" + "operands": "rcx, qword ptr [rbp - 0x10]", + "stack_offset": 0 }, { "address": "0x14001be45", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14001be48", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14001be4d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001be51", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001be53", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001be55", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001be57", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001be58", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001be59", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001be5a", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001be5b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -63220,43 +70887,50 @@ "address": "0x14001be06", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp - 0x18]" + "operands": "ecx, dword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14001be09", "size": 7, "mnemonic": "lea", - "operands": "r8, [rdi + 0x80]" + "operands": "r8, [rdi + 0x80]", + "stack_offset": 0 }, { "address": "0x14001be10", "size": 3, "mnemonic": "mov", - "operands": "r9d, esi" + "operands": "r9d, esi", + "stack_offset": 0 }, { "address": "0x14001be13", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x1002" + "operands": "edx, 0x1002", + "stack_offset": 0 }, { "address": "0x14001be18", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x43aa]" + "operands": "qword ptr [rip + 0x43aa]", + "stack_offset": 0 }, { "address": "0x14001be1e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001be20", "size": 2, "mnemonic": "je", - "operands": "0x14001be3f" + "operands": "0x14001be3f", + "stack_offset": 0 } ], "successors": [ @@ -63274,43 +70948,50 @@ "address": "0x14001be22", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rdi + 0x100]" + "operands": "rdx, [rdi + 0x100]", + "stack_offset": 0 }, { "address": "0x14001be29", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14001be2b", "size": 4, "mnemonic": "lea", - "operands": "r9d, [rsi - 0x36]" + "operands": "r9d, [rsi - 0x36]", + "stack_offset": 0 }, { "address": "0x14001be2f", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rsi - 0x30]" + "operands": "r8d, [rsi - 0x30]", + "stack_offset": 0 }, { "address": "0x14001be33", "size": 5, "mnemonic": "call", - "operands": "0x14001d3e4" + "operands": "0x14001d3e4", + "stack_offset": 0 }, { "address": "0x14001be38", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001be3d", "size": 2, "mnemonic": "jmp", - "operands": "0x14001be41" + "operands": "0x14001be41", + "stack_offset": 0 } ], "successors": [ @@ -63333,127 +71014,148 @@ "address": "0x14001c269", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001c26a", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001c26b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c26c", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001c26e", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001c270", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001c272", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001c274", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001c278", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x14dc1]" + "operands": "rax, qword ptr [rip + 0x14dc1]", + "stack_offset": 0 }, { "address": "0x14001c27f", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14001c282", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rax" + "operands": "qword ptr [rsp + 0x38], rax", + "stack_offset": 0 }, { "address": "0x14001c287", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0xa0]" + "operands": "rax, qword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001c28f", "size": 3, "mnemonic": "mov", - "operands": "rsi, r9" + "operands": "rsi, r9", + "stack_offset": 0 }, { "address": "0x14001c292", "size": 3, "mnemonic": "mov", - "operands": "rdi, qword ptr [rdx]" + "operands": "rdi, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001c295", "size": 3, "mnemonic": "mov", - "operands": "r15, r8" + "operands": "r15, r8", + "stack_offset": 0 }, { "address": "0x14001c298", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001c29d", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x14001c2a0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], r9" + "operands": "qword ptr [rsp + 0x28], r9", + "stack_offset": 0 }, { "address": "0x14001c2a5", "size": 3, "mnemonic": "mov", - "operands": "r12, rcx" + "operands": "r12, rcx", + "stack_offset": 0 }, { "address": "0x14001c2a8", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001c2ab", "size": 6, "mnemonic": "je", - "operands": "0x14001c33e" + "operands": "0x14001c33e", + "stack_offset": 0 } ], "successors": [ @@ -63471,49 +71173,57 @@ "address": "0x14001c33e", "size": 3, "mnemonic": "movzx", - "operands": "edx, word ptr [rdi]" + "operands": "edx, word ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14001c341", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x30]" + "operands": "rcx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001c346", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x14001c349", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x14001c34c", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x14001c34e", "size": 5, "mnemonic": "call", - "operands": "0x140016d88" + "operands": "0x140016d88", + "stack_offset": 0 }, { "address": "0x14001c353", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x14001c357", "size": 2, "mnemonic": "je", - "operands": "0x14001c392" + "operands": "0x14001c392", + "stack_offset": 0 } ], "successors": [ @@ -63531,79 +71241,92 @@ "address": "0x14001c2b1", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001c2b4", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdi" + "operands": "rbp, rdi", + "stack_offset": 0 }, { "address": "0x14001c2b7", "size": 3, "mnemonic": "movzx", - "operands": "edx, word ptr [rdi]" + "operands": "edx, word ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14001c2ba", "size": 5, "mnemonic": "lea", - "operands": "r13, [rsp + 0x30]" + "operands": "r13, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001c2bf", "size": 4, "mnemonic": "cmp", - "operands": "r15, 4" + "operands": "r15, 4", + "stack_offset": 0 }, { "address": "0x14001c2c3", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x14001c2c6", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x14001c2c9", "size": 4, "mnemonic": "cmovae", - "operands": "r13, rbx" + "operands": "r13, rbx", + "stack_offset": 0 }, { "address": "0x14001c2cd", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x14001c2d0", "size": 5, "mnemonic": "call", - "operands": "0x140016d88" + "operands": "0x140016d88", + "stack_offset": 0 }, { "address": "0x14001c2d5", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14001c2d8", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x14001c2dc", "size": 2, "mnemonic": "je", - "operands": "0x14001c335" + "operands": "0x14001c335", + "stack_offset": 0 } ], "successors": [ @@ -63621,79 +71344,92 @@ "address": "0x14001c392", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x38]" + "operands": "rcx, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001c397", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14001c39a", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14001c39f", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x90]" + "operands": "rbx, qword ptr [rsp + 0x90]", + "stack_offset": 0 }, { "address": "0x14001c3a7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001c3ab", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001c3ad", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001c3af", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001c3b1", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001c3b3", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c3b4", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001c3b5", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001c3b6", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -63709,19 +71445,22 @@ "address": "0x14001c359", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x20]" + "operands": "rbp, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001c35e", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001c361", "size": 2, "mnemonic": "je", - "operands": "0x14001c36a" + "operands": "0x14001c36a", + "stack_offset": 0 } ], "successors": [ @@ -63739,19 +71478,22 @@ "address": "0x14001c335", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r14], rbp" + "operands": "qword ptr [r14], rbp", + "stack_offset": 0 }, { "address": "0x14001c338", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001c33c", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c392" + "operands": "0x14001c392", + "stack_offset": 0 } ], "successors": [ @@ -63768,13 +71510,15 @@ "address": "0x14001c2de", "size": 3, "mnemonic": "cmp", - "operands": "r13, rbx" + "operands": "r13, rbx", + "stack_offset": 0 }, { "address": "0x14001c2e1", "size": 2, "mnemonic": "je", - "operands": "0x14001c2f6" + "operands": "0x14001c2f6", + "stack_offset": 0 } ], "successors": [ @@ -63792,61 +71536,71 @@ "address": "0x14001c36a", "size": 4, "mnemonic": "add", - "operands": "rdi, 2" + "operands": "rdi, 2", + "stack_offset": 0 }, { "address": "0x14001c36e", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x30]" + "operands": "rcx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001c373", "size": 3, "mnemonic": "mov", - "operands": "r9, rbp" + "operands": "r9, rbp", + "stack_offset": 0 }, { "address": "0x14001c376", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x14001c379", "size": 3, "mnemonic": "add", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14001c37c", "size": 3, "mnemonic": "movzx", - "operands": "edx, word ptr [rdi]" + "operands": "edx, word ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14001c37f", "size": 5, "mnemonic": "call", - "operands": "0x140016d88" + "operands": "0x140016d88", + "stack_offset": 0 }, { "address": "0x14001c384", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x14001c388", "size": 2, "mnemonic": "jne", - "operands": "0x14001c35e" + "operands": "0x14001c35e", + "stack_offset": 0 }, { "address": "0x14001c38a", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c392" + "operands": "0x14001c392", + "stack_offset": 0 } ], "successors": [ @@ -63863,13 +71617,15 @@ "address": "0x14001c363", "size": 5, "mnemonic": "cmp", - "operands": "byte ptr [rsp + rax + 0x2f], 0" + "operands": "byte ptr [rsp + rax + 0x2f], 0", + "stack_offset": 0 }, { "address": "0x14001c368", "size": 2, "mnemonic": "je", - "operands": "0x14001c38c" + "operands": "0x14001c38c", + "stack_offset": 0 } ], "successors": [ @@ -63887,13 +71643,15 @@ "address": "0x14001c2f6", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x14001c2f9", "size": 2, "mnemonic": "je", - "operands": "0x14001c30e" + "operands": "0x14001c30e", + "stack_offset": 0 } ], "successors": [ @@ -63911,13 +71669,15 @@ "address": "0x14001c2e3", "size": 3, "mnemonic": "cmp", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x14001c2e6", "size": 2, "mnemonic": "jb", - "operands": "0x14001c32a" + "operands": "0x14001c32a", + "stack_offset": 0 } ], "successors": [ @@ -63935,91 +71695,106 @@ "address": "0x14001c38c", "size": 3, "mnemonic": "dec", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x14001c38f", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14001c392", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x38]" + "operands": "rcx, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001c397", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14001c39a", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14001c39f", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x90]" + "operands": "rbx, qword ptr [rsp + 0x90]", + "stack_offset": 0 }, { "address": "0x14001c3a7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001c3ab", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001c3ad", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001c3af", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001c3b1", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001c3b3", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c3b4", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001c3b5", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001c3b6", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -64035,37 +71810,43 @@ "address": "0x14001c30e", "size": 4, "mnemonic": "add", - "operands": "rdi, 2" + "operands": "rdi, 2", + "stack_offset": 0 }, { "address": "0x14001c312", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x20]" + "operands": "rax, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001c317", "size": 3, "mnemonic": "sub", - "operands": "r15, rsi" + "operands": "r15, rsi", + "stack_offset": 0 }, { "address": "0x14001c31a", "size": 3, "mnemonic": "add", - "operands": "rbx, rsi" + "operands": "rbx, rsi", + "stack_offset": 0 }, { "address": "0x14001c31d", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x28]" + "operands": "rsi, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001c322", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c2b7" + "operands": "0x14001c2b7", + "stack_offset": 0 } ], "successors": [ @@ -64082,19 +71863,22 @@ "address": "0x14001c2fb", "size": 4, "mnemonic": "lea", - "operands": "rax, [rsi + rbx]" + "operands": "rax, [rsi + rbx]", + "stack_offset": 0 }, { "address": "0x14001c2ff", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rax - 1], 0" + "operands": "byte ptr [rax - 1], 0", + "stack_offset": 0 }, { "address": "0x14001c303", "size": 2, "mnemonic": "je", - "operands": "0x14001c324" + "operands": "0x14001c324", + "stack_offset": 0 } ], "successors": [ @@ -64112,25 +71896,29 @@ "address": "0x14001c32a", "size": 3, "mnemonic": "sub", - "operands": "rbx, r12" + "operands": "rbx, r12", + "stack_offset": 0 }, { "address": "0x14001c32d", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r14], rbp" + "operands": "qword ptr [r14], rbp", + "stack_offset": 0 }, { "address": "0x14001c330", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14001c333", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c392" + "operands": "0x14001c392", + "stack_offset": 0 } ], "successors": [ @@ -64147,37 +71935,43 @@ "address": "0x14001c2e8", "size": 3, "mnemonic": "mov", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14001c2eb", "size": 3, "mnemonic": "mov", - "operands": "rdx, r13" + "operands": "rdx, r13", + "stack_offset": 0 }, { "address": "0x14001c2ee", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001c2f1", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x14001c2f6", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x14001c2f9", "size": 2, "mnemonic": "je", - "operands": "0x14001c30e" + "operands": "0x14001c30e", + "stack_offset": 0 } ], "successors": [ @@ -64195,67 +71989,78 @@ "address": "0x14001c2b7", "size": 3, "mnemonic": "movzx", - "operands": "edx, word ptr [rdi]" + "operands": "edx, word ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14001c2ba", "size": 5, "mnemonic": "lea", - "operands": "r13, [rsp + 0x30]" + "operands": "r13, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001c2bf", "size": 4, "mnemonic": "cmp", - "operands": "r15, 4" + "operands": "r15, 4", + "stack_offset": 0 }, { "address": "0x14001c2c3", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x14001c2c6", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x14001c2c9", "size": 4, "mnemonic": "cmovae", - "operands": "r13, rbx" + "operands": "r13, rbx", + "stack_offset": 0 }, { "address": "0x14001c2cd", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x14001c2d0", "size": 5, "mnemonic": "call", - "operands": "0x140016d88" + "operands": "0x140016d88", + "stack_offset": 0 }, { "address": "0x14001c2d5", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14001c2d8", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x14001c2dc", "size": 2, "mnemonic": "je", - "operands": "0x14001c335" + "operands": "0x14001c335", + "stack_offset": 0 } ], "successors": [ @@ -64273,37 +72078,43 @@ "address": "0x14001c324", "size": 2, "mnemonic": "xor", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x14001c326", "size": 4, "mnemonic": "lea", - "operands": "rbx, [rax - 1]" + "operands": "rbx, [rax - 1]", + "stack_offset": 0 }, { "address": "0x14001c32a", "size": 3, "mnemonic": "sub", - "operands": "rbx, r12" + "operands": "rbx, r12", + "stack_offset": 0 }, { "address": "0x14001c32d", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r14], rbp" + "operands": "qword ptr [r14], rbp", + "stack_offset": 0 }, { "address": "0x14001c330", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14001c333", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c392" + "operands": "0x14001c392", + "stack_offset": 0 } ], "successors": [ @@ -64320,19 +72131,22 @@ "address": "0x14001c305", "size": 4, "mnemonic": "add", - "operands": "rdi, 2" + "operands": "rdi, 2", + "stack_offset": 0 }, { "address": "0x14001c309", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdi" + "operands": "rbp, rdi", + "stack_offset": 0 }, { "address": "0x14001c30c", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c312" + "operands": "0x14001c312", + "stack_offset": 0 } ], "successors": [ @@ -64349,31 +72163,36 @@ "address": "0x14001c312", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x20]" + "operands": "rax, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001c317", "size": 3, "mnemonic": "sub", - "operands": "r15, rsi" + "operands": "r15, rsi", + "stack_offset": 0 }, { "address": "0x14001c31a", "size": 3, "mnemonic": "add", - "operands": "rbx, rsi" + "operands": "rbx, rsi", + "stack_offset": 0 }, { "address": "0x14001c31d", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x28]" + "operands": "rsi, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001c322", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c2b7" + "operands": "0x14001c2b7", + "stack_offset": 0 } ], "successors": [ @@ -64396,37 +72215,43 @@ "address": "0x14001c5be", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001c5bf", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14001c5c2", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14001c5c6", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xffff" + "operands": "eax, 0xffff", + "stack_offset": 0 }, { "address": "0x14001c5cb", "size": 3, "mnemonic": "cmp", - "operands": "cx, ax" + "operands": "cx, ax", + "stack_offset": 0 }, { "address": "0x14001c5ce", "size": 6, "mnemonic": "je", - "operands": "0x14001c6a3" + "operands": "0x14001c6a3", + "stack_offset": 0 } ], "successors": [ @@ -64444,25 +72269,29 @@ "address": "0x14001c6a3", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x68]" + "operands": "rbx, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x14001c6a8", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14001c6ac", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001c6ad", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -64478,91 +72307,106 @@ "address": "0x14001c5d4", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x20]" + "operands": "rcx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14001c5d8", "size": 5, "mnemonic": "call", - "operands": "0x14000d89c" + "operands": "0x14000d89c", + "stack_offset": 0 }, { "address": "0x14001c5dd", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rbp - 0x18]" + "operands": "r10, qword ptr [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14001c5e1", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x14001c5e3", "size": 6, "mnemonic": "mov", - "operands": "r11d, 0x100" + "operands": "r11d, 0x100", + "stack_offset": 0 }, { "address": "0x14001c5e9", "size": 8, "mnemonic": "cmp", - "operands": "dword ptr [r10 + 0xc], 0xfde9" + "operands": "dword ptr [r10 + 0xc], 0xfde9", + "stack_offset": 0 }, { "address": "0x14001c5f1", "size": 2, "mnemonic": "jne", - "operands": "0x14001c61c" + "operands": "0x14001c61c", + "stack_offset": 0 }, { "address": "0x14001c5f3", "size": 4, "mnemonic": "movzx", - "operands": "ecx, word ptr [rbp + 0x10]" + "operands": "ecx, word ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14001c5f7", "size": 4, "mnemonic": "lea", - "operands": "eax, [r11 - 0x80]" + "operands": "eax, [r11 - 0x80]", + "stack_offset": 0 }, { "address": "0x14001c5fb", "size": 3, "mnemonic": "cmp", - "operands": "cx, ax" + "operands": "cx, ax", + "stack_offset": 0 }, { "address": "0x14001c5fe", "size": 2, "mnemonic": "jae", - "operands": "0x14001c656" + "operands": "0x14001c656", + "stack_offset": 0 }, { "address": "0x14001c600", "size": 3, "mnemonic": "movzx", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14001c603", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x8e26]" + "operands": "r8, [rip + 0x8e26]", + "stack_offset": 0 }, { "address": "0x14001c60a", "size": 6, "mnemonic": "test", - "operands": "byte ptr [r8 + rax*2 + 2], 1" + "operands": "byte ptr [r8 + rax*2 + 2], 1", + "stack_offset": 0 }, { "address": "0x14001c610", "size": 2, "mnemonic": "je", - "operands": "0x14001c617" + "operands": "0x14001c617", + "stack_offset": 0 } ], "successors": [ @@ -64580,13 +72424,15 @@ "address": "0x14001c617", "size": 3, "mnemonic": "movzx", - "operands": "edx, cl" + "operands": "edx, cl", + "stack_offset": 0 }, { "address": "0x14001c61a", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c690" + "operands": "0x14001c690", + "stack_offset": 0 } ], "successors": [ @@ -64603,13 +72449,15 @@ "address": "0x14001c612", "size": 3, "mnemonic": "movzx", - "operands": "ecx, cl" + "operands": "ecx, cl", + "stack_offset": 0 }, { "address": "0x14001c615", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c63b" + "operands": "0x14001c63b", + "stack_offset": 0 } ], "successors": [ @@ -64626,13 +72474,15 @@ "address": "0x14001c690", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 8], bl" + "operands": "byte ptr [rbp - 8], bl", + "stack_offset": 0 }, { "address": "0x14001c693", "size": 2, "mnemonic": "je", - "operands": "0x14001c6a0" + "operands": "0x14001c6a0", + "stack_offset": 0 } ], "successors": [ @@ -64650,19 +72500,22 @@ "address": "0x14001c63b", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [r10 + 0x110]" + "operands": "rax, qword ptr [r10 + 0x110]", + "stack_offset": 0 }, { "address": "0x14001c642", "size": 4, "mnemonic": "movzx", - "operands": "edx, byte ptr [rax + rcx]" + "operands": "edx, byte ptr [rax + rcx]", + "stack_offset": 0 }, { "address": "0x14001c646", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c690" + "operands": "0x14001c690", + "stack_offset": 0 } ], "successors": [ @@ -64679,31 +72532,36 @@ "address": "0x14001c6a0", "size": 3, "mnemonic": "movzx", - "operands": "eax, dx" + "operands": "eax, dx", + "stack_offset": 0 }, { "address": "0x14001c6a3", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x68]" + "operands": "rbx, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x14001c6a8", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14001c6ac", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001c6ad", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -64719,43 +72577,50 @@ "address": "0x14001c695", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp - 0x20]" + "operands": "rcx, qword ptr [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14001c699", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14001c6a0", "size": 3, "mnemonic": "movzx", - "operands": "eax, dx" + "operands": "eax, dx", + "stack_offset": 0 }, { "address": "0x14001c6a3", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x68]" + "operands": "rbx, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x14001c6a8", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14001c6ac", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001c6ad", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -64777,61 +72642,71 @@ "address": "0x14001cf6f", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001cf70", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14001cf73", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14001cf77", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x16272], 0" + "operands": "dword ptr [rip + 0x16272], 0", + "stack_offset": 0 }, { "address": "0x14001cf7e", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x14001cf81", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x14001cf84", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x14001cf87", "size": 2, "mnemonic": "jne", - "operands": "0x14001cf93" + "operands": "0x14001cf93", + "stack_offset": 0 }, { "address": "0x14001cf89", "size": 5, "mnemonic": "call", - "operands": "0x14001d930" + "operands": "0x14001d930", + "stack_offset": 0 }, { "address": "0x14001cf8e", "size": 5, "mnemonic": "jmp", - "operands": "0x14001d0ec" + "operands": "0x14001d0ec", + "stack_offset": 0 } ], "successors": [ @@ -64848,43 +72723,50 @@ "address": "0x14001d0ec", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x60]" + "operands": "r11, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14001d0f1", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x18]" + "operands": "rsi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x14001d0f5", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x20]" + "operands": "rdi, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14001d0f9", "size": 4, "mnemonic": "mov", - "operands": "r14, qword ptr [r11 + 0x28]" + "operands": "r14, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x14001d0fd", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14001d100", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001d101", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -64906,181 +72788,211 @@ "address": "0x14001d113", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001d114", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001d116", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001d118", "size": 4, "mnemonic": "lea", - "operands": "rbp, [rax - 0x5f]" + "operands": "rbp, [rax - 0x5f]", + "stack_offset": 0 }, { "address": "0x14001d11c", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xa0" + "operands": "rsp, 0xa0", + "stack_offset": 0 }, { "address": "0x14001d123", "size": 3, "mnemonic": "xor", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14001d126", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x14001d129", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x14001d12c", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x17], r15" + "operands": "qword ptr [rbp + 0x17], r15", + "stack_offset": 0 }, { "address": "0x14001d130", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001d132", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x1f], r15" + "operands": "qword ptr [rbp + 0x1f], r15", + "stack_offset": 0 }, { "address": "0x14001d136", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14001d13a", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x27], r15" + "operands": "qword ptr [rbp + 0x27], r15", + "stack_offset": 0 }, { "address": "0x14001d13e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x2f], r15" + "operands": "qword ptr [rbp + 0x2f], r15", + "stack_offset": 0 }, { "address": "0x14001d142", "size": 3, "mnemonic": "mov", - "operands": "edi, r15d" + "operands": "edi, r15d", + "stack_offset": 0 }, { "address": "0x14001d145", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x37], r15" + "operands": "qword ptr [rbp + 0x37], r15", + "stack_offset": 0 }, { "address": "0x14001d149", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp + 0x3f], r15b" + "operands": "byte ptr [rbp + 0x3f], r15b", + "stack_offset": 0 }, { "address": "0x14001d14d", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x19], r15" + "operands": "qword ptr [rbp - 0x19], r15", + "stack_offset": 0 }, { "address": "0x14001d151", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x11], r15" + "operands": "qword ptr [rbp - 0x11], r15", + "stack_offset": 0 }, { "address": "0x14001d155", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 9], r15" + "operands": "qword ptr [rbp - 9], r15", + "stack_offset": 0 }, { "address": "0x14001d159", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 1], r15" + "operands": "qword ptr [rbp - 1], r15", + "stack_offset": 0 }, { "address": "0x14001d15d", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 7], r15" + "operands": "qword ptr [rbp + 7], r15", + "stack_offset": 0 }, { "address": "0x14001d161", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp + 0xf], r15b" + "operands": "byte ptr [rbp + 0xf], r15b", + "stack_offset": 0 }, { "address": "0x14001d165", "size": 5, "mnemonic": "call", - "operands": "0x14000d89c" + "operands": "0x14000d89c", + "stack_offset": 0 }, { "address": "0x14001d16a", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x31]" + "operands": "rax, qword ptr [rbp - 0x31]", + "stack_offset": 0 }, { "address": "0x14001d16e", "size": 5, "mnemonic": "mov", - "operands": "ebx, 0xfde9" + "operands": "ebx, 0xfde9", + "stack_offset": 0 }, { "address": "0x14001d173", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0xc], ebx" + "operands": "dword ptr [rax + 0xc], ebx", + "stack_offset": 0 }, { "address": "0x14001d176", "size": 2, "mnemonic": "jne", - "operands": "0x14001d18e" + "operands": "0x14001d18e", + "stack_offset": 0 }, { "address": "0x14001d178", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x21], r15b" + "operands": "byte ptr [rbp - 0x21], r15b", + "stack_offset": 0 }, { "address": "0x14001d17c", "size": 2, "mnemonic": "je", - "operands": "0x14001d189" + "operands": "0x14001d189", + "stack_offset": 0 } ], "successors": [ @@ -65098,13 +73010,15 @@ "address": "0x14001d189", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14001d18c", "size": 2, "mnemonic": "jmp", - "operands": "0x14001d1c4" + "operands": "0x14001d1c4", + "stack_offset": 0 } ], "successors": [ @@ -65121,25 +73035,29 @@ "address": "0x14001d17e", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x39]" + "operands": "rax, qword ptr [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14001d182", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rax + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rax + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14001d189", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14001d18c", "size": 2, "mnemonic": "jmp", - "operands": "0x14001d1c4" + "operands": "0x14001d1c4", + "stack_offset": 0 } ], "successors": [ @@ -65156,85 +73074,99 @@ "address": "0x14001d1c4", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp + 0x77]" + "operands": "r8, [rbp + 0x77]", + "stack_offset": 0 }, { "address": "0x14001d1c8", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14001d1cb", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp + 0x17]" + "operands": "rdx, [rbp + 0x17]", + "stack_offset": 0 }, { "address": "0x14001d1cf", "size": 5, "mnemonic": "call", - "operands": "0x14000d9d8" + "operands": "0x14000d9d8", + "stack_offset": 0 }, { "address": "0x14001d1d4", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001d1d6", "size": 6, "mnemonic": "jne", - "operands": "0x14001d264" + "operands": "0x14001d264", + "stack_offset": 0 }, { "address": "0x14001d1dc", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001d1de", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp - 0x39]" + "operands": "rcx, [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14001d1e2", "size": 5, "mnemonic": "call", - "operands": "0x14000d89c" + "operands": "0x14000d89c", + "stack_offset": 0 }, { "address": "0x14001d1e7", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x31]" + "operands": "rax, qword ptr [rbp - 0x31]", + "stack_offset": 0 }, { "address": "0x14001d1eb", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0xc], ebx" + "operands": "dword ptr [rax + 0xc], ebx", + "stack_offset": 0 }, { "address": "0x14001d1ee", "size": 2, "mnemonic": "jne", - "operands": "0x14001d203" + "operands": "0x14001d203", + "stack_offset": 0 }, { "address": "0x14001d1f0", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x21], r15b" + "operands": "byte ptr [rbp - 0x21], r15b", + "stack_offset": 0 }, { "address": "0x14001d1f4", "size": 2, "mnemonic": "je", - "operands": "0x14001d238" + "operands": "0x14001d238", + "stack_offset": 0 } ], "successors": [ @@ -65252,79 +73184,92 @@ "address": "0x14001d238", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14001d23b", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp + 0x77]" + "operands": "r8, [rbp + 0x77]", + "stack_offset": 0 }, { "address": "0x14001d23f", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x19]" + "operands": "rdx, [rbp - 0x19]", + "stack_offset": 0 }, { "address": "0x14001d243", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x14001d246", "size": 5, "mnemonic": "call", - "operands": "0x14000d9d8" + "operands": "0x14000d9d8", + "stack_offset": 0 }, { "address": "0x14001d24b", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp - 9]" + "operands": "rdi, qword ptr [rbp - 9]", + "stack_offset": 0 }, { "address": "0x14001d24f", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001d251", "size": 2, "mnemonic": "jne", - "operands": "0x14001d264" + "operands": "0x14001d264", + "stack_offset": 0 }, { "address": "0x14001d253", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x27]" + "operands": "rcx, qword ptr [rbp + 0x27]", + "stack_offset": 0 }, { "address": "0x14001d257", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x14001d25a", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x3018]" + "operands": "qword ptr [rip + 0x3018]", + "stack_offset": 0 }, { "address": "0x14001d260", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x14001d262", "size": 2, "mnemonic": "jmp", - "operands": "0x14001d267" + "operands": "0x14001d267", + "stack_offset": 0 } ], "successors": [ @@ -65341,19 +73286,22 @@ "address": "0x14001d1f6", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x39]" + "operands": "rax, qword ptr [rbp - 0x39]", + "stack_offset": 0 }, { "address": "0x14001d1fa", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rax + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rax + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14001d201", "size": 2, "mnemonic": "jmp", - "operands": "0x14001d238" + "operands": "0x14001d238", + "stack_offset": 0 } ], "successors": [ @@ -65370,13 +73318,15 @@ "address": "0x14001d267", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0xf], r15b" + "operands": "byte ptr [rbp + 0xf], r15b", + "stack_offset": 0 }, { "address": "0x14001d26b", "size": 2, "mnemonic": "je", - "operands": "0x14001d275" + "operands": "0x14001d275", + "stack_offset": 0 } ], "successors": [ @@ -65394,13 +73344,15 @@ "address": "0x14001d275", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0x3f], r15b" + "operands": "byte ptr [rbp + 0x3f], r15b", + "stack_offset": 0 }, { "address": "0x14001d279", "size": 2, "mnemonic": "je", - "operands": "0x14001d284" + "operands": "0x14001d284", + "stack_offset": 0 } ], "successors": [ @@ -65418,25 +73370,29 @@ "address": "0x14001d26d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14001d270", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001d275", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0x3f], r15b" + "operands": "byte ptr [rbp + 0x3f], r15b", + "stack_offset": 0 }, { "address": "0x14001d279", "size": 2, "mnemonic": "je", - "operands": "0x14001d284" + "operands": "0x14001d284", + "stack_offset": 0 } ], "successors": [ @@ -65454,61 +73410,71 @@ "address": "0x14001d284", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0xa0]" + "operands": "r11, [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001d28c", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x14001d28e", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14001d292", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x28]" + "operands": "rsi, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x14001d296", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x38]" + "operands": "rdi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x14001d29a", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14001d29d", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001d29f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001d2a1", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001d2a2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -65524,73 +73490,85 @@ "address": "0x14001d27b", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x27]" + "operands": "rcx, qword ptr [rbp + 0x27]", + "stack_offset": 0 }, { "address": "0x14001d27f", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001d284", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0xa0]" + "operands": "r11, [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001d28c", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x14001d28e", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14001d292", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x28]" + "operands": "rsi, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x14001d296", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x38]" + "operands": "rdi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x14001d29a", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14001d29d", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001d29f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001d2a1", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001d2a2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -65612,103 +73590,120 @@ "address": "0x14001d4b2", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001d4b3", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001d4b5", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001d4b9", "size": 3, "mnemonic": "mov", - "operands": "rbp, r8" + "operands": "rbp, r8", + "stack_offset": 0 }, { "address": "0x14001d4bc", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x14001d4bf", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001d4c2", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001d4c5", "size": 2, "mnemonic": "jne", - "operands": "0x14001d4e5" + "operands": "0x14001d4e5", + "stack_offset": 0 }, { "address": "0x14001d4c7", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14001d4cc", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x14001d4d2", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14001d4d7", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x7fffffff" + "operands": "eax, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x14001d4dc", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001d4e0", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001d4e2", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001d4e3", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001d4e4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -65730,169 +73725,197 @@ "address": "0x14001db1c", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001db1e", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001db1f", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001db20", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001db21", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001db23", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001db25", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001db27", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001db29", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x98" + "operands": "rsp, 0x98", + "stack_offset": 0 }, { "address": "0x14001db30", "size": 5, "mnemonic": "lea", - "operands": "rbp, [rsp + 0x50]" + "operands": "rbp, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001db35", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x13504]" + "operands": "rax, qword ptr [rip + 0x13504]", + "stack_offset": 0 }, { "address": "0x14001db3c", "size": 3, "mnemonic": "xor", - "operands": "rax, rbp" + "operands": "rax, rbp", + "stack_offset": 0 }, { "address": "0x14001db3f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x30], rax" + "operands": "qword ptr [rbp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x14001db43", "size": 7, "mnemonic": "movsxd", - "operands": "rdi, dword ptr [rbp + 0xb0]" + "operands": "rdi, dword ptr [rbp + 0xb0]", + "stack_offset": 0 }, { "address": "0x14001db4a", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x14001db4d", "size": 7, "mnemonic": "mov", - "operands": "r12, qword ptr [rbp + 0xb8]" + "operands": "r12, qword ptr [rbp + 0xb8]", + "stack_offset": 0 }, { "address": "0x14001db54", "size": 3, "mnemonic": "mov", - "operands": "r14, r9" + "operands": "r14, r9", + "stack_offset": 0 }, { "address": "0x14001db57", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rbp], r8d" + "operands": "dword ptr [rbp], r8d", + "stack_offset": 0 }, { "address": "0x14001db5b", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001db5e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x10], rdx" + "operands": "qword ptr [rbp + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14001db62", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 8], r12" + "operands": "qword ptr [rbp + 8], r12", + "stack_offset": 0 }, { "address": "0x14001db66", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001db68", "size": 2, "mnemonic": "jle", - "operands": "0x14001db7a" + "operands": "0x14001db7a", + "stack_offset": 0 }, { "address": "0x14001db6a", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x14001db6d", "size": 3, "mnemonic": "mov", - "operands": "rcx, r9" + "operands": "rcx, r9", + "stack_offset": 0 }, { "address": "0x14001db70", "size": 5, "mnemonic": "call", - "operands": "0x14000d9c0" + "operands": "0x14000d9c0", + "stack_offset": 0 }, { "address": "0x14001db75", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14001db78", "size": 2, "mnemonic": "jmp", - "operands": "0x14001db83" + "operands": "0x14001db83", + "stack_offset": 0 } ], "successors": [ @@ -65909,49 +73932,57 @@ "address": "0x14001db83", "size": 7, "mnemonic": "movsxd", - "operands": "rsi, dword ptr [rbp + 0xc0]" + "operands": "rsi, dword ptr [rbp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14001db8a", "size": 2, "mnemonic": "test", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x14001db8c", "size": 2, "mnemonic": "jle", - "operands": "0x14001db9e" + "operands": "0x14001db9e", + "stack_offset": 0 }, { "address": "0x14001db8e", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14001db91", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x14001db94", "size": 5, "mnemonic": "call", - "operands": "0x14000d9c0" + "operands": "0x14000d9c0", + "stack_offset": 0 }, { "address": "0x14001db99", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14001db9c", "size": 2, "mnemonic": "jmp", - "operands": "0x14001dba7" + "operands": "0x14001dba7", + "stack_offset": 0 } ], "successors": [ @@ -65968,43 +73999,50 @@ "address": "0x14001dba7", "size": 7, "mnemonic": "mov", - "operands": "r15d, dword ptr [rbp + 0xc8]" + "operands": "r15d, dword ptr [rbp + 0xc8]", + "stack_offset": 0 }, { "address": "0x14001dbae", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14001dbb1", "size": 2, "mnemonic": "jne", - "operands": "0x14001dbba" + "operands": "0x14001dbba", + "stack_offset": 0 }, { "address": "0x14001dbb3", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14001dbb6", "size": 4, "mnemonic": "mov", - "operands": "r15d, dword ptr [rax + 0xc]" + "operands": "r15d, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x14001dbba", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001dbbc", "size": 2, "mnemonic": "je", - "operands": "0x14001dbc6" + "operands": "0x14001dbc6", + "stack_offset": 0 } ], "successors": [ @@ -66022,37 +74060,43 @@ "address": "0x14001dbc6", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001dbc8", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x14001dbcb", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x28], eax" + "operands": "dword ptr [rbp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x14001dbce", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp + 0x18], xmm0" + "operands": "xmmword ptr [rbp + 0x18], xmm0", + "stack_offset": 0 }, { "address": "0x14001dbd2", "size": 2, "mnemonic": "cmp", - "operands": "edi, esi" + "operands": "edi, esi", + "stack_offset": 0 }, { "address": "0x14001dbd4", "size": 6, "mnemonic": "je", - "operands": "0x14001dea4" + "operands": "0x14001dea4", + "stack_offset": 0 } ], "successors": [ @@ -66070,49 +74114,57 @@ "address": "0x14001dbbe", "size": 2, "mnemonic": "test", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x14001dbc0", "size": 6, "mnemonic": "jne", - "operands": "0x14001dc78" + "operands": "0x14001dc78", + "stack_offset": 0 }, { "address": "0x14001dbc6", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001dbc8", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x14001dbcb", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x28], eax" + "operands": "dword ptr [rbp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x14001dbce", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbp + 0x18], xmm0" + "operands": "xmmword ptr [rbp + 0x18], xmm0", + "stack_offset": 0 }, { "address": "0x14001dbd2", "size": 2, "mnemonic": "cmp", - "operands": "edi, esi" + "operands": "edi, esi", + "stack_offset": 0 }, { "address": "0x14001dbd4", "size": 6, "mnemonic": "je", - "operands": "0x14001dea4" + "operands": "0x14001dea4", + "stack_offset": 0 } ], "successors": [ @@ -66130,13 +74182,15 @@ "address": "0x14001dea4", "size": 5, "mnemonic": "mov", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14001dea9", "size": 2, "mnemonic": "jmp", - "operands": "0x14001de87" + "operands": "0x14001de87", + "stack_offset": 0 } ], "successors": [ @@ -66153,13 +74207,15 @@ "address": "0x14001dbda", "size": 3, "mnemonic": "cmp", - "operands": "esi, 1" + "operands": "esi, 1", + "stack_offset": 0 }, { "address": "0x14001dbdd", "size": 6, "mnemonic": "jg", - "operands": "0x14001dc6e" + "operands": "0x14001dc6e", + "stack_offset": 0 } ], "successors": [ @@ -66177,79 +74233,92 @@ "address": "0x14001de87", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x30]" + "operands": "rcx, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001de8b", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14001de8e", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14001de93", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x48]" + "operands": "rsp, [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001de97", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001de99", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001de9b", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001de9d", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001de9f", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001dea0", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001dea1", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001dea2", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001dea3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -66265,13 +74334,15 @@ "address": "0x14001dc6e", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001dc73", "size": 5, "mnemonic": "jmp", - "operands": "0x14001de87" + "operands": "0x14001de87", + "stack_offset": 0 } ], "successors": [ @@ -66288,13 +74359,15 @@ "address": "0x14001dbe3", "size": 3, "mnemonic": "cmp", - "operands": "edi, 1" + "operands": "edi, 1", + "stack_offset": 0 }, { "address": "0x14001dbe6", "size": 2, "mnemonic": "jg", - "operands": "0x14001dc30" + "operands": "0x14001dc30", + "stack_offset": 0 } ], "successors": [ @@ -66312,13 +74385,15 @@ "address": "0x14001dc30", "size": 5, "mnemonic": "mov", - "operands": "eax, 3" + "operands": "eax, 3", + "stack_offset": 0 }, { "address": "0x14001dc35", "size": 5, "mnemonic": "jmp", - "operands": "0x14001de87" + "operands": "0x14001de87", + "stack_offset": 0 } ], "successors": [ @@ -66335,31 +74410,36 @@ "address": "0x14001dbe8", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp + 0x18]" + "operands": "rdx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x14001dbec", "size": 3, "mnemonic": "mov", - "operands": "ecx, r15d" + "operands": "ecx, r15d", + "stack_offset": 0 }, { "address": "0x14001dbef", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x245b]" + "operands": "qword ptr [rip + 0x245b]", + "stack_offset": 0 }, { "address": "0x14001dbf5", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001dbf7", "size": 6, "mnemonic": "je", - "operands": "0x14001de85" + "operands": "0x14001de85", + "stack_offset": 0 } ], "successors": [ @@ -66377,85 +74457,99 @@ "address": "0x14001de85", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001de87", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x30]" + "operands": "rcx, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001de8b", "size": 3, "mnemonic": "xor", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14001de8e", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14001de93", "size": 4, "mnemonic": "lea", - "operands": "rsp, [rbp + 0x48]" + "operands": "rsp, [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001de97", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001de99", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001de9b", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14001de9d", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001de9f", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001dea0", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001dea1", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001dea2", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001dea3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -66471,25 +74565,29 @@ "address": "0x14001dbfd", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001dbff", "size": 2, "mnemonic": "jle", - "operands": "0x14001dc3a" + "operands": "0x14001dc3a", + "stack_offset": 0 }, { "address": "0x14001dc01", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp + 0x18], 2" + "operands": "dword ptr [rbp + 0x18], 2", + "stack_offset": 0 }, { "address": "0x14001dc05", "size": 2, "mnemonic": "jb", - "operands": "0x14001dc30" + "operands": "0x14001dc30", + "stack_offset": 0 } ], "successors": [ @@ -66507,19 +74605,22 @@ "address": "0x14001dc07", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x1e]" + "operands": "rax, [rbp + 0x1e]", + "stack_offset": 0 }, { "address": "0x14001dc0b", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0x1e], r13b" + "operands": "byte ptr [rbp + 0x1e], r13b", + "stack_offset": 0 }, { "address": "0x14001dc0f", "size": 2, "mnemonic": "je", - "operands": "0x14001dc30" + "operands": "0x14001dc30", + "stack_offset": 0 } ], "successors": [ @@ -66537,13 +74638,15 @@ "address": "0x14001dc11", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rax + 1], r13b" + "operands": "byte ptr [rax + 1], r13b", + "stack_offset": 0 }, { "address": "0x14001dc15", "size": 2, "mnemonic": "je", - "operands": "0x14001dc30" + "operands": "0x14001dc30", + "stack_offset": 0 } ], "successors": [ @@ -66561,19 +74664,22 @@ "address": "0x14001dc17", "size": 3, "mnemonic": "mov", - "operands": "cl, byte ptr [r14]" + "operands": "cl, byte ptr [r14]", + "stack_offset": 0 }, { "address": "0x14001dc1a", "size": 2, "mnemonic": "cmp", - "operands": "cl, byte ptr [rax]" + "operands": "cl, byte ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001dc1c", "size": 2, "mnemonic": "jb", - "operands": "0x14001dc27" + "operands": "0x14001dc27", + "stack_offset": 0 } ], "successors": [ @@ -66591,31 +74697,36 @@ "address": "0x14001dc27", "size": 4, "mnemonic": "add", - "operands": "rax, 2" + "operands": "rax, 2", + "stack_offset": 0 }, { "address": "0x14001dc2b", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rax], r13b" + "operands": "byte ptr [rax], r13b", + "stack_offset": 0 }, { "address": "0x14001dc2e", "size": 2, "mnemonic": "jne", - "operands": "0x14001dc11" + "operands": "0x14001dc11", + "stack_offset": 0 }, { "address": "0x14001dc30", "size": 5, "mnemonic": "mov", - "operands": "eax, 3" + "operands": "eax, 3", + "stack_offset": 0 }, { "address": "0x14001dc35", "size": 5, "mnemonic": "jmp", - "operands": "0x14001de87" + "operands": "0x14001de87", + "stack_offset": 0 } ], "successors": [ @@ -66632,43 +74743,50 @@ "address": "0x14001dc1e", "size": 3, "mnemonic": "cmp", - "operands": "cl, byte ptr [rax + 1]" + "operands": "cl, byte ptr [rax + 1]", + "stack_offset": 0 }, { "address": "0x14001dc21", "size": 6, "mnemonic": "jbe", - "operands": "0x14001dea4" + "operands": "0x14001dea4", + "stack_offset": 0 }, { "address": "0x14001dc27", "size": 4, "mnemonic": "add", - "operands": "rax, 2" + "operands": "rax, 2", + "stack_offset": 0 }, { "address": "0x14001dc2b", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rax], r13b" + "operands": "byte ptr [rax], r13b", + "stack_offset": 0 }, { "address": "0x14001dc2e", "size": 2, "mnemonic": "jne", - "operands": "0x14001dc11" + "operands": "0x14001dc11", + "stack_offset": 0 }, { "address": "0x14001dc30", "size": 5, "mnemonic": "mov", - "operands": "eax, 3" + "operands": "eax, 3", + "stack_offset": 0 }, { "address": "0x14001dc35", "size": 5, "mnemonic": "jmp", - "operands": "0x14001de87" + "operands": "0x14001de87", + "stack_offset": 0 } ], "successors": [ @@ -66691,97 +74809,113 @@ "address": "0x14001f0d5", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f0d6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f0da", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f0dd", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp + 0xa0]" + "operands": "rdx, qword ptr [rbp + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001f0e4", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001f0e7", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x14001f0eb", "size": 5, "mnemonic": "mov", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x14001f0f0", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14001f0f3", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rcx + rdx + 0x48], r8" + "operands": "qword ptr [rcx + rdx + 0x48], r8", + "stack_offset": 0 }, { "address": "0x14001f0f8", "size": 4, "mnemonic": "cmovne", - "operands": "eax, r8d" + "operands": "eax, r8d", + "stack_offset": 0 }, { "address": "0x14001f0fc", "size": 4, "mnemonic": "or", - "operands": "eax, dword ptr [rcx + rdx + 0x10]" + "operands": "eax, dword ptr [rcx + rdx + 0x10]", + "stack_offset": 0 }, { "address": "0x14001f100", "size": 3, "mnemonic": "and", - "operands": "eax, 0x13" + "operands": "eax, 0x13", + "stack_offset": 0 }, { "address": "0x14001f103", "size": 3, "mnemonic": "or", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x14001f106", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rcx + rdx + 0x10], eax" + "operands": "dword ptr [rcx + rdx + 0x10], eax", + "stack_offset": 0 }, { "address": "0x14001f10a", "size": 4, "mnemonic": "test", - "operands": "dword ptr [rcx + rdx + 0x14], eax" + "operands": "dword ptr [rcx + rdx + 0x14], eax", + "stack_offset": 0 }, { "address": "0x14001f10e", "size": 2, "mnemonic": "je", - "operands": "0x14001f11a" + "operands": "0x14001f11a", + "stack_offset": 0 } ], "successors": [ @@ -66799,25 +74933,29 @@ "address": "0x14001f11a", "size": 10, "mnemonic": "movabs", - "operands": "rax, 0" + "operands": "rax, 0", + "stack_offset": 0 }, { "address": "0x14001f124", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f128", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f129", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -66833,49 +74971,57 @@ "address": "0x14001f110", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001f112", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14001f114", "size": 5, "mnemonic": "call", - "operands": "0x140006198" + "operands": "0x140006198", + "stack_offset": 0 }, { "address": "0x14001f119", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f11a", "size": 10, "mnemonic": "movabs", - "operands": "rax, 0" + "operands": "rax, 0", + "stack_offset": 0 }, { "address": "0x14001f124", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f128", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f129", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -66897,43 +75043,50 @@ "address": "0x14001f135", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f136", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f13a", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f13d", "size": 10, "mnemonic": "movabs", - "operands": "rax, 0" + "operands": "rax, 0", + "stack_offset": 0 }, { "address": "0x14001f147", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f14b", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f14c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -66955,97 +75108,113 @@ "address": "0x14001f155", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f156", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f15a", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f15d", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp + 0x80]" + "operands": "rdx, qword ptr [rbp + 0x80]", + "stack_offset": 0 }, { "address": "0x14001f164", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001f167", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x14001f16b", "size": 5, "mnemonic": "mov", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x14001f170", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14001f173", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rcx + rdx + 0x48], r8" + "operands": "qword ptr [rcx + rdx + 0x48], r8", + "stack_offset": 0 }, { "address": "0x14001f178", "size": 4, "mnemonic": "cmovne", - "operands": "eax, r8d" + "operands": "eax, r8d", + "stack_offset": 0 }, { "address": "0x14001f17c", "size": 4, "mnemonic": "or", - "operands": "eax, dword ptr [rcx + rdx + 0x10]" + "operands": "eax, dword ptr [rcx + rdx + 0x10]", + "stack_offset": 0 }, { "address": "0x14001f180", "size": 3, "mnemonic": "and", - "operands": "eax, 0x13" + "operands": "eax, 0x13", + "stack_offset": 0 }, { "address": "0x14001f183", "size": 3, "mnemonic": "or", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x14001f186", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rcx + rdx + 0x10], eax" + "operands": "dword ptr [rcx + rdx + 0x10], eax", + "stack_offset": 0 }, { "address": "0x14001f18a", "size": 4, "mnemonic": "test", - "operands": "dword ptr [rcx + rdx + 0x14], eax" + "operands": "dword ptr [rcx + rdx + 0x14], eax", + "stack_offset": 0 }, { "address": "0x14001f18e", "size": 2, "mnemonic": "je", - "operands": "0x14001f19a" + "operands": "0x14001f19a", + "stack_offset": 0 } ], "successors": [ @@ -67063,25 +75232,29 @@ "address": "0x14001f19a", "size": 10, "mnemonic": "movabs", - "operands": "rax, 0" + "operands": "rax, 0", + "stack_offset": 0 }, { "address": "0x14001f1a4", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f1a8", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f1a9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -67097,49 +75270,57 @@ "address": "0x14001f190", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001f192", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14001f194", "size": 5, "mnemonic": "call", - "operands": "0x140006198" + "operands": "0x140006198", + "stack_offset": 0 }, { "address": "0x14001f199", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f19a", "size": 10, "mnemonic": "movabs", - "operands": "rax, 0" + "operands": "rax, 0", + "stack_offset": 0 }, { "address": "0x14001f1a4", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f1a8", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f1a9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -67161,43 +75342,50 @@ "address": "0x14001f1c3", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f1c5", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f1c9", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f1cc", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x48]" + "operands": "eax, dword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f1cf", "size": 3, "mnemonic": "and", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001f1d2", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001f1d4", "size": 2, "mnemonic": "je", - "operands": "0x14001f1e7" + "operands": "0x14001f1e7", + "stack_offset": 0 } ], "successors": [ @@ -67215,19 +75403,22 @@ "address": "0x14001f1e7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f1eb", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f1ec", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -67243,43 +75434,50 @@ "address": "0x14001f1d6", "size": 4, "mnemonic": "and", - "operands": "dword ptr [rbp + 0x48], 0xfffffffe" + "operands": "dword ptr [rbp + 0x48], 0xfffffffe", + "stack_offset": 0 }, { "address": "0x14001f1da", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x30]" + "operands": "rcx, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001f1de", "size": 4, "mnemonic": "add", - "operands": "rcx, 0x10" + "operands": "rcx, 0x10", + "stack_offset": 0 }, { "address": "0x14001f1e2", "size": 5, "mnemonic": "call", - "operands": "0x140002b78" + "operands": "0x140002b78", + "stack_offset": 0 }, { "address": "0x14001f1e7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f1eb", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f1ec", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -67301,55 +75499,64 @@ "address": "0x14001f259", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f25b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f25f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f262", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x10" + "operands": "edx, 0x10", + "stack_offset": 0 }, { "address": "0x14001f267", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0xa0]" + "operands": "rcx, qword ptr [rbp + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001f26e", "size": 5, "mnemonic": "call", - "operands": "0x140005170" + "operands": "0x140005170", + "stack_offset": 0 }, { "address": "0x14001f273", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f277", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f278", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -67371,55 +75578,64 @@ "address": "0x14001f279", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f27b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f27f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f282", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x30" + "operands": "edx, 0x30", + "stack_offset": 0 }, { "address": "0x14001f287", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0xc0]" + "operands": "rcx, qword ptr [rbp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14001f28e", "size": 5, "mnemonic": "call", - "operands": "0x140005170" + "operands": "0x140005170", + "stack_offset": 0 }, { "address": "0x14001f293", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f297", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f298", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -67441,67 +75657,78 @@ "address": "0x14001f2bd", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f2bf", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f2c3", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f2c6", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14001f2c9", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f2cc", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rcx]" + "operands": "ecx, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f2ce", "size": 5, "mnemonic": "call", - "operands": "0x14000dfac" + "operands": "0x14000dfac", + "stack_offset": 0 }, { "address": "0x14001f2d3", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f2d4", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f2d8", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f2d9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -67523,55 +75750,64 @@ "address": "0x14001f2db", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f2dd", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f2e0", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f2e3", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14001f2e5", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rax], 0xc0000005" + "operands": "dword ptr [rax], 0xc0000005", + "stack_offset": 0 }, { "address": "0x14001f2eb", "size": 3, "mnemonic": "sete", - "operands": "cl" + "operands": "cl", + "stack_offset": 0 }, { "address": "0x14001f2ee", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14001f2f0", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f2f1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -67593,229 +75829,267 @@ "address": "0x14001f2f5", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f2f6", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001f2f7", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001f2fb", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f2fe", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x48], rcx" + "operands": "qword ptr [rbp + 0x48], rcx", + "stack_offset": 0 }, { "address": "0x14001f302", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f307", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x70]" + "operands": "rcx, qword ptr [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x14001f30b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x70], rcx" + "operands": "qword ptr [rax + 0x70], rcx", + "stack_offset": 0 }, { "address": "0x14001f30f", "size": 7, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x88]" + "operands": "rdi, qword ptr [rbp + 0x88]", + "stack_offset": 0 }, { "address": "0x14001f316", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rdi + 8]" + "operands": "rbx, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x14001f31a", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f31f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x60], rbx" + "operands": "qword ptr [rax + 0x60], rbx", + "stack_offset": 0 }, { "address": "0x14001f323", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x48]" + "operands": "rax, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f327", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001f32a", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rcx + 0x38]" + "operands": "rbx, qword ptr [rcx + 0x38]", + "stack_offset": 0 }, { "address": "0x14001f32e", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f333", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x68], rbx" + "operands": "qword ptr [rax + 0x68], rbx", + "stack_offset": 0 }, { "address": "0x14001f337", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x48]" + "operands": "rcx, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f33b", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x38], 1" + "operands": "byte ptr [rsp + 0x38], 1", + "stack_offset": 0 }, { "address": "0x14001f340", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], 0" + "operands": "qword ptr [rsp + 0x30], 0", + "stack_offset": 0 }, { "address": "0x14001f349", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], 0" + "operands": "dword ptr [rsp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x14001f351", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x90]" + "operands": "rax, qword ptr [rbp + 0x90]", + "stack_offset": 0 }, { "address": "0x14001f358", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001f35d", "size": 3, "mnemonic": "mov", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x14001f360", "size": 7, "mnemonic": "mov", - "operands": "r8, qword ptr [rbp + 0x80]" + "operands": "r8, qword ptr [rbp + 0x80]", + "stack_offset": 0 }, { "address": "0x14001f367", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp + 0x78]" + "operands": "rdx, qword ptr [rbp + 0x78]", + "stack_offset": 0 }, { "address": "0x14001f36b", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f36e", "size": 5, "mnemonic": "call", - "operands": "0x14000952c" + "operands": "0x14000952c", + "stack_offset": 0 }, { "address": "0x14001f373", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f378", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x70], 0" + "operands": "qword ptr [rax + 0x70], 0", + "stack_offset": 0 }, { "address": "0x14001f380", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x40], 1" + "operands": "dword ptr [rbp + 0x40], 1", + "stack_offset": 0 }, { "address": "0x14001f387", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x44], 1" + "operands": "dword ptr [rbp + 0x44], 1", + "stack_offset": 0 }, { "address": "0x14001f38e", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x44]" + "operands": "eax, dword ptr [rbp + 0x44]", + "stack_offset": 0 }, { "address": "0x14001f391", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001f395", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001f396", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f397", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001f398", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -67837,247 +76111,288 @@ "address": "0x14001f39c", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f39d", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001f39e", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001f3a2", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f3a5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x48], rcx" + "operands": "qword ptr [rbp + 0x48], rcx", + "stack_offset": 0 }, { "address": "0x14001f3a9", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f3ae", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x70]" + "operands": "rcx, qword ptr [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x14001f3b2", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x70], rcx" + "operands": "qword ptr [rax + 0x70], rcx", + "stack_offset": 0 }, { "address": "0x14001f3b6", "size": 7, "mnemonic": "mov", - "operands": "rdi, qword ptr [rbp + 0x88]" + "operands": "rdi, qword ptr [rbp + 0x88]", + "stack_offset": 0 }, { "address": "0x14001f3bd", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rdi + 8]" + "operands": "rbx, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x14001f3c1", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f3c6", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x60], rbx" + "operands": "qword ptr [rax + 0x60], rbx", + "stack_offset": 0 }, { "address": "0x14001f3ca", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x48]" + "operands": "rax, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f3ce", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001f3d1", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rcx + 0x38]" + "operands": "rbx, qword ptr [rcx + 0x38]", + "stack_offset": 0 }, { "address": "0x14001f3d5", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f3da", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x68], rbx" + "operands": "qword ptr [rax + 0x68], rbx", + "stack_offset": 0 }, { "address": "0x14001f3de", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f3e3", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp + 0xa8]" + "operands": "ecx, dword ptr [rbp + 0xa8]", + "stack_offset": 0 }, { "address": "0x14001f3e9", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x78], ecx" + "operands": "dword ptr [rax + 0x78], ecx", + "stack_offset": 0 }, { "address": "0x14001f3ec", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x48]" + "operands": "rcx, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f3f0", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x38], 1" + "operands": "byte ptr [rsp + 0x38], 1", + "stack_offset": 0 }, { "address": "0x14001f3f5", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], 0" + "operands": "qword ptr [rsp + 0x30], 0", + "stack_offset": 0 }, { "address": "0x14001f3fe", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], 0" + "operands": "dword ptr [rsp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x14001f406", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x90]" + "operands": "rax, qword ptr [rbp + 0x90]", + "stack_offset": 0 }, { "address": "0x14001f40d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001f412", "size": 3, "mnemonic": "mov", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x14001f415", "size": 7, "mnemonic": "mov", - "operands": "r8, qword ptr [rbp + 0x80]" + "operands": "r8, qword ptr [rbp + 0x80]", + "stack_offset": 0 }, { "address": "0x14001f41c", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp + 0x78]" + "operands": "rdx, qword ptr [rbp + 0x78]", + "stack_offset": 0 }, { "address": "0x14001f420", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f423", "size": 5, "mnemonic": "call", - "operands": "0x140009534" + "operands": "0x140009534", + "stack_offset": 0 }, { "address": "0x14001f428", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f42d", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x70], 0" + "operands": "qword ptr [rax + 0x70], 0", + "stack_offset": 0 }, { "address": "0x14001f435", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x40], 1" + "operands": "dword ptr [rbp + 0x40], 1", + "stack_offset": 0 }, { "address": "0x14001f43c", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x44], 1" + "operands": "dword ptr [rbp + 0x44], 1", + "stack_offset": 0 }, { "address": "0x14001f443", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x44]" + "operands": "eax, dword ptr [rbp + 0x44]", + "stack_offset": 0 }, { "address": "0x14001f446", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001f44a", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001f44b", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f44c", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001f44d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -68099,37 +76414,43 @@ "address": "0x14001f451", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f452", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001f456", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f459", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x30], rcx" + "operands": "qword ptr [rbp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x14001f45d", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0x58], 0" + "operands": "byte ptr [rbp + 0x58], 0", + "stack_offset": 0 }, { "address": "0x14001f461", "size": 2, "mnemonic": "je", - "operands": "0x14001f4cf" + "operands": "0x14001f4cf", + "stack_offset": 0 } ], "successors": [ @@ -68147,37 +76468,43 @@ "address": "0x14001f4cf", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x20], 0" + "operands": "dword ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14001f4d6", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x20]" + "operands": "eax, dword ptr [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001f4d9", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001f4dd", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f4de", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001f4df", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -68193,73 +76520,85 @@ "address": "0x14001f463", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x30]" + "operands": "rax, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001f467", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001f46a", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x28], rcx" + "operands": "qword ptr [rbp + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x14001f46e", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x28]" + "operands": "rax, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f472", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rax], 0xe06d7363" + "operands": "dword ptr [rax], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x14001f478", "size": 2, "mnemonic": "jne", - "operands": "0x14001f4cf" + "operands": "0x14001f4cf", + "stack_offset": 0 }, { "address": "0x14001f47a", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x28]" + "operands": "rax, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f47e", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x18], 4" + "operands": "dword ptr [rax + 0x18], 4", + "stack_offset": 0 }, { "address": "0x14001f482", "size": 2, "mnemonic": "jne", - "operands": "0x14001f4cf" + "operands": "0x14001f4cf", + "stack_offset": 0 }, { "address": "0x14001f484", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x28]" + "operands": "rax, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f488", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x20], 0x19930520" + "operands": "dword ptr [rax + 0x20], 0x19930520", + "stack_offset": 0 }, { "address": "0x14001f48f", "size": 2, "mnemonic": "je", - "operands": "0x14001f4ab" + "operands": "0x14001f4ab", + "stack_offset": 0 } ], "successors": [ @@ -68277,91 +76616,106 @@ "address": "0x14001f4ab", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f4b0", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x28]" + "operands": "rcx, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f4b4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rcx" + "operands": "qword ptr [rax + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x14001f4b8", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x30]" + "operands": "rax, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001f4bc", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rax + 8]" + "operands": "rbx, qword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x14001f4c0", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f4c5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x28], rbx" + "operands": "qword ptr [rax + 0x28], rbx", + "stack_offset": 0 }, { "address": "0x14001f4c9", "size": 5, "mnemonic": "call", - "operands": "0x140010b70" + "operands": "0x140010b70", + "stack_offset": 0 }, { "address": "0x14001f4ce", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f4cf", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x20], 0" + "operands": "dword ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14001f4d6", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x20]" + "operands": "eax, dword ptr [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001f4d9", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001f4dd", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f4de", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001f4df", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -68377,19 +76731,22 @@ "address": "0x14001f491", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x28]" + "operands": "rax, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f495", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x20], 0x19930521" + "operands": "dword ptr [rax + 0x20], 0x19930521", + "stack_offset": 0 }, { "address": "0x14001f49c", "size": 2, "mnemonic": "je", - "operands": "0x14001f4ab" + "operands": "0x14001f4ab", + "stack_offset": 0 } ], "successors": [ @@ -68407,109 +76764,127 @@ "address": "0x14001f49e", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x28]" + "operands": "rax, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f4a2", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x20], 0x19930522" + "operands": "dword ptr [rax + 0x20], 0x19930522", + "stack_offset": 0 }, { "address": "0x14001f4a9", "size": 2, "mnemonic": "jne", - "operands": "0x14001f4cf" + "operands": "0x14001f4cf", + "stack_offset": 0 }, { "address": "0x14001f4ab", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f4b0", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x28]" + "operands": "rcx, qword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f4b4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rcx" + "operands": "qword ptr [rax + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x14001f4b8", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x30]" + "operands": "rax, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001f4bc", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rax + 8]" + "operands": "rbx, qword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x14001f4c0", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f4c5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x28], rbx" + "operands": "qword ptr [rax + 0x28], rbx", + "stack_offset": 0 }, { "address": "0x14001f4c9", "size": 5, "mnemonic": "call", - "operands": "0x140010b70" + "operands": "0x140010b70", + "stack_offset": 0 }, { "address": "0x14001f4ce", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f4cf", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x20], 0" + "operands": "dword ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14001f4d6", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x20]" + "operands": "eax, dword ptr [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001f4d9", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001f4dd", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f4de", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001f4df", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -68531,49 +76906,57 @@ "address": "0x14001f4e1", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f4e3", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001f4e7", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f4ea", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f4ef", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x78], 0xfffffffe" + "operands": "dword ptr [rax + 0x78], 0xfffffffe", + "stack_offset": 0 }, { "address": "0x14001f4f6", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001f4fa", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f4fb", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -68595,61 +76978,71 @@ "address": "0x14001f4fd", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f4ff", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f503", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f506", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp + 0x20]" + "operands": "r8, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001f50a", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp + 0xb8]" + "operands": "rdx, qword ptr [rbp + 0xb8]", + "stack_offset": 0 }, { "address": "0x14001f511", "size": 5, "mnemonic": "call", - "operands": "0x140009cfc" + "operands": "0x140009cfc", + "stack_offset": 0 }, { "address": "0x14001f516", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f517", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f51b", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f51c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -68671,85 +77064,99 @@ "address": "0x14001f520", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f521", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001f525", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f528", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x38]" + "operands": "rcx, qword ptr [rbp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001f52c", "size": 5, "mnemonic": "call", - "operands": "0x140006d54" + "operands": "0x140006d54", + "stack_offset": 0 }, { "address": "0x14001f531", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp + 0x20], 0" + "operands": "dword ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14001f535", "size": 2, "mnemonic": "jne", - "operands": "0x14001f57f" + "operands": "0x14001f57f", + "stack_offset": 0 }, { "address": "0x14001f537", "size": 7, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0xb8]" + "operands": "rbx, qword ptr [rbp + 0xb8]", + "stack_offset": 0 }, { "address": "0x14001f53e", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rbx], 0xe06d7363" + "operands": "dword ptr [rbx], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x14001f544", "size": 2, "mnemonic": "jne", - "operands": "0x14001f57f" + "operands": "0x14001f57f", + "stack_offset": 0 }, { "address": "0x14001f546", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x18], 4" + "operands": "dword ptr [rbx + 0x18], 4", + "stack_offset": 0 }, { "address": "0x14001f54a", "size": 2, "mnemonic": "jne", - "operands": "0x14001f57f" + "operands": "0x14001f57f", + "stack_offset": 0 }, { "address": "0x14001f54c", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x20], 0x19930520" + "operands": "dword ptr [rbx + 0x20], 0x19930520", + "stack_offset": 0 }, { "address": "0x14001f553", "size": 2, "mnemonic": "je", - "operands": "0x14001f567" + "operands": "0x14001f567", + "stack_offset": 0 } ], "successors": [ @@ -68767,25 +77174,29 @@ "address": "0x14001f567", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x28]" + "operands": "rcx, qword ptr [rbx + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f56b", "size": 5, "mnemonic": "call", - "operands": "0x140007010" + "operands": "0x140007010", + "stack_offset": 0 }, { "address": "0x14001f570", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001f572", "size": 2, "mnemonic": "je", - "operands": "0x14001f57f" + "operands": "0x14001f57f", + "stack_offset": 0 } ], "successors": [ @@ -68803,13 +77214,15 @@ "address": "0x14001f555", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x20], 0x19930521" + "operands": "dword ptr [rbx + 0x20], 0x19930521", + "stack_offset": 0 }, { "address": "0x14001f55c", "size": 2, "mnemonic": "je", - "operands": "0x14001f567" + "operands": "0x14001f567", + "stack_offset": 0 } ], "successors": [ @@ -68827,61 +77240,71 @@ "address": "0x14001f57f", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f584", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0xc0]" + "operands": "rcx, qword ptr [rbp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14001f58b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rcx" + "operands": "qword ptr [rax + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x14001f58f", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f594", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x40]" + "operands": "rcx, qword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001f598", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x28], rcx" + "operands": "qword ptr [rax + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x14001f59c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001f5a0", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f5a1", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001f5a2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -68897,85 +77320,99 @@ "address": "0x14001f574", "size": 2, "mnemonic": "mov", - "operands": "dl, 1" + "operands": "dl, 1", + "stack_offset": 0 }, { "address": "0x14001f576", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001f579", "size": 5, "mnemonic": "call", - "operands": "0x140006f98" + "operands": "0x140006f98", + "stack_offset": 0 }, { "address": "0x14001f57e", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f57f", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f584", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0xc0]" + "operands": "rcx, qword ptr [rbp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14001f58b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rcx" + "operands": "qword ptr [rax + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x14001f58f", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f594", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x40]" + "operands": "rcx, qword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001f598", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x28], rcx" + "operands": "qword ptr [rax + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x14001f59c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001f5a0", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f5a1", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001f5a2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -68991,37 +77428,43 @@ "address": "0x14001f55e", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x20], 0x19930522" + "operands": "dword ptr [rbx + 0x20], 0x19930522", + "stack_offset": 0 }, { "address": "0x14001f565", "size": 2, "mnemonic": "jne", - "operands": "0x14001f57f" + "operands": "0x14001f57f", + "stack_offset": 0 }, { "address": "0x14001f567", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x28]" + "operands": "rcx, qword ptr [rbx + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f56b", "size": 5, "mnemonic": "call", - "operands": "0x140007010" + "operands": "0x140007010", + "stack_offset": 0 }, { "address": "0x14001f570", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001f572", "size": 2, "mnemonic": "je", - "operands": "0x14001f57f" + "operands": "0x14001f57f", + "stack_offset": 0 } ], "successors": [ @@ -69045,67 +77488,78 @@ "address": "0x14001f5a4", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f5a6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f5aa", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f5ad", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp + 0x20]" + "operands": "r9, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001f5b1", "size": 7, "mnemonic": "mov", - "operands": "r8d, dword ptr [rbp + 0xc8]" + "operands": "r8d, dword ptr [rbp + 0xc8]", + "stack_offset": 0 }, { "address": "0x14001f5b8", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbp + 0xd8]" + "operands": "rdx, qword ptr [rbp + 0xd8]", + "stack_offset": 0 }, { "address": "0x14001f5bf", "size": 5, "mnemonic": "call", - "operands": "0x140009d94" + "operands": "0x140009d94", + "stack_offset": 0 }, { "address": "0x14001f5c4", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f5c5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f5c9", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f5ca", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -69127,85 +77581,99 @@ "address": "0x14001f5ce", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f5cf", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001f5d3", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f5d6", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x40]" + "operands": "rcx, qword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001f5da", "size": 5, "mnemonic": "call", - "operands": "0x140006d54" + "operands": "0x140006d54", + "stack_offset": 0 }, { "address": "0x14001f5df", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbp + 0x20], 0" + "operands": "dword ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14001f5e3", "size": 2, "mnemonic": "jne", - "operands": "0x14001f62d" + "operands": "0x14001f62d", + "stack_offset": 0 }, { "address": "0x14001f5e5", "size": 7, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbp + 0xd8]" + "operands": "rbx, qword ptr [rbp + 0xd8]", + "stack_offset": 0 }, { "address": "0x14001f5ec", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rbx], 0xe06d7363" + "operands": "dword ptr [rbx], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x14001f5f2", "size": 2, "mnemonic": "jne", - "operands": "0x14001f62d" + "operands": "0x14001f62d", + "stack_offset": 0 }, { "address": "0x14001f5f4", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x18], 4" + "operands": "dword ptr [rbx + 0x18], 4", + "stack_offset": 0 }, { "address": "0x14001f5f8", "size": 2, "mnemonic": "jne", - "operands": "0x14001f62d" + "operands": "0x14001f62d", + "stack_offset": 0 }, { "address": "0x14001f5fa", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x20], 0x19930520" + "operands": "dword ptr [rbx + 0x20], 0x19930520", + "stack_offset": 0 }, { "address": "0x14001f601", "size": 2, "mnemonic": "je", - "operands": "0x14001f615" + "operands": "0x14001f615", + "stack_offset": 0 } ], "successors": [ @@ -69223,25 +77691,29 @@ "address": "0x14001f615", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x28]" + "operands": "rcx, qword ptr [rbx + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f619", "size": 5, "mnemonic": "call", - "operands": "0x140007010" + "operands": "0x140007010", + "stack_offset": 0 }, { "address": "0x14001f61e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001f620", "size": 2, "mnemonic": "je", - "operands": "0x14001f62d" + "operands": "0x14001f62d", + "stack_offset": 0 } ], "successors": [ @@ -69259,13 +77731,15 @@ "address": "0x14001f603", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x20], 0x19930521" + "operands": "dword ptr [rbx + 0x20], 0x19930521", + "stack_offset": 0 }, { "address": "0x14001f60a", "size": 2, "mnemonic": "je", - "operands": "0x14001f615" + "operands": "0x14001f615", + "stack_offset": 0 } ], "successors": [ @@ -69283,79 +77757,92 @@ "address": "0x14001f62d", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f632", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x30]" + "operands": "rcx, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001f636", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rcx" + "operands": "qword ptr [rax + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x14001f63a", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f63f", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x48]" + "operands": "rcx, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f643", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x28], rcx" + "operands": "qword ptr [rax + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x14001f647", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f64c", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp + 0xc0]" + "operands": "ecx, dword ptr [rbp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14001f652", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x78], ecx" + "operands": "dword ptr [rax + 0x78], ecx", + "stack_offset": 0 }, { "address": "0x14001f655", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001f659", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f65a", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001f65b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -69371,103 +77858,120 @@ "address": "0x14001f622", "size": 2, "mnemonic": "mov", - "operands": "dl, 1" + "operands": "dl, 1", + "stack_offset": 0 }, { "address": "0x14001f624", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001f627", "size": 5, "mnemonic": "call", - "operands": "0x140006f98" + "operands": "0x140006f98", + "stack_offset": 0 }, { "address": "0x14001f62c", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f62d", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f632", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x30]" + "operands": "rcx, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001f636", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rcx" + "operands": "qword ptr [rax + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x14001f63a", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f63f", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x48]" + "operands": "rcx, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f643", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x28], rcx" + "operands": "qword ptr [rax + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x14001f647", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f64c", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp + 0xc0]" + "operands": "ecx, dword ptr [rbp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14001f652", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x78], ecx" + "operands": "dword ptr [rax + 0x78], ecx", + "stack_offset": 0 }, { "address": "0x14001f655", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001f659", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f65a", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001f65b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -69483,37 +77987,43 @@ "address": "0x14001f60c", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x20], 0x19930522" + "operands": "dword ptr [rbx + 0x20], 0x19930522", + "stack_offset": 0 }, { "address": "0x14001f613", "size": 2, "mnemonic": "jne", - "operands": "0x14001f62d" + "operands": "0x14001f62d", + "stack_offset": 0 }, { "address": "0x14001f615", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x28]" + "operands": "rcx, qword ptr [rbx + 0x28]", + "stack_offset": 0 }, { "address": "0x14001f619", "size": 5, "mnemonic": "call", - "operands": "0x140007010" + "operands": "0x140007010", + "stack_offset": 0 }, { "address": "0x14001f61e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001f620", "size": 2, "mnemonic": "je", - "operands": "0x14001f62d" + "operands": "0x14001f62d", + "stack_offset": 0 } ], "successors": [ @@ -69537,49 +78047,57 @@ "address": "0x14001f65d", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f65f", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f663", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f666", "size": 5, "mnemonic": "call", - "operands": "0x140007064" + "operands": "0x140007064", + "stack_offset": 0 }, { "address": "0x14001f66b", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f66c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f670", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f671", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -69601,67 +78119,78 @@ "address": "0x14001f673", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f675", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f679", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f67c", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f681", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x30], 0" + "operands": "dword ptr [rax + 0x30], 0", + "stack_offset": 0 }, { "address": "0x14001f685", "size": 2, "mnemonic": "jle", - "operands": "0x14001f68f" + "operands": "0x14001f68f", + "stack_offset": 0 }, { "address": "0x14001f687", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f68c", "size": 3, "mnemonic": "dec", - "operands": "dword ptr [rax + 0x30]" + "operands": "dword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x14001f68f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f693", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f694", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -69683,49 +78212,57 @@ "address": "0x14001f696", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f698", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f69c", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f69f", "size": 5, "mnemonic": "call", - "operands": "0x140007064" + "operands": "0x140007064", + "stack_offset": 0 }, { "address": "0x14001f6a4", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f6a5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f6a9", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f6aa", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -69747,67 +78284,78 @@ "address": "0x14001f6ac", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f6ae", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f6b2", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f6b5", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f6ba", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x30], 0" + "operands": "dword ptr [rax + 0x30], 0", + "stack_offset": 0 }, { "address": "0x14001f6be", "size": 2, "mnemonic": "jle", - "operands": "0x14001f6c8" + "operands": "0x14001f6c8", + "stack_offset": 0 }, { "address": "0x14001f6c0", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14001f6c5", "size": 3, "mnemonic": "dec", - "operands": "dword ptr [rax + 0x30]" + "operands": "dword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x14001f6c8", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f6cc", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f6cd", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -69829,43 +78377,50 @@ "address": "0x14001f6cf", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f6d1", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f6d5", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f6d8", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x40]" + "operands": "rcx, qword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001f6dc", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f6e0", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f6e1", "size": 5, "mnemonic": "jmp", - "operands": "0x14000b204" + "operands": "0x14000b204", + "stack_offset": 0 } ], "successors": [ @@ -69882,13 +78437,15 @@ "address": "0x14000b204", "size": 4, "mnemonic": "add", - "operands": "rcx, 0x30" + "operands": "rcx, 0x30", + "stack_offset": 0 }, { "address": "0x14000b208", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x14e09]" + "operands": "qword ptr [rip + 0x14e09]", + "stack_offset": 0 } ], "successors": [ @@ -69921,49 +78478,57 @@ "address": "0x14001f6e7", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f6e9", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f6ed", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f6f0", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x48]" + "operands": "rcx, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f6f4", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f6f7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f6fb", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f6fc", "size": 5, "mnemonic": "jmp", - "operands": "0x14000b204" + "operands": "0x14000b204", + "stack_offset": 0 } ], "successors": [ @@ -69986,49 +78551,57 @@ "address": "0x14001f702", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f704", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f708", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f70b", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x98]" + "operands": "rcx, qword ptr [rbp + 0x98]", + "stack_offset": 0 }, { "address": "0x14001f712", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rcx]" + "operands": "ecx, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f714", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f718", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f719", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 } ], "successors": [ @@ -70045,31 +78618,36 @@ "address": "0x14000ca74", "size": 3, "mnemonic": "movsxd", - "operands": "rax, ecx" + "operands": "rax, ecx", + "stack_offset": 0 }, { "address": "0x14000ca77", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rax*4]" + "operands": "rcx, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x14000ca7b", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x2637e]" + "operands": "rax, [rip + 0x2637e]", + "stack_offset": 0 }, { "address": "0x14000ca82", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rcx*8]" + "operands": "rcx, [rax + rcx*8]", + "stack_offset": 0 }, { "address": "0x14000ca86", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x1358b]" + "operands": "qword ptr [rip + 0x1358b]", + "stack_offset": 0 } ], "successors": [ @@ -70092,55 +78670,64 @@ "address": "0x14001f71f", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f721", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f725", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f728", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x40]" + "operands": "rcx, qword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001f72c", "size": 5, "mnemonic": "call", - "operands": "0x14000b204" + "operands": "0x14000b204", + "stack_offset": 0 }, { "address": "0x14001f731", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f732", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f736", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f737", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -70162,55 +78749,64 @@ "address": "0x14001f739", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f73b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f73f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f742", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x58]" + "operands": "rcx, qword ptr [rbp + 0x58]", + "stack_offset": 0 }, { "address": "0x14001f746", "size": 5, "mnemonic": "call", - "operands": "0x14000b204" + "operands": "0x14000b204", + "stack_offset": 0 }, { "address": "0x14001f74b", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f74c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f750", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f751", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -70232,43 +78828,50 @@ "address": "0x14001f753", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f755", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f759", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f75c", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x60]" + "operands": "rcx, qword ptr [rbp + 0x60]", + "stack_offset": 0 }, { "address": "0x14001f760", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f764", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f765", "size": 5, "mnemonic": "jmp", - "operands": "0x14000b204" + "operands": "0x14000b204", + "stack_offset": 0 } ], "successors": [ @@ -70291,43 +78894,50 @@ "address": "0x14001f76b", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f76d", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f771", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f774", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x38]" + "operands": "rcx, qword ptr [rbp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001f778", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f77c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f77d", "size": 5, "mnemonic": "jmp", - "operands": "0x14000b204" + "operands": "0x14000b204", + "stack_offset": 0 } ], "successors": [ @@ -70350,49 +78960,57 @@ "address": "0x14001f783", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f785", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f789", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f78c", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x48]" + "operands": "rcx, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f790", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rcx]" + "operands": "ecx, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f792", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f796", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f797", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 } ], "successors": [ @@ -70415,43 +79033,50 @@ "address": "0x14001f7a0", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f7a2", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f7a6", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f7a9", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14001f7ab", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f7af", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f7b0", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 } ], "successors": [ @@ -70474,43 +79099,50 @@ "address": "0x14001f7b6", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f7b8", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f7bc", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f7bf", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14001f7c1", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f7c5", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f7c6", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 } ], "successors": [ @@ -70533,91 +79165,106 @@ "address": "0x14001f7cc", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f7ce", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f7d2", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f7d5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x28], rcx" + "operands": "qword ptr [rbp + 0x28], rcx", + "stack_offset": 0 }, { "address": "0x14001f7d9", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f7dc", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rax]" + "operands": "ecx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001f7de", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x24], ecx" + "operands": "dword ptr [rbp + 0x24], ecx", + "stack_offset": 0 }, { "address": "0x14001f7e1", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001f7e3", "size": 6, "mnemonic": "cmp", - "operands": "ecx, 0xe06d7363" + "operands": "ecx, 0xe06d7363", + "stack_offset": 0 }, { "address": "0x14001f7e9", "size": 3, "mnemonic": "sete", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x14001f7ec", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x20], eax" + "operands": "dword ptr [rbp + 0x20], eax", + "stack_offset": 0 }, { "address": "0x14001f7ef", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x20]" + "operands": "eax, dword ptr [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001f7f2", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f7f6", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f7f7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -70639,49 +79286,57 @@ "address": "0x14001f7f9", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f7fb", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f7ff", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f802", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x58]" + "operands": "rcx, qword ptr [rbp + 0x58]", + "stack_offset": 0 }, { "address": "0x14001f806", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rcx]" + "operands": "ecx, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f808", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f80c", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f80d", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 } ], "successors": [ @@ -70704,61 +79359,71 @@ "address": "0x14001f813", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f815", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f819", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f81c", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x48]" + "operands": "rax, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f820", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001f823", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rcx]" + "operands": "rdx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f826", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rdx + 0x3a8], 0xffffffef" + "operands": "dword ptr [rdx + 0x3a8], 0xffffffef", + "stack_offset": 0 }, { "address": "0x14001f82d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f831", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f832", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -70780,43 +79445,50 @@ "address": "0x14001f834", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f836", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f83a", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f83d", "size": 5, "mnemonic": "mov", - "operands": "ecx, 8" + "operands": "ecx, 8", + "stack_offset": 0 }, { "address": "0x14001f842", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f846", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f847", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 } ], "successors": [ @@ -70839,43 +79511,50 @@ "address": "0x14001f84d", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f84f", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f853", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f856", "size": 5, "mnemonic": "mov", - "operands": "ecx, 7" + "operands": "ecx, 7", + "stack_offset": 0 }, { "address": "0x14001f85b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f85f", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f860", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 } ], "successors": [ @@ -70898,49 +79577,57 @@ "address": "0x14001f866", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f868", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f86c", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f86f", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x48]" + "operands": "rcx, qword ptr [rbp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001f873", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rcx]" + "operands": "ecx, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f875", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f879", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f87a", "size": 5, "mnemonic": "jmp", - "operands": "0x1400193b8" + "operands": "0x1400193b8", + "stack_offset": 0 } ], "successors": [ @@ -70957,55 +79644,64 @@ "address": "0x1400193b8", "size": 3, "mnemonic": "movsxd", - "operands": "rdx, ecx" + "operands": "rdx, ecx", + "stack_offset": 0 }, { "address": "0x1400193bb", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x19f3e]" + "operands": "r8, [rip + 0x19f3e]", + "stack_offset": 0 }, { "address": "0x1400193c2", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x1400193c5", "size": 3, "mnemonic": "and", - "operands": "edx, 0x3f" + "operands": "edx, 0x3f", + "stack_offset": 0 }, { "address": "0x1400193c8", "size": 4, "mnemonic": "sar", - "operands": "rax, 6" + "operands": "rax, 6", + "stack_offset": 0 }, { "address": "0x1400193cc", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdx + rdx*8]" + "operands": "rcx, [rdx + rdx*8]", + "stack_offset": 0 }, { "address": "0x1400193d0", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r8 + rax*8]" + "operands": "rax, qword ptr [r8 + rax*8]", + "stack_offset": 0 }, { "address": "0x1400193d4", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rcx*8]" + "operands": "rcx, [rax + rcx*8]", + "stack_offset": 0 }, { "address": "0x1400193d8", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x6c39]" + "operands": "qword ptr [rip + 0x6c39]", + "stack_offset": 0 } ], "successors": [ @@ -71028,43 +79724,50 @@ "address": "0x14001f880", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f882", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f886", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f889", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp + 0x60]" + "operands": "ecx, dword ptr [rbp + 0x60]", + "stack_offset": 0 }, { "address": "0x14001f88c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001f890", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f891", "size": 5, "mnemonic": "jmp", - "operands": "0x1400193b8" + "operands": "0x1400193b8", + "stack_offset": 0 } ], "successors": [ @@ -71087,43 +79790,50 @@ "address": "0x14001f897", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f899", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f89d", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f8a0", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbp + 0x40]" + "operands": "ecx, dword ptr [rbp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001f8a3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f8a7", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f8a8", "size": 5, "mnemonic": "jmp", - "operands": "0x1400193b8" + "operands": "0x1400193b8", + "stack_offset": 0 } ], "successors": [ @@ -71146,31 +79856,36 @@ "address": "0x14001f8ae", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f8b0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f8b4", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f8b7", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0x70], 0" + "operands": "byte ptr [rbp + 0x70], 0", + "stack_offset": 0 }, { "address": "0x14001f8bb", "size": 2, "mnemonic": "je", - "operands": "0x14001f8c8" + "operands": "0x14001f8c8", + "stack_offset": 0 } ], "successors": [ @@ -71188,19 +79903,22 @@ "address": "0x14001f8c8", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f8cc", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f8cd", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -71216,37 +79934,43 @@ "address": "0x14001f8bd", "size": 5, "mnemonic": "mov", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x14001f8c2", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14001f8c7", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001f8c8", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f8cc", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f8cd", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -71268,49 +79992,57 @@ "address": "0x14001f8cf", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f8d1", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f8d5", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f8d8", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x68]" + "operands": "rcx, qword ptr [rbp + 0x68]", + "stack_offset": 0 }, { "address": "0x14001f8dc", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rcx]" + "operands": "ecx, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f8de", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f8e2", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f8e3", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 } ], "successors": [ @@ -71333,43 +80065,50 @@ "address": "0x14001f8e9", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f8eb", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f8ef", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f8f2", "size": 5, "mnemonic": "mov", - "operands": "ecx, 5" + "operands": "ecx, 5", + "stack_offset": 0 }, { "address": "0x14001f8f7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f8fb", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f8fc", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 } ], "successors": [ @@ -71392,43 +80131,50 @@ "address": "0x14001f902", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f904", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f908", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f90b", "size": 5, "mnemonic": "mov", - "operands": "ecx, 4" + "operands": "ecx, 4", + "stack_offset": 0 }, { "address": "0x14001f910", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f914", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f915", "size": 5, "mnemonic": "jmp", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 } ], "successors": [ @@ -71451,67 +80197,78 @@ "address": "0x14001f920", "size": 2, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f922", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f926", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x14001f929", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f92c", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14001f92e", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rax], 0xc0000005" + "operands": "dword ptr [rax], 0xc0000005", + "stack_offset": 0 }, { "address": "0x14001f934", "size": 3, "mnemonic": "sete", - "operands": "cl" + "operands": "cl", + "stack_offset": 0 }, { "address": "0x14001f937", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14001f939", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001f93d", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14001f93e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -71533,25 +80290,29 @@ "address": "0x1400060d8", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400060da", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x2d788], eax" + "operands": "dword ptr [rip + 0x2d788], eax", + "stack_offset": 0 }, { "address": "0x1400060e0", "size": 3, "mnemonic": "setne", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x1400060e3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -71573,145 +80334,169 @@ "address": "0x1400057f0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x1400057f5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbp" + "operands": "qword ptr [rsp + 0x18], rbp", + "stack_offset": 0 }, { "address": "0x1400057fa", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x1400057ff", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140005800", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x10" + "operands": "rsp, 0x10", + "stack_offset": 0 }, { "address": "0x140005804", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005806", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140005808", "size": 2, "mnemonic": "cpuid", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000580a", "size": 6, "mnemonic": "xor", - "operands": "ecx, 0x6c65746e" + "operands": "ecx, 0x6c65746e", + "stack_offset": 0 }, { "address": "0x140005810", "size": 6, "mnemonic": "xor", - "operands": "edx, 0x49656e69" + "operands": "edx, 0x49656e69", + "stack_offset": 0 }, { "address": "0x140005816", "size": 2, "mnemonic": "or", - "operands": "edx, ecx" + "operands": "edx, ecx", + "stack_offset": 0 }, { "address": "0x140005818", "size": 2, "mnemonic": "mov", - "operands": "ebp, eax" + "operands": "ebp, eax", + "stack_offset": 0 }, { "address": "0x14000581a", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14000581f", "size": 6, "mnemonic": "xor", - "operands": "ebx, 0x756e6547" + "operands": "ebx, 0x756e6547", + "stack_offset": 0 }, { "address": "0x140005825", "size": 2, "mnemonic": "or", - "operands": "edx, ebx" + "operands": "edx, ebx", + "stack_offset": 0 }, { "address": "0x140005827", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax - 1]" + "operands": "ecx, [rax - 1]", + "stack_offset": 0 }, { "address": "0x14000582a", "size": 2, "mnemonic": "cpuid", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000582c", "size": 2, "mnemonic": "mov", - "operands": "edi, ecx" + "operands": "edi, ecx", + "stack_offset": 0 }, { "address": "0x14000582e", "size": 2, "mnemonic": "jne", - "operands": "0x14000588e" + "operands": "0x14000588e", + "stack_offset": 0 }, { "address": "0x140005830", "size": 5, "mnemonic": "and", - "operands": "eax, 0xfff3ff0" + "operands": "eax, 0xfff3ff0", + "stack_offset": 0 }, { "address": "0x140005835", "size": 11, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b860], 0x8000" + "operands": "qword ptr [rip + 0x2b860], 0x8000", + "stack_offset": 0 }, { "address": "0x140005840", "size": 11, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b85d], 0xffffffffffffffff" + "operands": "qword ptr [rip + 0x2b85d], 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14000584b", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x106c0" + "operands": "eax, 0x106c0", + "stack_offset": 0 }, { "address": "0x140005850", "size": 2, "mnemonic": "je", - "operands": "0x14000587a" + "operands": "0x14000587a", + "stack_offset": 0 } ], "successors": [ @@ -71729,25 +80514,29 @@ "address": "0x14000587a", "size": 7, "mnemonic": "mov", - "operands": "r8d, dword ptr [rip + 0x2cebb]" + "operands": "r8d, dword ptr [rip + 0x2cebb]", + "stack_offset": 0 }, { "address": "0x140005881", "size": 4, "mnemonic": "or", - "operands": "r8d, 1" + "operands": "r8d, 1", + "stack_offset": 0 }, { "address": "0x140005885", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2ceb0], r8d" + "operands": "dword ptr [rip + 0x2ceb0], r8d", + "stack_offset": 0 }, { "address": "0x14000588c", "size": 2, "mnemonic": "jmp", - "operands": "0x140005895" + "operands": "0x140005895", + "stack_offset": 0 } ], "successors": [ @@ -71764,13 +80553,15 @@ "address": "0x140005852", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x20660" + "operands": "eax, 0x20660", + "stack_offset": 0 }, { "address": "0x140005857", "size": 2, "mnemonic": "je", - "operands": "0x14000587a" + "operands": "0x14000587a", + "stack_offset": 0 } ], "successors": [ @@ -71788,37 +80579,43 @@ "address": "0x140005895", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140005898", "size": 3, "mnemonic": "mov", - "operands": "esi, r9d" + "operands": "esi, r9d", + "stack_offset": 0 }, { "address": "0x14000589b", "size": 3, "mnemonic": "mov", - "operands": "r10d, r9d" + "operands": "r10d, r9d", + "stack_offset": 0 }, { "address": "0x14000589e", "size": 3, "mnemonic": "mov", - "operands": "r11d, r9d" + "operands": "r11d, r9d", + "stack_offset": 0 }, { "address": "0x1400058a1", "size": 3, "mnemonic": "cmp", - "operands": "ebp, 7" + "operands": "ebp, 7", + "stack_offset": 0 }, { "address": "0x1400058a4", "size": 2, "mnemonic": "jl", - "operands": "0x1400058e6" + "operands": "0x1400058e6", + "stack_offset": 0 } ], "successors": [ @@ -71836,13 +80633,15 @@ "address": "0x140005859", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x20670" + "operands": "eax, 0x20670", + "stack_offset": 0 }, { "address": "0x14000585e", "size": 2, "mnemonic": "je", - "operands": "0x14000587a" + "operands": "0x14000587a", + "stack_offset": 0 } ], "successors": [ @@ -71860,187 +80659,218 @@ "address": "0x1400058e6", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2b7a3]" + "operands": "rax, qword ptr [rip + 0x2b7a3]", + "stack_offset": 0 }, { "address": "0x1400058ed", "size": 4, "mnemonic": "and", - "operands": "rax, 0xfffffffffffffffe" + "operands": "rax, 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x1400058f1", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b79d], 1" + "operands": "dword ptr [rip + 0x2b79d], 1", + "stack_offset": 0 }, { "address": "0x1400058fb", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b797], 2" + "operands": "dword ptr [rip + 0x2b797], 2", + "stack_offset": 0 }, { "address": "0x140005905", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b784], rax" + "operands": "qword ptr [rip + 0x2b784], rax", + "stack_offset": 0 }, { "address": "0x14000590c", "size": 4, "mnemonic": "bt", - "operands": "edi, 0x14" + "operands": "edi, 0x14", + "stack_offset": 0 }, { "address": "0x140005910", "size": 2, "mnemonic": "jae", - "operands": "0x140005931" + "operands": "0x140005931", + "stack_offset": 0 }, { "address": "0x140005912", "size": 4, "mnemonic": "and", - "operands": "rax, 0xffffffffffffffef" + "operands": "rax, 0xffffffffffffffef", + "stack_offset": 0 }, { "address": "0x140005916", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b778], 2" + "operands": "dword ptr [rip + 0x2b778], 2", + "stack_offset": 0 }, { "address": "0x140005920", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b769], rax" + "operands": "qword ptr [rip + 0x2b769], rax", + "stack_offset": 0 }, { "address": "0x140005927", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b76b], 6" + "operands": "dword ptr [rip + 0x2b76b], 6", + "stack_offset": 0 }, { "address": "0x140005931", "size": 4, "mnemonic": "bt", - "operands": "edi, 0x1b" + "operands": "edi, 0x1b", + "stack_offset": 0 }, { "address": "0x140005935", "size": 6, "mnemonic": "jae", - "operands": "0x140005a6e" + "operands": "0x140005a6e", + "stack_offset": 0 }, { "address": "0x14000593b", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000593d", "size": 3, "mnemonic": "xgetbv", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140005940", "size": 4, "mnemonic": "shl", - "operands": "rdx, 0x20" + "operands": "rdx, 0x20", + "stack_offset": 0 }, { "address": "0x140005944", "size": 3, "mnemonic": "or", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140005947", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdx" + "operands": "qword ptr [rsp + 0x20], rdx", + "stack_offset": 0 }, { "address": "0x14000594c", "size": 4, "mnemonic": "bt", - "operands": "edi, 0x1c" + "operands": "edi, 0x1c", + "stack_offset": 0 }, { "address": "0x140005950", "size": 6, "mnemonic": "jae", - "operands": "0x140005a52" + "operands": "0x140005a52", + "stack_offset": 0 }, { "address": "0x140005956", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x20]" + "operands": "rax, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000595b", "size": 2, "mnemonic": "and", - "operands": "al, 6" + "operands": "al, 6", + "stack_offset": 0 }, { "address": "0x14000595d", "size": 2, "mnemonic": "cmp", - "operands": "al, 6" + "operands": "al, 6", + "stack_offset": 0 }, { "address": "0x14000595f", "size": 6, "mnemonic": "jne", - "operands": "0x140005a52" + "operands": "0x140005a52", + "stack_offset": 0 }, { "address": "0x140005965", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rip + 0x2b731]" + "operands": "eax, dword ptr [rip + 0x2b731]", + "stack_offset": 0 }, { "address": "0x14000596b", "size": 2, "mnemonic": "mov", - "operands": "dl, 0xe0" + "operands": "dl, 0xe0", + "stack_offset": 0 }, { "address": "0x14000596d", "size": 3, "mnemonic": "or", - "operands": "eax, 8" + "operands": "eax, 8", + "stack_offset": 0 }, { "address": "0x140005970", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b71e], 3" + "operands": "dword ptr [rip + 0x2b71e], 3", + "stack_offset": 0 }, { "address": "0x14000597a", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b71c], eax" + "operands": "dword ptr [rip + 0x2b71c], eax", + "stack_offset": 0 }, { "address": "0x140005980", "size": 4, "mnemonic": "test", - "operands": "r9b, 0x20" + "operands": "r9b, 0x20", + "stack_offset": 0 }, { "address": "0x140005984", "size": 2, "mnemonic": "je", - "operands": "0x1400059e8" + "operands": "0x1400059e8", + "stack_offset": 0 } ], "successors": [ @@ -72058,67 +80888,78 @@ "address": "0x1400058a6", "size": 4, "mnemonic": "lea", - "operands": "eax, [r9 + 7]" + "operands": "eax, [r9 + 7]", + "stack_offset": 0 }, { "address": "0x1400058aa", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400058ac", "size": 2, "mnemonic": "cpuid", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400058ae", "size": 2, "mnemonic": "mov", - "operands": "esi, edx" + "operands": "esi, edx", + "stack_offset": 0 }, { "address": "0x1400058b0", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x1400058b3", "size": 4, "mnemonic": "bt", - "operands": "ebx, 9" + "operands": "ebx, 9", + "stack_offset": 0 }, { "address": "0x1400058b7", "size": 2, "mnemonic": "jae", - "operands": "0x1400058c4" + "operands": "0x1400058c4", + "stack_offset": 0 }, { "address": "0x1400058b9", "size": 4, "mnemonic": "or", - "operands": "r8d, 2" + "operands": "r8d, 2", + "stack_offset": 0 }, { "address": "0x1400058bd", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2ce78], r8d" + "operands": "dword ptr [rip + 0x2ce78], r8d", + "stack_offset": 0 }, { "address": "0x1400058c4", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x1400058c7", "size": 2, "mnemonic": "jl", - "operands": "0x1400058d6" + "operands": "0x1400058d6", + "stack_offset": 0 } ], "successors": [ @@ -72136,19 +80977,22 @@ "address": "0x140005860", "size": 5, "mnemonic": "add", - "operands": "eax, 0xfffcf9b0" + "operands": "eax, 0xfffcf9b0", + "stack_offset": 0 }, { "address": "0x140005865", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x20" + "operands": "eax, 0x20", + "stack_offset": 0 }, { "address": "0x140005868", "size": 2, "mnemonic": "ja", - "operands": "0x14000588e" + "operands": "0x14000588e", + "stack_offset": 0 } ], "successors": [ @@ -72166,229 +81010,267 @@ "address": "0x1400059e8", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2b6a1]" + "operands": "rax, qword ptr [rip + 0x2b6a1]", + "stack_offset": 0 }, { "address": "0x1400059ef", "size": 4, "mnemonic": "bt", - "operands": "esi, 0x17" + "operands": "esi, 0x17", + "stack_offset": 0 }, { "address": "0x1400059f3", "size": 2, "mnemonic": "jae", - "operands": "0x140005a01" + "operands": "0x140005a01", + "stack_offset": 0 }, { "address": "0x1400059f5", "size": 5, "mnemonic": "btr", - "operands": "rax, 0x18" + "operands": "rax, 0x18", + "stack_offset": 0 }, { "address": "0x1400059fa", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b68f], rax" + "operands": "qword ptr [rip + 0x2b68f], rax", + "stack_offset": 0 }, { "address": "0x140005a01", "size": 5, "mnemonic": "bt", - "operands": "r10d, 0x13" + "operands": "r10d, 0x13", + "stack_offset": 0 }, { "address": "0x140005a06", "size": 2, "mnemonic": "jae", - "operands": "0x140005a52" + "operands": "0x140005a52", + "stack_offset": 0 }, { "address": "0x140005a08", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x20]" + "operands": "rax, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140005a0d", "size": 2, "mnemonic": "and", - "operands": "al, dl" + "operands": "al, dl", + "stack_offset": 0 }, { "address": "0x140005a0f", "size": 2, "mnemonic": "cmp", - "operands": "al, dl" + "operands": "al, dl", + "stack_offset": 0 }, { "address": "0x140005a11", "size": 2, "mnemonic": "jne", - "operands": "0x140005a52" + "operands": "0x140005a52", + "stack_offset": 0 }, { "address": "0x140005a13", "size": 3, "mnemonic": "mov", - "operands": "ecx, r11d" + "operands": "ecx, r11d", + "stack_offset": 0 }, { "address": "0x140005a16", "size": 3, "mnemonic": "mov", - "operands": "eax, r11d" + "operands": "eax, r11d", + "stack_offset": 0 }, { "address": "0x140005a19", "size": 4, "mnemonic": "shr", - "operands": "rcx, 0x10" + "operands": "rcx, 0x10", + "stack_offset": 0 }, { "address": "0x140005a1d", "size": 5, "mnemonic": "and", - "operands": "eax, 0x400ff" + "operands": "eax, 0x400ff", + "stack_offset": 0 }, { "address": "0x140005a22", "size": 3, "mnemonic": "and", - "operands": "ecx, 6" + "operands": "ecx, 6", + "stack_offset": 0 }, { "address": "0x140005a25", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2cd0d], eax" + "operands": "dword ptr [rip + 0x2cd0d], eax", + "stack_offset": 0 }, { "address": "0x140005a2b", "size": 7, "mnemonic": "or", - "operands": "rcx, 0x1000029" + "operands": "rcx, 0x1000029", + "stack_offset": 0 }, { "address": "0x140005a32", "size": 3, "mnemonic": "not", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x140005a35", "size": 7, "mnemonic": "and", - "operands": "rcx, qword ptr [rip + 0x2b654]" + "operands": "rcx, qword ptr [rip + 0x2b654]", + "stack_offset": 0 }, { "address": "0x140005a3c", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b64d], rcx" + "operands": "qword ptr [rip + 0x2b64d], rcx", + "stack_offset": 0 }, { "address": "0x140005a43", "size": 2, "mnemonic": "cmp", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140005a45", "size": 2, "mnemonic": "jbe", - "operands": "0x140005a52" + "operands": "0x140005a52", + "stack_offset": 0 }, { "address": "0x140005a47", "size": 4, "mnemonic": "and", - "operands": "rcx, 0xffffffffffffffbf" + "operands": "rcx, 0xffffffffffffffbf", + "stack_offset": 0 }, { "address": "0x140005a4b", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b63e], rcx" + "operands": "qword ptr [rip + 0x2b63e], rcx", + "stack_offset": 0 }, { "address": "0x140005a52", "size": 5, "mnemonic": "bt", - "operands": "r10d, 0x15" + "operands": "r10d, 0x15", + "stack_offset": 0 }, { "address": "0x140005a57", "size": 2, "mnemonic": "jae", - "operands": "0x140005a6e" + "operands": "0x140005a6e", + "stack_offset": 0 }, { "address": "0x140005a59", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x20]" + "operands": "rax, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140005a5e", "size": 5, "mnemonic": "bt", - "operands": "rax, 0x13" + "operands": "rax, 0x13", + "stack_offset": 0 }, { "address": "0x140005a63", "size": 2, "mnemonic": "jae", - "operands": "0x140005a6e" + "operands": "0x140005a6e", + "stack_offset": 0 }, { "address": "0x140005a65", "size": 9, "mnemonic": "btr", - "operands": "qword ptr [rip + 0x2b622], 7" + "operands": "qword ptr [rip + 0x2b622], 7", + "stack_offset": 0 }, { "address": "0x140005a6e", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x28]" + "operands": "rbx, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x140005a73", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005a75", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x30]" + "operands": "rbp, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140005a7a", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140005a7f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x10" + "operands": "rsp, 0x10", + "stack_offset": 0 }, { "address": "0x140005a83", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140005a84", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -72404,121 +81286,141 @@ "address": "0x140005986", "size": 3, "mnemonic": "or", - "operands": "eax, 0x20" + "operands": "eax, 0x20", + "stack_offset": 0 }, { "address": "0x140005989", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b705], 5" + "operands": "dword ptr [rip + 0x2b705], 5", + "stack_offset": 0 }, { "address": "0x140005993", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b703], eax" + "operands": "dword ptr [rip + 0x2b703], eax", + "stack_offset": 0 }, { "address": "0x140005999", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xd0030000" + "operands": "ecx, 0xd0030000", + "stack_offset": 0 }, { "address": "0x14000599e", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2b6eb]" + "operands": "rax, qword ptr [rip + 0x2b6eb]", + "stack_offset": 0 }, { "address": "0x1400059a5", "size": 3, "mnemonic": "and", - "operands": "r9d, ecx" + "operands": "r9d, ecx", + "stack_offset": 0 }, { "address": "0x1400059a8", "size": 4, "mnemonic": "and", - "operands": "rax, 0xfffffffffffffffd" + "operands": "rax, 0xfffffffffffffffd", + "stack_offset": 0 }, { "address": "0x1400059ac", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b6dd], rax" + "operands": "qword ptr [rip + 0x2b6dd], rax", + "stack_offset": 0 }, { "address": "0x1400059b3", "size": 3, "mnemonic": "cmp", - "operands": "r9d, ecx" + "operands": "r9d, ecx", + "stack_offset": 0 }, { "address": "0x1400059b6", "size": 2, "mnemonic": "jne", - "operands": "0x1400059ef" + "operands": "0x1400059ef", + "stack_offset": 0 }, { "address": "0x1400059b8", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x20]" + "operands": "rax, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400059bd", "size": 2, "mnemonic": "and", - "operands": "al, dl" + "operands": "al, dl", + "stack_offset": 0 }, { "address": "0x1400059bf", "size": 2, "mnemonic": "cmp", - "operands": "al, dl" + "operands": "al, dl", + "stack_offset": 0 }, { "address": "0x1400059c1", "size": 2, "mnemonic": "jne", - "operands": "0x1400059e8" + "operands": "0x1400059e8", + "stack_offset": 0 }, { "address": "0x1400059c3", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2b6c6]" + "operands": "rax, qword ptr [rip + 0x2b6c6]", + "stack_offset": 0 }, { "address": "0x1400059ca", "size": 7, "mnemonic": "or", - "operands": "dword ptr [rip + 0x2b6cb], 0x40" + "operands": "dword ptr [rip + 0x2b6cb], 0x40", + "stack_offset": 0 }, { "address": "0x1400059d1", "size": 4, "mnemonic": "and", - "operands": "rax, 0xffffffffffffffdb" + "operands": "rax, 0xffffffffffffffdb", + "stack_offset": 0 }, { "address": "0x1400059d5", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b6b9], 6" + "operands": "dword ptr [rip + 0x2b6b9], 6", + "stack_offset": 0 }, { "address": "0x1400059df", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b6aa], rax" + "operands": "qword ptr [rip + 0x2b6aa], rax", + "stack_offset": 0 }, { "address": "0x1400059e6", "size": 2, "mnemonic": "jmp", - "operands": "0x1400059ef" + "operands": "0x1400059ef", + "stack_offset": 0 } ], "successors": [ @@ -72535,19 +81437,22 @@ "address": "0x1400058d6", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x24" + "operands": "eax, 0x24", + "stack_offset": 0 }, { "address": "0x1400058db", "size": 2, "mnemonic": "cmp", - "operands": "ebp, eax" + "operands": "ebp, eax", + "stack_offset": 0 }, { "address": "0x1400058dd", "size": 2, "mnemonic": "jl", - "operands": "0x1400058e6" + "operands": "0x1400058e6", + "stack_offset": 0 } ], "successors": [ @@ -72565,43 +81470,50 @@ "address": "0x1400058c9", "size": 5, "mnemonic": "mov", - "operands": "eax, 7" + "operands": "eax, 7", + "stack_offset": 0 }, { "address": "0x1400058ce", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax - 6]" + "operands": "ecx, [rax - 6]", + "stack_offset": 0 }, { "address": "0x1400058d1", "size": 2, "mnemonic": "cpuid", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400058d3", "size": 3, "mnemonic": "mov", - "operands": "r10d, edx" + "operands": "r10d, edx", + "stack_offset": 0 }, { "address": "0x1400058d6", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x24" + "operands": "eax, 0x24", + "stack_offset": 0 }, { "address": "0x1400058db", "size": 2, "mnemonic": "cmp", - "operands": "ebp, eax" + "operands": "ebp, eax", + "stack_offset": 0 }, { "address": "0x1400058dd", "size": 2, "mnemonic": "jl", - "operands": "0x1400058e6" + "operands": "0x1400058e6", + "stack_offset": 0 } ], "successors": [ @@ -72619,43 +81531,50 @@ "address": "0x14000588e", "size": 7, "mnemonic": "mov", - "operands": "r8d, dword ptr [rip + 0x2cea7]" + "operands": "r8d, dword ptr [rip + 0x2cea7]", + "stack_offset": 0 }, { "address": "0x140005895", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140005898", "size": 3, "mnemonic": "mov", - "operands": "esi, r9d" + "operands": "esi, r9d", + "stack_offset": 0 }, { "address": "0x14000589b", "size": 3, "mnemonic": "mov", - "operands": "r10d, r9d" + "operands": "r10d, r9d", + "stack_offset": 0 }, { "address": "0x14000589e", "size": 3, "mnemonic": "mov", - "operands": "r11d, r9d" + "operands": "r11d, r9d", + "stack_offset": 0 }, { "address": "0x1400058a1", "size": 3, "mnemonic": "cmp", - "operands": "ebp, 7" + "operands": "ebp, 7", + "stack_offset": 0 }, { "address": "0x1400058a4", "size": 2, "mnemonic": "jl", - "operands": "0x1400058e6" + "operands": "0x1400058e6", + "stack_offset": 0 } ], "successors": [ @@ -72673,43 +81592,50 @@ "address": "0x14000586a", "size": 10, "mnemonic": "movabs", - "operands": "rcx, 0x100010001" + "operands": "rcx, 0x100010001", + "stack_offset": 0 }, { "address": "0x140005874", "size": 4, "mnemonic": "bt", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140005878", "size": 2, "mnemonic": "jae", - "operands": "0x14000588e" + "operands": "0x14000588e", + "stack_offset": 0 }, { "address": "0x14000587a", "size": 7, "mnemonic": "mov", - "operands": "r8d, dword ptr [rip + 0x2cebb]" + "operands": "r8d, dword ptr [rip + 0x2cebb]", + "stack_offset": 0 }, { "address": "0x140005881", "size": 4, "mnemonic": "or", - "operands": "r8d, 1" + "operands": "r8d, 1", + "stack_offset": 0 }, { "address": "0x140005885", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2ceb0], r8d" + "operands": "dword ptr [rip + 0x2ceb0], r8d", + "stack_offset": 0 }, { "address": "0x14000588c", "size": 2, "mnemonic": "jmp", - "operands": "0x140005895" + "operands": "0x140005895", + "stack_offset": 0 } ], "successors": [ @@ -72726,223 +81652,260 @@ "address": "0x1400059ef", "size": 4, "mnemonic": "bt", - "operands": "esi, 0x17" + "operands": "esi, 0x17", + "stack_offset": 0 }, { "address": "0x1400059f3", "size": 2, "mnemonic": "jae", - "operands": "0x140005a01" + "operands": "0x140005a01", + "stack_offset": 0 }, { "address": "0x1400059f5", "size": 5, "mnemonic": "btr", - "operands": "rax, 0x18" + "operands": "rax, 0x18", + "stack_offset": 0 }, { "address": "0x1400059fa", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b68f], rax" + "operands": "qword ptr [rip + 0x2b68f], rax", + "stack_offset": 0 }, { "address": "0x140005a01", "size": 5, "mnemonic": "bt", - "operands": "r10d, 0x13" + "operands": "r10d, 0x13", + "stack_offset": 0 }, { "address": "0x140005a06", "size": 2, "mnemonic": "jae", - "operands": "0x140005a52" + "operands": "0x140005a52", + "stack_offset": 0 }, { "address": "0x140005a08", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x20]" + "operands": "rax, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140005a0d", "size": 2, "mnemonic": "and", - "operands": "al, dl" + "operands": "al, dl", + "stack_offset": 0 }, { "address": "0x140005a0f", "size": 2, "mnemonic": "cmp", - "operands": "al, dl" + "operands": "al, dl", + "stack_offset": 0 }, { "address": "0x140005a11", "size": 2, "mnemonic": "jne", - "operands": "0x140005a52" + "operands": "0x140005a52", + "stack_offset": 0 }, { "address": "0x140005a13", "size": 3, "mnemonic": "mov", - "operands": "ecx, r11d" + "operands": "ecx, r11d", + "stack_offset": 0 }, { "address": "0x140005a16", "size": 3, "mnemonic": "mov", - "operands": "eax, r11d" + "operands": "eax, r11d", + "stack_offset": 0 }, { "address": "0x140005a19", "size": 4, "mnemonic": "shr", - "operands": "rcx, 0x10" + "operands": "rcx, 0x10", + "stack_offset": 0 }, { "address": "0x140005a1d", "size": 5, "mnemonic": "and", - "operands": "eax, 0x400ff" + "operands": "eax, 0x400ff", + "stack_offset": 0 }, { "address": "0x140005a22", "size": 3, "mnemonic": "and", - "operands": "ecx, 6" + "operands": "ecx, 6", + "stack_offset": 0 }, { "address": "0x140005a25", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2cd0d], eax" + "operands": "dword ptr [rip + 0x2cd0d], eax", + "stack_offset": 0 }, { "address": "0x140005a2b", "size": 7, "mnemonic": "or", - "operands": "rcx, 0x1000029" + "operands": "rcx, 0x1000029", + "stack_offset": 0 }, { "address": "0x140005a32", "size": 3, "mnemonic": "not", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x140005a35", "size": 7, "mnemonic": "and", - "operands": "rcx, qword ptr [rip + 0x2b654]" + "operands": "rcx, qword ptr [rip + 0x2b654]", + "stack_offset": 0 }, { "address": "0x140005a3c", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b64d], rcx" + "operands": "qword ptr [rip + 0x2b64d], rcx", + "stack_offset": 0 }, { "address": "0x140005a43", "size": 2, "mnemonic": "cmp", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140005a45", "size": 2, "mnemonic": "jbe", - "operands": "0x140005a52" + "operands": "0x140005a52", + "stack_offset": 0 }, { "address": "0x140005a47", "size": 4, "mnemonic": "and", - "operands": "rcx, 0xffffffffffffffbf" + "operands": "rcx, 0xffffffffffffffbf", + "stack_offset": 0 }, { "address": "0x140005a4b", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b63e], rcx" + "operands": "qword ptr [rip + 0x2b63e], rcx", + "stack_offset": 0 }, { "address": "0x140005a52", "size": 5, "mnemonic": "bt", - "operands": "r10d, 0x15" + "operands": "r10d, 0x15", + "stack_offset": 0 }, { "address": "0x140005a57", "size": 2, "mnemonic": "jae", - "operands": "0x140005a6e" + "operands": "0x140005a6e", + "stack_offset": 0 }, { "address": "0x140005a59", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x20]" + "operands": "rax, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140005a5e", "size": 5, "mnemonic": "bt", - "operands": "rax, 0x13" + "operands": "rax, 0x13", + "stack_offset": 0 }, { "address": "0x140005a63", "size": 2, "mnemonic": "jae", - "operands": "0x140005a6e" + "operands": "0x140005a6e", + "stack_offset": 0 }, { "address": "0x140005a65", "size": 9, "mnemonic": "btr", - "operands": "qword ptr [rip + 0x2b622], 7" + "operands": "qword ptr [rip + 0x2b622], 7", + "stack_offset": 0 }, { "address": "0x140005a6e", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x28]" + "operands": "rbx, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x140005a73", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005a75", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x30]" + "operands": "rbp, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140005a7a", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140005a7f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x10" + "operands": "rsp, 0x10", + "stack_offset": 0 }, { "address": "0x140005a83", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140005a84", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -72958,205 +81921,239 @@ "address": "0x1400058df", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400058e1", "size": 2, "mnemonic": "cpuid", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400058e3", "size": 3, "mnemonic": "mov", - "operands": "r11d, ebx" + "operands": "r11d, ebx", + "stack_offset": 0 }, { "address": "0x1400058e6", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2b7a3]" + "operands": "rax, qword ptr [rip + 0x2b7a3]", + "stack_offset": 0 }, { "address": "0x1400058ed", "size": 4, "mnemonic": "and", - "operands": "rax, 0xfffffffffffffffe" + "operands": "rax, 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x1400058f1", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b79d], 1" + "operands": "dword ptr [rip + 0x2b79d], 1", + "stack_offset": 0 }, { "address": "0x1400058fb", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b797], 2" + "operands": "dword ptr [rip + 0x2b797], 2", + "stack_offset": 0 }, { "address": "0x140005905", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b784], rax" + "operands": "qword ptr [rip + 0x2b784], rax", + "stack_offset": 0 }, { "address": "0x14000590c", "size": 4, "mnemonic": "bt", - "operands": "edi, 0x14" + "operands": "edi, 0x14", + "stack_offset": 0 }, { "address": "0x140005910", "size": 2, "mnemonic": "jae", - "operands": "0x140005931" + "operands": "0x140005931", + "stack_offset": 0 }, { "address": "0x140005912", "size": 4, "mnemonic": "and", - "operands": "rax, 0xffffffffffffffef" + "operands": "rax, 0xffffffffffffffef", + "stack_offset": 0 }, { "address": "0x140005916", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b778], 2" + "operands": "dword ptr [rip + 0x2b778], 2", + "stack_offset": 0 }, { "address": "0x140005920", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2b769], rax" + "operands": "qword ptr [rip + 0x2b769], rax", + "stack_offset": 0 }, { "address": "0x140005927", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b76b], 6" + "operands": "dword ptr [rip + 0x2b76b], 6", + "stack_offset": 0 }, { "address": "0x140005931", "size": 4, "mnemonic": "bt", - "operands": "edi, 0x1b" + "operands": "edi, 0x1b", + "stack_offset": 0 }, { "address": "0x140005935", "size": 6, "mnemonic": "jae", - "operands": "0x140005a6e" + "operands": "0x140005a6e", + "stack_offset": 0 }, { "address": "0x14000593b", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000593d", "size": 3, "mnemonic": "xgetbv", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140005940", "size": 4, "mnemonic": "shl", - "operands": "rdx, 0x20" + "operands": "rdx, 0x20", + "stack_offset": 0 }, { "address": "0x140005944", "size": 3, "mnemonic": "or", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140005947", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdx" + "operands": "qword ptr [rsp + 0x20], rdx", + "stack_offset": 0 }, { "address": "0x14000594c", "size": 4, "mnemonic": "bt", - "operands": "edi, 0x1c" + "operands": "edi, 0x1c", + "stack_offset": 0 }, { "address": "0x140005950", "size": 6, "mnemonic": "jae", - "operands": "0x140005a52" + "operands": "0x140005a52", + "stack_offset": 0 }, { "address": "0x140005956", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x20]" + "operands": "rax, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000595b", "size": 2, "mnemonic": "and", - "operands": "al, 6" + "operands": "al, 6", + "stack_offset": 0 }, { "address": "0x14000595d", "size": 2, "mnemonic": "cmp", - "operands": "al, 6" + "operands": "al, 6", + "stack_offset": 0 }, { "address": "0x14000595f", "size": 6, "mnemonic": "jne", - "operands": "0x140005a52" + "operands": "0x140005a52", + "stack_offset": 0 }, { "address": "0x140005965", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rip + 0x2b731]" + "operands": "eax, dword ptr [rip + 0x2b731]", + "stack_offset": 0 }, { "address": "0x14000596b", "size": 2, "mnemonic": "mov", - "operands": "dl, 0xe0" + "operands": "dl, 0xe0", + "stack_offset": 0 }, { "address": "0x14000596d", "size": 3, "mnemonic": "or", - "operands": "eax, 8" + "operands": "eax, 8", + "stack_offset": 0 }, { "address": "0x140005970", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b71e], 3" + "operands": "dword ptr [rip + 0x2b71e], 3", + "stack_offset": 0 }, { "address": "0x14000597a", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2b71c], eax" + "operands": "dword ptr [rip + 0x2b71c], eax", + "stack_offset": 0 }, { "address": "0x140005980", "size": 4, "mnemonic": "test", - "operands": "r9b, 0x20" + "operands": "r9b, 0x20", + "stack_offset": 0 }, { "address": "0x140005984", "size": 2, "mnemonic": "je", - "operands": "0x1400059e8" + "operands": "0x1400059e8", + "stack_offset": 0 } ], "successors": [ @@ -73180,37 +82177,43 @@ "address": "0x140007318", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000731c", "size": 5, "mnemonic": "call", - "operands": "0x14000a73c" + "operands": "0x14000a73c", + "stack_offset": 0 }, { "address": "0x140007321", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140007323", "size": 2, "mnemonic": "jne", - "operands": "0x140007329" + "operands": "0x140007329", + "stack_offset": 0 }, { "address": "0x140007325", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140007327", "size": 2, "mnemonic": "jmp", - "operands": "0x14000733b" + "operands": "0x14000733b", + "stack_offset": 0 } ], "successors": [ @@ -73227,13 +82230,15 @@ "address": "0x14000733b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000733f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -73255,19 +82260,22 @@ "address": "0x140010b38", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140010b3c", "size": 2, "mnemonic": "test", - "operands": "cl, cl" + "operands": "cl, cl", + "stack_offset": 0 }, { "address": "0x140010b3e", "size": 2, "mnemonic": "je", - "operands": "0x140010b56" + "operands": "0x140010b56", + "stack_offset": 0 } ], "successors": [ @@ -73285,25 +82293,29 @@ "address": "0x140010b56", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x150c3]" + "operands": "rdx, [rip + 0x150c3]", + "stack_offset": 0 }, { "address": "0x140010b5d", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x14fbc]" + "operands": "rcx, [rip + 0x14fbc]", + "stack_offset": 0 }, { "address": "0x140010b64", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140010b68", "size": 5, "mnemonic": "jmp", - "operands": "0x14001bff8" + "operands": "0x14001bff8", + "stack_offset": 0 } ], "successors": [ @@ -73320,13 +82332,15 @@ "address": "0x140010b40", "size": 8, "mnemonic": "cmp", - "operands": "qword ptr [rip + 0x222a0], 0" + "operands": "qword ptr [rip + 0x222a0], 0", + "stack_offset": 0 }, { "address": "0x140010b48", "size": 2, "mnemonic": "je", - "operands": "0x140010b4f" + "operands": "0x140010b4f", + "stack_offset": 0 } ], "successors": [ @@ -73344,43 +82358,50 @@ "address": "0x14001bff8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001bffd", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001bffe", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001c002", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14001c005", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14001c008", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x14001c00b", "size": 2, "mnemonic": "je", - "operands": "0x14001c026" + "operands": "0x14001c026", + "stack_offset": 0 } ], "successors": [ @@ -73398,19 +82419,22 @@ "address": "0x140010b4f", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140010b51", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140010b55", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -73426,25 +82450,29 @@ "address": "0x140010b4a", "size": 5, "mnemonic": "call", - "operands": "0x14000b74c" + "operands": "0x14000b74c", + "stack_offset": 0 }, { "address": "0x140010b4f", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140010b51", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140010b55", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -73460,31 +82488,36 @@ "address": "0x14001c026", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001c02b", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14001c02d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001c031", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c032", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -73500,19 +82533,22 @@ "address": "0x14001c00d", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx - 8]" + "operands": "rax, qword ptr [rbx - 8]", + "stack_offset": 0 }, { "address": "0x14001c011", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001c014", "size": 2, "mnemonic": "je", - "operands": "0x14001c01d" + "operands": "0x14001c01d", + "stack_offset": 0 } ], "successors": [ @@ -73530,49 +82566,57 @@ "address": "0x14001c01d", "size": 4, "mnemonic": "sub", - "operands": "rbx, 0x10" + "operands": "rbx, 0x10", + "stack_offset": 0 }, { "address": "0x14001c021", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x14001c024", "size": 2, "mnemonic": "jne", - "operands": "0x14001c00d" + "operands": "0x14001c00d", + "stack_offset": 0 }, { "address": "0x14001c026", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001c02b", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14001c02d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001c031", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c032", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -73588,61 +82632,71 @@ "address": "0x14001c016", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14001c018", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x14001c01d", "size": 4, "mnemonic": "sub", - "operands": "rbx, 0x10" + "operands": "rbx, 0x10", + "stack_offset": 0 }, { "address": "0x14001c021", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x14001c024", "size": 2, "mnemonic": "jne", - "operands": "0x14001c00d" + "operands": "0x14001c00d", + "stack_offset": 0 }, { "address": "0x14001c026", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001c02b", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14001c02d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001c031", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c032", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -73664,49 +82718,57 @@ "address": "0x140007340", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140007344", "size": 2, "mnemonic": "test", - "operands": "cl, cl" + "operands": "cl, cl", + "stack_offset": 0 }, { "address": "0x140007346", "size": 2, "mnemonic": "jne", - "operands": "0x140007352" + "operands": "0x140007352", + "stack_offset": 0 }, { "address": "0x140007348", "size": 5, "mnemonic": "call", - "operands": "0x140007514" + "operands": "0x140007514", + "stack_offset": 0 }, { "address": "0x14000734d", "size": 5, "mnemonic": "call", - "operands": "0x14000a784" + "operands": "0x14000a784", + "stack_offset": 0 }, { "address": "0x140007352", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140007354", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140007358", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -73728,13 +82790,15 @@ "address": "0x140005e38", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x2ce86], 0" + "operands": "dword ptr [rip + 0x2ce86], 0", + "stack_offset": 0 }, { "address": "0x140005e42", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -73756,55 +82820,64 @@ "address": "0x14001ea80", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14001ea83", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14001ea86", "size": 7, "mnemonic": "lea", - "operands": "r10, [rip - 0x1ea8d]" + "operands": "r10, [rip - 0x1ea8d]", + "stack_offset": 0 }, { "address": "0x14001ea8d", "size": 3, "mnemonic": "movzx", - "operands": "edx, dl" + "operands": "edx, dl", + "stack_offset": 0 }, { "address": "0x14001ea90", "size": 10, "mnemonic": "movabs", - "operands": "r11, 0x101010101010101" + "operands": "r11, 0x101010101010101", + "stack_offset": 0 }, { "address": "0x14001ea9a", "size": 4, "mnemonic": "imul", - "operands": "r11, rdx" + "operands": "r11, rdx", + "stack_offset": 0 }, { "address": "0x14001ea9e", "size": 5, "mnemonic": "movq", - "operands": "xmm0, r11" + "operands": "xmm0, r11", + "stack_offset": 0 }, { "address": "0x14001eaa3", "size": 4, "mnemonic": "cmp", - "operands": "r8, 0xf" + "operands": "r8, 0xf", + "stack_offset": 0 }, { "address": "0x14001eaa7", "size": 6, "mnemonic": "ja", - "operands": "0x14001eb30" + "operands": "0x14001eb30", + "stack_offset": 0 } ], "successors": [ @@ -73822,19 +82895,22 @@ "address": "0x14001eb30", "size": 4, "mnemonic": "punpcklqdq", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x14001eb34", "size": 4, "mnemonic": "cmp", - "operands": "r8, 0x20" + "operands": "r8, 0x20", + "stack_offset": 0 }, { "address": "0x14001eb38", "size": 2, "mnemonic": "ja", - "operands": "0x14001eb46" + "operands": "0x14001eb46", + "stack_offset": 0 } ], "successors": [ @@ -73852,31 +82928,36 @@ "address": "0x14001eaad", "size": 3, "mnemonic": "nop", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001eab0", "size": 3, "mnemonic": "add", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x14001eab3", "size": 8, "mnemonic": "mov", - "operands": "r9d, dword ptr [r10 + r8*4 + 0x2cac0]" + "operands": "r9d, dword ptr [r10 + r8*4 + 0x2cac0]", + "stack_offset": 0 }, { "address": "0x14001eabb", "size": 3, "mnemonic": "add", - "operands": "r9, r10" + "operands": "r9, r10", + "stack_offset": 0 }, { "address": "0x14001eabe", "size": 3, "mnemonic": "jmp", - "operands": "r9" + "operands": "r9", + "stack_offset": 0 } ], "successors": [ @@ -73892,13 +82973,15 @@ "address": "0x14001eb46", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x1254b], 3" + "operands": "dword ptr [rip + 0x1254b], 3", + "stack_offset": 0 }, { "address": "0x14001eb4d", "size": 6, "mnemonic": "jb", - "operands": "0x14001ed30" + "operands": "0x14001ed30", + "stack_offset": 0 } ], "successors": [ @@ -73916,19 +82999,22 @@ "address": "0x14001eb3a", "size": 4, "mnemonic": "movdqu", - "operands": "xmmword ptr [rcx], xmm0" + "operands": "xmmword ptr [rcx], xmm0", + "stack_offset": 0 }, { "address": "0x14001eb3e", "size": 7, "mnemonic": "movdqu", - "operands": "xmmword ptr [rcx + r8 - 0x10], xmm0" + "operands": "xmmword ptr [rcx + r8 - 0x10], xmm0", + "stack_offset": 0 }, { "address": "0x14001eb45", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -73944,193 +83030,225 @@ "address": "0x14001ed30", "size": 7, "mnemonic": "cmp", - "operands": "r8, qword ptr [rip + 0x12369]" + "operands": "r8, qword ptr [rip + 0x12369]", + "stack_offset": 0 }, { "address": "0x14001ed37", "size": 2, "mnemonic": "jbe", - "operands": "0x14001ed46" + "operands": "0x14001ed46", + "stack_offset": 0 }, { "address": "0x14001ed39", "size": 7, "mnemonic": "test", - "operands": "byte ptr [rip + 0x139fc], 2" + "operands": "byte ptr [rip + 0x139fc], 2", + "stack_offset": 0 }, { "address": "0x14001ed40", "size": 6, "mnemonic": "jne", - "operands": "0x14001ea70" + "operands": "0x14001ea70", + "stack_offset": 0 }, { "address": "0x14001ed46", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14001ed49", "size": 4, "mnemonic": "and", - "operands": "r9, 0xf" + "operands": "r9, 0xf", + "stack_offset": 0 }, { "address": "0x14001ed4d", "size": 4, "mnemonic": "sub", - "operands": "r9, 0x10" + "operands": "r9, 0x10", + "stack_offset": 0 }, { "address": "0x14001ed51", "size": 3, "mnemonic": "sub", - "operands": "rcx, r9" + "operands": "rcx, r9", + "stack_offset": 0 }, { "address": "0x14001ed54", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001ed57", "size": 3, "mnemonic": "add", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x14001ed5a", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x80" + "operands": "r8, 0x80", + "stack_offset": 0 }, { "address": "0x14001ed61", "size": 2, "mnemonic": "jbe", - "operands": "0x14001edae" + "operands": "0x14001edae", + "stack_offset": 0 }, { "address": "0x14001ed63", "size": 13, "mnemonic": "nop", - "operands": "word ptr [rax + rax]" + "operands": "word ptr [rax + rax]", + "stack_offset": 0 }, { "address": "0x14001ed70", "size": 4, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx], xmm0" + "operands": "xmmword ptr [rcx], xmm0", + "stack_offset": 0 }, { "address": "0x14001ed74", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x10], xmm0" + "operands": "xmmword ptr [rcx + 0x10], xmm0", + "stack_offset": 0 }, { "address": "0x14001ed79", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x20], xmm0" + "operands": "xmmword ptr [rcx + 0x20], xmm0", + "stack_offset": 0 }, { "address": "0x14001ed7e", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x30], xmm0" + "operands": "xmmword ptr [rcx + 0x30], xmm0", + "stack_offset": 0 }, { "address": "0x14001ed83", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x40], xmm0" + "operands": "xmmword ptr [rcx + 0x40], xmm0", + "stack_offset": 0 }, { "address": "0x14001ed88", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x50], xmm0" + "operands": "xmmword ptr [rcx + 0x50], xmm0", + "stack_offset": 0 }, { "address": "0x14001ed8d", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x60], xmm0" + "operands": "xmmword ptr [rcx + 0x60], xmm0", + "stack_offset": 0 }, { "address": "0x14001ed92", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x70], xmm0" + "operands": "xmmword ptr [rcx + 0x70], xmm0", + "stack_offset": 0 }, { "address": "0x14001ed97", "size": 7, "mnemonic": "add", - "operands": "rcx, 0x80" + "operands": "rcx, 0x80", + "stack_offset": 0 }, { "address": "0x14001ed9e", "size": 7, "mnemonic": "sub", - "operands": "r8, 0x80" + "operands": "r8, 0x80", + "stack_offset": 0 }, { "address": "0x14001eda5", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x80" + "operands": "r8, 0x80", + "stack_offset": 0 }, { "address": "0x14001edac", "size": 2, "mnemonic": "jae", - "operands": "0x14001ed70" + "operands": "0x14001ed70", + "stack_offset": 0 }, { "address": "0x14001edae", "size": 4, "mnemonic": "lea", - "operands": "r9, [r8 + 0xf]" + "operands": "r9, [r8 + 0xf]", + "stack_offset": 0 }, { "address": "0x14001edb2", "size": 4, "mnemonic": "and", - "operands": "r9, 0xfffffffffffffff0" + "operands": "r9, 0xfffffffffffffff0", + "stack_offset": 0 }, { "address": "0x14001edb6", "size": 3, "mnemonic": "mov", - "operands": "r11, r9" + "operands": "r11, r9", + "stack_offset": 0 }, { "address": "0x14001edb9", "size": 4, "mnemonic": "shr", - "operands": "r11, 4" + "operands": "r11, 4", + "stack_offset": 0 }, { "address": "0x14001edbd", "size": 8, "mnemonic": "mov", - "operands": "r11d, dword ptr [r10 + r11*4 + 0x2cb48]" + "operands": "r11d, dword ptr [r10 + r11*4 + 0x2cb48]", + "stack_offset": 0 }, { "address": "0x14001edc5", "size": 3, "mnemonic": "add", - "operands": "r11, r10" + "operands": "r11, r10", + "stack_offset": 0 }, { "address": "0x14001edc8", "size": 3, "mnemonic": "jmp", - "operands": "r11" + "operands": "r11", + "stack_offset": 0 } ], "successors": [ @@ -74146,25 +83264,29 @@ "address": "0x14001eb53", "size": 7, "mnemonic": "cmp", - "operands": "r8, qword ptr [rip + 0x12546]" + "operands": "r8, qword ptr [rip + 0x12546]", + "stack_offset": 0 }, { "address": "0x14001eb5a", "size": 2, "mnemonic": "jbe", - "operands": "0x14001eb72" + "operands": "0x14001eb72", + "stack_offset": 0 }, { "address": "0x14001eb5c", "size": 7, "mnemonic": "cmp", - "operands": "r8, qword ptr [rip + 0x12545]" + "operands": "r8, qword ptr [rip + 0x12545]", + "stack_offset": 0 }, { "address": "0x14001eb63", "size": 2, "mnemonic": "ja", - "operands": "0x14001eb72" + "operands": "0x14001eb72", + "stack_offset": 0 } ], "successors": [ @@ -74182,67 +83304,78 @@ "address": "0x14001eb72", "size": 6, "mnemonic": "vinsertf128", - "operands": "ymm0, ymm0, xmm0, 1" + "operands": "ymm0, ymm0, xmm0, 1", + "stack_offset": 0 }, { "address": "0x14001eb78", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14001eb7b", "size": 4, "mnemonic": "and", - "operands": "r9, 0x1f" + "operands": "r9, 0x1f", + "stack_offset": 0 }, { "address": "0x14001eb7f", "size": 4, "mnemonic": "sub", - "operands": "r9, 0x20" + "operands": "r9, 0x20", + "stack_offset": 0 }, { "address": "0x14001eb83", "size": 3, "mnemonic": "sub", - "operands": "rcx, r9" + "operands": "rcx, r9", + "stack_offset": 0 }, { "address": "0x14001eb86", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001eb89", "size": 3, "mnemonic": "add", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x14001eb8c", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001eb93", "size": 2, "mnemonic": "jbe", - "operands": "0x14001ebfa" + "operands": "0x14001ebfa", + "stack_offset": 0 }, { "address": "0x14001eb95", "size": 7, "mnemonic": "cmp", - "operands": "r8, qword ptr [rip + 0x1250c]" + "operands": "r8, qword ptr [rip + 0x1250c]", + "stack_offset": 0 }, { "address": "0x14001eb9c", "size": 6, "mnemonic": "ja", - "operands": "0x14001ec70" + "operands": "0x14001ec70", + "stack_offset": 0 } ], "successors": [ @@ -74260,79 +83393,92 @@ "address": "0x14001eb65", "size": 7, "mnemonic": "test", - "operands": "byte ptr [rip + 0x13bd0], 2" + "operands": "byte ptr [rip + 0x13bd0], 2", + "stack_offset": 0 }, { "address": "0x14001eb6c", "size": 6, "mnemonic": "jne", - "operands": "0x14001ea70" + "operands": "0x14001ea70", + "stack_offset": 0 }, { "address": "0x14001eb72", "size": 6, "mnemonic": "vinsertf128", - "operands": "ymm0, ymm0, xmm0, 1" + "operands": "ymm0, ymm0, xmm0, 1", + "stack_offset": 0 }, { "address": "0x14001eb78", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14001eb7b", "size": 4, "mnemonic": "and", - "operands": "r9, 0x1f" + "operands": "r9, 0x1f", + "stack_offset": 0 }, { "address": "0x14001eb7f", "size": 4, "mnemonic": "sub", - "operands": "r9, 0x20" + "operands": "r9, 0x20", + "stack_offset": 0 }, { "address": "0x14001eb83", "size": 3, "mnemonic": "sub", - "operands": "rcx, r9" + "operands": "rcx, r9", + "stack_offset": 0 }, { "address": "0x14001eb86", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001eb89", "size": 3, "mnemonic": "add", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x14001eb8c", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001eb93", "size": 2, "mnemonic": "jbe", - "operands": "0x14001ebfa" + "operands": "0x14001ebfa", + "stack_offset": 0 }, { "address": "0x14001eb95", "size": 7, "mnemonic": "cmp", - "operands": "r8, qword ptr [rip + 0x1250c]" + "operands": "r8, qword ptr [rip + 0x1250c]", + "stack_offset": 0 }, { "address": "0x14001eb9c", "size": 6, "mnemonic": "ja", - "operands": "0x14001ec70" + "operands": "0x14001ec70", + "stack_offset": 0 } ], "successors": [ @@ -74350,115 +83496,134 @@ "address": "0x14001ec70", "size": 4, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx], ymm0" + "operands": "ymmword ptr [rcx], ymm0", + "stack_offset": 0 }, { "address": "0x14001ec74", "size": 5, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0x20], ymm0" + "operands": "ymmword ptr [rcx + 0x20], ymm0", + "stack_offset": 0 }, { "address": "0x14001ec79", "size": 5, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0x40], ymm0" + "operands": "ymmword ptr [rcx + 0x40], ymm0", + "stack_offset": 0 }, { "address": "0x14001ec7e", "size": 5, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0x60], ymm0" + "operands": "ymmword ptr [rcx + 0x60], ymm0", + "stack_offset": 0 }, { "address": "0x14001ec83", "size": 8, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0x80], ymm0" + "operands": "ymmword ptr [rcx + 0x80], ymm0", + "stack_offset": 0 }, { "address": "0x14001ec8b", "size": 8, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0xa0], ymm0" + "operands": "ymmword ptr [rcx + 0xa0], ymm0", + "stack_offset": 0 }, { "address": "0x14001ec93", "size": 8, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0xc0], ymm0" + "operands": "ymmword ptr [rcx + 0xc0], ymm0", + "stack_offset": 0 }, { "address": "0x14001ec9b", "size": 8, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0xe0], ymm0" + "operands": "ymmword ptr [rcx + 0xe0], ymm0", + "stack_offset": 0 }, { "address": "0x14001eca3", "size": 7, "mnemonic": "add", - "operands": "rcx, 0x100" + "operands": "rcx, 0x100", + "stack_offset": 0 }, { "address": "0x14001ecaa", "size": 7, "mnemonic": "sub", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001ecb1", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001ecb8", "size": 2, "mnemonic": "jae", - "operands": "0x14001ec70" + "operands": "0x14001ec70", + "stack_offset": 0 }, { "address": "0x14001ecba", "size": 4, "mnemonic": "lea", - "operands": "r9, [r8 + 0x1f]" + "operands": "r9, [r8 + 0x1f]", + "stack_offset": 0 }, { "address": "0x14001ecbe", "size": 4, "mnemonic": "and", - "operands": "r9, 0xffffffffffffffe0" + "operands": "r9, 0xffffffffffffffe0", + "stack_offset": 0 }, { "address": "0x14001ecc2", "size": 3, "mnemonic": "mov", - "operands": "r11, r9" + "operands": "r11, r9", + "stack_offset": 0 }, { "address": "0x14001ecc5", "size": 4, "mnemonic": "shr", - "operands": "r11, 5" + "operands": "r11, 5", + "stack_offset": 0 }, { "address": "0x14001ecc9", "size": 8, "mnemonic": "mov", - "operands": "r11d, dword ptr [r10 + r11*4 + 0x2cb24]" + "operands": "r11d, dword ptr [r10 + r11*4 + 0x2cb24]", + "stack_offset": 0 }, { "address": "0x14001ecd1", "size": 3, "mnemonic": "add", - "operands": "r11, r10" + "operands": "r11, r10", + "stack_offset": 0 }, { "address": "0x14001ecd4", "size": 3, "mnemonic": "jmp", - "operands": "r11" + "operands": "r11", + "stack_offset": 0 } ], "successors": [ @@ -74474,121 +83639,141 @@ "address": "0x14001eba2", "size": 14, "mnemonic": "nop", - "operands": "word ptr [rax + rax]" + "operands": "word ptr [rax + rax]", + "stack_offset": 0 }, { "address": "0x14001ebb0", "size": 4, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx], ymm0" + "operands": "ymmword ptr [rcx], ymm0", + "stack_offset": 0 }, { "address": "0x14001ebb4", "size": 5, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0x20], ymm0" + "operands": "ymmword ptr [rcx + 0x20], ymm0", + "stack_offset": 0 }, { "address": "0x14001ebb9", "size": 5, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0x40], ymm0" + "operands": "ymmword ptr [rcx + 0x40], ymm0", + "stack_offset": 0 }, { "address": "0x14001ebbe", "size": 5, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0x60], ymm0" + "operands": "ymmword ptr [rcx + 0x60], ymm0", + "stack_offset": 0 }, { "address": "0x14001ebc3", "size": 8, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0x80], ymm0" + "operands": "ymmword ptr [rcx + 0x80], ymm0", + "stack_offset": 0 }, { "address": "0x14001ebcb", "size": 8, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0xa0], ymm0" + "operands": "ymmword ptr [rcx + 0xa0], ymm0", + "stack_offset": 0 }, { "address": "0x14001ebd3", "size": 8, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0xc0], ymm0" + "operands": "ymmword ptr [rcx + 0xc0], ymm0", + "stack_offset": 0 }, { "address": "0x14001ebdb", "size": 8, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0xe0], ymm0" + "operands": "ymmword ptr [rcx + 0xe0], ymm0", + "stack_offset": 0 }, { "address": "0x14001ebe3", "size": 7, "mnemonic": "add", - "operands": "rcx, 0x100" + "operands": "rcx, 0x100", + "stack_offset": 0 }, { "address": "0x14001ebea", "size": 7, "mnemonic": "sub", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001ebf1", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001ebf8", "size": 2, "mnemonic": "jae", - "operands": "0x14001ebb0" + "operands": "0x14001ebb0", + "stack_offset": 0 }, { "address": "0x14001ebfa", "size": 4, "mnemonic": "lea", - "operands": "r9, [r8 + 0x1f]" + "operands": "r9, [r8 + 0x1f]", + "stack_offset": 0 }, { "address": "0x14001ebfe", "size": 4, "mnemonic": "and", - "operands": "r9, 0xffffffffffffffe0" + "operands": "r9, 0xffffffffffffffe0", + "stack_offset": 0 }, { "address": "0x14001ec02", "size": 3, "mnemonic": "mov", - "operands": "r11, r9" + "operands": "r11, r9", + "stack_offset": 0 }, { "address": "0x14001ec05", "size": 4, "mnemonic": "shr", - "operands": "r11, 5" + "operands": "r11, 5", + "stack_offset": 0 }, { "address": "0x14001ec09", "size": 8, "mnemonic": "mov", - "operands": "r11d, dword ptr [r10 + r11*4 + 0x2cb00]" + "operands": "r11d, dword ptr [r10 + r11*4 + 0x2cb00]", + "stack_offset": 0 }, { "address": "0x14001ec11", "size": 3, "mnemonic": "add", - "operands": "r11, r10" + "operands": "r11, r10", + "stack_offset": 0 }, { "address": "0x14001ec14", "size": 3, "mnemonic": "jmp", - "operands": "r11" + "operands": "r11", + "stack_offset": 0 } ], "successors": [ @@ -74610,7 +83795,8 @@ "address": "0x14001e3a0", "size": 6, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x1f1a]" + "operands": "qword ptr [rip + 0x1f1a]", + "stack_offset": 0 } ], "successors": [ @@ -74633,109 +83819,127 @@ "address": "0x14000e934", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000e939", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14000e93e", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e93f", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e943", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x14000e946", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x14000e949", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000e94b", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x14000e950", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000e951", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14000e954", "size": 5, "mnemonic": "call", - "operands": "0x14000e96c" + "operands": "0x14000e96c", + "stack_offset": 0 }, { "address": "0x14000e959", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000e95a", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000e95c", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14000e961", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000e966", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e96a", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e96b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -74757,91 +83961,106 @@ "address": "0x1400191c0", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400191c2", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400191c6", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x1400191c8", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], ebx" + "operands": "dword ptr [rsp + 0x30], ebx", + "stack_offset": 0 }, { "address": "0x1400191cc", "size": 5, "mnemonic": "call", - "operands": "0x1400191a8" + "operands": "0x1400191a8", + "stack_offset": 0 }, { "address": "0x1400191d1", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400191d3", "size": 2, "mnemonic": "jne", - "operands": "0x1400191df" + "operands": "0x1400191df", + "stack_offset": 0 }, { "address": "0x1400191d5", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x30]" + "operands": "rcx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400191da", "size": 5, "mnemonic": "call", - "operands": "0x140011db4" + "operands": "0x140011db4", + "stack_offset": 0 }, { "address": "0x1400191df", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [rsp + 0x30], 1" + "operands": "dword ptr [rsp + 0x30], 1", + "stack_offset": 0 }, { "address": "0x1400191e4", "size": 3, "mnemonic": "setne", - "operands": "bl" + "operands": "bl", + "stack_offset": 0 }, { "address": "0x1400191e7", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x1400191e9", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400191ed", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400191ee", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -74863,73 +84082,85 @@ "address": "0x14000eb40", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000eb42", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000eb46", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0xfffffffffffffffe" + "operands": "qword ptr [rsp + 0x20], 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x14000eb4f", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14000eb51", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x48], 0" + "operands": "qword ptr [rsp + 0x48], 0", + "stack_offset": 0 }, { "address": "0x14000eb57", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x48]" + "operands": "r8, [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000eb5c", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x16d9d]" + "operands": "rdx, [rip + 0x16d9d]", + "stack_offset": 0 }, { "address": "0x14000eb63", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000eb65", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x115fd]" + "operands": "qword ptr [rip + 0x115fd]", + "stack_offset": 0 }, { "address": "0x14000eb6b", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x48]" + "operands": "rcx, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000eb70", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000eb72", "size": 2, "mnemonic": "je", - "operands": "0x14000eb92" + "operands": "0x14000eb92", + "stack_offset": 0 } ], "successors": [ @@ -74947,13 +84178,15 @@ "address": "0x14000eb92", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000eb95", "size": 2, "mnemonic": "je", - "operands": "0x14000eb9e" + "operands": "0x14000eb9e", + "stack_offset": 0 } ], "successors": [ @@ -74971,25 +84204,29 @@ "address": "0x14000eb74", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x16d9d]" + "operands": "rdx, [rip + 0x16d9d]", + "stack_offset": 0 }, { "address": "0x14000eb7b", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x115b7]" + "operands": "qword ptr [rip + 0x115b7]", + "stack_offset": 0 }, { "address": "0x14000eb81", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000eb84", "size": 2, "mnemonic": "je", - "operands": "0x14000eb8d" + "operands": "0x14000eb8d", + "stack_offset": 0 } ], "successors": [ @@ -75007,19 +84244,22 @@ "address": "0x14000eb9e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000eba2", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000eba3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75035,31 +84275,36 @@ "address": "0x14000eb97", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x11593]" + "operands": "qword ptr [rip + 0x11593]", + "stack_offset": 0 }, { "address": "0x14000eb9d", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000eb9e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000eba2", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000eba3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75075,19 +84320,22 @@ "address": "0x14000eb8d", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x48]" + "operands": "rcx, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000eb92", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000eb95", "size": 2, "mnemonic": "je", - "operands": "0x14000eb9e" + "operands": "0x14000eb9e", + "stack_offset": 0 } ], "successors": [ @@ -75105,31 +84353,36 @@ "address": "0x14000eb86", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14000eb88", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x14000eb8d", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x48]" + "operands": "rcx, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000eb92", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000eb95", "size": 2, "mnemonic": "je", - "operands": "0x14000eb9e" + "operands": "0x14000eb9e", + "stack_offset": 0 } ], "successors": [ @@ -75153,31 +84406,36 @@ "address": "0x14000eb10", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000eb12", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000eb16", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14000eb18", "size": 2, "mnemonic": "test", - "operands": "dl, dl" + "operands": "dl, dl", + "stack_offset": 0 }, { "address": "0x14000eb1a", "size": 2, "mnemonic": "je", - "operands": "0x14000eb2d" + "operands": "0x14000eb2d", + "stack_offset": 0 } ], "successors": [ @@ -75195,31 +84453,36 @@ "address": "0x14000eb2d", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14000eb2f", "size": 5, "mnemonic": "call", - "operands": "0x14000eb40" + "operands": "0x14000eb40", + "stack_offset": 0 }, { "address": "0x14000eb34", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14000eb36", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x11624]" + "operands": "qword ptr [rip + 0x11624]", + "stack_offset": 0 }, { "address": "0x14000eb3c", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75235,55 +84498,64 @@ "address": "0x14000eb1c", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1155e]" + "operands": "qword ptr [rip + 0x1155e]", + "stack_offset": 0 }, { "address": "0x14000eb22", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000eb25", "size": 2, "mnemonic": "mov", - "operands": "edx, ebx" + "operands": "edx, ebx", + "stack_offset": 0 }, { "address": "0x14000eb27", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1155b]" + "operands": "qword ptr [rip + 0x1155b]", + "stack_offset": 0 }, { "address": "0x14000eb2d", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14000eb2f", "size": 5, "mnemonic": "call", - "operands": "0x14000eb40" + "operands": "0x14000eb40", + "stack_offset": 0 }, { "address": "0x14000eb34", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14000eb36", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x11624]" + "operands": "qword ptr [rip + 0x11624]", + "stack_offset": 0 }, { "address": "0x14000eb3c", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75305,25 +84577,29 @@ "address": "0x14001ef10", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14001ef13", "size": 3, "mnemonic": "neg", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x14001ef16", "size": 6, "mnemonic": "test", - "operands": "rax, 7" + "operands": "rax, 7", + "stack_offset": 0 }, { "address": "0x14001ef1c", "size": 2, "mnemonic": "je", - "operands": "0x14001ef2d" + "operands": "0x14001ef2d", + "stack_offset": 0 } ], "successors": [ @@ -75341,61 +84617,71 @@ "address": "0x14001ef2d", "size": 10, "mnemonic": "movabs", - "operands": "r8, 0x7efefefefefefeff" + "operands": "r8, 0x7efefefefefefeff", + "stack_offset": 0 }, { "address": "0x14001ef37", "size": 10, "mnemonic": "movabs", - "operands": "r11, 0x8101010101010100" + "operands": "r11, 0x8101010101010100", + "stack_offset": 0 }, { "address": "0x14001ef41", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001ef44", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001ef47", "size": 4, "mnemonic": "add", - "operands": "rax, 8" + "operands": "rax, 8", + "stack_offset": 0 }, { "address": "0x14001ef4b", "size": 3, "mnemonic": "add", - "operands": "r9, rdx" + "operands": "r9, rdx", + "stack_offset": 0 }, { "address": "0x14001ef4e", "size": 3, "mnemonic": "not", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x14001ef51", "size": 3, "mnemonic": "xor", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001ef54", "size": 3, "mnemonic": "and", - "operands": "rdx, r11" + "operands": "rdx, r11", + "stack_offset": 0 }, { "address": "0x14001ef57", "size": 2, "mnemonic": "je", - "operands": "0x14001ef41" + "operands": "0x14001ef41", + "stack_offset": 0 } ], "successors": [ @@ -75413,31 +84699,36 @@ "address": "0x14001ef1e", "size": 2, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001ef20", "size": 2, "mnemonic": "mov", - "operands": "dl, byte ptr [rax]" + "operands": "dl, byte ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001ef22", "size": 3, "mnemonic": "inc", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x14001ef25", "size": 2, "mnemonic": "test", - "operands": "dl, dl" + "operands": "dl, dl", + "stack_offset": 0 }, { "address": "0x14001ef27", "size": 2, "mnemonic": "je", - "operands": "0x14001ef88" + "operands": "0x14001ef88", + "stack_offset": 0 } ], "successors": [ @@ -75455,49 +84746,57 @@ "address": "0x14001ef41", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001ef44", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001ef47", "size": 4, "mnemonic": "add", - "operands": "rax, 8" + "operands": "rax, 8", + "stack_offset": 0 }, { "address": "0x14001ef4b", "size": 3, "mnemonic": "add", - "operands": "r9, rdx" + "operands": "r9, rdx", + "stack_offset": 0 }, { "address": "0x14001ef4e", "size": 3, "mnemonic": "not", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x14001ef51", "size": 3, "mnemonic": "xor", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001ef54", "size": 3, "mnemonic": "and", - "operands": "rdx, r11" + "operands": "rdx, r11", + "stack_offset": 0 }, { "address": "0x14001ef57", "size": 2, "mnemonic": "je", - "operands": "0x14001ef41" + "operands": "0x14001ef41", + "stack_offset": 0 } ], "successors": [ @@ -75515,19 +84814,22 @@ "address": "0x14001ef59", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax - 8]" + "operands": "rdx, qword ptr [rax - 8]", + "stack_offset": 0 }, { "address": "0x14001ef5d", "size": 2, "mnemonic": "test", - "operands": "dl, dl" + "operands": "dl, dl", + "stack_offset": 0 }, { "address": "0x14001ef5f", "size": 2, "mnemonic": "je", - "operands": "0x14001efb2" + "operands": "0x14001efb2", + "stack_offset": 0 } ], "successors": [ @@ -75545,13 +84847,15 @@ "address": "0x14001ef88", "size": 5, "mnemonic": "lea", - "operands": "rax, [rax + rcx - 1]" + "operands": "rax, [rax + rcx - 1]", + "stack_offset": 0 }, { "address": "0x14001ef8d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75567,73 +84871,85 @@ "address": "0x14001ef29", "size": 2, "mnemonic": "test", - "operands": "al, 7" + "operands": "al, 7", + "stack_offset": 0 }, { "address": "0x14001ef2b", "size": 2, "mnemonic": "jne", - "operands": "0x14001ef20" + "operands": "0x14001ef20", + "stack_offset": 0 }, { "address": "0x14001ef2d", "size": 10, "mnemonic": "movabs", - "operands": "r8, 0x7efefefefefefeff" + "operands": "r8, 0x7efefefefefefeff", + "stack_offset": 0 }, { "address": "0x14001ef37", "size": 10, "mnemonic": "movabs", - "operands": "r11, 0x8101010101010100" + "operands": "r11, 0x8101010101010100", + "stack_offset": 0 }, { "address": "0x14001ef41", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001ef44", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001ef47", "size": 4, "mnemonic": "add", - "operands": "rax, 8" + "operands": "rax, 8", + "stack_offset": 0 }, { "address": "0x14001ef4b", "size": 3, "mnemonic": "add", - "operands": "r9, rdx" + "operands": "r9, rdx", + "stack_offset": 0 }, { "address": "0x14001ef4e", "size": 3, "mnemonic": "not", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 }, { "address": "0x14001ef51", "size": 3, "mnemonic": "xor", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001ef54", "size": 3, "mnemonic": "and", - "operands": "rdx, r11" + "operands": "rdx, r11", + "stack_offset": 0 }, { "address": "0x14001ef57", "size": 2, "mnemonic": "je", - "operands": "0x14001ef41" + "operands": "0x14001ef41", + "stack_offset": 0 } ], "successors": [ @@ -75651,13 +84967,15 @@ "address": "0x14001efb2", "size": 5, "mnemonic": "lea", - "operands": "rax, [rax + rcx - 8]" + "operands": "rax, [rax + rcx - 8]", + "stack_offset": 0 }, { "address": "0x14001efb7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75673,13 +84991,15 @@ "address": "0x14001ef61", "size": 2, "mnemonic": "test", - "operands": "dh, dh" + "operands": "dh, dh", + "stack_offset": 0 }, { "address": "0x14001ef63", "size": 2, "mnemonic": "je", - "operands": "0x14001efac" + "operands": "0x14001efac", + "stack_offset": 0 } ], "successors": [ @@ -75697,13 +85017,15 @@ "address": "0x14001efac", "size": 5, "mnemonic": "lea", - "operands": "rax, [rax + rcx - 7]" + "operands": "rax, [rax + rcx - 7]", + "stack_offset": 0 }, { "address": "0x14001efb1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75719,19 +85041,22 @@ "address": "0x14001ef65", "size": 4, "mnemonic": "shr", - "operands": "rdx, 0x10" + "operands": "rdx, 0x10", + "stack_offset": 0 }, { "address": "0x14001ef69", "size": 2, "mnemonic": "test", - "operands": "dl, dl" + "operands": "dl, dl", + "stack_offset": 0 }, { "address": "0x14001ef6b", "size": 2, "mnemonic": "je", - "operands": "0x14001efa6" + "operands": "0x14001efa6", + "stack_offset": 0 } ], "successors": [ @@ -75749,13 +85074,15 @@ "address": "0x14001efa6", "size": 5, "mnemonic": "lea", - "operands": "rax, [rax + rcx - 6]" + "operands": "rax, [rax + rcx - 6]", + "stack_offset": 0 }, { "address": "0x14001efab", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75771,13 +85098,15 @@ "address": "0x14001ef6d", "size": 2, "mnemonic": "test", - "operands": "dh, dh" + "operands": "dh, dh", + "stack_offset": 0 }, { "address": "0x14001ef6f", "size": 2, "mnemonic": "je", - "operands": "0x14001efa0" + "operands": "0x14001efa0", + "stack_offset": 0 } ], "successors": [ @@ -75795,13 +85124,15 @@ "address": "0x14001efa0", "size": 5, "mnemonic": "lea", - "operands": "rax, [rax + rcx - 5]" + "operands": "rax, [rax + rcx - 5]", + "stack_offset": 0 }, { "address": "0x14001efa5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75817,19 +85148,22 @@ "address": "0x14001ef71", "size": 4, "mnemonic": "shr", - "operands": "rdx, 0x10" + "operands": "rdx, 0x10", + "stack_offset": 0 }, { "address": "0x14001ef75", "size": 2, "mnemonic": "test", - "operands": "dl, dl" + "operands": "dl, dl", + "stack_offset": 0 }, { "address": "0x14001ef77", "size": 2, "mnemonic": "je", - "operands": "0x14001ef9a" + "operands": "0x14001ef9a", + "stack_offset": 0 } ], "successors": [ @@ -75847,13 +85181,15 @@ "address": "0x14001ef9a", "size": 5, "mnemonic": "lea", - "operands": "rax, [rax + rcx - 4]" + "operands": "rax, [rax + rcx - 4]", + "stack_offset": 0 }, { "address": "0x14001ef9f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75869,13 +85205,15 @@ "address": "0x14001ef79", "size": 2, "mnemonic": "test", - "operands": "dh, dh" + "operands": "dh, dh", + "stack_offset": 0 }, { "address": "0x14001ef7b", "size": 2, "mnemonic": "je", - "operands": "0x14001ef94" + "operands": "0x14001ef94", + "stack_offset": 0 } ], "successors": [ @@ -75893,13 +85231,15 @@ "address": "0x14001ef94", "size": 5, "mnemonic": "lea", - "operands": "rax, [rax + rcx - 3]" + "operands": "rax, [rax + rcx - 3]", + "stack_offset": 0 }, { "address": "0x14001ef99", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75915,19 +85255,22 @@ "address": "0x14001ef7d", "size": 3, "mnemonic": "shr", - "operands": "edx, 0x10" + "operands": "edx, 0x10", + "stack_offset": 0 }, { "address": "0x14001ef80", "size": 2, "mnemonic": "test", - "operands": "dl, dl" + "operands": "dl, dl", + "stack_offset": 0 }, { "address": "0x14001ef82", "size": 2, "mnemonic": "je", - "operands": "0x14001ef8e" + "operands": "0x14001ef8e", + "stack_offset": 0 } ], "successors": [ @@ -75945,13 +85288,15 @@ "address": "0x14001ef8e", "size": 5, "mnemonic": "lea", - "operands": "rax, [rax + rcx - 2]" + "operands": "rax, [rax + rcx - 2]", + "stack_offset": 0 }, { "address": "0x14001ef93", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -75967,25 +85312,29 @@ "address": "0x14001ef84", "size": 2, "mnemonic": "test", - "operands": "dh, dh" + "operands": "dh, dh", + "stack_offset": 0 }, { "address": "0x14001ef86", "size": 2, "mnemonic": "jne", - "operands": "0x14001ef41" + "operands": "0x14001ef41", + "stack_offset": 0 }, { "address": "0x14001ef88", "size": 5, "mnemonic": "lea", - "operands": "rax, [rax + rcx - 1]" + "operands": "rax, [rax + rcx - 1]", + "stack_offset": 0 }, { "address": "0x14001ef8d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -76007,67 +85356,78 @@ "address": "0x140002000", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x140002005", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000200a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rcx" + "operands": "qword ptr [rsp + 8], rcx", + "stack_offset": 0 }, { "address": "0x14000200f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140002010", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x140002014", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140002017", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000201a", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rax + 4]" + "operands": "rdx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x14000201e", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rdx + rcx + 0x48]" + "operands": "rsi, qword ptr [rdx + rcx + 0x48]", + "stack_offset": 0 }, { "address": "0x140002023", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x140002026", "size": 6, "mnemonic": "je", - "operands": "0x1400020cc" + "operands": "0x1400020cc", + "stack_offset": 0 } ], "successors": [ @@ -76085,43 +85445,50 @@ "address": "0x1400020cc", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x1400020cf", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400020d4", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x18]" + "operands": "rbx, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x1400020d8", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x20]" + "operands": "rsi, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x1400020dc", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x1400020df", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400020e0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -76137,31 +85504,36 @@ "address": "0x14000202c", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14000202f", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x28]" + "operands": "rcx, [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x140002034", "size": 5, "mnemonic": "call", - "operands": "0x140001ab0" + "operands": "0x140001ab0", + "stack_offset": 0 }, { "address": "0x140002039", "size": 5, "mnemonic": "cmp", - "operands": "byte ptr [rsp + 0x30], 0" + "operands": "byte ptr [rsp + 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000203e", "size": 2, "mnemonic": "je", - "operands": "0x14000209d" + "operands": "0x14000209d", + "stack_offset": 0 } ], "successors": [ @@ -76179,67 +85551,78 @@ "address": "0x14000209d", "size": 5, "mnemonic": "call", - "operands": "0x1400023f4" + "operands": "0x1400023f4", + "stack_offset": 0 }, { "address": "0x1400020a2", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400020a4", "size": 2, "mnemonic": "jne", - "operands": "0x1400020b0" + "operands": "0x1400020b0", + "stack_offset": 0 }, { "address": "0x1400020a6", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x28]" + "operands": "rcx, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x1400020ab", "size": 5, "mnemonic": "call", - "operands": "0x140001d10" + "operands": "0x140001d10", + "stack_offset": 0 }, { "address": "0x1400020b0", "size": 5, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsp + 0x28]" + "operands": "rdx, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x1400020b5", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400020b8", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x1400020bc", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rdx + 0x48]" + "operands": "rcx, qword ptr [rcx + rdx + 0x48]", + "stack_offset": 0 }, { "address": "0x1400020c1", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400020c4", "size": 2, "mnemonic": "je", - "operands": "0x1400020cc" + "operands": "0x1400020cc", + "stack_offset": 0 } ], "successors": [ @@ -76257,67 +85640,78 @@ "address": "0x140002040", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140002042", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], edi" + "operands": "dword ptr [rsp + 0x20], edi", + "stack_offset": 0 }, { "address": "0x140002046", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140002049", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14000204c", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x68]" + "operands": "qword ptr [rax + 0x68]", + "stack_offset": 0 }, { "address": "0x14000204f", "size": 3, "mnemonic": "mov", - "operands": "r8d, edi" + "operands": "r8d, edi", + "stack_offset": 0 }, { "address": "0x140002052", "size": 5, "mnemonic": "mov", - "operands": "edx, 4" + "operands": "edx, 4", + "stack_offset": 0 }, { "address": "0x140002057", "size": 3, "mnemonic": "cmp", - "operands": "eax, -1" + "operands": "eax, -1", + "stack_offset": 0 }, { "address": "0x14000205a", "size": 4, "mnemonic": "cmove", - "operands": "r8d, edx" + "operands": "r8d, edx", + "stack_offset": 0 }, { "address": "0x14000205e", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], r8d" + "operands": "dword ptr [rsp + 0x20], r8d", + "stack_offset": 0 }, { "address": "0x140002063", "size": 2, "mnemonic": "jmp", - "operands": "0x140002079" + "operands": "0x140002079", + "stack_offset": 0 } ], "successors": [ @@ -76334,55 +85728,64 @@ "address": "0x1400020c6", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x1400020c9", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x10]" + "operands": "qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400020cc", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x1400020cf", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400020d4", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x18]" + "operands": "rbx, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x1400020d8", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x20]" + "operands": "rsi, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x1400020dc", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x1400020df", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400020e0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -76398,127 +85801,148 @@ "address": "0x140002079", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000207c", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140002080", "size": 6, "mnemonic": "cmp", - "operands": "qword ptr [rcx + rbx + 0x48], 0" + "operands": "qword ptr [rcx + rbx + 0x48], 0", + "stack_offset": 0 }, { "address": "0x140002086", "size": 3, "mnemonic": "cmovne", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x140002089", "size": 4, "mnemonic": "or", - "operands": "edx, dword ptr [rcx + rbx + 0x10]" + "operands": "edx, dword ptr [rcx + rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x14000208d", "size": 3, "mnemonic": "or", - "operands": "edx, r8d" + "operands": "edx, r8d", + "stack_offset": 0 }, { "address": "0x140002090", "size": 3, "mnemonic": "and", - "operands": "edx, 0x17" + "operands": "edx, 0x17", + "stack_offset": 0 }, { "address": "0x140002093", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rcx + rbx + 0x10], edx" + "operands": "dword ptr [rcx + rbx + 0x10], edx", + "stack_offset": 0 }, { "address": "0x140002097", "size": 4, "mnemonic": "and", - "operands": "edx, dword ptr [rcx + rbx + 0x14]" + "operands": "edx, dword ptr [rcx + rbx + 0x14]", + "stack_offset": 0 }, { "address": "0x14000209b", "size": 2, "mnemonic": "jne", - "operands": "0x1400020e1" + "operands": "0x1400020e1", + "stack_offset": 0 }, { "address": "0x14000209d", "size": 5, "mnemonic": "call", - "operands": "0x1400023f4" + "operands": "0x1400023f4", + "stack_offset": 0 }, { "address": "0x1400020a2", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400020a4", "size": 2, "mnemonic": "jne", - "operands": "0x1400020b0" + "operands": "0x1400020b0", + "stack_offset": 0 }, { "address": "0x1400020a6", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x28]" + "operands": "rcx, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x1400020ab", "size": 5, "mnemonic": "call", - "operands": "0x140001d10" + "operands": "0x140001d10", + "stack_offset": 0 }, { "address": "0x1400020b0", "size": 5, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsp + 0x28]" + "operands": "rdx, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x1400020b5", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400020b8", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x1400020bc", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rdx + 0x48]" + "operands": "rcx, qword ptr [rcx + rdx + 0x48]", + "stack_offset": 0 }, { "address": "0x1400020c1", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400020c4", "size": 2, "mnemonic": "je", - "operands": "0x1400020cc" + "operands": "0x1400020cc", + "stack_offset": 0 } ], "successors": [ @@ -76542,7 +85966,8 @@ "address": "0x1400023f4", "size": 5, "mnemonic": "jmp", - "operands": "0x140006f50" + "operands": "0x140006f50", + "stack_offset": 0 } ], "successors": [ @@ -76559,37 +85984,43 @@ "address": "0x140006f50", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140006f54", "size": 5, "mnemonic": "call", - "operands": "0x14000747c" + "operands": "0x14000747c", + "stack_offset": 0 }, { "address": "0x140006f59", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140006f5c", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140006f5e", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140006f61", "size": 2, "mnemonic": "je", - "operands": "0x140006f69" + "operands": "0x140006f69", + "stack_offset": 0 } ], "successors": [ @@ -76607,13 +86038,15 @@ "address": "0x140006f69", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140006f6d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -76629,25 +86062,29 @@ "address": "0x140006f63", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rcx + 0x30], eax" + "operands": "dword ptr [rcx + 0x30], eax", + "stack_offset": 0 }, { "address": "0x140006f66", "size": 3, "mnemonic": "setg", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x140006f69", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140006f6d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -76669,55 +86106,64 @@ "address": "0x140001d10", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140001d12", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140001d16", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140001d19", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140001d1c", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rax + 4]" + "operands": "rdx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140001d20", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [rdx + rcx + 0x10], 0" + "operands": "dword ptr [rdx + rcx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140001d25", "size": 2, "mnemonic": "jne", - "operands": "0x140001d68" + "operands": "0x140001d68", + "stack_offset": 0 }, { "address": "0x140001d27", "size": 5, "mnemonic": "test", - "operands": "byte ptr [rdx + rcx + 0x18], 2" + "operands": "byte ptr [rdx + rcx + 0x18], 2", + "stack_offset": 0 }, { "address": "0x140001d2c", "size": 2, "mnemonic": "je", - "operands": "0x140001d68" + "operands": "0x140001d68", + "stack_offset": 0 } ], "successors": [ @@ -76735,19 +86181,22 @@ "address": "0x140001d68", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140001d6c", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140001d6d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -76763,121 +86212,141 @@ "address": "0x140001d2e", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdx + rcx + 0x48]" + "operands": "rcx, qword ptr [rdx + rcx + 0x48]", + "stack_offset": 0 }, { "address": "0x140001d33", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140001d36", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 0x68]" + "operands": "qword ptr [rax + 0x68]", + "stack_offset": 0 }, { "address": "0x140001d39", "size": 3, "mnemonic": "cmp", - "operands": "eax, -1" + "operands": "eax, -1", + "stack_offset": 0 }, { "address": "0x140001d3c", "size": 2, "mnemonic": "jne", - "operands": "0x140001d68" + "operands": "0x140001d68", + "stack_offset": 0 }, { "address": "0x140001d3e", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140001d41", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140001d45", "size": 5, "mnemonic": "mov", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x140001d4a", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140001d4c", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rcx + rbx + 0x48], rdx" + "operands": "qword ptr [rcx + rbx + 0x48], rdx", + "stack_offset": 0 }, { "address": "0x140001d51", "size": 3, "mnemonic": "cmovne", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x140001d54", "size": 4, "mnemonic": "or", - "operands": "eax, dword ptr [rcx + rbx + 0x10]" + "operands": "eax, dword ptr [rcx + rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x140001d58", "size": 3, "mnemonic": "and", - "operands": "eax, 0x13" + "operands": "eax, 0x13", + "stack_offset": 0 }, { "address": "0x140001d5b", "size": 3, "mnemonic": "or", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x140001d5e", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rcx + rbx + 0x10], eax" + "operands": "dword ptr [rcx + rbx + 0x10], eax", + "stack_offset": 0 }, { "address": "0x140001d62", "size": 4, "mnemonic": "and", - "operands": "eax, dword ptr [rcx + rbx + 0x14]" + "operands": "eax, dword ptr [rcx + rbx + 0x14]", + "stack_offset": 0 }, { "address": "0x140001d66", "size": 2, "mnemonic": "jne", - "operands": "0x140001d6e" + "operands": "0x140001d6e", + "stack_offset": 0 }, { "address": "0x140001d68", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140001d6c", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140001d6d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -76899,25 +86368,29 @@ "address": "0x140001df0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140001df4", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x1e65d]" + "operands": "rcx, [rip + 0x1e65d]", + "stack_offset": 0 }, { "address": "0x140001dfb", "size": 5, "mnemonic": "call", - "operands": "0x1400023ac" + "operands": "0x1400023ac", + "stack_offset": 0 }, { "address": "0x140001e00", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -76939,37 +86412,43 @@ "address": "0x140001410", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x140001414", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140001417", "size": 2, "mnemonic": "jne", - "operands": "0x140001420" + "operands": "0x140001420", + "stack_offset": 0 }, { "address": "0x140001419", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000141b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x14000141f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -76991,25 +86470,29 @@ "address": "0x14001e3e0", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14001e3e3", "size": 7, "mnemonic": "lea", - "operands": "r10, [rip - 0x1e3ea]" + "operands": "r10, [rip - 0x1e3ea]", + "stack_offset": 0 }, { "address": "0x14001e3ea", "size": 4, "mnemonic": "cmp", - "operands": "r8, 0xf" + "operands": "r8, 0xf", + "stack_offset": 0 }, { "address": "0x14001e3ee", "size": 6, "mnemonic": "ja", - "operands": "0x14001e500" + "operands": "0x14001e500", + "stack_offset": 0 } ], "successors": [ @@ -77027,13 +86510,15 @@ "address": "0x14001e500", "size": 4, "mnemonic": "cmp", - "operands": "r8, 0x20" + "operands": "r8, 0x20", + "stack_offset": 0 }, { "address": "0x14001e504", "size": 2, "mnemonic": "ja", - "operands": "0x14001e51d" + "operands": "0x14001e51d", + "stack_offset": 0 } ], "successors": [ @@ -77051,25 +86536,29 @@ "address": "0x14001e3f4", "size": 12, "mnemonic": "nop", - "operands": "word ptr [rax + rax]" + "operands": "word ptr [rax + rax]", + "stack_offset": 0 }, { "address": "0x14001e400", "size": 8, "mnemonic": "mov", - "operands": "r9d, dword ptr [r10 + r8*4 + 0x2ca10]" + "operands": "r9d, dword ptr [r10 + r8*4 + 0x2ca10]", + "stack_offset": 0 }, { "address": "0x14001e408", "size": 3, "mnemonic": "add", - "operands": "r9, r10" + "operands": "r9, r10", + "stack_offset": 0 }, { "address": "0x14001e40b", "size": 3, "mnemonic": "jmp", - "operands": "r9" + "operands": "r9", + "stack_offset": 0 } ], "successors": [ @@ -77085,31 +86574,36 @@ "address": "0x14001e51d", "size": 4, "mnemonic": "lea", - "operands": "r9, [rdx + r8]" + "operands": "r9, [rdx + r8]", + "stack_offset": 0 }, { "address": "0x14001e521", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x14001e524", "size": 4, "mnemonic": "cmovbe", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14001e528", "size": 3, "mnemonic": "cmp", - "operands": "rcx, r9" + "operands": "rcx, r9", + "stack_offset": 0 }, { "address": "0x14001e52b", "size": 6, "mnemonic": "jb", - "operands": "0x14001e970" + "operands": "0x14001e970", + "stack_offset": 0 } ], "successors": [ @@ -77127,31 +86621,36 @@ "address": "0x14001e506", "size": 4, "mnemonic": "movdqu", - "operands": "xmm1, xmmword ptr [rdx]" + "operands": "xmm1, xmmword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001e50a", "size": 7, "mnemonic": "movdqu", - "operands": "xmm2, xmmword ptr [rdx + r8 - 0x10]" + "operands": "xmm2, xmmword ptr [rdx + r8 - 0x10]", + "stack_offset": 0 }, { "address": "0x14001e511", "size": 4, "mnemonic": "movdqu", - "operands": "xmmword ptr [rcx], xmm1" + "operands": "xmmword ptr [rcx], xmm1", + "stack_offset": 0 }, { "address": "0x14001e515", "size": 7, "mnemonic": "movdqu", - "operands": "xmmword ptr [rcx + r8 - 0x10], xmm2" + "operands": "xmmword ptr [rcx + r8 - 0x10], xmm2", + "stack_offset": 0 }, { "address": "0x14001e51c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -77167,49 +86666,57 @@ "address": "0x14001e970", "size": 3, "mnemonic": "movups", - "operands": "xmm2, xmmword ptr [rdx]" + "operands": "xmm2, xmmword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001e973", "size": 3, "mnemonic": "sub", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14001e976", "size": 3, "mnemonic": "add", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x14001e979", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rcx + rdx - 0x10]" + "operands": "xmm0, xmmword ptr [rcx + rdx - 0x10]", + "stack_offset": 0 }, { "address": "0x14001e97e", "size": 4, "mnemonic": "sub", - "operands": "rcx, 0x10" + "operands": "rcx, 0x10", + "stack_offset": 0 }, { "address": "0x14001e982", "size": 4, "mnemonic": "sub", - "operands": "r8, 0x10" + "operands": "r8, 0x10", + "stack_offset": 0 }, { "address": "0x14001e986", "size": 3, "mnemonic": "test", - "operands": "cl, 0xf" + "operands": "cl, 0xf", + "stack_offset": 0 }, { "address": "0x14001e989", "size": 2, "mnemonic": "je", - "operands": "0x14001e9a3" + "operands": "0x14001e9a3", + "stack_offset": 0 } ], "successors": [ @@ -77227,13 +86734,15 @@ "address": "0x14001e531", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x12b60], 3" + "operands": "dword ptr [rip + 0x12b60], 3", + "stack_offset": 0 }, { "address": "0x14001e538", "size": 6, "mnemonic": "jb", - "operands": "0x14001e820" + "operands": "0x14001e820", + "stack_offset": 0 } ], "successors": [ @@ -77251,19 +86760,22 @@ "address": "0x14001e9a3", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001e9a6", "size": 4, "mnemonic": "shr", - "operands": "r9, 7" + "operands": "r9, 7", + "stack_offset": 0 }, { "address": "0x14001e9aa", "size": 2, "mnemonic": "je", - "operands": "0x14001ea1d" + "operands": "0x14001ea1d", + "stack_offset": 0 } ], "successors": [ @@ -77281,61 +86793,71 @@ "address": "0x14001e98b", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14001e98e", "size": 4, "mnemonic": "and", - "operands": "rcx, 0xfffffffffffffff0" + "operands": "rcx, 0xfffffffffffffff0", + "stack_offset": 0 }, { "address": "0x14001e992", "size": 3, "mnemonic": "movups", - "operands": "xmm1, xmm0" + "operands": "xmm1, xmm0", + "stack_offset": 0 }, { "address": "0x14001e995", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rcx + rdx]" + "operands": "xmm0, xmmword ptr [rcx + rdx]", + "stack_offset": 0 }, { "address": "0x14001e999", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [r9], xmm1" + "operands": "xmmword ptr [r9], xmm1", + "stack_offset": 0 }, { "address": "0x14001e99d", "size": 3, "mnemonic": "mov", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x14001e9a0", "size": 3, "mnemonic": "sub", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14001e9a3", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001e9a6", "size": 4, "mnemonic": "shr", - "operands": "r9, 7" + "operands": "r9, 7", + "stack_offset": 0 }, { "address": "0x14001e9aa", "size": 2, "mnemonic": "je", - "operands": "0x14001ea1d" + "operands": "0x14001ea1d", + "stack_offset": 0 } ], "successors": [ @@ -77353,271 +86875,316 @@ "address": "0x14001e820", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x800" + "operands": "r8, 0x800", + "stack_offset": 0 }, { "address": "0x14001e827", "size": 2, "mnemonic": "jbe", - "operands": "0x14001e836" + "operands": "0x14001e836", + "stack_offset": 0 }, { "address": "0x14001e829", "size": 7, "mnemonic": "test", - "operands": "byte ptr [rip + 0x13f0c], 2" + "operands": "byte ptr [rip + 0x13f0c], 2", + "stack_offset": 0 }, { "address": "0x14001e830", "size": 6, "mnemonic": "jne", - "operands": "0x14001e3d0" + "operands": "0x14001e3d0", + "stack_offset": 0 }, { "address": "0x14001e836", "size": 4, "mnemonic": "movdqu", - "operands": "xmm0, xmmword ptr [rdx]" + "operands": "xmm0, xmmword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001e83a", "size": 7, "mnemonic": "movdqu", - "operands": "xmm5, xmmword ptr [rdx + r8 - 0x10]" + "operands": "xmm5, xmmword ptr [rdx + r8 - 0x10]", + "stack_offset": 0 }, { "address": "0x14001e841", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x80" + "operands": "r8, 0x80", + "stack_offset": 0 }, { "address": "0x14001e848", "size": 6, "mnemonic": "jbe", - "operands": "0x14001e8dc" + "operands": "0x14001e8dc", + "stack_offset": 0 }, { "address": "0x14001e84e", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14001e851", "size": 4, "mnemonic": "and", - "operands": "r9, 0xf" + "operands": "r9, 0xf", + "stack_offset": 0 }, { "address": "0x14001e855", "size": 4, "mnemonic": "sub", - "operands": "r9, 0x10" + "operands": "r9, 0x10", + "stack_offset": 0 }, { "address": "0x14001e859", "size": 3, "mnemonic": "sub", - "operands": "rcx, r9" + "operands": "rcx, r9", + "stack_offset": 0 }, { "address": "0x14001e85c", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001e85f", "size": 3, "mnemonic": "add", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x14001e862", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x80" + "operands": "r8, 0x80", + "stack_offset": 0 }, { "address": "0x14001e869", "size": 2, "mnemonic": "jbe", - "operands": "0x14001e8dc" + "operands": "0x14001e8dc", + "stack_offset": 0 }, { "address": "0x14001e86b", "size": 5, "mnemonic": "nop", - "operands": "dword ptr [rax + rax]" + "operands": "dword ptr [rax + rax]", + "stack_offset": 0 }, { "address": "0x14001e870", "size": 4, "mnemonic": "movdqu", - "operands": "xmm1, xmmword ptr [rdx]" + "operands": "xmm1, xmmword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001e874", "size": 5, "mnemonic": "movdqu", - "operands": "xmm2, xmmword ptr [rdx + 0x10]" + "operands": "xmm2, xmmword ptr [rdx + 0x10]", + "stack_offset": 0 }, { "address": "0x14001e879", "size": 5, "mnemonic": "movdqu", - "operands": "xmm3, xmmword ptr [rdx + 0x20]" + "operands": "xmm3, xmmword ptr [rdx + 0x20]", + "stack_offset": 0 }, { "address": "0x14001e87e", "size": 5, "mnemonic": "movdqu", - "operands": "xmm4, xmmword ptr [rdx + 0x30]" + "operands": "xmm4, xmmword ptr [rdx + 0x30]", + "stack_offset": 0 }, { "address": "0x14001e883", "size": 4, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx], xmm1" + "operands": "xmmword ptr [rcx], xmm1", + "stack_offset": 0 }, { "address": "0x14001e887", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x10], xmm2" + "operands": "xmmword ptr [rcx + 0x10], xmm2", + "stack_offset": 0 }, { "address": "0x14001e88c", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x20], xmm3" + "operands": "xmmword ptr [rcx + 0x20], xmm3", + "stack_offset": 0 }, { "address": "0x14001e891", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x30], xmm4" + "operands": "xmmword ptr [rcx + 0x30], xmm4", + "stack_offset": 0 }, { "address": "0x14001e896", "size": 5, "mnemonic": "movdqu", - "operands": "xmm1, xmmword ptr [rdx + 0x40]" + "operands": "xmm1, xmmword ptr [rdx + 0x40]", + "stack_offset": 0 }, { "address": "0x14001e89b", "size": 5, "mnemonic": "movdqu", - "operands": "xmm2, xmmword ptr [rdx + 0x50]" + "operands": "xmm2, xmmword ptr [rdx + 0x50]", + "stack_offset": 0 }, { "address": "0x14001e8a0", "size": 5, "mnemonic": "movdqu", - "operands": "xmm3, xmmword ptr [rdx + 0x60]" + "operands": "xmm3, xmmword ptr [rdx + 0x60]", + "stack_offset": 0 }, { "address": "0x14001e8a5", "size": 5, "mnemonic": "movdqu", - "operands": "xmm4, xmmword ptr [rdx + 0x70]" + "operands": "xmm4, xmmword ptr [rdx + 0x70]", + "stack_offset": 0 }, { "address": "0x14001e8aa", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x40], xmm1" + "operands": "xmmword ptr [rcx + 0x40], xmm1", + "stack_offset": 0 }, { "address": "0x14001e8af", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x50], xmm2" + "operands": "xmmword ptr [rcx + 0x50], xmm2", + "stack_offset": 0 }, { "address": "0x14001e8b4", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x60], xmm3" + "operands": "xmmword ptr [rcx + 0x60], xmm3", + "stack_offset": 0 }, { "address": "0x14001e8b9", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rcx + 0x70], xmm4" + "operands": "xmmword ptr [rcx + 0x70], xmm4", + "stack_offset": 0 }, { "address": "0x14001e8be", "size": 7, "mnemonic": "add", - "operands": "rcx, 0x80" + "operands": "rcx, 0x80", + "stack_offset": 0 }, { "address": "0x14001e8c5", "size": 7, "mnemonic": "add", - "operands": "rdx, 0x80" + "operands": "rdx, 0x80", + "stack_offset": 0 }, { "address": "0x14001e8cc", "size": 7, "mnemonic": "sub", - "operands": "r8, 0x80" + "operands": "r8, 0x80", + "stack_offset": 0 }, { "address": "0x14001e8d3", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x80" + "operands": "r8, 0x80", + "stack_offset": 0 }, { "address": "0x14001e8da", "size": 2, "mnemonic": "jae", - "operands": "0x14001e870" + "operands": "0x14001e870", + "stack_offset": 0 }, { "address": "0x14001e8dc", "size": 4, "mnemonic": "lea", - "operands": "r9, [r8 + 0xf]" + "operands": "r9, [r8 + 0xf]", + "stack_offset": 0 }, { "address": "0x14001e8e0", "size": 4, "mnemonic": "and", - "operands": "r9, 0xfffffffffffffff0" + "operands": "r9, 0xfffffffffffffff0", + "stack_offset": 0 }, { "address": "0x14001e8e4", "size": 3, "mnemonic": "mov", - "operands": "r11, r9" + "operands": "r11, r9", + "stack_offset": 0 }, { "address": "0x14001e8e7", "size": 4, "mnemonic": "shr", - "operands": "r11, 4" + "operands": "r11, 4", + "stack_offset": 0 }, { "address": "0x14001e8eb", "size": 8, "mnemonic": "mov", - "operands": "r11d, dword ptr [r10 + r11*4 + 0x2ca98]" + "operands": "r11d, dword ptr [r10 + r11*4 + 0x2ca98]", + "stack_offset": 0 }, { "address": "0x14001e8f3", "size": 3, "mnemonic": "add", - "operands": "r11, r10" + "operands": "r11, r10", + "stack_offset": 0 }, { "address": "0x14001e8f6", "size": 3, "mnemonic": "jmp", - "operands": "r11" + "operands": "r11", + "stack_offset": 0 } ], "successors": [ @@ -77633,25 +87200,29 @@ "address": "0x14001e53e", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x2000" + "operands": "r8, 0x2000", + "stack_offset": 0 }, { "address": "0x14001e545", "size": 2, "mnemonic": "jbe", - "operands": "0x14001e55d" + "operands": "0x14001e55d", + "stack_offset": 0 }, { "address": "0x14001e547", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x180000" + "operands": "r8, 0x180000", + "stack_offset": 0 }, { "address": "0x14001e54e", "size": 2, "mnemonic": "ja", - "operands": "0x14001e55d" + "operands": "0x14001e55d", + "stack_offset": 0 } ], "successors": [ @@ -77669,19 +87240,22 @@ "address": "0x14001ea1d", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001ea20", "size": 4, "mnemonic": "shr", - "operands": "r9, 4" + "operands": "r9, 4", + "stack_offset": 0 }, { "address": "0x14001ea24", "size": 2, "mnemonic": "je", - "operands": "0x14001ea40" + "operands": "0x14001ea40", + "stack_offset": 0 } ], "successors": [ @@ -77699,13 +87273,15 @@ "address": "0x14001e9ac", "size": 3, "mnemonic": "movaps", - "operands": "xmmword ptr [rcx], xmm0" + "operands": "xmmword ptr [rcx], xmm0", + "stack_offset": 0 }, { "address": "0x14001e9af", "size": 2, "mnemonic": "jmp", - "operands": "0x14001e9c7" + "operands": "0x14001e9c7", + "stack_offset": 0 } ], "successors": [ @@ -77722,85 +87298,99 @@ "address": "0x14001e55d", "size": 4, "mnemonic": "vmovdqu", - "operands": "ymm0, ymmword ptr [rdx]" + "operands": "ymm0, ymmword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001e561", "size": 7, "mnemonic": "vmovdqu", - "operands": "ymm5, ymmword ptr [rdx + r8 - 0x20]" + "operands": "ymm5, ymmword ptr [rdx + r8 - 0x20]", + "stack_offset": 0 }, { "address": "0x14001e568", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001e56f", "size": 6, "mnemonic": "jbe", - "operands": "0x14001e638" + "operands": "0x14001e638", + "stack_offset": 0 }, { "address": "0x14001e575", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14001e578", "size": 4, "mnemonic": "and", - "operands": "r9, 0x1f" + "operands": "r9, 0x1f", + "stack_offset": 0 }, { "address": "0x14001e57c", "size": 4, "mnemonic": "sub", - "operands": "r9, 0x20" + "operands": "r9, 0x20", + "stack_offset": 0 }, { "address": "0x14001e580", "size": 3, "mnemonic": "sub", - "operands": "rcx, r9" + "operands": "rcx, r9", + "stack_offset": 0 }, { "address": "0x14001e583", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001e586", "size": 3, "mnemonic": "add", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x14001e589", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001e590", "size": 6, "mnemonic": "jbe", - "operands": "0x14001e638" + "operands": "0x14001e638", + "stack_offset": 0 }, { "address": "0x14001e596", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x180000" + "operands": "r8, 0x180000", + "stack_offset": 0 }, { "address": "0x14001e59d", "size": 6, "mnemonic": "ja", - "operands": "0x14001e6e0" + "operands": "0x14001e6e0", + "stack_offset": 0 } ], "successors": [ @@ -77818,97 +87408,113 @@ "address": "0x14001e550", "size": 7, "mnemonic": "test", - "operands": "byte ptr [rip + 0x141e5], 2" + "operands": "byte ptr [rip + 0x141e5], 2", + "stack_offset": 0 }, { "address": "0x14001e557", "size": 6, "mnemonic": "jne", - "operands": "0x14001e3d0" + "operands": "0x14001e3d0", + "stack_offset": 0 }, { "address": "0x14001e55d", "size": 4, "mnemonic": "vmovdqu", - "operands": "ymm0, ymmword ptr [rdx]" + "operands": "ymm0, ymmword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001e561", "size": 7, "mnemonic": "vmovdqu", - "operands": "ymm5, ymmword ptr [rdx + r8 - 0x20]" + "operands": "ymm5, ymmword ptr [rdx + r8 - 0x20]", + "stack_offset": 0 }, { "address": "0x14001e568", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001e56f", "size": 6, "mnemonic": "jbe", - "operands": "0x14001e638" + "operands": "0x14001e638", + "stack_offset": 0 }, { "address": "0x14001e575", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14001e578", "size": 4, "mnemonic": "and", - "operands": "r9, 0x1f" + "operands": "r9, 0x1f", + "stack_offset": 0 }, { "address": "0x14001e57c", "size": 4, "mnemonic": "sub", - "operands": "r9, 0x20" + "operands": "r9, 0x20", + "stack_offset": 0 }, { "address": "0x14001e580", "size": 3, "mnemonic": "sub", - "operands": "rcx, r9" + "operands": "rcx, r9", + "stack_offset": 0 }, { "address": "0x14001e583", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001e586", "size": 3, "mnemonic": "add", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x14001e589", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001e590", "size": 6, "mnemonic": "jbe", - "operands": "0x14001e638" + "operands": "0x14001e638", + "stack_offset": 0 }, { "address": "0x14001e596", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x180000" + "operands": "r8, 0x180000", + "stack_offset": 0 }, { "address": "0x14001e59d", "size": 6, "mnemonic": "ja", - "operands": "0x14001e6e0" + "operands": "0x14001e6e0", + "stack_offset": 0 } ], "successors": [ @@ -77926,13 +87532,15 @@ "address": "0x14001ea40", "size": 4, "mnemonic": "and", - "operands": "r8, 0xf" + "operands": "r8, 0xf", + "stack_offset": 0 }, { "address": "0x14001ea44", "size": 2, "mnemonic": "je", - "operands": "0x14001ea49" + "operands": "0x14001ea49", + "stack_offset": 0 } ], "successors": [ @@ -77950,49 +87558,57 @@ "address": "0x14001ea26", "size": 10, "mnemonic": "nop", - "operands": "word ptr [rax + rax]" + "operands": "word ptr [rax + rax]", + "stack_offset": 0 }, { "address": "0x14001ea30", "size": 3, "mnemonic": "movups", - "operands": "xmmword ptr [rcx], xmm0" + "operands": "xmmword ptr [rcx], xmm0", + "stack_offset": 0 }, { "address": "0x14001ea33", "size": 4, "mnemonic": "sub", - "operands": "rcx, 0x10" + "operands": "rcx, 0x10", + "stack_offset": 0 }, { "address": "0x14001ea37", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rcx + rdx]" + "operands": "xmm0, xmmword ptr [rcx + rdx]", + "stack_offset": 0 }, { "address": "0x14001ea3b", "size": 3, "mnemonic": "dec", - "operands": "r9" + "operands": "r9", + "stack_offset": 0 }, { "address": "0x14001ea3e", "size": 2, "mnemonic": "jne", - "operands": "0x14001ea30" + "operands": "0x14001ea30", + "stack_offset": 0 }, { "address": "0x14001ea40", "size": 4, "mnemonic": "and", - "operands": "r8, 0xf" + "operands": "r8, 0xf", + "stack_offset": 0 }, { "address": "0x14001ea44", "size": 2, "mnemonic": "je", - "operands": "0x14001ea49" + "operands": "0x14001ea49", + "stack_offset": 0 } ], "successors": [ @@ -78010,139 +87626,162 @@ "address": "0x14001e9c7", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rcx + rdx - 0x10]" + "operands": "xmm0, xmmword ptr [rcx + rdx - 0x10]", + "stack_offset": 0 }, { "address": "0x14001e9cc", "size": 5, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rcx + rdx - 0x20]" + "operands": "xmm1, xmmword ptr [rcx + rdx - 0x20]", + "stack_offset": 0 }, { "address": "0x14001e9d1", "size": 7, "mnemonic": "sub", - "operands": "rcx, 0x80" + "operands": "rcx, 0x80", + "stack_offset": 0 }, { "address": "0x14001e9d8", "size": 4, "mnemonic": "movaps", - "operands": "xmmword ptr [rcx + 0x70], xmm0" + "operands": "xmmword ptr [rcx + 0x70], xmm0", + "stack_offset": 0 }, { "address": "0x14001e9dc", "size": 4, "mnemonic": "movaps", - "operands": "xmmword ptr [rcx + 0x60], xmm1" + "operands": "xmmword ptr [rcx + 0x60], xmm1", + "stack_offset": 0 }, { "address": "0x14001e9e0", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rcx + rdx + 0x50]" + "operands": "xmm0, xmmword ptr [rcx + rdx + 0x50]", + "stack_offset": 0 }, { "address": "0x14001e9e5", "size": 5, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rcx + rdx + 0x40]" + "operands": "xmm1, xmmword ptr [rcx + rdx + 0x40]", + "stack_offset": 0 }, { "address": "0x14001e9ea", "size": 3, "mnemonic": "dec", - "operands": "r9" + "operands": "r9", + "stack_offset": 0 }, { "address": "0x14001e9ed", "size": 4, "mnemonic": "movaps", - "operands": "xmmword ptr [rcx + 0x50], xmm0" + "operands": "xmmword ptr [rcx + 0x50], xmm0", + "stack_offset": 0 }, { "address": "0x14001e9f1", "size": 4, "mnemonic": "movaps", - "operands": "xmmword ptr [rcx + 0x40], xmm1" + "operands": "xmmword ptr [rcx + 0x40], xmm1", + "stack_offset": 0 }, { "address": "0x14001e9f5", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rcx + rdx + 0x30]" + "operands": "xmm0, xmmword ptr [rcx + rdx + 0x30]", + "stack_offset": 0 }, { "address": "0x14001e9fa", "size": 5, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rcx + rdx + 0x20]" + "operands": "xmm1, xmmword ptr [rcx + rdx + 0x20]", + "stack_offset": 0 }, { "address": "0x14001e9ff", "size": 4, "mnemonic": "movaps", - "operands": "xmmword ptr [rcx + 0x30], xmm0" + "operands": "xmmword ptr [rcx + 0x30], xmm0", + "stack_offset": 0 }, { "address": "0x14001ea03", "size": 4, "mnemonic": "movaps", - "operands": "xmmword ptr [rcx + 0x20], xmm1" + "operands": "xmmword ptr [rcx + 0x20], xmm1", + "stack_offset": 0 }, { "address": "0x14001ea07", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rcx + rdx + 0x10]" + "operands": "xmm0, xmmword ptr [rcx + rdx + 0x10]", + "stack_offset": 0 }, { "address": "0x14001ea0c", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rcx + rdx]" + "operands": "xmm1, xmmword ptr [rcx + rdx]", + "stack_offset": 0 }, { "address": "0x14001ea10", "size": 2, "mnemonic": "jne", - "operands": "0x14001e9c0" + "operands": "0x14001e9c0", + "stack_offset": 0 }, { "address": "0x14001ea12", "size": 4, "mnemonic": "movaps", - "operands": "xmmword ptr [rcx + 0x10], xmm0" + "operands": "xmmword ptr [rcx + 0x10], xmm0", + "stack_offset": 0 }, { "address": "0x14001ea16", "size": 4, "mnemonic": "and", - "operands": "r8, 0x7f" + "operands": "r8, 0x7f", + "stack_offset": 0 }, { "address": "0x14001ea1a", "size": 3, "mnemonic": "movaps", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x14001ea1d", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001ea20", "size": 4, "mnemonic": "shr", - "operands": "r9, 4" + "operands": "r9, 4", + "stack_offset": 0 }, { "address": "0x14001ea24", "size": 2, "mnemonic": "je", - "operands": "0x14001ea40" + "operands": "0x14001ea40", + "stack_offset": 0 } ], "successors": [ @@ -78160,169 +87799,197 @@ "address": "0x14001e6e0", "size": 4, "mnemonic": "vmovdqu", - "operands": "ymm1, ymmword ptr [rdx]" + "operands": "ymm1, ymmword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001e6e4", "size": 5, "mnemonic": "vmovdqu", - "operands": "ymm2, ymmword ptr [rdx + 0x20]" + "operands": "ymm2, ymmword ptr [rdx + 0x20]", + "stack_offset": 0 }, { "address": "0x14001e6e9", "size": 5, "mnemonic": "vmovdqu", - "operands": "ymm3, ymmword ptr [rdx + 0x40]" + "operands": "ymm3, ymmword ptr [rdx + 0x40]", + "stack_offset": 0 }, { "address": "0x14001e6ee", "size": 5, "mnemonic": "vmovdqu", - "operands": "ymm4, ymmword ptr [rdx + 0x60]" + "operands": "ymm4, ymmword ptr [rdx + 0x60]", + "stack_offset": 0 }, { "address": "0x14001e6f3", "size": 4, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx], ymm1" + "operands": "ymmword ptr [rcx], ymm1", + "stack_offset": 0 }, { "address": "0x14001e6f7", "size": 5, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0x20], ymm2" + "operands": "ymmword ptr [rcx + 0x20], ymm2", + "stack_offset": 0 }, { "address": "0x14001e6fc", "size": 5, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0x40], ymm3" + "operands": "ymmword ptr [rcx + 0x40], ymm3", + "stack_offset": 0 }, { "address": "0x14001e701", "size": 5, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0x60], ymm4" + "operands": "ymmword ptr [rcx + 0x60], ymm4", + "stack_offset": 0 }, { "address": "0x14001e706", "size": 8, "mnemonic": "vmovdqu", - "operands": "ymm1, ymmword ptr [rdx + 0x80]" + "operands": "ymm1, ymmword ptr [rdx + 0x80]", + "stack_offset": 0 }, { "address": "0x14001e70e", "size": 8, "mnemonic": "vmovdqu", - "operands": "ymm2, ymmword ptr [rdx + 0xa0]" + "operands": "ymm2, ymmword ptr [rdx + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001e716", "size": 8, "mnemonic": "vmovdqu", - "operands": "ymm3, ymmword ptr [rdx + 0xc0]" + "operands": "ymm3, ymmword ptr [rdx + 0xc0]", + "stack_offset": 0 }, { "address": "0x14001e71e", "size": 8, "mnemonic": "vmovdqu", - "operands": "ymm4, ymmword ptr [rdx + 0xe0]" + "operands": "ymm4, ymmword ptr [rdx + 0xe0]", + "stack_offset": 0 }, { "address": "0x14001e726", "size": 8, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0x80], ymm1" + "operands": "ymmword ptr [rcx + 0x80], ymm1", + "stack_offset": 0 }, { "address": "0x14001e72e", "size": 8, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0xa0], ymm2" + "operands": "ymmword ptr [rcx + 0xa0], ymm2", + "stack_offset": 0 }, { "address": "0x14001e736", "size": 8, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0xc0], ymm3" + "operands": "ymmword ptr [rcx + 0xc0], ymm3", + "stack_offset": 0 }, { "address": "0x14001e73e", "size": 8, "mnemonic": "vmovntdq", - "operands": "ymmword ptr [rcx + 0xe0], ymm4" + "operands": "ymmword ptr [rcx + 0xe0], ymm4", + "stack_offset": 0 }, { "address": "0x14001e746", "size": 7, "mnemonic": "add", - "operands": "rcx, 0x100" + "operands": "rcx, 0x100", + "stack_offset": 0 }, { "address": "0x14001e74d", "size": 7, "mnemonic": "add", - "operands": "rdx, 0x100" + "operands": "rdx, 0x100", + "stack_offset": 0 }, { "address": "0x14001e754", "size": 7, "mnemonic": "sub", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001e75b", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001e762", "size": 6, "mnemonic": "jae", - "operands": "0x14001e6e0" + "operands": "0x14001e6e0", + "stack_offset": 0 }, { "address": "0x14001e768", "size": 4, "mnemonic": "lea", - "operands": "r9, [r8 + 0x1f]" + "operands": "r9, [r8 + 0x1f]", + "stack_offset": 0 }, { "address": "0x14001e76c", "size": 4, "mnemonic": "and", - "operands": "r9, 0xffffffffffffffe0" + "operands": "r9, 0xffffffffffffffe0", + "stack_offset": 0 }, { "address": "0x14001e770", "size": 3, "mnemonic": "mov", - "operands": "r11, r9" + "operands": "r11, r9", + "stack_offset": 0 }, { "address": "0x14001e773", "size": 4, "mnemonic": "shr", - "operands": "r11, 5" + "operands": "r11, 5", + "stack_offset": 0 }, { "address": "0x14001e777", "size": 8, "mnemonic": "mov", - "operands": "r11d, dword ptr [r10 + r11*4 + 0x2ca74]" + "operands": "r11d, dword ptr [r10 + r11*4 + 0x2ca74]", + "stack_offset": 0 }, { "address": "0x14001e77f", "size": 3, "mnemonic": "add", - "operands": "r11, r10" + "operands": "r11, r10", + "stack_offset": 0 }, { "address": "0x14001e782", "size": 3, "mnemonic": "jmp", - "operands": "r11" + "operands": "r11", + "stack_offset": 0 } ], "successors": [ @@ -78338,175 +88005,204 @@ "address": "0x14001e5a3", "size": 13, "mnemonic": "nop", - "operands": "word ptr [rax + rax]" + "operands": "word ptr [rax + rax]", + "stack_offset": 0 }, { "address": "0x14001e5b0", "size": 4, "mnemonic": "vmovdqu", - "operands": "ymm1, ymmword ptr [rdx]" + "operands": "ymm1, ymmword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001e5b4", "size": 5, "mnemonic": "vmovdqu", - "operands": "ymm2, ymmword ptr [rdx + 0x20]" + "operands": "ymm2, ymmword ptr [rdx + 0x20]", + "stack_offset": 0 }, { "address": "0x14001e5b9", "size": 5, "mnemonic": "vmovdqu", - "operands": "ymm3, ymmword ptr [rdx + 0x40]" + "operands": "ymm3, ymmword ptr [rdx + 0x40]", + "stack_offset": 0 }, { "address": "0x14001e5be", "size": 5, "mnemonic": "vmovdqu", - "operands": "ymm4, ymmword ptr [rdx + 0x60]" + "operands": "ymm4, ymmword ptr [rdx + 0x60]", + "stack_offset": 0 }, { "address": "0x14001e5c3", "size": 4, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx], ymm1" + "operands": "ymmword ptr [rcx], ymm1", + "stack_offset": 0 }, { "address": "0x14001e5c7", "size": 5, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0x20], ymm2" + "operands": "ymmword ptr [rcx + 0x20], ymm2", + "stack_offset": 0 }, { "address": "0x14001e5cc", "size": 5, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0x40], ymm3" + "operands": "ymmword ptr [rcx + 0x40], ymm3", + "stack_offset": 0 }, { "address": "0x14001e5d1", "size": 5, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0x60], ymm4" + "operands": "ymmword ptr [rcx + 0x60], ymm4", + "stack_offset": 0 }, { "address": "0x14001e5d6", "size": 8, "mnemonic": "vmovdqu", - "operands": "ymm1, ymmword ptr [rdx + 0x80]" + "operands": "ymm1, ymmword ptr [rdx + 0x80]", + "stack_offset": 0 }, { "address": "0x14001e5de", "size": 8, "mnemonic": "vmovdqu", - "operands": "ymm2, ymmword ptr [rdx + 0xa0]" + "operands": "ymm2, ymmword ptr [rdx + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001e5e6", "size": 8, "mnemonic": "vmovdqu", - "operands": "ymm3, ymmword ptr [rdx + 0xc0]" + "operands": "ymm3, ymmword ptr [rdx + 0xc0]", + "stack_offset": 0 }, { "address": "0x14001e5ee", "size": 8, "mnemonic": "vmovdqu", - "operands": "ymm4, ymmword ptr [rdx + 0xe0]" + "operands": "ymm4, ymmword ptr [rdx + 0xe0]", + "stack_offset": 0 }, { "address": "0x14001e5f6", "size": 8, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0x80], ymm1" + "operands": "ymmword ptr [rcx + 0x80], ymm1", + "stack_offset": 0 }, { "address": "0x14001e5fe", "size": 8, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0xa0], ymm2" + "operands": "ymmword ptr [rcx + 0xa0], ymm2", + "stack_offset": 0 }, { "address": "0x14001e606", "size": 8, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0xc0], ymm3" + "operands": "ymmword ptr [rcx + 0xc0], ymm3", + "stack_offset": 0 }, { "address": "0x14001e60e", "size": 8, "mnemonic": "vmovdqa", - "operands": "ymmword ptr [rcx + 0xe0], ymm4" + "operands": "ymmword ptr [rcx + 0xe0], ymm4", + "stack_offset": 0 }, { "address": "0x14001e616", "size": 7, "mnemonic": "add", - "operands": "rcx, 0x100" + "operands": "rcx, 0x100", + "stack_offset": 0 }, { "address": "0x14001e61d", "size": 7, "mnemonic": "add", - "operands": "rdx, 0x100" + "operands": "rdx, 0x100", + "stack_offset": 0 }, { "address": "0x14001e624", "size": 7, "mnemonic": "sub", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001e62b", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x100" + "operands": "r8, 0x100", + "stack_offset": 0 }, { "address": "0x14001e632", "size": 6, "mnemonic": "jae", - "operands": "0x14001e5b0" + "operands": "0x14001e5b0", + "stack_offset": 0 }, { "address": "0x14001e638", "size": 4, "mnemonic": "lea", - "operands": "r9, [r8 + 0x1f]" + "operands": "r9, [r8 + 0x1f]", + "stack_offset": 0 }, { "address": "0x14001e63c", "size": 4, "mnemonic": "and", - "operands": "r9, 0xffffffffffffffe0" + "operands": "r9, 0xffffffffffffffe0", + "stack_offset": 0 }, { "address": "0x14001e640", "size": 3, "mnemonic": "mov", - "operands": "r11, r9" + "operands": "r11, r9", + "stack_offset": 0 }, { "address": "0x14001e643", "size": 4, "mnemonic": "shr", - "operands": "r11, 5" + "operands": "r11, 5", + "stack_offset": 0 }, { "address": "0x14001e647", "size": 8, "mnemonic": "mov", - "operands": "r11d, dword ptr [r10 + r11*4 + 0x2ca50]" + "operands": "r11d, dword ptr [r10 + r11*4 + 0x2ca50]", + "stack_offset": 0 }, { "address": "0x14001e64f", "size": 3, "mnemonic": "add", - "operands": "r11, r10" + "operands": "r11, r10", + "stack_offset": 0 }, { "address": "0x14001e652", "size": 3, "mnemonic": "jmp", - "operands": "r11" + "operands": "r11", + "stack_offset": 0 } ], "successors": [ @@ -78522,13 +88218,15 @@ "address": "0x14001ea49", "size": 3, "mnemonic": "movups", - "operands": "xmmword ptr [rcx], xmm0" + "operands": "xmmword ptr [rcx], xmm0", + "stack_offset": 0 }, { "address": "0x14001ea4c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -78544,19 +88242,22 @@ "address": "0x14001ea46", "size": 3, "mnemonic": "movups", - "operands": "xmmword ptr [rax], xmm2" + "operands": "xmmword ptr [rax], xmm2", + "stack_offset": 0 }, { "address": "0x14001ea49", "size": 3, "mnemonic": "movups", - "operands": "xmmword ptr [rcx], xmm0" + "operands": "xmmword ptr [rcx], xmm0", + "stack_offset": 0 }, { "address": "0x14001ea4c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -78578,97 +88279,113 @@ "address": "0x140001e10", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbx" + "operands": "qword ptr [rsp + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x140001e15", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140001e16", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140001e17", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140001e19", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140001e1b", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140001e1d", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140001e21", "size": 4, "mnemonic": "mov", - "operands": "r15, qword ptr [rcx + 0x18]" + "operands": "r15, qword ptr [rcx + 0x18]", + "stack_offset": 0 }, { "address": "0x140001e25", "size": 3, "mnemonic": "mov", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x140001e28", "size": 4, "mnemonic": "mov", - "operands": "r14, qword ptr [rcx + 0x10]" + "operands": "r14, qword ptr [rcx + 0x10]", + "stack_offset": 0 }, { "address": "0x140001e2c", "size": 3, "mnemonic": "mov", - "operands": "rax, r15" + "operands": "rax, r15", + "stack_offset": 0 }, { "address": "0x140001e2f", "size": 3, "mnemonic": "sub", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x140001e32", "size": 3, "mnemonic": "mov", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x140001e35", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140001e38", "size": 3, "mnemonic": "cmp", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x140001e3b", "size": 2, "mnemonic": "ja", - "operands": "0x140001e66" + "operands": "0x140001e66", + "stack_offset": 0 } ], "successors": [ @@ -78686,31 +88403,36 @@ "address": "0x140001e66", "size": 10, "mnemonic": "movabs", - "operands": "rbx, 0x7fffffffffffffff" + "operands": "rbx, 0x7fffffffffffffff", + "stack_offset": 0 }, { "address": "0x140001e70", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140001e73", "size": 3, "mnemonic": "sub", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x140001e76", "size": 3, "mnemonic": "cmp", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x140001e79", "size": 6, "mnemonic": "jb", - "operands": "0x140001f66" + "operands": "0x140001f66", + "stack_offset": 0 } ], "successors": [ @@ -78728,67 +88450,78 @@ "address": "0x140001e3d", "size": 4, "mnemonic": "lea", - "operands": "rax, [r14 + r8]" + "operands": "rax, [r14 + r8]", + "stack_offset": 0 }, { "address": "0x140001e41", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x10], rax" + "operands": "qword ptr [rcx + 0x10], rax", + "stack_offset": 0 }, { "address": "0x140001e45", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140001e48", "size": 4, "mnemonic": "cmp", - "operands": "r15, 0xf" + "operands": "r15, 0xf", + "stack_offset": 0 }, { "address": "0x140001e4c", "size": 2, "mnemonic": "jbe", - "operands": "0x140001e51" + "operands": "0x140001e51", + "stack_offset": 0 }, { "address": "0x140001e4e", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140001e51", "size": 4, "mnemonic": "lea", - "operands": "rbx, [r14 + rax]" + "operands": "rbx, [r14 + rax]", + "stack_offset": 0 }, { "address": "0x140001e55", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140001e58", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x140001e5d", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbx + rsi], 0" + "operands": "byte ptr [rbx + rsi], 0", + "stack_offset": 0 }, { "address": "0x140001e61", "size": 5, "mnemonic": "jmp", - "operands": "0x140001f51" + "operands": "0x140001f51", + "stack_offset": 0 } ], "successors": [ @@ -78805,13 +88538,15 @@ "address": "0x140001f66", "size": 5, "mnemonic": "call", - "operands": "0x140001df0" + "operands": "0x140001df0", + "stack_offset": 0 }, { "address": "0x140001f6b", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -78827,43 +88562,50 @@ "address": "0x140001e7f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rbp" + "operands": "qword ptr [rsp + 0x60], rbp", + "stack_offset": 0 }, { "address": "0x140001e84", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], r12" + "operands": "qword ptr [rsp + 0x68], r12", + "stack_offset": 0 }, { "address": "0x140001e89", "size": 4, "mnemonic": "lea", - "operands": "r12, [r14 + r8]" + "operands": "r12, [r14 + r8]", + "stack_offset": 0 }, { "address": "0x140001e8d", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140001e90", "size": 4, "mnemonic": "or", - "operands": "rcx, 0xf" + "operands": "rcx, 0xf", + "stack_offset": 0 }, { "address": "0x140001e94", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140001e97", "size": 2, "mnemonic": "ja", - "operands": "0x140001eb8" + "operands": "0x140001eb8", + "stack_offset": 0 } ], "successors": [ @@ -78881,55 +88623,64 @@ "address": "0x140001f51", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140001f56", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140001f59", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140001f5d", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140001f5f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140001f61", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140001f63", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140001f64", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140001f65", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -78945,127 +88696,148 @@ "address": "0x140001eb8", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + 1]" + "operands": "rcx, [rbx + 1]", + "stack_offset": 0 }, { "address": "0x140001ebc", "size": 5, "mnemonic": "call", - "operands": "0x140001410" + "operands": "0x140001410", + "stack_offset": 0 }, { "address": "0x140001ec1", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x10], r12" + "operands": "qword ptr [rdi + 0x10], r12", + "stack_offset": 0 }, { "address": "0x140001ec5", "size": 3, "mnemonic": "mov", - "operands": "rbp, rax" + "operands": "rbp, rax", + "stack_offset": 0 }, { "address": "0x140001ec8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x18], rbx" + "operands": "qword ptr [rdi + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x140001ecc", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140001ecf", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140001ed2", "size": 4, "mnemonic": "lea", - "operands": "r12, [r14 + rax]" + "operands": "r12, [r14 + rax]", + "stack_offset": 0 }, { "address": "0x140001ed6", "size": 4, "mnemonic": "cmp", - "operands": "r15, 0xf" + "operands": "r15, 0xf", + "stack_offset": 0 }, { "address": "0x140001eda", "size": 2, "mnemonic": "jbe", - "operands": "0x140001f29" + "operands": "0x140001f29", + "stack_offset": 0 }, { "address": "0x140001edc", "size": 3, "mnemonic": "mov", - "operands": "rbx, qword ptr [rdi]" + "operands": "rbx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x140001edf", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140001ee2", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x140001ee7", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140001eea", "size": 3, "mnemonic": "mov", - "operands": "rdx, r13" + "operands": "rdx, r13", + "stack_offset": 0 }, { "address": "0x140001eed", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140001ef0", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x140001ef5", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r15 + 1]" + "operands": "rdx, [r15 + 1]", + "stack_offset": 0 }, { "address": "0x140001ef9", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r12 + rsi], 0" + "operands": "byte ptr [r12 + rsi], 0", + "stack_offset": 0 }, { "address": "0x140001efe", "size": 7, "mnemonic": "cmp", - "operands": "rdx, 0x1000" + "operands": "rdx, 0x1000", + "stack_offset": 0 }, { "address": "0x140001f05", "size": 2, "mnemonic": "jb", - "operands": "0x140001f1f" + "operands": "0x140001f1f", + "stack_offset": 0 } ], "successors": [ @@ -79083,37 +88855,43 @@ "address": "0x140001e99", "size": 3, "mnemonic": "mov", - "operands": "rdx, r15" + "operands": "rdx, r15", + "stack_offset": 0 }, { "address": "0x140001e9c", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140001e9f", "size": 3, "mnemonic": "shr", - "operands": "rdx, 1" + "operands": "rdx, 1", + "stack_offset": 0 }, { "address": "0x140001ea2", "size": 3, "mnemonic": "sub", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x140001ea5", "size": 3, "mnemonic": "cmp", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x140001ea8", "size": 2, "mnemonic": "ja", - "operands": "0x140001eb8" + "operands": "0x140001eb8", + "stack_offset": 0 } ], "successors": [ @@ -79131,19 +88909,22 @@ "address": "0x140001f1f", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140001f22", "size": 5, "mnemonic": "call", - "operands": "0x140005170" + "operands": "0x140005170", + "stack_offset": 0 }, { "address": "0x140001f27", "size": 2, "mnemonic": "jmp", - "operands": "0x140001f44" + "operands": "0x140001f44", + "stack_offset": 0 } ], "successors": [ @@ -79160,37 +88941,43 @@ "address": "0x140001f07", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx - 8]" + "operands": "rax, qword ptr [rbx - 8]", + "stack_offset": 0 }, { "address": "0x140001f0b", "size": 4, "mnemonic": "add", - "operands": "rdx, 0x27" + "operands": "rdx, 0x27", + "stack_offset": 0 }, { "address": "0x140001f0f", "size": 3, "mnemonic": "sub", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140001f12", "size": 4, "mnemonic": "sub", - "operands": "rbx, 8" + "operands": "rbx, 8", + "stack_offset": 0 }, { "address": "0x140001f16", "size": 4, "mnemonic": "cmp", - "operands": "rbx, 0x1f" + "operands": "rbx, 0x1f", + "stack_offset": 0 }, { "address": "0x140001f1a", "size": 2, "mnemonic": "ja", - "operands": "0x140001f6c" + "operands": "0x140001f6c", + "stack_offset": 0 } ], "successors": [ @@ -79208,151 +88995,176 @@ "address": "0x140001eaa", "size": 4, "mnemonic": "lea", - "operands": "rax, [r15 + rdx]" + "operands": "rax, [r15 + rdx]", + "stack_offset": 0 }, { "address": "0x140001eae", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140001eb1", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140001eb4", "size": 4, "mnemonic": "cmovb", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140001eb8", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + 1]" + "operands": "rcx, [rbx + 1]", + "stack_offset": 0 }, { "address": "0x140001ebc", "size": 5, "mnemonic": "call", - "operands": "0x140001410" + "operands": "0x140001410", + "stack_offset": 0 }, { "address": "0x140001ec1", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x10], r12" + "operands": "qword ptr [rdi + 0x10], r12", + "stack_offset": 0 }, { "address": "0x140001ec5", "size": 3, "mnemonic": "mov", - "operands": "rbp, rax" + "operands": "rbp, rax", + "stack_offset": 0 }, { "address": "0x140001ec8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x18], rbx" + "operands": "qword ptr [rdi + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x140001ecc", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140001ecf", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140001ed2", "size": 4, "mnemonic": "lea", - "operands": "r12, [r14 + rax]" + "operands": "r12, [r14 + rax]", + "stack_offset": 0 }, { "address": "0x140001ed6", "size": 4, "mnemonic": "cmp", - "operands": "r15, 0xf" + "operands": "r15, 0xf", + "stack_offset": 0 }, { "address": "0x140001eda", "size": 2, "mnemonic": "jbe", - "operands": "0x140001f29" + "operands": "0x140001f29", + "stack_offset": 0 }, { "address": "0x140001edc", "size": 3, "mnemonic": "mov", - "operands": "rbx, qword ptr [rdi]" + "operands": "rbx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x140001edf", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140001ee2", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x140001ee7", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140001eea", "size": 3, "mnemonic": "mov", - "operands": "rdx, r13" + "operands": "rdx, r13", + "stack_offset": 0 }, { "address": "0x140001eed", "size": 3, "mnemonic": "mov", - "operands": "rcx, r12" + "operands": "rcx, r12", + "stack_offset": 0 }, { "address": "0x140001ef0", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x140001ef5", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r15 + 1]" + "operands": "rdx, [r15 + 1]", + "stack_offset": 0 }, { "address": "0x140001ef9", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r12 + rsi], 0" + "operands": "byte ptr [r12 + rsi], 0", + "stack_offset": 0 }, { "address": "0x140001efe", "size": 7, "mnemonic": "cmp", - "operands": "rdx, 0x1000" + "operands": "rdx, 0x1000", + "stack_offset": 0 }, { "address": "0x140001f05", "size": 2, "mnemonic": "jb", - "operands": "0x140001f1f" + "operands": "0x140001f1f", + "stack_offset": 0 } ], "successors": [ @@ -79370,73 +89182,85 @@ "address": "0x140001f44", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdi], rbp" + "operands": "qword ptr [rdi], rbp", + "stack_offset": 0 }, { "address": "0x140001f47", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x60]" + "operands": "rbp, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140001f4c", "size": 5, "mnemonic": "mov", - "operands": "r12, qword ptr [rsp + 0x68]" + "operands": "r12, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140001f51", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140001f56", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140001f59", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140001f5d", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140001f5f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140001f61", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140001f63", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140001f64", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140001f65", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -79452,43 +89276,50 @@ "address": "0x140001f6c", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140001f6f", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x140001f78", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140001f7b", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140001f7d", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140001f7f", "size": 5, "mnemonic": "call", - "operands": "0x14000afd4" + "operands": "0x14000afd4", + "stack_offset": 0 }, { "address": "0x140001f84", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -79504,25 +89335,29 @@ "address": "0x140001f1c", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140001f1f", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140001f22", "size": 5, "mnemonic": "call", - "operands": "0x140005170" + "operands": "0x140005170", + "stack_offset": 0 }, { "address": "0x140001f27", "size": 2, "mnemonic": "jmp", - "operands": "0x140001f44" + "operands": "0x140001f44", + "stack_offset": 0 } ], "successors": [ @@ -79545,7 +89380,8 @@ "address": "0x140005170", "size": 5, "mnemonic": "jmp", - "operands": "0x140005a88" + "operands": "0x140005a88", + "stack_offset": 0 } ], "successors": [ @@ -79562,7 +89398,8 @@ "address": "0x140005a88", "size": 5, "mnemonic": "jmp", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 } ], "successors": [ @@ -79579,7 +89416,8 @@ "address": "0x14000c9d0", "size": 5, "mnemonic": "jmp", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 } ], "successors": [ @@ -79596,13 +89434,15 @@ "address": "0x140011b00", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140011b03", "size": 2, "mnemonic": "je", - "operands": "0x140011b3b" + "operands": "0x140011b3b", + "stack_offset": 0 } ], "successors": [ @@ -79620,7 +89460,8 @@ "address": "0x140011b3b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -79636,103 +89477,120 @@ "address": "0x140011b05", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140011b06", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011b0a", "size": 3, "mnemonic": "mov", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x140011b0d", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140011b0f", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rip + 0x21d42]" + "operands": "rcx, qword ptr [rip + 0x21d42]", + "stack_offset": 0 }, { "address": "0x140011b16", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe66c]" + "operands": "qword ptr [rip + 0xe66c]", + "stack_offset": 0 }, { "address": "0x140011b1c", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011b1e", "size": 2, "mnemonic": "jne", - "operands": "0x140011b36" + "operands": "0x140011b36", + "stack_offset": 0 }, { "address": "0x140011b20", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe5d2]" + "operands": "qword ptr [rip + 0xe5d2]", + "stack_offset": 0 }, { "address": "0x140011b26", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x140011b28", "size": 5, "mnemonic": "call", - "operands": "0x14000d738" + "operands": "0x14000d738", + "stack_offset": 0 }, { "address": "0x140011b2d", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x140011b2f", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x140011b34", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rax], ebx" + "operands": "dword ptr [rax], ebx", + "stack_offset": 0 }, { "address": "0x140011b36", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011b3a", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140011b3b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -79754,55 +89612,64 @@ "address": "0x1400060f0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400060f5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x1400060fa", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x1400060ff", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140006100", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140006104", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 8], 0" + "operands": "byte ptr [rcx + 8], 0", + "stack_offset": 0 }, { "address": "0x140006108", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x14000610b", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000610e", "size": 2, "mnemonic": "je", - "operands": "0x14000614f" + "operands": "0x14000614f", + "stack_offset": 0 } ], "successors": [ @@ -79820,55 +89687,64 @@ "address": "0x14000614f", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140006152", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdx], rax" + "operands": "qword ptr [rdx], rax", + "stack_offset": 0 }, { "address": "0x140006155", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdx + 8], 0" + "operands": "byte ptr [rdx + 8], 0", + "stack_offset": 0 }, { "address": "0x140006159", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000615e", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140006163", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140006168", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000616c", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000616d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -79884,19 +89760,22 @@ "address": "0x140006110", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140006113", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140006116", "size": 2, "mnemonic": "je", - "operands": "0x14000614f" + "operands": "0x14000614f", + "stack_offset": 0 } ], "successors": [ @@ -79914,49 +89793,57 @@ "address": "0x140006118", "size": 5, "mnemonic": "call", - "operands": "0x14001ef10" + "operands": "0x14001ef10", + "stack_offset": 0 }, { "address": "0x14000611d", "size": 4, "mnemonic": "lea", - "operands": "rbp, [rax + 1]" + "operands": "rbp, [rax + 1]", + "stack_offset": 0 }, { "address": "0x140006121", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x140006124", "size": 5, "mnemonic": "call", - "operands": "0x14000cac0" + "operands": "0x14000cac0", + "stack_offset": 0 }, { "address": "0x140006129", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000612c", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000612f", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140006132", "size": 2, "mnemonic": "je", - "operands": "0x140006148" + "operands": "0x140006148", + "stack_offset": 0 } ], "successors": [ @@ -79974,13 +89861,15 @@ "address": "0x140006148", "size": 5, "mnemonic": "call", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 }, { "address": "0x14000614d", "size": 2, "mnemonic": "jmp", - "operands": "0x140006159" + "operands": "0x140006159", + "stack_offset": 0 } ], "successors": [ @@ -79997,49 +89886,57 @@ "address": "0x140006134", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rbx]" + "operands": "r8, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140006137", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbp" + "operands": "rdx, rbp", + "stack_offset": 0 }, { "address": "0x14000613a", "size": 5, "mnemonic": "call", - "operands": "0x140010b90" + "operands": "0x140010b90", + "stack_offset": 0 }, { "address": "0x14000613f", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140006141", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdi], rsi" + "operands": "qword ptr [rdi], rsi", + "stack_offset": 0 }, { "address": "0x140006144", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdi + 8], 1" + "operands": "byte ptr [rdi + 8], 1", + "stack_offset": 0 }, { "address": "0x140006148", "size": 5, "mnemonic": "call", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 }, { "address": "0x14000614d", "size": 2, "mnemonic": "jmp", - "operands": "0x140006159" + "operands": "0x140006159", + "stack_offset": 0 } ], "successors": [ @@ -80056,37 +89953,43 @@ "address": "0x140006159", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000615e", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140006163", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140006168", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000616c", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000616d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -80108,37 +90011,43 @@ "address": "0x140005210", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x2be29]" + "operands": "rcx, qword ptr [rip + 0x2be29]", + "stack_offset": 0 }, { "address": "0x140005217", "size": 2, "mnemonic": "jne", - "operands": "0x140005229" + "operands": "0x140005229", + "stack_offset": 0 }, { "address": "0x140005219", "size": 4, "mnemonic": "rol", - "operands": "rcx, 0x10" + "operands": "rcx, 0x10", + "stack_offset": 0 }, { "address": "0x14000521d", "size": 5, "mnemonic": "test", - "operands": "cx, 0xffff" + "operands": "cx, 0xffff", + "stack_offset": 0 }, { "address": "0x140005222", "size": 2, "mnemonic": "jne", - "operands": "0x140005225" + "operands": "0x140005225", + "stack_offset": 0 }, { "address": "0x140005224", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -80160,31 +90069,36 @@ "address": "0x14000afd4", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000afd8", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x17" + "operands": "ecx, 0x17", + "stack_offset": 0 }, { "address": "0x14000afdd", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x150ad]" + "operands": "qword ptr [rip + 0x150ad]", + "stack_offset": 0 }, { "address": "0x14000afe3", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000afe5", "size": 2, "mnemonic": "je", - "operands": "0x14000afee" + "operands": "0x14000afee", + "stack_offset": 0 } ], "successors": [ @@ -80202,55 +90116,64 @@ "address": "0x14000afee", "size": 6, "mnemonic": "mov", - "operands": "r8d, 1" + "operands": "r8d, 1", + "stack_offset": 0 }, { "address": "0x14000aff4", "size": 5, "mnemonic": "mov", - "operands": "edx, 0xc0000417" + "operands": "edx, 0xc0000417", + "stack_offset": 0 }, { "address": "0x14000aff9", "size": 4, "mnemonic": "lea", - "operands": "ecx, [r8 + 1]" + "operands": "ecx, [r8 + 1]", + "stack_offset": 0 }, { "address": "0x14000affd", "size": 5, "mnemonic": "call", - "operands": "0x14000ace8" + "operands": "0x14000ace8", + "stack_offset": 0 }, { "address": "0x14000b002", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x15078]" + "operands": "qword ptr [rip + 0x15078]", + "stack_offset": 0 }, { "address": "0x14000b008", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000b00b", "size": 5, "mnemonic": "mov", - "operands": "edx, 0xc0000417" + "operands": "edx, 0xc0000417", + "stack_offset": 0 }, { "address": "0x14000b010", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000b014", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x1506d]" + "operands": "qword ptr [rip + 0x1506d]", + "stack_offset": 0 } ], "successors": [ @@ -80267,67 +90190,78 @@ "address": "0x14000afe7", "size": 5, "mnemonic": "mov", - "operands": "ecx, 5" + "operands": "ecx, 5", + "stack_offset": 0 }, { "address": "0x14000afec", "size": 2, "mnemonic": "int", - "operands": "0x29" + "operands": "0x29", + "stack_offset": 0 }, { "address": "0x14000afee", "size": 6, "mnemonic": "mov", - "operands": "r8d, 1" + "operands": "r8d, 1", + "stack_offset": 0 }, { "address": "0x14000aff4", "size": 5, "mnemonic": "mov", - "operands": "edx, 0xc0000417" + "operands": "edx, 0xc0000417", + "stack_offset": 0 }, { "address": "0x14000aff9", "size": 4, "mnemonic": "lea", - "operands": "ecx, [r8 + 1]" + "operands": "ecx, [r8 + 1]", + "stack_offset": 0 }, { "address": "0x14000affd", "size": 5, "mnemonic": "call", - "operands": "0x14000ace8" + "operands": "0x14000ace8", + "stack_offset": 0 }, { "address": "0x14000b002", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x15078]" + "operands": "qword ptr [rip + 0x15078]", + "stack_offset": 0 }, { "address": "0x14000b008", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000b00b", "size": 5, "mnemonic": "mov", - "operands": "edx, 0xc0000417" + "operands": "edx, 0xc0000417", + "stack_offset": 0 }, { "address": "0x14000b010", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000b014", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x1506d]" + "operands": "qword ptr [rip + 0x1506d]", + "stack_offset": 0 } ], "successors": [ @@ -80360,49 +90294,57 @@ "address": "0x14000448c", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000448e", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140004492", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rcx], edx" + "operands": "dword ptr [rcx], edx", + "stack_offset": 0 }, { "address": "0x140004494", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140004497", "size": 2, "mnemonic": "test", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140004499", "size": 2, "mnemonic": "jne", - "operands": "0x1400044a2" + "operands": "0x1400044a2", + "stack_offset": 0 }, { "address": "0x14000449b", "size": 5, "mnemonic": "call", - "operands": "0x14000ca90" + "operands": "0x14000ca90", + "stack_offset": 0 }, { "address": "0x1400044a0", "size": 2, "mnemonic": "jmp", - "operands": "0x1400044be" + "operands": "0x1400044be", + "stack_offset": 0 } ], "successors": [ @@ -80419,25 +90361,29 @@ "address": "0x1400044be", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x1400044c1", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400044c5", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400044c6", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -80459,37 +90405,43 @@ "address": "0x140004504", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140004508", "size": 3, "mnemonic": "movsxd", - "operands": "rax, dword ptr [rcx]" + "operands": "rax, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000450b", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000450d", "size": 2, "mnemonic": "jne", - "operands": "0x140004518" + "operands": "0x140004518", + "stack_offset": 0 }, { "address": "0x14000450f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140004513", "size": 5, "mnemonic": "jmp", - "operands": "0x14000caac" + "operands": "0x14000caac", + "stack_offset": 0 } ], "successors": [ @@ -80506,13 +90458,15 @@ "address": "0x14000caac", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x263ed]" + "operands": "rcx, [rip + 0x263ed]", + "stack_offset": 0 }, { "address": "0x14000cab3", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x1355e]" + "operands": "qword ptr [rip + 0x1355e]", + "stack_offset": 0 } ], "successors": [ @@ -80535,13 +90489,15 @@ "address": "0x140004650", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2de61]" + "operands": "rax, qword ptr [rip + 0x2de61]", + "stack_offset": 0 }, { "address": "0x140004657", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -80563,67 +90519,78 @@ "address": "0x1400030cc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x1400030d1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbp" + "operands": "qword ptr [rsp + 0x18], rbp", + "stack_offset": 0 }, { "address": "0x1400030d6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x1400030db", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400030dc", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x90" + "operands": "rsp, 0x90", + "stack_offset": 0 }, { "address": "0x1400030e3", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x1400030e6", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x1400030e9", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x1400030eb", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0xa0], esi" + "operands": "dword ptr [rsp + 0xa0], esi", + "stack_offset": 0 }, { "address": "0x1400030f2", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400030f5", "size": 2, "mnemonic": "je", - "operands": "0x14000316a" + "operands": "0x14000316a", + "stack_offset": 0 } ], "successors": [ @@ -80641,49 +90608,57 @@ "address": "0x14000316a", "size": 5, "mnemonic": "mov", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14000316f", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x90]" + "operands": "r11, [rsp + 0x90]", + "stack_offset": 0 }, { "address": "0x140003177", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x18]" + "operands": "rbx, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x14000317b", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x20]" + "operands": "rbp, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000317f", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x28]" + "operands": "rsi, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x140003183", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140003186", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140003187", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -80699,49 +90674,57 @@ "address": "0x1400030f7", "size": 3, "mnemonic": "cmp", - "operands": "qword ptr [rcx], rsi" + "operands": "qword ptr [rcx], rsi", + "stack_offset": 0 }, { "address": "0x1400030fa", "size": 2, "mnemonic": "jne", - "operands": "0x14000316a" + "operands": "0x14000316a", + "stack_offset": 0 }, { "address": "0x1400030fc", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rsi + 0x10]" + "operands": "ecx, [rsi + 0x10]", + "stack_offset": 0 }, { "address": "0x1400030ff", "size": 5, "mnemonic": "call", - "operands": "0x140005134" + "operands": "0x140005134", + "stack_offset": 0 }, { "address": "0x140003104", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140003107", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0xa0], rax" + "operands": "qword ptr [rsp + 0xa0], rax", + "stack_offset": 0 }, { "address": "0x14000310f", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140003112", "size": 2, "mnemonic": "je", - "operands": "0x140003155" + "operands": "0x140003155", + "stack_offset": 0 } ], "successors": [ @@ -80759,25 +90742,29 @@ "address": "0x140003155", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140003157", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdi], rbx" + "operands": "qword ptr [rdi], rbx", + "stack_offset": 0 }, { "address": "0x14000315a", "size": 4, "mnemonic": "test", - "operands": "sil, 1" + "operands": "sil, 1", + "stack_offset": 0 }, { "address": "0x14000315e", "size": 2, "mnemonic": "je", - "operands": "0x14000316a" + "operands": "0x14000316a", + "stack_offset": 0 } ], "successors": [ @@ -80795,19 +90782,22 @@ "address": "0x140003114", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 8]" + "operands": "rax, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x140003118", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000311b", "size": 2, "mnemonic": "je", - "operands": "0x14000312c" + "operands": "0x14000312c", + "stack_offset": 0 } ], "successors": [ @@ -80825,61 +90815,71 @@ "address": "0x140003160", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140003165", "size": 5, "mnemonic": "call", - "operands": "0x140002bb8" + "operands": "0x140002bb8", + "stack_offset": 0 }, { "address": "0x14000316a", "size": 5, "mnemonic": "mov", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14000316f", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x90]" + "operands": "r11, [rsp + 0x90]", + "stack_offset": 0 }, { "address": "0x140003177", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x18]" + "operands": "rbx, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x14000317b", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x20]" + "operands": "rbp, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000317f", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x28]" + "operands": "rsi, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x140003183", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140003186", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140003187", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -80895,49 +90895,57 @@ "address": "0x14000312c", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1e34d]" + "operands": "rdx, [rip + 0x1e34d]", + "stack_offset": 0 }, { "address": "0x140003133", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140003138", "size": 5, "mnemonic": "call", - "operands": "0x1400029cc" + "operands": "0x1400029cc", + "stack_offset": 0 }, { "address": "0x14000313d", "size": 5, "mnemonic": "mov", - "operands": "esi, 1" + "operands": "esi, 1", + "stack_offset": 0 }, { "address": "0x140003142", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbx + 8], 0" + "operands": "dword ptr [rbx + 8], 0", + "stack_offset": 0 }, { "address": "0x140003149", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e4d8]" + "operands": "rax, [rip + 0x1e4d8]", + "stack_offset": 0 }, { "address": "0x140003150", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x140003153", "size": 2, "mnemonic": "jmp", - "operands": "0x140003157" + "operands": "0x140003157", + "stack_offset": 0 } ], "successors": [ @@ -80954,31 +90962,36 @@ "address": "0x14000311d", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax + 0x28]" + "operands": "rdx, qword ptr [rax + 0x28]", + "stack_offset": 0 }, { "address": "0x140003121", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140003124", "size": 2, "mnemonic": "jne", - "operands": "0x140003133" + "operands": "0x140003133", + "stack_offset": 0 }, { "address": "0x140003126", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rax + 0x30]" + "operands": "rdx, [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x14000312a", "size": 2, "mnemonic": "jmp", - "operands": "0x140003133" + "operands": "0x140003133", + "stack_offset": 0 } ], "successors": [ @@ -80995,19 +91008,22 @@ "address": "0x140003157", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdi], rbx" + "operands": "qword ptr [rdi], rbx", + "stack_offset": 0 }, { "address": "0x14000315a", "size": 4, "mnemonic": "test", - "operands": "sil, 1" + "operands": "sil, 1", + "stack_offset": 0 }, { "address": "0x14000315e", "size": 2, "mnemonic": "je", - "operands": "0x14000316a" + "operands": "0x14000316a", + "stack_offset": 0 } ], "successors": [ @@ -81025,43 +91041,50 @@ "address": "0x140003133", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140003138", "size": 5, "mnemonic": "call", - "operands": "0x1400029cc" + "operands": "0x1400029cc", + "stack_offset": 0 }, { "address": "0x14000313d", "size": 5, "mnemonic": "mov", - "operands": "esi, 1" + "operands": "esi, 1", + "stack_offset": 0 }, { "address": "0x140003142", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbx + 8], 0" + "operands": "dword ptr [rbx + 8], 0", + "stack_offset": 0 }, { "address": "0x140003149", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e4d8]" + "operands": "rax, [rip + 0x1e4d8]", + "stack_offset": 0 }, { "address": "0x140003150", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x140003153", "size": 2, "mnemonic": "jmp", - "operands": "0x140003157" + "operands": "0x140003157", + "stack_offset": 0 } ], "successors": [ @@ -81084,43 +91107,50 @@ "address": "0x14000348c", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x140003490", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140003495", "size": 5, "mnemonic": "call", - "operands": "0x140002a80" + "operands": "0x140002a80", + "stack_offset": 0 }, { "address": "0x14000349a", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x2ca6f]" + "operands": "rdx, [rip + 0x2ca6f]", + "stack_offset": 0 }, { "address": "0x1400034a1", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400034a6", "size": 5, "mnemonic": "call", - "operands": "0x140006198" + "operands": "0x140006198", + "stack_offset": 0 }, { "address": "0x1400034ab", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -81142,49 +91172,57 @@ "address": "0x140004614", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140004616", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000461a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000461d", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x10" + "operands": "ecx, 0x10", + "stack_offset": 0 }, { "address": "0x140004622", "size": 5, "mnemonic": "call", - "operands": "0x14000cac0" + "operands": "0x14000cac0", + "stack_offset": 0 }, { "address": "0x140004627", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000462a", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000462d", "size": 2, "mnemonic": "je", - "operands": "0x14000464a" + "operands": "0x14000464a", + "stack_offset": 0 } ], "successors": [ @@ -81202,13 +91240,15 @@ "address": "0x14000464a", "size": 5, "mnemonic": "call", - "operands": "0x14000238c" + "operands": "0x14000238c", + "stack_offset": 0 }, { "address": "0x14000464f", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -81224,43 +91264,50 @@ "address": "0x14000462f", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2de72]" + "operands": "rax, qword ptr [rip + 0x2de72]", + "stack_offset": 0 }, { "address": "0x140004636", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdx], rax" + "operands": "qword ptr [rdx], rax", + "stack_offset": 0 }, { "address": "0x140004639", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdx + 8], rbx" + "operands": "qword ptr [rdx + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000463d", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x2de64], rdx" + "operands": "qword ptr [rip + 0x2de64], rdx", + "stack_offset": 0 }, { "address": "0x140004644", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140004648", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140004649", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -81282,67 +91329,78 @@ "address": "0x140003188", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x14000318d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbp" + "operands": "qword ptr [rsp + 0x18], rbp", + "stack_offset": 0 }, { "address": "0x140003192", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x140003197", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140003198", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xb0" + "operands": "rsp, 0xb0", + "stack_offset": 0 }, { "address": "0x14000319f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x1400031a2", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x1400031a5", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x1400031a7", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0xc0], esi" + "operands": "dword ptr [rsp + 0xc0], esi", + "stack_offset": 0 }, { "address": "0x1400031ae", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400031b1", "size": 6, "mnemonic": "je", - "operands": "0x140003247" + "operands": "0x140003247", + "stack_offset": 0 } ], "successors": [ @@ -81360,49 +91418,57 @@ "address": "0x140003247", "size": 5, "mnemonic": "mov", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14000324c", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0xb0]" + "operands": "r11, [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140003254", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x18]" + "operands": "rbx, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140003258", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x20]" + "operands": "rbp, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000325c", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x28]" + "operands": "rsi, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x140003260", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140003263", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140003264", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -81418,49 +91484,57 @@ "address": "0x1400031b7", "size": 3, "mnemonic": "cmp", - "operands": "qword ptr [rcx], rsi" + "operands": "qword ptr [rcx], rsi", + "stack_offset": 0 }, { "address": "0x1400031ba", "size": 6, "mnemonic": "jne", - "operands": "0x140003247" + "operands": "0x140003247", + "stack_offset": 0 }, { "address": "0x1400031c0", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rsi + 0x30]" + "operands": "ecx, [rsi + 0x30]", + "stack_offset": 0 }, { "address": "0x1400031c3", "size": 5, "mnemonic": "call", - "operands": "0x140005134" + "operands": "0x140005134", + "stack_offset": 0 }, { "address": "0x1400031c8", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400031cb", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0xc0], rax" + "operands": "qword ptr [rsp + 0xc0], rax", + "stack_offset": 0 }, { "address": "0x1400031d3", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400031d6", "size": 2, "mnemonic": "je", - "operands": "0x140003232" + "operands": "0x140003232", + "stack_offset": 0 } ], "successors": [ @@ -81478,25 +91552,29 @@ "address": "0x140003232", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140003234", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdi], rbx" + "operands": "qword ptr [rdi], rbx", + "stack_offset": 0 }, { "address": "0x140003237", "size": 4, "mnemonic": "test", - "operands": "sil, 1" + "operands": "sil, 1", + "stack_offset": 0 }, { "address": "0x14000323b", "size": 2, "mnemonic": "je", - "operands": "0x140003247" + "operands": "0x140003247", + "stack_offset": 0 } ], "successors": [ @@ -81514,19 +91592,22 @@ "address": "0x1400031d8", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 8]" + "operands": "rax, qword ptr [rbp + 8]", + "stack_offset": 0 }, { "address": "0x1400031dc", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400031df", "size": 2, "mnemonic": "je", - "operands": "0x1400031f0" + "operands": "0x1400031f0", + "stack_offset": 0 } ], "successors": [ @@ -81544,61 +91625,71 @@ "address": "0x14000323d", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x40]" + "operands": "rcx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140003242", "size": 5, "mnemonic": "call", - "operands": "0x140002bb8" + "operands": "0x140002bb8", + "stack_offset": 0 }, { "address": "0x140003247", "size": 5, "mnemonic": "mov", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14000324c", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0xb0]" + "operands": "r11, [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140003254", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x18]" + "operands": "rbx, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140003258", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x20]" + "operands": "rbp, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000325c", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x28]" + "operands": "rsi, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x140003260", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140003263", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140003264", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -81614,85 +91705,99 @@ "address": "0x1400031f0", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1e289]" + "operands": "rdx, [rip + 0x1e289]", + "stack_offset": 0 }, { "address": "0x1400031f7", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x40]" + "operands": "rcx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400031fc", "size": 5, "mnemonic": "call", - "operands": "0x1400029cc" + "operands": "0x1400029cc", + "stack_offset": 0 }, { "address": "0x140003201", "size": 5, "mnemonic": "mov", - "operands": "esi, 1" + "operands": "esi, 1", + "stack_offset": 0 }, { "address": "0x140003206", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbx + 8], 0" + "operands": "dword ptr [rbx + 8], 0", + "stack_offset": 0 }, { "address": "0x14000320d", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e27c]" + "operands": "rax, [rip + 0x1e27c]", + "stack_offset": 0 }, { "address": "0x140003214", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x140003217", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000321c", "size": 5, "mnemonic": "call", - "operands": "0x140004910" + "operands": "0x140004910", + "stack_offset": 0 }, { "address": "0x140003221", "size": 3, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax]" + "operands": "xmm0, xmmword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140003224", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbx + 0x10], xmm0" + "operands": "xmmword ptr [rbx + 0x10], xmm0", + "stack_offset": 0 }, { "address": "0x140003228", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x10]" + "operands": "xmm1, xmmword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x14000322c", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbx + 0x20], xmm1" + "operands": "xmmword ptr [rbx + 0x20], xmm1", + "stack_offset": 0 }, { "address": "0x140003230", "size": 2, "mnemonic": "jmp", - "operands": "0x140003234" + "operands": "0x140003234", + "stack_offset": 0 } ], "successors": [ @@ -81709,31 +91814,36 @@ "address": "0x1400031e1", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax + 0x28]" + "operands": "rdx, qword ptr [rax + 0x28]", + "stack_offset": 0 }, { "address": "0x1400031e5", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x1400031e8", "size": 2, "mnemonic": "jne", - "operands": "0x1400031f7" + "operands": "0x1400031f7", + "stack_offset": 0 }, { "address": "0x1400031ea", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rax + 0x30]" + "operands": "rdx, [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x1400031ee", "size": 2, "mnemonic": "jmp", - "operands": "0x1400031f7" + "operands": "0x1400031f7", + "stack_offset": 0 } ], "successors": [ @@ -81750,19 +91860,22 @@ "address": "0x140003234", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdi], rbx" + "operands": "qword ptr [rdi], rbx", + "stack_offset": 0 }, { "address": "0x140003237", "size": 4, "mnemonic": "test", - "operands": "sil, 1" + "operands": "sil, 1", + "stack_offset": 0 }, { "address": "0x14000323b", "size": 2, "mnemonic": "je", - "operands": "0x140003247" + "operands": "0x140003247", + "stack_offset": 0 } ], "successors": [ @@ -81780,79 +91893,92 @@ "address": "0x1400031f7", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x40]" + "operands": "rcx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400031fc", "size": 5, "mnemonic": "call", - "operands": "0x1400029cc" + "operands": "0x1400029cc", + "stack_offset": 0 }, { "address": "0x140003201", "size": 5, "mnemonic": "mov", - "operands": "esi, 1" + "operands": "esi, 1", + "stack_offset": 0 }, { "address": "0x140003206", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbx + 8], 0" + "operands": "dword ptr [rbx + 8], 0", + "stack_offset": 0 }, { "address": "0x14000320d", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e27c]" + "operands": "rax, [rip + 0x1e27c]", + "stack_offset": 0 }, { "address": "0x140003214", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x140003217", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000321c", "size": 5, "mnemonic": "call", - "operands": "0x140004910" + "operands": "0x140004910", + "stack_offset": 0 }, { "address": "0x140003221", "size": 3, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax]" + "operands": "xmm0, xmmword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140003224", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbx + 0x10], xmm0" + "operands": "xmmword ptr [rbx + 0x10], xmm0", + "stack_offset": 0 }, { "address": "0x140003228", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x10]" + "operands": "xmm1, xmmword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x14000322c", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rbx + 0x20], xmm1" + "operands": "xmmword ptr [rbx + 0x20], xmm1", + "stack_offset": 0 }, { "address": "0x140003230", "size": 2, "mnemonic": "jmp", - "operands": "0x140003234" + "operands": "0x140003234", + "stack_offset": 0 } ], "successors": [ @@ -81875,67 +92001,78 @@ "address": "0x14000cfb8", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000cfbc", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14000cfc1", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x30]" + "operands": "rdx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000cfc6", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax + 0x90]" + "operands": "rcx, qword ptr [rax + 0x90]", + "stack_offset": 0 }, { "address": "0x14000cfcd", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x14000cfd2", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000cfd5", "size": 5, "mnemonic": "call", - "operands": "0x140015b2c" + "operands": "0x140015b2c", + "stack_offset": 0 }, { "address": "0x14000cfda", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x30]" + "operands": "rax, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000cfdf", "size": 6, "mnemonic": "add", - "operands": "rax, 0x128" + "operands": "rax, 0x128", + "stack_offset": 0 }, { "address": "0x14000cfe5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000cfe9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -81957,67 +92094,78 @@ "address": "0x14000cf88", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000cf8c", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14000cf91", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x30]" + "operands": "rdx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000cf96", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax + 0x90]" + "operands": "rcx, qword ptr [rax + 0x90]", + "stack_offset": 0 }, { "address": "0x14000cf9d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x14000cfa2", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000cfa5", "size": 5, "mnemonic": "call", - "operands": "0x140015b2c" + "operands": "0x140015b2c", + "stack_offset": 0 }, { "address": "0x14000cfaa", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x30]" + "operands": "rax, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000cfaf", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rax + 0xc]" + "operands": "eax, dword ptr [rax + 0xc]", + "stack_offset": 0 }, { "address": "0x14000cfb2", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000cfb6", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -82039,19 +92187,22 @@ "address": "0x14000d9c0", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000d9c2", "size": 2, "mnemonic": "cmp", - "operands": "byte ptr [rcx], al" + "operands": "byte ptr [rcx], al", + "stack_offset": 0 }, { "address": "0x14000d9c4", "size": 2, "mnemonic": "je", - "operands": "0x14000d9d4" + "operands": "0x14000d9d4", + "stack_offset": 0 } ], "successors": [ @@ -82069,7 +92220,8 @@ "address": "0x14000d9d4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -82085,13 +92237,15 @@ "address": "0x14000d9c6", "size": 3, "mnemonic": "cmp", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000d9c9", "size": 2, "mnemonic": "je", - "operands": "0x14000d9d4" + "operands": "0x14000d9d4", + "stack_offset": 0 } ], "successors": [ @@ -82109,25 +92263,29 @@ "address": "0x14000d9cb", "size": 3, "mnemonic": "inc", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x14000d9ce", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rax + rcx], 0" + "operands": "byte ptr [rax + rcx], 0", + "stack_offset": 0 }, { "address": "0x14000d9d2", "size": 2, "mnemonic": "jne", - "operands": "0x14000d9c6" + "operands": "0x14000d9c6", + "stack_offset": 0 }, { "address": "0x14000d9d4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -82149,7 +92307,8 @@ "address": "0x14000cac0", "size": 5, "mnemonic": "jmp", - "operands": "0x140015200" + "operands": "0x140015200", + "stack_offset": 0 } ], "successors": [ @@ -82166,31 +92325,36 @@ "address": "0x140015200", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015202", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140015206", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140015209", "size": 4, "mnemonic": "cmp", - "operands": "rcx, -0x20" + "operands": "rcx, -0x20", + "stack_offset": 0 }, { "address": "0x14001520d", "size": 2, "mnemonic": "ja", - "operands": "0x14001524b" + "operands": "0x14001524b", + "stack_offset": 0 } ], "successors": [ @@ -82208,37 +92372,43 @@ "address": "0x14001524b", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x140015250", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0xc" + "operands": "dword ptr [rax], 0xc", + "stack_offset": 0 }, { "address": "0x140015256", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015258", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001525c", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001525d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -82254,25 +92424,29 @@ "address": "0x14001520f", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140015212", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140015217", "size": 4, "mnemonic": "cmove", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14001521b", "size": 2, "mnemonic": "jmp", - "operands": "0x140015232" + "operands": "0x140015232", + "stack_offset": 0 } ], "successors": [ @@ -82289,37 +92463,43 @@ "address": "0x140015232", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rip + 0x1e61f]" + "operands": "rcx, qword ptr [rip + 0x1e61f]", + "stack_offset": 0 }, { "address": "0x140015239", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x14001523c", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001523e", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xaf3c]" + "operands": "qword ptr [rip + 0xaf3c]", + "stack_offset": 0 }, { "address": "0x140015244", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140015247", "size": 2, "mnemonic": "je", - "operands": "0x14001521d" + "operands": "0x14001521d", + "stack_offset": 0 } ], "successors": [ @@ -82337,19 +92517,22 @@ "address": "0x14001521d", "size": 5, "mnemonic": "call", - "operands": "0x1400105b0" + "operands": "0x1400105b0", + "stack_offset": 0 }, { "address": "0x140015222", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015224", "size": 2, "mnemonic": "je", - "operands": "0x14001524b" + "operands": "0x14001524b", + "stack_offset": 0 } ], "successors": [ @@ -82367,7 +92550,8 @@ "address": "0x140015249", "size": 2, "mnemonic": "jmp", - "operands": "0x140015258" + "operands": "0x140015258", + "stack_offset": 0 } ], "successors": [ @@ -82384,25 +92568,29 @@ "address": "0x140015226", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140015229", "size": 5, "mnemonic": "call", - "operands": "0x14000deb0" + "operands": "0x14000deb0", + "stack_offset": 0 }, { "address": "0x14001522e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015230", "size": 2, "mnemonic": "je", - "operands": "0x14001524b" + "operands": "0x14001524b", + "stack_offset": 0 } ], "successors": [ @@ -82420,19 +92608,22 @@ "address": "0x140015258", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001525c", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001525d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -82454,115 +92645,134 @@ "address": "0x1400057a0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x10" + "operands": "rsp, 0x10", + "stack_offset": 0 }, { "address": "0x1400057a4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rsp], r10" + "operands": "qword ptr [rsp], r10", + "stack_offset": 0 }, { "address": "0x1400057a8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], r11" + "operands": "qword ptr [rsp + 8], r11", + "stack_offset": 0 }, { "address": "0x1400057ad", "size": 3, "mnemonic": "xor", - "operands": "r11, r11" + "operands": "r11, r11", + "stack_offset": 0 }, { "address": "0x1400057b0", "size": 5, "mnemonic": "lea", - "operands": "r10, [rsp + 0x18]" + "operands": "r10, [rsp + 0x18]", + "stack_offset": 0 }, { "address": "0x1400057b5", "size": 3, "mnemonic": "sub", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x1400057b8", "size": 4, "mnemonic": "cmovb", - "operands": "r10, r11" + "operands": "r10, r11", + "stack_offset": 0 }, { "address": "0x1400057bc", "size": 9, "mnemonic": "mov", - "operands": "r11, qword ptr gs:[0x10]" + "operands": "r11, qword ptr gs:[0x10]", + "stack_offset": 0 }, { "address": "0x1400057c5", "size": 3, "mnemonic": "cmp", - "operands": "r10, r11" + "operands": "r10, r11", + "stack_offset": 0 }, { "address": "0x1400057c8", "size": 2, "mnemonic": "jae", - "operands": "0x1400057e0" + "operands": "0x1400057e0", + "stack_offset": 0 }, { "address": "0x1400057ca", "size": 6, "mnemonic": "and", - "operands": "r10w, 0xf000" + "operands": "r10w, 0xf000", + "stack_offset": 0 }, { "address": "0x1400057d0", "size": 7, "mnemonic": "lea", - "operands": "r11, [r11 - 0x1000]" + "operands": "r11, [r11 - 0x1000]", + "stack_offset": 0 }, { "address": "0x1400057d7", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [r11], 0" + "operands": "byte ptr [r11], 0", + "stack_offset": 0 }, { "address": "0x1400057db", "size": 3, "mnemonic": "cmp", - "operands": "r10, r11" + "operands": "r10, r11", + "stack_offset": 0 }, { "address": "0x1400057de", "size": 2, "mnemonic": "jne", - "operands": "0x1400057d0" + "operands": "0x1400057d0", + "stack_offset": 0 }, { "address": "0x1400057e0", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rsp]" + "operands": "r10, qword ptr [rsp]", + "stack_offset": 0 }, { "address": "0x1400057e4", "size": 5, "mnemonic": "mov", - "operands": "r11, qword ptr [rsp + 8]" + "operands": "r11, qword ptr [rsp + 8]", + "stack_offset": 0 }, { "address": "0x1400057e9", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x10" + "operands": "rsp, 0x10", + "stack_offset": 0 }, { "address": "0x1400057ed", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -82590,121 +92800,141 @@ "address": "0x140006544", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x140006549", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbp" + "operands": "qword ptr [rsp + 0x18], rbp", + "stack_offset": 0 }, { "address": "0x14000654e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x140006553", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140006554", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140006556", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140006558", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000655a", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000655c", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140006560", "size": 4, "mnemonic": "mov", - "operands": "ebp, dword ptr [r8 + 0xc]" + "operands": "ebp, dword ptr [r8 + 0xc]", + "stack_offset": 0 }, { "address": "0x140006564", "size": 3, "mnemonic": "mov", - "operands": "r13, rcx" + "operands": "r13, rcx", + "stack_offset": 0 }, { "address": "0x140006567", "size": 3, "mnemonic": "mov", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x14000656a", "size": 3, "mnemonic": "mov", - "operands": "rsi, r9" + "operands": "rsi, r9", + "stack_offset": 0 }, { "address": "0x14000656d", "size": 3, "mnemonic": "mov", - "operands": "r15, r8" + "operands": "r15, r8", + "stack_offset": 0 }, { "address": "0x140006570", "size": 3, "mnemonic": "mov", - "operands": "r12, rdx" + "operands": "r12, rdx", + "stack_offset": 0 }, { "address": "0x140006573", "size": 5, "mnemonic": "call", - "operands": "0x1400075d8" + "operands": "0x1400075d8", + "stack_offset": 0 }, { "address": "0x140006578", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [r13]" + "operands": "r10, qword ptr [r13]", + "stack_offset": 0 }, { "address": "0x14000657c", "size": 3, "mnemonic": "mov", - "operands": "r14d, eax" + "operands": "r14d, eax", + "stack_offset": 0 }, { "address": "0x14000657f", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], r10" + "operands": "qword ptr [rsi], r10", + "stack_offset": 0 }, { "address": "0x140006582", "size": 2, "mnemonic": "jmp", - "operands": "0x1400065ef" + "operands": "0x1400065ef", + "stack_offset": 0 } ], "successors": [ @@ -82721,19 +92951,22 @@ "address": "0x1400065ef", "size": 2, "mnemonic": "test", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x1400065f1", "size": 2, "mnemonic": "jne", - "operands": "0x140006584" + "operands": "0x140006584", + "stack_offset": 0 }, { "address": "0x1400065f3", "size": 2, "mnemonic": "jmp", - "operands": "0x140006609" + "operands": "0x140006609", + "stack_offset": 0 } ], "successors": [ @@ -82750,67 +92983,78 @@ "address": "0x140006609", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x58]" + "operands": "rbx, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000660e", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x140006611", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x68]" + "operands": "rsi, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140006616", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x60]" + "operands": "rbp, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000661b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000661f", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140006621", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140006623", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140006625", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140006627", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140006628", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -82832,31 +93076,36 @@ "address": "0x140006da8", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140006dac", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140006db1", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x60]" + "operands": "rax, qword ptr [rax + 0x60]", + "stack_offset": 0 }, { "address": "0x140006db5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140006db9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -82878,73 +93127,85 @@ "address": "0x140007b2c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140007b31", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x140007b36", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rdi" + "operands": "qword ptr [rsp + 0x18], rdi", + "stack_offset": 0 }, { "address": "0x140007b3b", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007b3d", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007b41", "size": 3, "mnemonic": "mov", - "operands": "rsi, r9" + "operands": "rsi, r9", + "stack_offset": 0 }, { "address": "0x140007b44", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140007b47", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140007b49", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [r8], ebx" + "operands": "dword ptr [r8], ebx", + "stack_offset": 0 }, { "address": "0x140007b4c", "size": 2, "mnemonic": "jge", - "operands": "0x140007b53" + "operands": "0x140007b53", + "stack_offset": 0 }, { "address": "0x140007b4e", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140007b51", "size": 2, "mnemonic": "jmp", - "operands": "0x140007b5a" + "operands": "0x140007b5a", + "stack_offset": 0 } ], "successors": [ @@ -82961,19 +93222,22 @@ "address": "0x140007b5a", "size": 5, "mnemonic": "call", - "operands": "0x140007740" + "operands": "0x140007740", + "stack_offset": 0 }, { "address": "0x140007b5f", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140007b62", "size": 2, "mnemonic": "je", - "operands": "0x140007ba0" + "operands": "0x140007ba0", + "stack_offset": 0 } ], "successors": [ @@ -82991,43 +93255,50 @@ "address": "0x140007ba0", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rsi + 8]" + "operands": "rdx, [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140007ba4", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r14 + 0x28]" + "operands": "rcx, qword ptr [r14 + 0x28]", + "stack_offset": 0 }, { "address": "0x140007ba8", "size": 5, "mnemonic": "call", - "operands": "0x140007040" + "operands": "0x140007040", + "stack_offset": 0 }, { "address": "0x140007bad", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x140007bb0", "size": 4, "mnemonic": "movsxd", - "operands": "rsi, dword ptr [rsi + 0x18]" + "operands": "rsi, dword ptr [rsi + 0x18]", + "stack_offset": 0 }, { "address": "0x140007bb4", "size": 2, "mnemonic": "test", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x140007bb6", "size": 2, "mnemonic": "je", - "operands": "0x140007bc1" + "operands": "0x140007bc1", + "stack_offset": 0 } ], "successors": [ @@ -83045,55 +93316,64 @@ "address": "0x140007b64", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140007b67", "size": 2, "mnemonic": "jne", - "operands": "0x140007bd0" + "operands": "0x140007bd0", + "stack_offset": 0 }, { "address": "0x140007b69", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rsi + 8]" + "operands": "rdx, [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140007b6d", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r14 + 0x28]" + "operands": "rcx, qword ptr [r14 + 0x28]", + "stack_offset": 0 }, { "address": "0x140007b71", "size": 5, "mnemonic": "call", - "operands": "0x140007040" + "operands": "0x140007040", + "stack_offset": 0 }, { "address": "0x140007b76", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x140007b79", "size": 4, "mnemonic": "movsxd", - "operands": "rsi, dword ptr [rsi + 0x18]" + "operands": "rsi, dword ptr [rsi + 0x18]", + "stack_offset": 0 }, { "address": "0x140007b7d", "size": 2, "mnemonic": "test", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x140007b7f", "size": 2, "mnemonic": "je", - "operands": "0x140007b8a" + "operands": "0x140007b8a", + "stack_offset": 0 } ], "successors": [ @@ -83111,67 +93391,78 @@ "address": "0x140007bc1", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140007bc4", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140007bc7", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007bca", "size": 5, "mnemonic": "call", - "operands": "0x14000a504" + "operands": "0x14000a504", + "stack_offset": 0 }, { "address": "0x140007bcf", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007bd0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140007bd5", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140007bda", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x40]" + "operands": "rdi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140007bdf", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007be3", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007be5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -83187,79 +93478,92 @@ "address": "0x140007bb8", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140007bbd", "size": 4, "mnemonic": "lea", - "operands": "rbx, [rax + rsi]" + "operands": "rbx, [rax + rsi]", + "stack_offset": 0 }, { "address": "0x140007bc1", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140007bc4", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140007bc7", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007bca", "size": 5, "mnemonic": "call", - "operands": "0x14000a504" + "operands": "0x14000a504", + "stack_offset": 0 }, { "address": "0x140007bcf", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007bd0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140007bd5", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140007bda", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x40]" + "operands": "rdi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140007bdf", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007be3", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007be5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -83275,37 +93579,43 @@ "address": "0x140007b8a", "size": 6, "mnemonic": "mov", - "operands": "r9d, 1" + "operands": "r9d, 1", + "stack_offset": 0 }, { "address": "0x140007b90", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140007b93", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140007b96", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007b99", "size": 5, "mnemonic": "call", - "operands": "0x14000a510" + "operands": "0x14000a510", + "stack_offset": 0 }, { "address": "0x140007b9e", "size": 2, "mnemonic": "jmp", - "operands": "0x140007bd0" + "operands": "0x140007bd0", + "stack_offset": 0 } ], "successors": [ @@ -83322,49 +93632,57 @@ "address": "0x140007b81", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140007b86", "size": 4, "mnemonic": "lea", - "operands": "rbx, [rax + rsi]" + "operands": "rbx, [rax + rsi]", + "stack_offset": 0 }, { "address": "0x140007b8a", "size": 6, "mnemonic": "mov", - "operands": "r9d, 1" + "operands": "r9d, 1", + "stack_offset": 0 }, { "address": "0x140007b90", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140007b93", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140007b96", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007b99", "size": 5, "mnemonic": "call", - "operands": "0x14000a510" + "operands": "0x14000a510", + "stack_offset": 0 }, { "address": "0x140007b9e", "size": 2, "mnemonic": "jmp", - "operands": "0x140007bd0" + "operands": "0x140007bd0", + "stack_offset": 0 } ], "successors": [ @@ -83381,37 +93699,43 @@ "address": "0x140007bd0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140007bd5", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140007bda", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x40]" + "operands": "rdi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140007bdf", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007be3", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007be5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -83433,31 +93757,36 @@ "address": "0x14000662c", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000662f", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x140006632", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r9], rax" + "operands": "qword ptr [r9], rax", + "stack_offset": 0 }, { "address": "0x140006635", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r8], 1" + "operands": "byte ptr [r8], 1", + "stack_offset": 0 }, { "address": "0x140006639", "size": 2, "mnemonic": "je", - "operands": "0x140006649" + "operands": "0x140006649", + "stack_offset": 0 } ], "successors": [ @@ -83475,13 +93804,15 @@ "address": "0x140006649", "size": 3, "mnemonic": "mov", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000664c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -83497,37 +93828,43 @@ "address": "0x14000663b", "size": 4, "mnemonic": "mov", - "operands": "ecx, dword ptr [r8 + 0x14]" + "operands": "ecx, dword ptr [r8 + 0x14]", + "stack_offset": 0 }, { "address": "0x14000663f", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140006642", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rax]" + "operands": "rcx, qword ptr [rcx + rax]", + "stack_offset": 0 }, { "address": "0x140006646", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r9], rcx" + "operands": "qword ptr [r9], rcx", + "stack_offset": 0 }, { "address": "0x140006649", "size": 3, "mnemonic": "mov", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000664c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -83549,73 +93886,85 @@ "address": "0x140007bec", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140007bf1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x140007bf6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rdi" + "operands": "qword ptr [rsp + 0x18], rdi", + "stack_offset": 0 }, { "address": "0x140007bfb", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007bfd", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007c01", "size": 3, "mnemonic": "mov", - "operands": "rsi, r9" + "operands": "rsi, r9", + "stack_offset": 0 }, { "address": "0x140007c04", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140007c07", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140007c09", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [r8 + 4], ebx" + "operands": "dword ptr [r8 + 4], ebx", + "stack_offset": 0 }, { "address": "0x140007c0d", "size": 2, "mnemonic": "jge", - "operands": "0x140007c14" + "operands": "0x140007c14", + "stack_offset": 0 }, { "address": "0x140007c0f", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140007c12", "size": 2, "mnemonic": "jmp", - "operands": "0x140007c1b" + "operands": "0x140007c1b", + "stack_offset": 0 } ], "successors": [ @@ -83632,19 +93981,22 @@ "address": "0x140007c1b", "size": 5, "mnemonic": "call", - "operands": "0x140007934" + "operands": "0x140007934", + "stack_offset": 0 }, { "address": "0x140007c20", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140007c23", "size": 2, "mnemonic": "je", - "operands": "0x140007c61" + "operands": "0x140007c61", + "stack_offset": 0 } ], "successors": [ @@ -83662,43 +94014,50 @@ "address": "0x140007c61", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rsi + 8]" + "operands": "rdx, [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140007c65", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r14 + 0x28]" + "operands": "rcx, qword ptr [r14 + 0x28]", + "stack_offset": 0 }, { "address": "0x140007c69", "size": 5, "mnemonic": "call", - "operands": "0x140007040" + "operands": "0x140007040", + "stack_offset": 0 }, { "address": "0x140007c6e", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x140007c71", "size": 4, "mnemonic": "movsxd", - "operands": "rsi, dword ptr [rsi + 0x18]" + "operands": "rsi, dword ptr [rsi + 0x18]", + "stack_offset": 0 }, { "address": "0x140007c75", "size": 2, "mnemonic": "test", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x140007c77", "size": 2, "mnemonic": "je", - "operands": "0x140007c82" + "operands": "0x140007c82", + "stack_offset": 0 } ], "successors": [ @@ -83716,55 +94075,64 @@ "address": "0x140007c25", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140007c28", "size": 2, "mnemonic": "jne", - "operands": "0x140007c91" + "operands": "0x140007c91", + "stack_offset": 0 }, { "address": "0x140007c2a", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rsi + 8]" + "operands": "rdx, [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140007c2e", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r14 + 0x28]" + "operands": "rcx, qword ptr [r14 + 0x28]", + "stack_offset": 0 }, { "address": "0x140007c32", "size": 5, "mnemonic": "call", - "operands": "0x140007040" + "operands": "0x140007040", + "stack_offset": 0 }, { "address": "0x140007c37", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x140007c3a", "size": 4, "mnemonic": "movsxd", - "operands": "rsi, dword ptr [rsi + 0x18]" + "operands": "rsi, dword ptr [rsi + 0x18]", + "stack_offset": 0 }, { "address": "0x140007c3e", "size": 2, "mnemonic": "test", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x140007c40", "size": 2, "mnemonic": "je", - "operands": "0x140007c4b" + "operands": "0x140007c4b", + "stack_offset": 0 } ], "successors": [ @@ -83782,67 +94150,78 @@ "address": "0x140007c82", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140007c85", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140007c88", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007c8b", "size": 5, "mnemonic": "call", - "operands": "0x14000a504" + "operands": "0x14000a504", + "stack_offset": 0 }, { "address": "0x140007c90", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007c91", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140007c96", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140007c9b", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x40]" + "operands": "rdi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140007ca0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007ca4", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007ca6", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -83858,79 +94237,92 @@ "address": "0x140007c79", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140007c7e", "size": 4, "mnemonic": "lea", - "operands": "rbx, [rax + rsi]" + "operands": "rbx, [rax + rsi]", + "stack_offset": 0 }, { "address": "0x140007c82", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140007c85", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140007c88", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007c8b", "size": 5, "mnemonic": "call", - "operands": "0x14000a504" + "operands": "0x14000a504", + "stack_offset": 0 }, { "address": "0x140007c90", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007c91", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140007c96", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140007c9b", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x40]" + "operands": "rdi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140007ca0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007ca4", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007ca6", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -83946,37 +94338,43 @@ "address": "0x140007c4b", "size": 6, "mnemonic": "mov", - "operands": "r9d, 1" + "operands": "r9d, 1", + "stack_offset": 0 }, { "address": "0x140007c51", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140007c54", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140007c57", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007c5a", "size": 5, "mnemonic": "call", - "operands": "0x14000a510" + "operands": "0x14000a510", + "stack_offset": 0 }, { "address": "0x140007c5f", "size": 2, "mnemonic": "jmp", - "operands": "0x140007c91" + "operands": "0x140007c91", + "stack_offset": 0 } ], "successors": [ @@ -83993,49 +94391,57 @@ "address": "0x140007c42", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140007c47", "size": 4, "mnemonic": "lea", - "operands": "rbx, [rax + rsi]" + "operands": "rbx, [rax + rsi]", + "stack_offset": 0 }, { "address": "0x140007c4b", "size": 6, "mnemonic": "mov", - "operands": "r9d, 1" + "operands": "r9d, 1", + "stack_offset": 0 }, { "address": "0x140007c51", "size": 3, "mnemonic": "mov", - "operands": "r8, r14" + "operands": "r8, r14", + "stack_offset": 0 }, { "address": "0x140007c54", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140007c57", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007c5a", "size": 5, "mnemonic": "call", - "operands": "0x14000a510" + "operands": "0x14000a510", + "stack_offset": 0 }, { "address": "0x140007c5f", "size": 2, "mnemonic": "jmp", - "operands": "0x140007c91" + "operands": "0x140007c91", + "stack_offset": 0 } ], "successors": [ @@ -84052,37 +94458,43 @@ "address": "0x140007c91", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140007c96", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140007c9b", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x40]" + "operands": "rdi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140007ca0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007ca4", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007ca6", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -84104,193 +94516,225 @@ "address": "0x14000a25c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000a261", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000a266", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000a26b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a26c", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a270", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x14000a273", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x14000a276", "size": 3, "mnemonic": "mov", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x14000a279", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x14000a27c", "size": 5, "mnemonic": "call", - "operands": "0x1400075d8" + "operands": "0x1400075d8", + "stack_offset": 0 }, { "address": "0x14000a281", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x48]" + "operands": "r9, [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000a286", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14000a289", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000a28c", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14000a28f", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x14000a291", "size": 5, "mnemonic": "call", - "operands": "0x140006544" + "operands": "0x140006544", + "stack_offset": 0 }, { "address": "0x14000a296", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14000a299", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000a29c", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14000a29f", "size": 5, "mnemonic": "call", - "operands": "0x140007564" + "operands": "0x140007564", + "stack_offset": 0 }, { "address": "0x14000a2a4", "size": 2, "mnemonic": "cmp", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x14000a2a6", "size": 2, "mnemonic": "jle", - "operands": "0x14000a2cb" + "operands": "0x14000a2cb", + "stack_offset": 0 }, { "address": "0x14000a2a8", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebx" + "operands": "r8d, ebx", + "stack_offset": 0 }, { "address": "0x14000a2ab", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x48]" + "operands": "rcx, [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000a2b0", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x14000a2b3", "size": 5, "mnemonic": "call", - "operands": "0x140007590" + "operands": "0x140007590", + "stack_offset": 0 }, { "address": "0x14000a2b8", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14000a2bb", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14000a2be", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000a2c1", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14000a2c4", "size": 5, "mnemonic": "call", - "operands": "0x14000759c" + "operands": "0x14000759c", + "stack_offset": 0 }, { "address": "0x14000a2c9", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a2db" + "operands": "0x14000a2db", + "stack_offset": 0 } ], "successors": [ @@ -84307,43 +94751,50 @@ "address": "0x14000a2db", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000a2e0", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x14000a2e2", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a2e7", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000a2ec", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a2f0", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a2f1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -84365,25 +94816,29 @@ "address": "0x14000d6d0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000d6d4", "size": 5, "mnemonic": "call", - "operands": "0x14001667c" + "operands": "0x14001667c", + "stack_offset": 0 }, { "address": "0x14000d6d9", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000d6dc", "size": 2, "mnemonic": "je", - "operands": "0x14000d6e8" + "operands": "0x14000d6e8", + "stack_offset": 0 } ], "successors": [ @@ -84401,13 +94856,15 @@ "address": "0x14000d6e8", "size": 7, "mnemonic": "test", - "operands": "byte ptr [rip + 0x23af9], 2" + "operands": "byte ptr [rip + 0x23af9], 2", + "stack_offset": 0 }, { "address": "0x14000d6ef", "size": 2, "mnemonic": "je", - "operands": "0x14000d71b" + "operands": "0x14000d71b", + "stack_offset": 0 } ], "successors": [ @@ -84425,25 +94882,29 @@ "address": "0x14000d6de", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x16" + "operands": "ecx, 0x16", + "stack_offset": 0 }, { "address": "0x14000d6e3", "size": 5, "mnemonic": "call", - "operands": "0x1400166cc" + "operands": "0x1400166cc", + "stack_offset": 0 }, { "address": "0x14000d6e8", "size": 7, "mnemonic": "test", - "operands": "byte ptr [rip + 0x23af9], 2" + "operands": "byte ptr [rip + 0x23af9], 2", + "stack_offset": 0 }, { "address": "0x14000d6ef", "size": 2, "mnemonic": "je", - "operands": "0x14000d71b" + "operands": "0x14000d71b", + "stack_offset": 0 } ], "successors": [ @@ -84461,19 +94922,22 @@ "address": "0x14000d71b", "size": 5, "mnemonic": "mov", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x14000d720", "size": 5, "mnemonic": "call", - "operands": "0x14000ebcc" + "operands": "0x14000ebcc", + "stack_offset": 0 }, { "address": "0x14000d725", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -84489,25 +94953,29 @@ "address": "0x14000d6f1", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x17" + "operands": "ecx, 0x17", + "stack_offset": 0 }, { "address": "0x14000d6f6", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x12994]" + "operands": "qword ptr [rip + 0x12994]", + "stack_offset": 0 }, { "address": "0x14000d6fc", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000d6fe", "size": 2, "mnemonic": "je", - "operands": "0x14000d707" + "operands": "0x14000d707", + "stack_offset": 0 } ], "successors": [ @@ -84525,43 +94993,50 @@ "address": "0x14000d707", "size": 6, "mnemonic": "mov", - "operands": "r8d, 1" + "operands": "r8d, 1", + "stack_offset": 0 }, { "address": "0x14000d70d", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x40000015" + "operands": "edx, 0x40000015", + "stack_offset": 0 }, { "address": "0x14000d712", "size": 4, "mnemonic": "lea", - "operands": "ecx, [r8 + 2]" + "operands": "ecx, [r8 + 2]", + "stack_offset": 0 }, { "address": "0x14000d716", "size": 5, "mnemonic": "call", - "operands": "0x14000ace8" + "operands": "0x14000ace8", + "stack_offset": 0 }, { "address": "0x14000d71b", "size": 5, "mnemonic": "mov", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x14000d720", "size": 5, "mnemonic": "call", - "operands": "0x14000ebcc" + "operands": "0x14000ebcc", + "stack_offset": 0 }, { "address": "0x14000d725", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -84577,55 +95052,64 @@ "address": "0x14000d700", "size": 5, "mnemonic": "mov", - "operands": "ecx, 7" + "operands": "ecx, 7", + "stack_offset": 0 }, { "address": "0x14000d705", "size": 2, "mnemonic": "int", - "operands": "0x29" + "operands": "0x29", + "stack_offset": 0 }, { "address": "0x14000d707", "size": 6, "mnemonic": "mov", - "operands": "r8d, 1" + "operands": "r8d, 1", + "stack_offset": 0 }, { "address": "0x14000d70d", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x40000015" + "operands": "edx, 0x40000015", + "stack_offset": 0 }, { "address": "0x14000d712", "size": 4, "mnemonic": "lea", - "operands": "ecx, [r8 + 2]" + "operands": "ecx, [r8 + 2]", + "stack_offset": 0 }, { "address": "0x14000d716", "size": 5, "mnemonic": "call", - "operands": "0x14000ace8" + "operands": "0x14000ace8", + "stack_offset": 0 }, { "address": "0x14000d71b", "size": 5, "mnemonic": "mov", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x14000d720", "size": 5, "mnemonic": "call", - "operands": "0x14000ebcc" + "operands": "0x14000ebcc", + "stack_offset": 0 }, { "address": "0x14000d725", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -84647,25 +95131,29 @@ "address": "0x140007394", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140007398", "size": 5, "mnemonic": "call", - "operands": "0x1400073b0" + "operands": "0x1400073b0", + "stack_offset": 0 }, { "address": "0x14000739d", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400073a0", "size": 2, "mnemonic": "je", - "operands": "0x1400073a7" + "operands": "0x1400073a7", + "stack_offset": 0 } ], "successors": [ @@ -84683,13 +95171,15 @@ "address": "0x1400073a7", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x1400073ac", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -84705,13 +95195,15 @@ "address": "0x1400073a2", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400073a6", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -84733,49 +95225,57 @@ "address": "0x140006de8", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140006dea", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140006dee", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140006df1", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140006df6", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x68], rbx" + "operands": "qword ptr [rax + 0x68], rbx", + "stack_offset": 0 }, { "address": "0x140006dfa", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140006dfe", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140006dff", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -84797,133 +95297,155 @@ "address": "0x140006650", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140006655", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000665a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000665f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140006660", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140006662", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140006664", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140006666", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140006668", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000666c", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x90]" + "operands": "rbx, qword ptr [rsp + 0x90]", + "stack_offset": 0 }, { "address": "0x140006674", "size": 3, "mnemonic": "mov", - "operands": "r15, rdx" + "operands": "r15, rdx", + "stack_offset": 0 }, { "address": "0x140006677", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x14000667a", "size": 3, "mnemonic": "mov", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000667d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140006680", "size": 3, "mnemonic": "mov", - "operands": "rdi, r9" + "operands": "rdi, r9", + "stack_offset": 0 }, { "address": "0x140006683", "size": 3, "mnemonic": "mov", - "operands": "r14d, r8d" + "operands": "r14d, r8d", + "stack_offset": 0 }, { "address": "0x140006686", "size": 3, "mnemonic": "mov", - "operands": "ebp, dword ptr [rbx + 0xc]" + "operands": "ebp, dword ptr [rbx + 0xc]", + "stack_offset": 0 }, { "address": "0x140006689", "size": 5, "mnemonic": "call", - "operands": "0x1400075d8" + "operands": "0x1400075d8", + "stack_offset": 0 }, { "address": "0x14000668e", "size": 3, "mnemonic": "xor", - "operands": "r10d, r10d" + "operands": "r10d, r10d", + "stack_offset": 0 }, { "address": "0x140006691", "size": 3, "mnemonic": "mov", - "operands": "r9d, eax" + "operands": "r9d, eax", + "stack_offset": 0 }, { "address": "0x140006694", "size": 2, "mnemonic": "test", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x140006696", "size": 6, "mnemonic": "je", - "operands": "0x140006780" + "operands": "0x140006780", + "stack_offset": 0 } ], "successors": [ @@ -84941,13 +95463,15 @@ "address": "0x140006780", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140006785", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -84963,133 +95487,155 @@ "address": "0x14000669c", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [rdi + 8]" + "operands": "rdi, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x1400066a0", "size": 4, "mnemonic": "or", - "operands": "r12d, 0xffffffff" + "operands": "r12d, 0xffffffff", + "stack_offset": 0 }, { "address": "0x1400066a4", "size": 4, "mnemonic": "movsxd", - "operands": "r11, dword ptr [rbx + 0x10]" + "operands": "r11, dword ptr [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x1400066a8", "size": 3, "mnemonic": "mov", - "operands": "r8d, r12d" + "operands": "r8d, r12d", + "stack_offset": 0 }, { "address": "0x1400066ab", "size": 3, "mnemonic": "mov", - "operands": "r13d, r12d" + "operands": "r13d, r12d", + "stack_offset": 0 }, { "address": "0x1400066ae", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x1400066b0", "size": 3, "mnemonic": "lea", - "operands": "eax, [rdx - 1]" + "operands": "eax, [rdx - 1]", + "stack_offset": 0 }, { "address": "0x1400066b3", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rax*4]" + "operands": "rcx, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x1400066b7", "size": 2, "mnemonic": "lea", - "operands": "ebx, [rdx]" + "operands": "ebx, [rdx]", + "stack_offset": 0 }, { "address": "0x1400066b9", "size": 2, "mnemonic": "mov", - "operands": "edx, eax" + "operands": "edx, eax", + "stack_offset": 0 }, { "address": "0x1400066bb", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdi + rcx*4]" + "operands": "rax, [rdi + rcx*4]", + "stack_offset": 0 }, { "address": "0x1400066bf", "size": 5, "mnemonic": "cmp", - "operands": "r9d, dword ptr [rax + r11 + 4]" + "operands": "r9d, dword ptr [rax + r11 + 4]", + "stack_offset": 0 }, { "address": "0x1400066c4", "size": 2, "mnemonic": "jle", - "operands": "0x1400066d1" + "operands": "0x1400066d1", + "stack_offset": 0 }, { "address": "0x1400066c6", "size": 5, "mnemonic": "cmp", - "operands": "r9d, dword ptr [rax + r11 + 8]" + "operands": "r9d, dword ptr [rax + r11 + 8]", + "stack_offset": 0 }, { "address": "0x1400066cb", "size": 6, "mnemonic": "jle", - "operands": "0x14000676d" + "operands": "0x14000676d", + "stack_offset": 0 }, { "address": "0x1400066d1", "size": 2, "mnemonic": "test", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400066d3", "size": 2, "mnemonic": "jne", - "operands": "0x1400066b0" + "operands": "0x1400066b0", + "stack_offset": 0 }, { "address": "0x1400066d5", "size": 3, "mnemonic": "mov", - "operands": "r9, r10" + "operands": "r9, r10", + "stack_offset": 0 }, { "address": "0x1400066d8", "size": 3, "mnemonic": "mov", - "operands": "edx, r10d" + "operands": "edx, r10d", + "stack_offset": 0 }, { "address": "0x1400066db", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdi + r11]" + "operands": "rcx, [rdi + r11]", + "stack_offset": 0 }, { "address": "0x1400066df", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x1400066e2", "size": 2, "mnemonic": "je", - "operands": "0x1400066f5" + "operands": "0x1400066f5", + "stack_offset": 0 } ], "successors": [ @@ -85107,13 +95653,15 @@ "address": "0x1400066f5", "size": 3, "mnemonic": "cmp", - "operands": "r14d, dword ptr [rcx]" + "operands": "r14d, dword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x1400066f8", "size": 2, "mnemonic": "jl", - "operands": "0x14000670a" + "operands": "0x14000670a", + "stack_offset": 0 } ], "successors": [ @@ -85131,37 +95679,43 @@ "address": "0x1400066e4", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r9 + 4]" + "operands": "eax, dword ptr [r9 + 4]", + "stack_offset": 0 }, { "address": "0x1400066e8", "size": 2, "mnemonic": "cmp", - "operands": "dword ptr [rcx], eax" + "operands": "dword ptr [rcx], eax", + "stack_offset": 0 }, { "address": "0x1400066ea", "size": 2, "mnemonic": "jle", - "operands": "0x14000670a" + "operands": "0x14000670a", + "stack_offset": 0 }, { "address": "0x1400066ec", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r9 + 8]" + "operands": "eax, dword ptr [r9 + 8]", + "stack_offset": 0 }, { "address": "0x1400066f0", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rcx + 4], eax" + "operands": "dword ptr [rcx + 4], eax", + "stack_offset": 0 }, { "address": "0x1400066f3", "size": 2, "mnemonic": "jg", - "operands": "0x14000670a" + "operands": "0x14000670a", + "stack_offset": 0 } ], "successors": [ @@ -85179,25 +95733,29 @@ "address": "0x14000670a", "size": 2, "mnemonic": "inc", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x14000670c", "size": 4, "mnemonic": "add", - "operands": "rcx, 0x14" + "operands": "rcx, 0x14", + "stack_offset": 0 }, { "address": "0x140006710", "size": 2, "mnemonic": "cmp", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x140006712", "size": 2, "mnemonic": "jb", - "operands": "0x1400066df" + "operands": "0x1400066df", + "stack_offset": 0 } ], "successors": [ @@ -85215,13 +95773,15 @@ "address": "0x1400066fa", "size": 4, "mnemonic": "cmp", - "operands": "r14d, dword ptr [rcx + 4]" + "operands": "r14d, dword ptr [rcx + 4]", + "stack_offset": 0 }, { "address": "0x1400066fe", "size": 2, "mnemonic": "jg", - "operands": "0x14000670a" + "operands": "0x14000670a", + "stack_offset": 0 } ], "successors": [ @@ -85239,13 +95799,15 @@ "address": "0x1400066df", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x1400066e2", "size": 2, "mnemonic": "je", - "operands": "0x1400066f5" + "operands": "0x1400066f5", + "stack_offset": 0 } ], "successors": [ @@ -85263,151 +95825,176 @@ "address": "0x140006714", "size": 3, "mnemonic": "mov", - "operands": "eax, r10d" + "operands": "eax, r10d", + "stack_offset": 0 }, { "address": "0x140006717", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r15" + "operands": "qword ptr [rsp + 0x20], r15", + "stack_offset": 0 }, { "address": "0x14000671c", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x40]" + "operands": "r11, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140006721", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], r15" + "operands": "qword ptr [rsp + 0x30], r15", + "stack_offset": 0 }, { "address": "0x140006726", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x30]" + "operands": "rbx, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x14000672a", "size": 3, "mnemonic": "cmp", - "operands": "r8d, r12d" + "operands": "r8d, r12d", + "stack_offset": 0 }, { "address": "0x14000672d", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x38]" + "operands": "rbp, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x140006731", "size": 4, "mnemonic": "cmovne", - "operands": "eax, r8d" + "operands": "eax, r8d", + "stack_offset": 0 }, { "address": "0x140006735", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x140006739", "size": 4, "mnemonic": "lea", - "operands": "eax, [r13 + 1]" + "operands": "eax, [r13 + 1]", + "stack_offset": 0 }, { "address": "0x14000673d", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rsp + 0x20]" + "operands": "xmm0, xmmword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140006742", "size": 4, "mnemonic": "cmovne", - "operands": "r10d, eax" + "operands": "r10d, eax", + "stack_offset": 0 }, { "address": "0x140006746", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x140006749", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], r10d" + "operands": "dword ptr [rsp + 0x38], r10d", + "stack_offset": 0 }, { "address": "0x14000674e", "size": 5, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rsp + 0x30]" + "operands": "xmm1, xmmword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140006753", "size": 4, "mnemonic": "movdqu", - "operands": "xmmword ptr [rsi], xmm0" + "operands": "xmmword ptr [rsi], xmm0", + "stack_offset": 0 }, { "address": "0x140006757", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rsi + 0x10], xmm1" + "operands": "xmmword ptr [rsi + 0x10], xmm1", + "stack_offset": 0 }, { "address": "0x14000675c", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x40]" + "operands": "rsi, qword ptr [r11 + 0x40]", + "stack_offset": 0 }, { "address": "0x140006760", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140006763", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140006765", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140006767", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140006769", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000676b", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000676c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -85423,43 +96010,50 @@ "address": "0x140006700", "size": 3, "mnemonic": "cmp", - "operands": "r8d, r12d" + "operands": "r8d, r12d", + "stack_offset": 0 }, { "address": "0x140006703", "size": 3, "mnemonic": "mov", - "operands": "r13d, edx" + "operands": "r13d, edx", + "stack_offset": 0 }, { "address": "0x140006706", "size": 4, "mnemonic": "cmove", - "operands": "r8d, edx" + "operands": "r8d, edx", + "stack_offset": 0 }, { "address": "0x14000670a", "size": 2, "mnemonic": "inc", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x14000670c", "size": 4, "mnemonic": "add", - "operands": "rcx, 0x14" + "operands": "rcx, 0x14", + "stack_offset": 0 }, { "address": "0x140006710", "size": 2, "mnemonic": "cmp", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x140006712", "size": 2, "mnemonic": "jb", - "operands": "0x1400066df" + "operands": "0x1400066df", + "stack_offset": 0 } ], "successors": [ @@ -85483,103 +96077,120 @@ "address": "0x140008888", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rbx" + "operands": "qword ptr [rsp + 0x20], rbx", + "stack_offset": 0 }, { "address": "0x14000888d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], r8" + "operands": "qword ptr [rsp + 0x18], r8", + "stack_offset": 0 }, { "address": "0x140008892", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rdx" + "operands": "qword ptr [rsp + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x140008897", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140008898", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140008899", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000889a", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000889c", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000889e", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400088a0", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400088a2", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xc0" + "operands": "rsp, 0xc0", + "stack_offset": 0 }, { "address": "0x1400088a9", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0x80000003" + "operands": "dword ptr [rcx], 0x80000003", + "stack_offset": 0 }, { "address": "0x1400088af", "size": 3, "mnemonic": "mov", - "operands": "rbp, r9" + "operands": "rbp, r9", + "stack_offset": 0 }, { "address": "0x1400088b2", "size": 3, "mnemonic": "mov", - "operands": "r15, r8" + "operands": "r15, r8", + "stack_offset": 0 }, { "address": "0x1400088b5", "size": 3, "mnemonic": "mov", - "operands": "r12, rdx" + "operands": "r12, rdx", + "stack_offset": 0 }, { "address": "0x1400088b8", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x1400088bb", "size": 6, "mnemonic": "je", - "operands": "0x140008ac8" + "operands": "0x140008ac8", + "stack_offset": 0 } ], "successors": [ @@ -85603,85 +96214,99 @@ "address": "0x14000a2f4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbx" + "operands": "qword ptr [rsp + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x14000a2f9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rcx" + "operands": "qword ptr [rsp + 8], rcx", + "stack_offset": 0 }, { "address": "0x14000a2fe", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000a2ff", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000a300", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a301", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a303", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a305", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a307", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a309", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a30d", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x14000a310", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x14000a313", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000a316", "size": 6, "mnemonic": "je", - "operands": "0x14000a3d5" + "operands": "0x14000a3d5", + "stack_offset": 0 } ], "successors": [ @@ -85705,91 +96330,106 @@ "address": "0x14000a3dc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000a3e1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000a3e6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000a3eb", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a3ec", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a3f0", "size": 2, "mnemonic": "xor", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x14000a3f2", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000a3f5", "size": 2, "mnemonic": "cmp", - "operands": "dword ptr [rcx], ebp" + "operands": "dword ptr [rcx], ebp", + "stack_offset": 0 }, { "address": "0x14000a3f7", "size": 2, "mnemonic": "jle", - "operands": "0x14000a449" + "operands": "0x14000a449", + "stack_offset": 0 }, { "address": "0x14000a3f9", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x14000a3fb", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rdi + 4]" + "operands": "rbx, dword ptr [rdi + 4]", + "stack_offset": 0 }, { "address": "0x14000a3ff", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x14000a404", "size": 3, "mnemonic": "add", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x14000a407", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [rax + rbx + 4], 0" + "operands": "dword ptr [rax + rbx + 4], 0", + "stack_offset": 0 }, { "address": "0x14000a40c", "size": 2, "mnemonic": "je", - "operands": "0x14000a429" + "operands": "0x14000a429", + "stack_offset": 0 } ], "successors": [ @@ -85807,37 +96447,43 @@ "address": "0x14000a429", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a42b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + 8]" + "operands": "rcx, [rax + 8]", + "stack_offset": 0 }, { "address": "0x14000a42f", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x27a02]" + "operands": "rdx, [rip + 0x27a02]", + "stack_offset": 0 }, { "address": "0x14000a436", "size": 5, "mnemonic": "call", - "operands": "0x14000735c" + "operands": "0x14000735c", + "stack_offset": 0 }, { "address": "0x14000a43b", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a43d", "size": 2, "mnemonic": "je", - "operands": "0x14000a460" + "operands": "0x14000a460", + "stack_offset": 0 } ], "successors": [ @@ -85855,43 +96501,50 @@ "address": "0x14000a40e", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rdi + 4]" + "operands": "rbx, dword ptr [rdi + 4]", + "stack_offset": 0 }, { "address": "0x14000a412", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x14000a417", "size": 3, "mnemonic": "add", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x14000a41a", "size": 5, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rax + rbx + 4]" + "operands": "rbx, dword ptr [rax + rbx + 4]", + "stack_offset": 0 }, { "address": "0x14000a41f", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x14000a424", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14000a427", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a42b" + "operands": "0x14000a42b", + "stack_offset": 0 } ], "successors": [ @@ -85908,13 +96561,15 @@ "address": "0x14000a460", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14000a462", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a44b" + "operands": "0x14000a44b", + "stack_offset": 0 } ], "successors": [ @@ -85931,25 +96586,29 @@ "address": "0x14000a43f", "size": 2, "mnemonic": "inc", - "operands": "ebp" + "operands": "ebp", + "stack_offset": 0 }, { "address": "0x14000a441", "size": 4, "mnemonic": "add", - "operands": "rsi, 0x14" + "operands": "rsi, 0x14", + "stack_offset": 0 }, { "address": "0x14000a445", "size": 2, "mnemonic": "cmp", - "operands": "ebp, dword ptr [rdi]" + "operands": "ebp, dword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000a447", "size": 2, "mnemonic": "jl", - "operands": "0x14000a3fb" + "operands": "0x14000a3fb", + "stack_offset": 0 } ], "successors": [ @@ -85967,31 +96626,36 @@ "address": "0x14000a42b", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + 8]" + "operands": "rcx, [rax + 8]", + "stack_offset": 0 }, { "address": "0x14000a42f", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x27a02]" + "operands": "rdx, [rip + 0x27a02]", + "stack_offset": 0 }, { "address": "0x14000a436", "size": 5, "mnemonic": "call", - "operands": "0x14000735c" + "operands": "0x14000735c", + "stack_offset": 0 }, { "address": "0x14000a43b", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a43d", "size": 2, "mnemonic": "je", - "operands": "0x14000a460" + "operands": "0x14000a460", + "stack_offset": 0 } ], "successors": [ @@ -86009,37 +96673,43 @@ "address": "0x14000a44b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a450", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000a455", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000a45a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a45e", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a45f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -86055,31 +96725,36 @@ "address": "0x14000a3fb", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rdi + 4]" + "operands": "rbx, dword ptr [rdi + 4]", + "stack_offset": 0 }, { "address": "0x14000a3ff", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x14000a404", "size": 3, "mnemonic": "add", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x14000a407", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [rax + rbx + 4], 0" + "operands": "dword ptr [rax + rbx + 4], 0", + "stack_offset": 0 }, { "address": "0x14000a40c", "size": 2, "mnemonic": "je", - "operands": "0x14000a429" + "operands": "0x14000a429", + "stack_offset": 0 } ], "successors": [ @@ -86097,43 +96772,50 @@ "address": "0x14000a449", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14000a44b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a450", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000a455", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000a45a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a45e", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a45f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -86155,31 +96837,36 @@ "address": "0x140006dbc", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140006dc0", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140006dc5", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x68]" + "operands": "rax, qword ptr [rax + 0x68]", + "stack_offset": 0 }, { "address": "0x140006dc9", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140006dcd", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -86201,85 +96888,99 @@ "address": "0x140008df4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140008df9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x140008dfe", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x140008e03", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140008e04", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140008e06", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140008e08", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140008e0c", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rcx + 4]" + "operands": "rbx, dword ptr [rcx + 4]", + "stack_offset": 0 }, { "address": "0x140008e10", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140008e12", "size": 3, "mnemonic": "mov", - "operands": "r15, r8" + "operands": "r15, r8", + "stack_offset": 0 }, { "address": "0x140008e15", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x140008e18", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x140008e1b", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140008e1d", "size": 6, "mnemonic": "je", - "operands": "0x140008ef5" + "operands": "0x140008ef5", + "stack_offset": 0 } ], "successors": [ @@ -86297,55 +96998,64 @@ "address": "0x140008ef5", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140008efa", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140008eff", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x140008f04", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140008f09", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140008f0d", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140008f0f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140008f11", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140008f12", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -86361,25 +97071,29 @@ "address": "0x140008e23", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008e28", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x140008e2b", "size": 3, "mnemonic": "add", - "operands": "r9, rbx" + "operands": "r9, rbx", + "stack_offset": 0 }, { "address": "0x140008e2e", "size": 6, "mnemonic": "je", - "operands": "0x140008ef5" + "operands": "0x140008ef5", + "stack_offset": 0 } ], "successors": [ @@ -86397,19 +97111,22 @@ "address": "0x140008e34", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rsi + 4]" + "operands": "rbx, dword ptr [rsi + 4]", + "stack_offset": 0 }, { "address": "0x140008e38", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140008e3a", "size": 2, "mnemonic": "je", - "operands": "0x140008e47" + "operands": "0x140008e47", + "stack_offset": 0 } ], "successors": [ @@ -86427,19 +97144,22 @@ "address": "0x140008e47", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140008e4a", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 0x10], dil" + "operands": "byte ptr [rcx + 0x10], dil", + "stack_offset": 0 }, { "address": "0x140008e4e", "size": 6, "mnemonic": "je", - "operands": "0x140008ef5" + "operands": "0x140008ef5", + "stack_offset": 0 } ], "successors": [ @@ -86457,19 +97177,22 @@ "address": "0x140008e3c", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008e41", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + rax]" + "operands": "rcx, [rbx + rax]", + "stack_offset": 0 }, { "address": "0x140008e45", "size": 2, "mnemonic": "jmp", - "operands": "0x140008e4a" + "operands": "0x140008e4a", + "stack_offset": 0 } ], "successors": [ @@ -86486,13 +97209,15 @@ "address": "0x140008e54", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rsi], 0x80" + "operands": "byte ptr [rsi], 0x80", + "stack_offset": 0 }, { "address": "0x140008e57", "size": 2, "mnemonic": "je", - "operands": "0x140008e63" + "operands": "0x140008e63", + "stack_offset": 0 } ], "successors": [ @@ -86510,13 +97235,15 @@ "address": "0x140008e4a", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 0x10], dil" + "operands": "byte ptr [rcx + 0x10], dil", + "stack_offset": 0 }, { "address": "0x140008e4e", "size": 6, "mnemonic": "je", - "operands": "0x140008ef5" + "operands": "0x140008ef5", + "stack_offset": 0 } ], "successors": [ @@ -86534,19 +97261,22 @@ "address": "0x140008e63", "size": 4, "mnemonic": "movsxd", - "operands": "rbp, dword ptr [rsi + 4]" + "operands": "rbp, dword ptr [rsi + 4]", + "stack_offset": 0 }, { "address": "0x140008e67", "size": 2, "mnemonic": "test", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x140008e69", "size": 2, "mnemonic": "je", - "operands": "0x140008e76" + "operands": "0x140008e76", + "stack_offset": 0 } ], "successors": [ @@ -86564,31 +97294,36 @@ "address": "0x140008e59", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r14], 0x10" + "operands": "byte ptr [r14], 0x10", + "stack_offset": 0 }, { "address": "0x140008e5d", "size": 6, "mnemonic": "jne", - "operands": "0x140008ef5" + "operands": "0x140008ef5", + "stack_offset": 0 }, { "address": "0x140008e63", "size": 4, "mnemonic": "movsxd", - "operands": "rbp, dword ptr [rsi + 4]" + "operands": "rbp, dword ptr [rsi + 4]", + "stack_offset": 0 }, { "address": "0x140008e67", "size": 2, "mnemonic": "test", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x140008e69", "size": 2, "mnemonic": "je", - "operands": "0x140008e76" + "operands": "0x140008e76", + "stack_offset": 0 } ], "successors": [ @@ -86606,37 +97341,43 @@ "address": "0x140008e76", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x140008e79", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008e7e", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [r14 + 4]" + "operands": "rcx, dword ptr [r14 + 4]", + "stack_offset": 0 }, { "address": "0x140008e82", "size": 3, "mnemonic": "add", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140008e85", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140008e88", "size": 2, "mnemonic": "je", - "operands": "0x140008ec1" + "operands": "0x140008ec1", + "stack_offset": 0 } ], "successors": [ @@ -86654,19 +97395,22 @@ "address": "0x140008e6b", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008e70", "size": 4, "mnemonic": "lea", - "operands": "rbx, [rax + rbp]" + "operands": "rbx, [rax + rbp]", + "stack_offset": 0 }, { "address": "0x140008e74", "size": 2, "mnemonic": "jmp", - "operands": "0x140008e79" + "operands": "0x140008e79", + "stack_offset": 0 } ], "successors": [ @@ -86683,19 +97427,22 @@ "address": "0x140008ec1", "size": 2, "mnemonic": "mov", - "operands": "al, 2" + "operands": "al, 2", + "stack_offset": 0 }, { "address": "0x140008ec3", "size": 3, "mnemonic": "test", - "operands": "byte ptr [r14], al" + "operands": "byte ptr [r14], al", + "stack_offset": 0 }, { "address": "0x140008ec6", "size": 2, "mnemonic": "je", - "operands": "0x140008ecd" + "operands": "0x140008ecd", + "stack_offset": 0 } ], "successors": [ @@ -86713,19 +97460,22 @@ "address": "0x140008e8a", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rsi + 4]" + "operands": "rbx, dword ptr [rsi + 4]", + "stack_offset": 0 }, { "address": "0x140008e8e", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140008e90", "size": 2, "mnemonic": "je", - "operands": "0x140008e9d" + "operands": "0x140008e9d", + "stack_offset": 0 } ], "successors": [ @@ -86743,31 +97493,36 @@ "address": "0x140008e79", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008e7e", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [r14 + 4]" + "operands": "rcx, dword ptr [r14 + 4]", + "stack_offset": 0 }, { "address": "0x140008e82", "size": 3, "mnemonic": "add", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140008e85", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140008e88", "size": 2, "mnemonic": "je", - "operands": "0x140008ec1" + "operands": "0x140008ec1", + "stack_offset": 0 } ], "successors": [ @@ -86785,13 +97540,15 @@ "address": "0x140008ecd", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r15], 1" + "operands": "byte ptr [r15], 1", + "stack_offset": 0 }, { "address": "0x140008ed1", "size": 2, "mnemonic": "je", - "operands": "0x140008ed8" + "operands": "0x140008ed8", + "stack_offset": 0 } ], "successors": [ @@ -86809,13 +97566,15 @@ "address": "0x140008ec8", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rsi], 8" + "operands": "byte ptr [rsi], 8", + "stack_offset": 0 }, { "address": "0x140008ecb", "size": 2, "mnemonic": "je", - "operands": "0x140008ef1" + "operands": "0x140008ef1", + "stack_offset": 0 } ], "successors": [ @@ -86833,55 +97592,64 @@ "address": "0x140008e9d", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdi" + "operands": "rbp, rdi", + "stack_offset": 0 }, { "address": "0x140008ea0", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r14 + 4]" + "operands": "rbx, dword ptr [r14 + 4]", + "stack_offset": 0 }, { "address": "0x140008ea4", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008ea9", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbx + 0x10]" + "operands": "rdx, [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x140008ead", "size": 3, "mnemonic": "add", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140008eb0", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140008eb4", "size": 5, "mnemonic": "call", - "operands": "0x14001efd0" + "operands": "0x14001efd0", + "stack_offset": 0 }, { "address": "0x140008eb9", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008ebb", "size": 2, "mnemonic": "je", - "operands": "0x140008ec1" + "operands": "0x140008ec1", + "stack_offset": 0 } ], "successors": [ @@ -86899,19 +97667,22 @@ "address": "0x140008e92", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008e97", "size": 4, "mnemonic": "lea", - "operands": "rbp, [rbx + rax]" + "operands": "rbp, [rbx + rax]", + "stack_offset": 0 }, { "address": "0x140008e9b", "size": 2, "mnemonic": "jmp", - "operands": "0x140008ea0" + "operands": "0x140008ea0", + "stack_offset": 0 } ], "successors": [ @@ -86928,13 +97699,15 @@ "address": "0x140008ed8", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r15], 4" + "operands": "byte ptr [r15], 4", + "stack_offset": 0 }, { "address": "0x140008edc", "size": 2, "mnemonic": "je", - "operands": "0x140008ee3" + "operands": "0x140008ee3", + "stack_offset": 0 } ], "successors": [ @@ -86952,13 +97725,15 @@ "address": "0x140008ed3", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rsi], 1" + "operands": "byte ptr [rsi], 1", + "stack_offset": 0 }, { "address": "0x140008ed6", "size": 2, "mnemonic": "je", - "operands": "0x140008ef1" + "operands": "0x140008ef1", + "stack_offset": 0 } ], "successors": [ @@ -86976,13 +97751,15 @@ "address": "0x140008ef1", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140008ef3", "size": 2, "mnemonic": "jmp", - "operands": "0x140008efa" + "operands": "0x140008efa", + "stack_offset": 0 } ], "successors": [ @@ -86999,13 +97776,15 @@ "address": "0x140008ebd", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008ebf", "size": 2, "mnemonic": "jmp", - "operands": "0x140008efa" + "operands": "0x140008efa", + "stack_offset": 0 } ], "successors": [ @@ -87022,49 +97801,57 @@ "address": "0x140008ea0", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r14 + 4]" + "operands": "rbx, dword ptr [r14 + 4]", + "stack_offset": 0 }, { "address": "0x140008ea4", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008ea9", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbx + 0x10]" + "operands": "rdx, [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x140008ead", "size": 3, "mnemonic": "add", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140008eb0", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140008eb4", "size": 5, "mnemonic": "call", - "operands": "0x14001efd0" + "operands": "0x14001efd0", + "stack_offset": 0 }, { "address": "0x140008eb9", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008ebb", "size": 2, "mnemonic": "je", - "operands": "0x140008ec1" + "operands": "0x140008ec1", + "stack_offset": 0 } ], "successors": [ @@ -87082,13 +97869,15 @@ "address": "0x140008ee3", "size": 3, "mnemonic": "test", - "operands": "byte ptr [r15], al" + "operands": "byte ptr [r15], al", + "stack_offset": 0 }, { "address": "0x140008ee6", "size": 2, "mnemonic": "je", - "operands": "0x140008eec" + "operands": "0x140008eec", + "stack_offset": 0 } ], "successors": [ @@ -87106,13 +97895,15 @@ "address": "0x140008ede", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rsi], 4" + "operands": "byte ptr [rsi], 4", + "stack_offset": 0 }, { "address": "0x140008ee1", "size": 2, "mnemonic": "je", - "operands": "0x140008ef1" + "operands": "0x140008ef1", + "stack_offset": 0 } ], "successors": [ @@ -87130,49 +97921,57 @@ "address": "0x140008efa", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140008eff", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x140008f04", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140008f09", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140008f0d", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140008f0f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140008f11", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140008f12", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -87188,19 +97987,22 @@ "address": "0x140008eec", "size": 5, "mnemonic": "mov", - "operands": "edi, 1" + "operands": "edi, 1", + "stack_offset": 0 }, { "address": "0x140008ef1", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140008ef3", "size": 2, "mnemonic": "jmp", - "operands": "0x140008efa" + "operands": "0x140008efa", + "stack_offset": 0 } ], "successors": [ @@ -87217,13 +98019,15 @@ "address": "0x140008ee8", "size": 2, "mnemonic": "test", - "operands": "byte ptr [rsi], al" + "operands": "byte ptr [rsi], al", + "stack_offset": 0 }, { "address": "0x140008eea", "size": 2, "mnemonic": "je", - "operands": "0x140008ef1" + "operands": "0x140008ef1", + "stack_offset": 0 } ], "successors": [ @@ -87247,31 +98051,36 @@ "address": "0x140010b70", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140010b74", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x140010b79", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x18]" + "operands": "rax, qword ptr [rax + 0x18]", + "stack_offset": 0 }, { "address": "0x140010b7d", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140010b80", "size": 2, "mnemonic": "je", - "operands": "0x140010b89" + "operands": "0x140010b89", + "stack_offset": 0 } ], "successors": [ @@ -87289,19 +98098,22 @@ "address": "0x140010b89", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140010b8e", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140010b8f", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -87317,13 +98129,15 @@ "address": "0x140010b82", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x140010b87", "size": 2, "mnemonic": "jmp", - "operands": "0x140010b89" + "operands": "0x140010b89", + "stack_offset": 0 } ], "successors": [ @@ -87346,13 +98160,15 @@ "address": "0x140006f98", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140006f9b", "size": 2, "mnemonic": "je", - "operands": "0x14000700b" + "operands": "0x14000700b", + "stack_offset": 0 } ], "successors": [ @@ -87370,7 +98186,8 @@ "address": "0x14000700b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -87386,55 +98203,64 @@ "address": "0x140006f9d", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x10], dl" + "operands": "byte ptr [rsp + 0x10], dl", + "stack_offset": 0 }, { "address": "0x140006fa1", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x140006fa5", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0xe06d7363" + "operands": "dword ptr [rcx], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x140006fab", "size": 2, "mnemonic": "jne", - "operands": "0x140007007" + "operands": "0x140007007", + "stack_offset": 0 }, { "address": "0x140006fad", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rcx + 0x18], 4" + "operands": "dword ptr [rcx + 0x18], 4", + "stack_offset": 0 }, { "address": "0x140006fb1", "size": 2, "mnemonic": "jne", - "operands": "0x140007007" + "operands": "0x140007007", + "stack_offset": 0 }, { "address": "0x140006fb3", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rcx + 0x20]" + "operands": "eax, dword ptr [rcx + 0x20]", + "stack_offset": 0 }, { "address": "0x140006fb6", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930520" + "operands": "eax, 0x19930520", + "stack_offset": 0 }, { "address": "0x140006fbb", "size": 2, "mnemonic": "je", - "operands": "0x140006fc7" + "operands": "0x140006fc7", + "stack_offset": 0 } ], "successors": [ @@ -87452,19 +98278,22 @@ "address": "0x140006fc7", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x30]" + "operands": "rax, qword ptr [rcx + 0x30]", + "stack_offset": 0 }, { "address": "0x140006fcb", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140006fce", "size": 2, "mnemonic": "je", - "operands": "0x140007007" + "operands": "0x140007007", + "stack_offset": 0 } ], "successors": [ @@ -87482,19 +98311,22 @@ "address": "0x140006fbd", "size": 5, "mnemonic": "add", - "operands": "eax, 0xe66cfadf" + "operands": "eax, 0xe66cfadf", + "stack_offset": 0 }, { "address": "0x140006fc2", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140006fc5", "size": 2, "mnemonic": "ja", - "operands": "0x140007007" + "operands": "0x140007007", + "stack_offset": 0 } ], "successors": [ @@ -87512,13 +98344,15 @@ "address": "0x140007007", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x14000700b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -87534,19 +98368,22 @@ "address": "0x140006fd0", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rax + 4]" + "operands": "rdx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140006fd4", "size": 2, "mnemonic": "test", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140006fd6", "size": 2, "mnemonic": "je", - "operands": "0x140006fe9" + "operands": "0x140006fe9", + "stack_offset": 0 } ], "successors": [ @@ -87564,13 +98401,15 @@ "address": "0x140006fe9", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rax], 0x10" + "operands": "byte ptr [rax], 0x10", + "stack_offset": 0 }, { "address": "0x140006fec", "size": 2, "mnemonic": "je", - "operands": "0x140007007" + "operands": "0x140007007", + "stack_offset": 0 } ], "successors": [ @@ -87588,25 +98427,29 @@ "address": "0x140006fd8", "size": 4, "mnemonic": "add", - "operands": "rdx, qword ptr [rcx + 0x38]" + "operands": "rdx, qword ptr [rcx + 0x38]", + "stack_offset": 0 }, { "address": "0x140006fdc", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x28]" + "operands": "rcx, qword ptr [rcx + 0x28]", + "stack_offset": 0 }, { "address": "0x140006fe0", "size": 5, "mnemonic": "call", - "operands": "0x14000700c" + "operands": "0x14000700c", + "stack_offset": 0 }, { "address": "0x140006fe5", "size": 2, "mnemonic": "jmp", - "operands": "0x140007007" + "operands": "0x140007007", + "stack_offset": 0 } ], "successors": [ @@ -87623,25 +98466,29 @@ "address": "0x140006fee", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x28]" + "operands": "rax, qword ptr [rcx + 0x28]", + "stack_offset": 0 }, { "address": "0x140006ff2", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140006ff5", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140006ff8", "size": 2, "mnemonic": "je", - "operands": "0x140007007" + "operands": "0x140007007", + "stack_offset": 0 } ], "successors": [ @@ -87659,31 +98506,36 @@ "address": "0x140006ffa", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140006ffd", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x10]" + "operands": "rax, qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140007001", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x192b9]" + "operands": "qword ptr [rip + 0x192b9]", + "stack_offset": 0 }, { "address": "0x140007007", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x14000700b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -87705,43 +98557,50 @@ "address": "0x140009724", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1a7dd]" + "operands": "rax, [rip + 0x1a7dd]", + "stack_offset": 0 }, { "address": "0x14000972b", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x10], 0" + "operands": "qword ptr [rcx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140009733", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 8], rax" + "operands": "qword ptr [rcx + 8], rax", + "stack_offset": 0 }, { "address": "0x140009737", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1a7ba]" + "operands": "rax, [rip + 0x1a7ba]", + "stack_offset": 0 }, { "address": "0x14000973e", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rax" + "operands": "qword ptr [rcx], rax", + "stack_offset": 0 }, { "address": "0x140009741", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140009744", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -87763,55 +98622,64 @@ "address": "0x140006198", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbx" + "operands": "qword ptr [rsp + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x14000619d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x1400061a2", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400061a3", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x1400061a7", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x1400061aa", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x1400061ad", "size": 5, "mnemonic": "mov", - "operands": "edi, 0x19930520" + "operands": "edi, 0x19930520", + "stack_offset": 0 }, { "address": "0x1400061b2", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x1400061b5", "size": 2, "mnemonic": "je", - "operands": "0x1400061d4" + "operands": "0x1400061d4", + "stack_offset": 0 } ], "successors": [ @@ -87829,25 +98697,29 @@ "address": "0x1400061d4", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400061d6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x1400061db", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400061de", "size": 2, "mnemonic": "je", - "operands": "0x140006202" + "operands": "0x140006202", + "stack_offset": 0 } ], "successors": [ @@ -87865,13 +98737,15 @@ "address": "0x1400061b7", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rdx], 0x10" + "operands": "byte ptr [rdx], 0x10", + "stack_offset": 0 }, { "address": "0x1400061ba", "size": 2, "mnemonic": "je", - "operands": "0x1400061d4" + "operands": "0x1400061d4", + "stack_offset": 0 } ], "successors": [ @@ -87889,85 +98763,99 @@ "address": "0x140006202", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140006207", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rdi" + "operands": "qword ptr [rsp + 0x28], rdi", + "stack_offset": 0 }, { "address": "0x14000620c", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x28]" + "operands": "r9, [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x140006211", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rsi" + "operands": "qword ptr [rsp + 0x30], rsi", + "stack_offset": 0 }, { "address": "0x140006216", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xe06d7363" + "operands": "ecx, 0xe06d7363", + "stack_offset": 0 }, { "address": "0x14000621b", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rbx" + "operands": "qword ptr [rsp + 0x38], rbx", + "stack_offset": 0 }, { "address": "0x140006220", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rax" + "operands": "qword ptr [rsp + 0x40], rax", + "stack_offset": 0 }, { "address": "0x140006225", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rdx + 3]" + "operands": "r8d, [rdx + 3]", + "stack_offset": 0 }, { "address": "0x140006229", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x19eb9]" + "operands": "qword ptr [rip + 0x19eb9]", + "stack_offset": 0 }, { "address": "0x14000622f", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140006234", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x78]" + "operands": "rsi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140006239", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14000623d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000623e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -87983,139 +98871,162 @@ "address": "0x1400061e0", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x20]" + "operands": "rdx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400061e5", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400061e8", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x19ef2]" + "operands": "qword ptr [rip + 0x19ef2]", + "stack_offset": 0 }, { "address": "0x1400061ee", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x1400061f3", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rbx], 8" + "operands": "byte ptr [rbx], 8", + "stack_offset": 0 }, { "address": "0x1400061f6", "size": 2, "mnemonic": "jne", - "operands": "0x1400061fd" + "operands": "0x1400061fd", + "stack_offset": 0 }, { "address": "0x1400061f8", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400061fb", "size": 2, "mnemonic": "jne", - "operands": "0x140006202" + "operands": "0x140006202", + "stack_offset": 0 }, { "address": "0x1400061fd", "size": 5, "mnemonic": "mov", - "operands": "edi, 0x1994000" + "operands": "edi, 0x1994000", + "stack_offset": 0 }, { "address": "0x140006202", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140006207", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rdi" + "operands": "qword ptr [rsp + 0x28], rdi", + "stack_offset": 0 }, { "address": "0x14000620c", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x28]" + "operands": "r9, [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x140006211", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rsi" + "operands": "qword ptr [rsp + 0x30], rsi", + "stack_offset": 0 }, { "address": "0x140006216", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xe06d7363" + "operands": "ecx, 0xe06d7363", + "stack_offset": 0 }, { "address": "0x14000621b", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rbx" + "operands": "qword ptr [rsp + 0x38], rbx", + "stack_offset": 0 }, { "address": "0x140006220", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rax" + "operands": "qword ptr [rsp + 0x40], rax", + "stack_offset": 0 }, { "address": "0x140006225", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rdx + 3]" + "operands": "r8d, [rdx + 3]", + "stack_offset": 0 }, { "address": "0x140006229", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x19eb9]" + "operands": "qword ptr [rip + 0x19eb9]", + "stack_offset": 0 }, { "address": "0x14000622f", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140006234", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x78]" + "operands": "rsi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140006239", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14000623d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000623e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -88131,61 +99042,71 @@ "address": "0x1400061bc", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x1400061bf", "size": 4, "mnemonic": "add", - "operands": "rcx, -8" + "operands": "rcx, -8", + "stack_offset": 0 }, { "address": "0x1400061c3", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x1400061c6", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rax + 0x30]" + "operands": "rbx, qword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x1400061ca", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x40]" + "operands": "rax, qword ptr [rax + 0x40]", + "stack_offset": 0 }, { "address": "0x1400061ce", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a0ec]" + "operands": "qword ptr [rip + 0x1a0ec]", + "stack_offset": 0 }, { "address": "0x1400061d4", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400061d6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x1400061db", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400061de", "size": 2, "mnemonic": "je", - "operands": "0x140006202" + "operands": "0x140006202", + "stack_offset": 0 } ], "successors": [ @@ -88209,85 +99130,99 @@ "address": "0x140006478", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000647a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000647e", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x140006481", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x140006484", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140006487", "size": 5, "mnemonic": "call", - "operands": "0x1400075d8" + "operands": "0x1400075d8", + "stack_offset": 0 }, { "address": "0x14000648c", "size": 2, "mnemonic": "mov", - "operands": "edx, eax" + "operands": "edx, eax", + "stack_offset": 0 }, { "address": "0x14000648e", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140006491", "size": 5, "mnemonic": "call", - "operands": "0x1400062e8" + "operands": "0x1400062e8", + "stack_offset": 0 }, { "address": "0x140006496", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140006499", "size": 3, "mnemonic": "setne", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x14000649c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400064a0", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400064a1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -88309,13 +99244,15 @@ "address": "0x1400075e0", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rdx]" + "operands": "r8, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400075e3", "size": 5, "mnemonic": "jmp", - "operands": "0x140007650" + "operands": "0x140007650", + "stack_offset": 0 } ], "successors": [ @@ -88332,67 +99269,78 @@ "address": "0x140007650", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140007653", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rbx" + "operands": "qword ptr [rax + 8], rbx", + "stack_offset": 0 }, { "address": "0x140007657", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rbp" + "operands": "qword ptr [rax + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000765b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], rsi" + "operands": "qword ptr [rax + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000765f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rdi" + "operands": "qword ptr [rax + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x140007663", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007665", "size": 3, "mnemonic": "or", - "operands": "ebp, 0xffffffff" + "operands": "ebp, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140007668", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x14000766b", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rcx + 0x10], 0" + "operands": "dword ptr [rcx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000766f", "size": 3, "mnemonic": "mov", - "operands": "r10, rdx" + "operands": "r10, rdx", + "stack_offset": 0 }, { "address": "0x140007672", "size": 6, "mnemonic": "je", - "operands": "0x140007724" + "operands": "0x140007724", + "stack_offset": 0 } ], "successors": [ @@ -88410,43 +99358,50 @@ "address": "0x140007724", "size": 2, "mnemonic": "mov", - "operands": "eax, ebp" + "operands": "eax, ebp", + "stack_offset": 0 }, { "address": "0x140007726", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x10]" + "operands": "rbx, qword ptr [rsp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000772b", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x18]" + "operands": "rbp, qword ptr [rsp + 0x18]", + "stack_offset": 0 }, { "address": "0x140007730", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x20]" + "operands": "rsi, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140007735", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x28]" + "operands": "rdi, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000773a", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000773c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -88462,97 +99417,113 @@ "address": "0x140007678", "size": 4, "mnemonic": "movsxd", - "operands": "r9, dword ptr [rcx + 0x10]" + "operands": "r9, dword ptr [rcx + 0x10]", + "stack_offset": 0 }, { "address": "0x14000767c", "size": 7, "mnemonic": "lea", - "operands": "r14, [rip - 0x7683]" + "operands": "r14, [rip - 0x7683]", + "stack_offset": 0 }, { "address": "0x140007683", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [rdx + 8]" + "operands": "rsi, qword ptr [rdx + 8]", + "stack_offset": 0 }, { "address": "0x140007687", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140007689", "size": 3, "mnemonic": "add", - "operands": "r9, rsi" + "operands": "r9, rsi", + "stack_offset": 0 }, { "address": "0x14000768c", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000768f", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x140007691", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r9]" + "operands": "ecx, byte ptr [r9]", + "stack_offset": 0 }, { "address": "0x140007695", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140007698", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r14 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r14 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x1400076a1", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r14 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r14 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x1400076a9", "size": 3, "mnemonic": "sub", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x1400076ac", "size": 4, "mnemonic": "mov", - "operands": "r11d, dword ptr [r9 - 4]" + "operands": "r11d, dword ptr [r9 - 4]", + "stack_offset": 0 }, { "address": "0x1400076b0", "size": 3, "mnemonic": "shr", - "operands": "r11d, cl" + "operands": "r11d, cl", + "stack_offset": 0 }, { "address": "0x1400076b3", "size": 3, "mnemonic": "test", - "operands": "r11d, r11d" + "operands": "r11d, r11d", + "stack_offset": 0 }, { "address": "0x1400076b6", "size": 2, "mnemonic": "je", - "operands": "0x140007724" + "operands": "0x140007724", + "stack_offset": 0 } ], "successors": [ @@ -88570,91 +99541,106 @@ "address": "0x1400076b8", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r10 + 0x10]" + "operands": "rax, qword ptr [r10 + 0x10]", + "stack_offset": 0 }, { "address": "0x1400076bc", "size": 3, "mnemonic": "mov", - "operands": "r10d, dword ptr [rax]" + "operands": "r10d, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400076bf", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r9]" + "operands": "ecx, byte ptr [r9]", + "stack_offset": 0 }, { "address": "0x1400076c3", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x1400076c6", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r14 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r14 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x1400076cf", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r14 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r14 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x1400076d7", "size": 3, "mnemonic": "sub", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x1400076da", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r9 - 4]" + "operands": "eax, dword ptr [r9 - 4]", + "stack_offset": 0 }, { "address": "0x1400076de", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x1400076e0", "size": 2, "mnemonic": "add", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x1400076e2", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x1400076e4", "size": 3, "mnemonic": "add", - "operands": "rax, r10" + "operands": "rax, r10", + "stack_offset": 0 }, { "address": "0x1400076e7", "size": 3, "mnemonic": "add", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x1400076ea", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400076ed", "size": 2, "mnemonic": "jb", - "operands": "0x14000771a" + "operands": "0x14000771a", + "stack_offset": 0 } ], "successors": [ @@ -88672,25 +99658,29 @@ "address": "0x14000771a", "size": 3, "mnemonic": "test", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000771d", "size": 3, "mnemonic": "cmove", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x140007720", "size": 2, "mnemonic": "mov", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x140007722", "size": 2, "mnemonic": "jmp", - "operands": "0x140007726" + "operands": "0x140007726", + "stack_offset": 0 } ], "successors": [ @@ -88707,67 +99697,78 @@ "address": "0x1400076ef", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r9]" + "operands": "ecx, byte ptr [r9]", + "stack_offset": 0 }, { "address": "0x1400076f3", "size": 3, "mnemonic": "inc", - "operands": "r8d" + "operands": "r8d", + "stack_offset": 0 }, { "address": "0x1400076f6", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x1400076f9", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r14 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r14 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140007702", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r14 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r14 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000770a", "size": 3, "mnemonic": "sub", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x14000770d", "size": 4, "mnemonic": "mov", - "operands": "edx, dword ptr [r9 - 4]" + "operands": "edx, dword ptr [r9 - 4]", + "stack_offset": 0 }, { "address": "0x140007711", "size": 2, "mnemonic": "shr", - "operands": "edx, cl" + "operands": "edx, cl", + "stack_offset": 0 }, { "address": "0x140007713", "size": 2, "mnemonic": "dec", - "operands": "edx" + "operands": "edx", + "stack_offset": 0 }, { "address": "0x140007715", "size": 3, "mnemonic": "cmp", - "operands": "r8d, r11d" + "operands": "r8d, r11d", + "stack_offset": 0 }, { "address": "0x140007718", "size": 2, "mnemonic": "jb", - "operands": "0x1400076bf" + "operands": "0x1400076bf", + "stack_offset": 0 } ], "successors": [ @@ -88785,37 +99786,43 @@ "address": "0x140007726", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x10]" + "operands": "rbx, qword ptr [rsp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000772b", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x18]" + "operands": "rbp, qword ptr [rsp + 0x18]", + "stack_offset": 0 }, { "address": "0x140007730", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x20]" + "operands": "rsi, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140007735", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x28]" + "operands": "rdi, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000773a", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000773c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -88831,79 +99838,92 @@ "address": "0x1400076bf", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r9]" + "operands": "ecx, byte ptr [r9]", + "stack_offset": 0 }, { "address": "0x1400076c3", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x1400076c6", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r14 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r14 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x1400076cf", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r14 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r14 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x1400076d7", "size": 3, "mnemonic": "sub", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x1400076da", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r9 - 4]" + "operands": "eax, dword ptr [r9 - 4]", + "stack_offset": 0 }, { "address": "0x1400076de", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x1400076e0", "size": 2, "mnemonic": "add", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x1400076e2", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x1400076e4", "size": 3, "mnemonic": "add", - "operands": "rax, r10" + "operands": "rax, r10", + "stack_offset": 0 }, { "address": "0x1400076e7", "size": 3, "mnemonic": "add", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x1400076ea", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400076ed", "size": 2, "mnemonic": "jb", - "operands": "0x14000771a" + "operands": "0x14000771a", + "stack_offset": 0 } ], "successors": [ @@ -88927,49 +99947,57 @@ "address": "0x140009604", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140009606", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x140009609", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 8], rax" + "operands": "qword ptr [rcx + 8], rax", + "stack_offset": 0 }, { "address": "0x14000960d", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x140009610", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x10], rax" + "operands": "qword ptr [rcx + 0x10], rax", + "stack_offset": 0 }, { "address": "0x140009614", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x18], xmm0" + "operands": "xmmword ptr [rcx + 0x18], xmm0", + "stack_offset": 0 }, { "address": "0x140009618", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rdx + 0xc], eax" + "operands": "dword ptr [rdx + 0xc], eax", + "stack_offset": 0 }, { "address": "0x14000961b", "size": 6, "mnemonic": "je", - "operands": "0x1400096e2" + "operands": "0x1400096e2", + "stack_offset": 0 } ], "successors": [ @@ -88987,19 +100015,22 @@ "address": "0x1400096e2", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rcx], eax" + "operands": "dword ptr [rcx], eax", + "stack_offset": 0 }, { "address": "0x1400096e4", "size": 3, "mnemonic": "mov", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x1400096e7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -89015,277 +100046,323 @@ "address": "0x140009621", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rdx + 0xc]" + "operands": "rdx, dword ptr [rdx + 0xc]", + "stack_offset": 0 }, { "address": "0x140009625", "size": 3, "mnemonic": "add", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140009628", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip - 0x962f]" + "operands": "r8, [rip - 0x962f]", + "stack_offset": 0 }, { "address": "0x14000962f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 8], rdx" + "operands": "qword ptr [rcx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140009633", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140009636", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140009639", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r8 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r8 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140009642", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r8 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r8 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000964a", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000964d", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140009650", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140009652", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r9 + 8], rdx" + "operands": "qword ptr [r9 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140009656", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [r9], eax" + "operands": "dword ptr [r9], eax", + "stack_offset": 0 }, { "address": "0x140009659", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r9 + 0x10], rdx" + "operands": "qword ptr [r9 + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14000965d", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140009660", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140009663", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r8 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r8 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x14000966c", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r8 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r8 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140009674", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140009677", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x14000967a", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000967c", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r9 + 8], rdx" + "operands": "qword ptr [r9 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140009680", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r9 + 0x18], eax" + "operands": "dword ptr [r9 + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140009684", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140009687", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000968a", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r8 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r8 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140009693", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r8 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r8 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000969b", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000969e", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x1400096a1", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x1400096a3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r9 + 8], rdx" + "operands": "qword ptr [r9 + 8], rdx", + "stack_offset": 0 }, { "address": "0x1400096a7", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r9 + 0x1c], eax" + "operands": "dword ptr [r9 + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x1400096ab", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400096ae", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x1400096b1", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r8 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r8 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x1400096ba", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r8 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r8 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x1400096c2", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x1400096c5", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x1400096c8", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x1400096ca", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r9 + 0x20], eax" + "operands": "dword ptr [r9 + 0x20], eax", + "stack_offset": 0 }, { "address": "0x1400096ce", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdx + 4]" + "operands": "rax, [rdx + 4]", + "stack_offset": 0 }, { "address": "0x1400096d2", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r9 + 8], rdx" + "operands": "qword ptr [r9 + 8], rdx", + "stack_offset": 0 }, { "address": "0x1400096d6", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400096d8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r9 + 8], rax" + "operands": "qword ptr [r9 + 8], rax", + "stack_offset": 0 }, { "address": "0x1400096dc", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r9 + 0x24], ecx" + "operands": "dword ptr [r9 + 0x24], ecx", + "stack_offset": 0 }, { "address": "0x1400096e0", "size": 2, "mnemonic": "jmp", - "operands": "0x1400096e4" + "operands": "0x1400096e4", + "stack_offset": 0 } ], "successors": [ @@ -89302,13 +100379,15 @@ "address": "0x1400096e4", "size": 3, "mnemonic": "mov", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x1400096e7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -89330,163 +100409,190 @@ "address": "0x140006788", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000678b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rbx" + "operands": "qword ptr [rax + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000678f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rbp" + "operands": "qword ptr [rax + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x140006793", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], rsi" + "operands": "qword ptr [rax + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x140006797", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rdi" + "operands": "qword ptr [rax + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x14000679b", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000679d", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000679f", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400067a1", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x1400067a5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdx" + "operands": "qword ptr [rsp + 0x20], rdx", + "stack_offset": 0 }, { "address": "0x1400067aa", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x1400067ad", "size": 4, "mnemonic": "movaps", - "operands": "xmmword ptr [rax - 0x28], xmm6" + "operands": "xmmword ptr [rax - 0x28], xmm6", + "stack_offset": 0 }, { "address": "0x1400067b1", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x1400067b4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rdx" + "operands": "qword ptr [rsp + 0x30], rdx", + "stack_offset": 0 }, { "address": "0x1400067b9", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x1400067bb", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], edi" + "operands": "dword ptr [rsp + 0x28], edi", + "stack_offset": 0 }, { "address": "0x1400067bf", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rax - 0x38]" + "operands": "rdx, [rax - 0x38]", + "stack_offset": 0 }, { "address": "0x1400067c3", "size": 5, "mnemonic": "movaps", - "operands": "xmm6, xmmword ptr [rsp + 0x20]" + "operands": "xmm6, xmmword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400067c8", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400067cb", "size": 5, "mnemonic": "movdqa", - "operands": "xmmword ptr [rax - 0x38], xmm6" + "operands": "xmmword ptr [rax - 0x38], xmm6", + "stack_offset": 0 }, { "address": "0x1400067d0", "size": 3, "mnemonic": "mov", - "operands": "r14d, r8d" + "operands": "r14d, r8d", + "stack_offset": 0 }, { "address": "0x1400067d3", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x1400067d5", "size": 5, "mnemonic": "call", - "operands": "0x140006b2c" + "operands": "0x140006b2c", + "stack_offset": 0 }, { "address": "0x1400067da", "size": 3, "mnemonic": "mov", - "operands": "r15d, dword ptr [rbx]" + "operands": "r15d, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x1400067dd", "size": 3, "mnemonic": "xor", - "operands": "r10d, r10d" + "operands": "r10d, r10d", + "stack_offset": 0 }, { "address": "0x1400067e0", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x1400067e3", "size": 6, "mnemonic": "je", - "operands": "0x1400068b9" + "operands": "0x1400068b9", + "stack_offset": 0 } ], "successors": [ @@ -89504,127 +100610,148 @@ "address": "0x1400068b9", "size": 2, "mnemonic": "inc", - "operands": "esi" + "operands": "esi", + "stack_offset": 0 }, { "address": "0x1400068bb", "size": 6, "mnemonic": "movdqa", - "operands": "xmmword ptr [rsp + 0x40], xmm6" + "operands": "xmmword ptr [rsp + 0x40], xmm6", + "stack_offset": 0 }, { "address": "0x1400068c1", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x40]" + "operands": "rdx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400068c6", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], esi" + "operands": "dword ptr [rsp + 0x38], esi", + "stack_offset": 0 }, { "address": "0x1400068ca", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400068cd", "size": 5, "mnemonic": "call", - "operands": "0x140006b2c" + "operands": "0x140006b2c", + "stack_offset": 0 }, { "address": "0x1400068d2", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rsp + 0x30]" + "operands": "xmm0, xmmword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400068d7", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x60]" + "operands": "r11, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400068dc", "size": 3, "mnemonic": "mov", - "operands": "rax, rbp" + "operands": "rax, rbp", + "stack_offset": 0 }, { "address": "0x1400068df", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x1400068e3", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x1400068e7", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x38]" + "operands": "rdi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x1400068eb", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp], xmm6" + "operands": "xmmword ptr [rbp], xmm6", + "stack_offset": 0 }, { "address": "0x1400068f0", "size": 5, "mnemonic": "movaps", - "operands": "xmm6, xmmword ptr [rsp + 0x50]" + "operands": "xmm6, xmmword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400068f5", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp + 0x10], xmm0" + "operands": "xmmword ptr [rbp + 0x10], xmm0", + "stack_offset": 0 }, { "address": "0x1400068fa", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x28]" + "operands": "rbp, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x1400068fe", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140006901", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140006903", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140006905", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140006907", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -89640,31 +100767,36 @@ "address": "0x1400067e9", "size": 4, "mnemonic": "mov", - "operands": "r11, qword ptr [rbx + 8]" + "operands": "r11, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x1400067ed", "size": 7, "mnemonic": "lea", - "operands": "r12, [rip - 0x67f4]" + "operands": "r12, [rip - 0x67f4]", + "stack_offset": 0 }, { "address": "0x1400067f4", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 0x18]" + "operands": "rax, qword ptr [rbx + 0x18]", + "stack_offset": 0 }, { "address": "0x1400067f8", "size": 3, "mnemonic": "cmp", - "operands": "r14d, eax" + "operands": "r14d, eax", + "stack_offset": 0 }, { "address": "0x1400067fb", "size": 2, "mnemonic": "jl", - "operands": "0x14000681c" + "operands": "0x14000681c", + "stack_offset": 0 } ], "successors": [ @@ -89682,361 +100814,421 @@ "address": "0x14000681c", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r11]" + "operands": "ecx, byte ptr [r11]", + "stack_offset": 0 }, { "address": "0x140006820", "size": 3, "mnemonic": "mov", - "operands": "rdx, r11" + "operands": "rdx, r11", + "stack_offset": 0 }, { "address": "0x140006823", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006826", "size": 3, "mnemonic": "inc", - "operands": "r10d" + "operands": "r10d", + "stack_offset": 0 }, { "address": "0x140006829", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + r12 + 0x23d90]" + "operands": "r9, byte ptr [rcx + r12 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006832", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r12 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r12 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000683a", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000683d", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140006840", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140006844", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006846", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x18], eax" + "operands": "dword ptr [rbx + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140006849", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000684c", "size": 3, "mnemonic": "mov", - "operands": "rdx, r11" + "operands": "rdx, r11", + "stack_offset": 0 }, { "address": "0x14000684f", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006852", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + r12 + 0x23d90]" + "operands": "r8, byte ptr [rcx + r12 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x14000685b", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r12 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r12 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006863", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140006866", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140006869", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x14000686c", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000686e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140006872", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x1c], eax" + "operands": "dword ptr [rbx + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x140006875", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140006878", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000687b", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r12 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r12 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006884", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r12 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r12 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000688c", "size": 3, "mnemonic": "sub", - "operands": "r11, rax" + "operands": "r11, rax", + "stack_offset": 0 }, { "address": "0x14000688f", "size": 3, "mnemonic": "sub", - "operands": "r11, r8" + "operands": "r11, r8", + "stack_offset": 0 }, { "address": "0x140006892", "size": 3, "mnemonic": "sub", - "operands": "r11, r9" + "operands": "r11, r9", + "stack_offset": 0 }, { "address": "0x140006895", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r11 - 4]" + "operands": "eax, dword ptr [r11 - 4]", + "stack_offset": 0 }, { "address": "0x140006899", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000689b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], r11" + "operands": "qword ptr [rbx + 8], r11", + "stack_offset": 0 }, { "address": "0x14000689f", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x20], eax" + "operands": "dword ptr [rbx + 0x20], eax", + "stack_offset": 0 }, { "address": "0x1400068a2", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [r11]" + "operands": "eax, dword ptr [r11]", + "stack_offset": 0 }, { "address": "0x1400068a5", "size": 4, "mnemonic": "add", - "operands": "r11, 4" + "operands": "r11, 4", + "stack_offset": 0 }, { "address": "0x1400068a9", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], r11" + "operands": "qword ptr [rbx + 8], r11", + "stack_offset": 0 }, { "address": "0x1400068ad", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x24], eax" + "operands": "dword ptr [rbx + 0x24], eax", + "stack_offset": 0 }, { "address": "0x1400068b0", "size": 3, "mnemonic": "cmp", - "operands": "r10d, r15d" + "operands": "r10d, r15d", + "stack_offset": 0 }, { "address": "0x1400068b3", "size": 6, "mnemonic": "jne", - "operands": "0x1400067f4" + "operands": "0x1400067f4", + "stack_offset": 0 }, { "address": "0x1400068b9", "size": 2, "mnemonic": "inc", - "operands": "esi" + "operands": "esi", + "stack_offset": 0 }, { "address": "0x1400068bb", "size": 6, "mnemonic": "movdqa", - "operands": "xmmword ptr [rsp + 0x40], xmm6" + "operands": "xmmword ptr [rsp + 0x40], xmm6", + "stack_offset": 0 }, { "address": "0x1400068c1", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x40]" + "operands": "rdx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400068c6", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], esi" + "operands": "dword ptr [rsp + 0x38], esi", + "stack_offset": 0 }, { "address": "0x1400068ca", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400068cd", "size": 5, "mnemonic": "call", - "operands": "0x140006b2c" + "operands": "0x140006b2c", + "stack_offset": 0 }, { "address": "0x1400068d2", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rsp + 0x30]" + "operands": "xmm0, xmmword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400068d7", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x60]" + "operands": "r11, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400068dc", "size": 3, "mnemonic": "mov", - "operands": "rax, rbp" + "operands": "rax, rbp", + "stack_offset": 0 }, { "address": "0x1400068df", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x1400068e3", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x1400068e7", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x38]" + "operands": "rdi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x1400068eb", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp], xmm6" + "operands": "xmmword ptr [rbp], xmm6", + "stack_offset": 0 }, { "address": "0x1400068f0", "size": 5, "mnemonic": "movaps", - "operands": "xmm6, xmmword ptr [rsp + 0x50]" + "operands": "xmm6, xmmword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400068f5", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp + 0x10], xmm0" + "operands": "xmmword ptr [rbp + 0x10], xmm0", + "stack_offset": 0 }, { "address": "0x1400068fa", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x28]" + "operands": "rbp, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x1400068fe", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140006901", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140006903", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140006905", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140006907", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -90052,19 +101244,22 @@ "address": "0x1400067fd", "size": 4, "mnemonic": "shr", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x140006801", "size": 3, "mnemonic": "cmp", - "operands": "r14d, eax" + "operands": "r14d, eax", + "stack_offset": 0 }, { "address": "0x140006804", "size": 2, "mnemonic": "jg", - "operands": "0x14000681c" + "operands": "0x14000681c", + "stack_offset": 0 } ], "successors": [ @@ -90082,403 +101277,470 @@ "address": "0x140006806", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140006808", "size": 3, "mnemonic": "mov", - "operands": "eax, r10d" + "operands": "eax, r10d", + "stack_offset": 0 }, { "address": "0x14000680b", "size": 3, "mnemonic": "mov", - "operands": "esi, r10d" + "operands": "esi, r10d", + "stack_offset": 0 }, { "address": "0x14000680e", "size": 3, "mnemonic": "cmove", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140006811", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x140006815", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140006817", "size": 5, "mnemonic": "movaps", - "operands": "xmm6, xmmword ptr [rsp + 0x20]" + "operands": "xmm6, xmmword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000681c", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r11]" + "operands": "ecx, byte ptr [r11]", + "stack_offset": 0 }, { "address": "0x140006820", "size": 3, "mnemonic": "mov", - "operands": "rdx, r11" + "operands": "rdx, r11", + "stack_offset": 0 }, { "address": "0x140006823", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006826", "size": 3, "mnemonic": "inc", - "operands": "r10d" + "operands": "r10d", + "stack_offset": 0 }, { "address": "0x140006829", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + r12 + 0x23d90]" + "operands": "r9, byte ptr [rcx + r12 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006832", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r12 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r12 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000683a", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000683d", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140006840", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140006844", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006846", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x18], eax" + "operands": "dword ptr [rbx + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140006849", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000684c", "size": 3, "mnemonic": "mov", - "operands": "rdx, r11" + "operands": "rdx, r11", + "stack_offset": 0 }, { "address": "0x14000684f", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006852", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + r12 + 0x23d90]" + "operands": "r8, byte ptr [rcx + r12 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x14000685b", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r12 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r12 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006863", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140006866", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140006869", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x14000686c", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000686e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140006872", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x1c], eax" + "operands": "dword ptr [rbx + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x140006875", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140006878", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000687b", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r12 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r12 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006884", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r12 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r12 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000688c", "size": 3, "mnemonic": "sub", - "operands": "r11, rax" + "operands": "r11, rax", + "stack_offset": 0 }, { "address": "0x14000688f", "size": 3, "mnemonic": "sub", - "operands": "r11, r8" + "operands": "r11, r8", + "stack_offset": 0 }, { "address": "0x140006892", "size": 3, "mnemonic": "sub", - "operands": "r11, r9" + "operands": "r11, r9", + "stack_offset": 0 }, { "address": "0x140006895", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r11 - 4]" + "operands": "eax, dword ptr [r11 - 4]", + "stack_offset": 0 }, { "address": "0x140006899", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000689b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], r11" + "operands": "qword ptr [rbx + 8], r11", + "stack_offset": 0 }, { "address": "0x14000689f", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x20], eax" + "operands": "dword ptr [rbx + 0x20], eax", + "stack_offset": 0 }, { "address": "0x1400068a2", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [r11]" + "operands": "eax, dword ptr [r11]", + "stack_offset": 0 }, { "address": "0x1400068a5", "size": 4, "mnemonic": "add", - "operands": "r11, 4" + "operands": "r11, 4", + "stack_offset": 0 }, { "address": "0x1400068a9", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], r11" + "operands": "qword ptr [rbx + 8], r11", + "stack_offset": 0 }, { "address": "0x1400068ad", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x24], eax" + "operands": "dword ptr [rbx + 0x24], eax", + "stack_offset": 0 }, { "address": "0x1400068b0", "size": 3, "mnemonic": "cmp", - "operands": "r10d, r15d" + "operands": "r10d, r15d", + "stack_offset": 0 }, { "address": "0x1400068b3", "size": 6, "mnemonic": "jne", - "operands": "0x1400067f4" + "operands": "0x1400067f4", + "stack_offset": 0 }, { "address": "0x1400068b9", "size": 2, "mnemonic": "inc", - "operands": "esi" + "operands": "esi", + "stack_offset": 0 }, { "address": "0x1400068bb", "size": 6, "mnemonic": "movdqa", - "operands": "xmmword ptr [rsp + 0x40], xmm6" + "operands": "xmmword ptr [rsp + 0x40], xmm6", + "stack_offset": 0 }, { "address": "0x1400068c1", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x40]" + "operands": "rdx, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400068c6", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], esi" + "operands": "dword ptr [rsp + 0x38], esi", + "stack_offset": 0 }, { "address": "0x1400068ca", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400068cd", "size": 5, "mnemonic": "call", - "operands": "0x140006b2c" + "operands": "0x140006b2c", + "stack_offset": 0 }, { "address": "0x1400068d2", "size": 5, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rsp + 0x30]" + "operands": "xmm0, xmmword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400068d7", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x60]" + "operands": "r11, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400068dc", "size": 3, "mnemonic": "mov", - "operands": "rax, rbp" + "operands": "rax, rbp", + "stack_offset": 0 }, { "address": "0x1400068df", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x1400068e3", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x1400068e7", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x38]" + "operands": "rdi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x1400068eb", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp], xmm6" + "operands": "xmmword ptr [rbp], xmm6", + "stack_offset": 0 }, { "address": "0x1400068f0", "size": 5, "mnemonic": "movaps", - "operands": "xmm6, xmmword ptr [rsp + 0x50]" + "operands": "xmm6, xmmword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400068f5", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp + 0x10], xmm0" + "operands": "xmmword ptr [rbp + 0x10], xmm0", + "stack_offset": 0 }, { "address": "0x1400068fa", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x28]" + "operands": "rbp, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x1400068fe", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140006901", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140006903", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140006905", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140006907", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -90500,91 +101762,106 @@ "address": "0x140009580", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140009582", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140009586", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140009588", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x14000958b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 8], rax" + "operands": "qword ptr [rcx + 8], rax", + "stack_offset": 0 }, { "address": "0x14000958f", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140009592", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x10], rax" + "operands": "qword ptr [rcx + 0x10], rax", + "stack_offset": 0 }, { "address": "0x140009596", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rcx + 0x18], al" + "operands": "byte ptr [rcx + 0x18], al", + "stack_offset": 0 }, { "address": "0x140009599", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x1c], rax" + "operands": "qword ptr [rcx + 0x1c], rax", + "stack_offset": 0 }, { "address": "0x14000959d", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x24], rax" + "operands": "qword ptr [rcx + 0x24], rax", + "stack_offset": 0 }, { "address": "0x1400095a1", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x30], xmm0" + "operands": "xmmword ptr [rcx + 0x30], xmm0", + "stack_offset": 0 }, { "address": "0x1400095a5", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x40], r8" + "operands": "qword ptr [rcx + 0x40], r8", + "stack_offset": 0 }, { "address": "0x1400095a9", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rcx + 0x48], r9d" + "operands": "dword ptr [rcx + 0x48], r9d", + "stack_offset": 0 }, { "address": "0x1400095ad", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rdx + 0xc], eax" + "operands": "dword ptr [rdx + 0xc], eax", + "stack_offset": 0 }, { "address": "0x1400095b0", "size": 2, "mnemonic": "je", - "operands": "0x1400095f7" + "operands": "0x1400095f7", + "stack_offset": 0 } ], "successors": [ @@ -90602,31 +101879,36 @@ "address": "0x1400095f7", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rcx], eax" + "operands": "dword ptr [rcx], eax", + "stack_offset": 0 }, { "address": "0x1400095f9", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x1400095fc", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140009600", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140009601", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -90642,103 +101924,120 @@ "address": "0x1400095b2", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rdx + 0xc]" + "operands": "rdx, dword ptr [rdx + 0xc]", + "stack_offset": 0 }, { "address": "0x1400095b6", "size": 3, "mnemonic": "add", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x1400095b9", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip - 0x95c0]" + "operands": "r8, [rip - 0x95c0]", + "stack_offset": 0 }, { "address": "0x1400095c0", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 8], rdx" + "operands": "qword ptr [rcx + 8], rdx", + "stack_offset": 0 }, { "address": "0x1400095c4", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400095c7", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x1400095ca", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r8 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r8 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x1400095d3", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r8 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r8 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x1400095db", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x1400095de", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x1400095e1", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x1400095e3", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400095e6", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rbx], eax" + "operands": "dword ptr [rbx], eax", + "stack_offset": 0 }, { "address": "0x1400095e8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x1400095ec", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x10], rdx" + "operands": "qword ptr [rbx + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x1400095f0", "size": 5, "mnemonic": "call", - "operands": "0x140009b74" + "operands": "0x140009b74", + "stack_offset": 0 }, { "address": "0x1400095f5", "size": 2, "mnemonic": "jmp", - "operands": "0x1400095f9" + "operands": "0x1400095f9", + "stack_offset": 0 } ], "successors": [ @@ -90755,25 +102054,29 @@ "address": "0x1400095f9", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x1400095fc", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140009600", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140009601", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -90795,19 +102098,22 @@ "address": "0x1400064a4", "size": 2, "mnemonic": "mov", - "operands": "al, byte ptr [rdx]" + "operands": "al, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400064a6", "size": 2, "mnemonic": "and", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x1400064a8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -90829,97 +102135,113 @@ "address": "0x140008f14", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140008f17", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rbx" + "operands": "qword ptr [rax + 8], rbx", + "stack_offset": 0 }, { "address": "0x140008f1b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rbp" + "operands": "qword ptr [rax + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x140008f1f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], rsi" + "operands": "qword ptr [rax + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x140008f23", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rdi" + "operands": "qword ptr [rax + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x140008f27", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140008f29", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140008f2b", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140008f2d", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140008f31", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rcx + 8]" + "operands": "rbx, dword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x140008f35", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140008f37", "size": 3, "mnemonic": "mov", - "operands": "r12, r8" + "operands": "r12, r8", + "stack_offset": 0 }, { "address": "0x140008f3a", "size": 3, "mnemonic": "mov", - "operands": "r15, rdx" + "operands": "r15, rdx", + "stack_offset": 0 }, { "address": "0x140008f3d", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x140008f40", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140008f42", "size": 6, "mnemonic": "je", - "operands": "0x14000902f" + "operands": "0x14000902f", + "stack_offset": 0 } ], "successors": [ @@ -90937,61 +102259,71 @@ "address": "0x14000902f", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140009034", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140009039", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000903e", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140009043", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x58]" + "operands": "rdi, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140009048", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000904c", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000904e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009050", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140009052", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -91007,25 +102339,29 @@ "address": "0x140008f48", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008f4d", "size": 3, "mnemonic": "mov", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x140008f50", "size": 3, "mnemonic": "add", - "operands": "r9, rbx" + "operands": "r9, rbx", + "stack_offset": 0 }, { "address": "0x140008f53", "size": 6, "mnemonic": "je", - "operands": "0x14000902f" + "operands": "0x14000902f", + "stack_offset": 0 } ], "successors": [ @@ -91043,19 +102379,22 @@ "address": "0x140008f59", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rsi + 8]" + "operands": "rbx, dword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140008f5d", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140008f5f", "size": 2, "mnemonic": "je", - "operands": "0x140008f6c" + "operands": "0x140008f6c", + "stack_offset": 0 } ], "successors": [ @@ -91073,19 +102412,22 @@ "address": "0x140008f6c", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140008f6f", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 0x10], dil" + "operands": "byte ptr [rcx + 0x10], dil", + "stack_offset": 0 }, { "address": "0x140008f73", "size": 6, "mnemonic": "je", - "operands": "0x14000902f" + "operands": "0x14000902f", + "stack_offset": 0 } ], "successors": [ @@ -91103,19 +102445,22 @@ "address": "0x140008f61", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008f66", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + rax]" + "operands": "rcx, [rbx + rax]", + "stack_offset": 0 }, { "address": "0x140008f6a", "size": 2, "mnemonic": "jmp", - "operands": "0x140008f6f" + "operands": "0x140008f6f", + "stack_offset": 0 } ], "successors": [ @@ -91132,19 +102477,22 @@ "address": "0x140008f79", "size": 4, "mnemonic": "lea", - "operands": "rbx, [rsi + 4]" + "operands": "rbx, [rsi + 4]", + "stack_offset": 0 }, { "address": "0x140008f7d", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rbx], 0x80" + "operands": "byte ptr [rbx], 0x80", + "stack_offset": 0 }, { "address": "0x140008f80", "size": 2, "mnemonic": "je", - "operands": "0x140008f8c" + "operands": "0x140008f8c", + "stack_offset": 0 } ], "successors": [ @@ -91162,13 +102510,15 @@ "address": "0x140008f6f", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 0x10], dil" + "operands": "byte ptr [rcx + 0x10], dil", + "stack_offset": 0 }, { "address": "0x140008f73", "size": 6, "mnemonic": "je", - "operands": "0x14000902f" + "operands": "0x14000902f", + "stack_offset": 0 } ], "successors": [ @@ -91186,19 +102536,22 @@ "address": "0x140008f8c", "size": 4, "mnemonic": "movsxd", - "operands": "r14, dword ptr [rsi + 8]" + "operands": "r14, dword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140008f90", "size": 3, "mnemonic": "test", - "operands": "r14d, r14d" + "operands": "r14d, r14d", + "stack_offset": 0 }, { "address": "0x140008f93", "size": 2, "mnemonic": "je", - "operands": "0x140008fa0" + "operands": "0x140008fa0", + "stack_offset": 0 } ], "successors": [ @@ -91216,31 +102569,36 @@ "address": "0x140008f82", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r15], 0x10" + "operands": "byte ptr [r15], 0x10", + "stack_offset": 0 }, { "address": "0x140008f86", "size": 6, "mnemonic": "jne", - "operands": "0x14000902f" + "operands": "0x14000902f", + "stack_offset": 0 }, { "address": "0x140008f8c", "size": 4, "mnemonic": "movsxd", - "operands": "r14, dword ptr [rsi + 8]" + "operands": "r14, dword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140008f90", "size": 3, "mnemonic": "test", - "operands": "r14d, r14d" + "operands": "r14d, r14d", + "stack_offset": 0 }, { "address": "0x140008f93", "size": 2, "mnemonic": "je", - "operands": "0x140008fa0" + "operands": "0x140008fa0", + "stack_offset": 0 } ], "successors": [ @@ -91258,37 +102616,43 @@ "address": "0x140008fa0", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdi" + "operands": "rbp, rdi", + "stack_offset": 0 }, { "address": "0x140008fa3", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008fa8", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [r15 + 4]" + "operands": "rcx, dword ptr [r15 + 4]", + "stack_offset": 0 }, { "address": "0x140008fac", "size": 3, "mnemonic": "add", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140008faf", "size": 3, "mnemonic": "cmp", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x140008fb2", "size": 2, "mnemonic": "je", - "operands": "0x140008fef" + "operands": "0x140008fef", + "stack_offset": 0 } ], "successors": [ @@ -91306,19 +102670,22 @@ "address": "0x140008f95", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008f9a", "size": 4, "mnemonic": "lea", - "operands": "rbp, [r14 + rax]" + "operands": "rbp, [r14 + rax]", + "stack_offset": 0 }, { "address": "0x140008f9e", "size": 2, "mnemonic": "jmp", - "operands": "0x140008fa3" + "operands": "0x140008fa3", + "stack_offset": 0 } ], "successors": [ @@ -91335,19 +102702,22 @@ "address": "0x140008fef", "size": 2, "mnemonic": "mov", - "operands": "al, 2" + "operands": "al, 2", + "stack_offset": 0 }, { "address": "0x140008ff1", "size": 3, "mnemonic": "test", - "operands": "byte ptr [r15], al" + "operands": "byte ptr [r15], al", + "stack_offset": 0 }, { "address": "0x140008ff4", "size": 2, "mnemonic": "je", - "operands": "0x140009001" + "operands": "0x140009001", + "stack_offset": 0 } ], "successors": [ @@ -91365,19 +102735,22 @@ "address": "0x140008fb4", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rsi + 8]" + "operands": "rbx, dword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140008fb8", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140008fba", "size": 2, "mnemonic": "je", - "operands": "0x140008fc7" + "operands": "0x140008fc7", + "stack_offset": 0 } ], "successors": [ @@ -91395,31 +102768,36 @@ "address": "0x140008fa3", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008fa8", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [r15 + 4]" + "operands": "rcx, dword ptr [r15 + 4]", + "stack_offset": 0 }, { "address": "0x140008fac", "size": 3, "mnemonic": "add", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140008faf", "size": 3, "mnemonic": "cmp", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x140008fb2", "size": 2, "mnemonic": "je", - "operands": "0x140008fef" + "operands": "0x140008fef", + "stack_offset": 0 } ], "successors": [ @@ -91437,19 +102815,22 @@ "address": "0x140009001", "size": 3, "mnemonic": "mov", - "operands": "rsi, rbx" + "operands": "rsi, rbx", + "stack_offset": 0 }, { "address": "0x140009004", "size": 5, "mnemonic": "test", - "operands": "byte ptr [r12], 1" + "operands": "byte ptr [r12], 1", + "stack_offset": 0 }, { "address": "0x140009009", "size": 2, "mnemonic": "je", - "operands": "0x140009010" + "operands": "0x140009010", + "stack_offset": 0 } ], "successors": [ @@ -91467,13 +102848,15 @@ "address": "0x140008ff6", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rbx], 8" + "operands": "byte ptr [rbx], 8", + "stack_offset": 0 }, { "address": "0x140008ff9", "size": 2, "mnemonic": "je", - "operands": "0x14000902b" + "operands": "0x14000902b", + "stack_offset": 0 } ], "successors": [ @@ -91491,55 +102874,64 @@ "address": "0x140008fc7", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdi" + "operands": "rbp, rdi", + "stack_offset": 0 }, { "address": "0x140008fca", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r15 + 4]" + "operands": "rbx, dword ptr [r15 + 4]", + "stack_offset": 0 }, { "address": "0x140008fce", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008fd3", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbx + 0x10]" + "operands": "rdx, [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x140008fd7", "size": 3, "mnemonic": "add", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140008fda", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140008fde", "size": 5, "mnemonic": "call", - "operands": "0x14001efd0" + "operands": "0x14001efd0", + "stack_offset": 0 }, { "address": "0x140008fe3", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008fe5", "size": 2, "mnemonic": "je", - "operands": "0x140008feb" + "operands": "0x140008feb", + "stack_offset": 0 } ], "successors": [ @@ -91557,19 +102949,22 @@ "address": "0x140008fbc", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140008fc1", "size": 4, "mnemonic": "lea", - "operands": "rbp, [rbx + rax]" + "operands": "rbp, [rbx + rax]", + "stack_offset": 0 }, { "address": "0x140008fc5", "size": 2, "mnemonic": "jmp", - "operands": "0x140008fca" + "operands": "0x140008fca", + "stack_offset": 0 } ], "successors": [ @@ -91586,13 +102981,15 @@ "address": "0x140009010", "size": 5, "mnemonic": "test", - "operands": "byte ptr [r12], 4" + "operands": "byte ptr [r12], 4", + "stack_offset": 0 }, { "address": "0x140009015", "size": 2, "mnemonic": "je", - "operands": "0x14000901c" + "operands": "0x14000901c", + "stack_offset": 0 } ], "successors": [ @@ -91610,13 +103007,15 @@ "address": "0x14000900b", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rbx], 1" + "operands": "byte ptr [rbx], 1", + "stack_offset": 0 }, { "address": "0x14000900e", "size": 2, "mnemonic": "je", - "operands": "0x14000902b" + "operands": "0x14000902b", + "stack_offset": 0 } ], "successors": [ @@ -91634,13 +103033,15 @@ "address": "0x14000902b", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000902d", "size": 2, "mnemonic": "jmp", - "operands": "0x140009034" + "operands": "0x140009034", + "stack_offset": 0 } ], "successors": [ @@ -91657,13 +103058,15 @@ "address": "0x140008ffb", "size": 4, "mnemonic": "add", - "operands": "rsi, 4" + "operands": "rsi, 4", + "stack_offset": 0 }, { "address": "0x140008fff", "size": 2, "mnemonic": "jmp", - "operands": "0x140009004" + "operands": "0x140009004", + "stack_offset": 0 } ], "successors": [ @@ -91680,25 +103083,29 @@ "address": "0x140008feb", "size": 4, "mnemonic": "lea", - "operands": "rbx, [rsi + 4]" + "operands": "rbx, [rsi + 4]", + "stack_offset": 0 }, { "address": "0x140008fef", "size": 2, "mnemonic": "mov", - "operands": "al, 2" + "operands": "al, 2", + "stack_offset": 0 }, { "address": "0x140008ff1", "size": 3, "mnemonic": "test", - "operands": "byte ptr [r15], al" + "operands": "byte ptr [r15], al", + "stack_offset": 0 }, { "address": "0x140008ff4", "size": 2, "mnemonic": "je", - "operands": "0x140009001" + "operands": "0x140009001", + "stack_offset": 0 } ], "successors": [ @@ -91716,13 +103123,15 @@ "address": "0x140008fe7", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008fe9", "size": 2, "mnemonic": "jmp", - "operands": "0x140009034" + "operands": "0x140009034", + "stack_offset": 0 } ], "successors": [ @@ -91739,49 +103148,57 @@ "address": "0x140008fca", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r15 + 4]" + "operands": "rbx, dword ptr [r15 + 4]", + "stack_offset": 0 }, { "address": "0x140008fce", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140008fd3", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbx + 0x10]" + "operands": "rdx, [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x140008fd7", "size": 3, "mnemonic": "add", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140008fda", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x10]" + "operands": "rcx, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140008fde", "size": 5, "mnemonic": "call", - "operands": "0x14001efd0" + "operands": "0x14001efd0", + "stack_offset": 0 }, { "address": "0x140008fe3", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140008fe5", "size": 2, "mnemonic": "je", - "operands": "0x140008feb" + "operands": "0x140008feb", + "stack_offset": 0 } ], "successors": [ @@ -91799,13 +103216,15 @@ "address": "0x14000901c", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r12], al" + "operands": "byte ptr [r12], al", + "stack_offset": 0 }, { "address": "0x140009020", "size": 2, "mnemonic": "je", - "operands": "0x140009026" + "operands": "0x140009026", + "stack_offset": 0 } ], "successors": [ @@ -91823,13 +103242,15 @@ "address": "0x140009017", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rbx], 4" + "operands": "byte ptr [rbx], 4", + "stack_offset": 0 }, { "address": "0x14000901a", "size": 2, "mnemonic": "je", - "operands": "0x14000902b" + "operands": "0x14000902b", + "stack_offset": 0 } ], "successors": [ @@ -91847,55 +103268,64 @@ "address": "0x140009034", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140009039", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000903e", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140009043", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x58]" + "operands": "rdi, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140009048", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000904c", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000904e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009050", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140009052", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -91911,13 +103341,15 @@ "address": "0x140009004", "size": 5, "mnemonic": "test", - "operands": "byte ptr [r12], 1" + "operands": "byte ptr [r12], 1", + "stack_offset": 0 }, { "address": "0x140009009", "size": 2, "mnemonic": "je", - "operands": "0x140009010" + "operands": "0x140009010", + "stack_offset": 0 } ], "successors": [ @@ -91935,19 +103367,22 @@ "address": "0x140009026", "size": 5, "mnemonic": "mov", - "operands": "edi, 1" + "operands": "edi, 1", + "stack_offset": 0 }, { "address": "0x14000902b", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14000902d", "size": 2, "mnemonic": "jmp", - "operands": "0x140009034" + "operands": "0x140009034", + "stack_offset": 0 } ], "successors": [ @@ -91964,13 +103399,15 @@ "address": "0x140009022", "size": 2, "mnemonic": "test", - "operands": "byte ptr [rsi], al" + "operands": "byte ptr [rsi], al", + "stack_offset": 0 }, { "address": "0x140009024", "size": 2, "mnemonic": "je", - "operands": "0x14000902b" + "operands": "0x14000902b", + "stack_offset": 0 } ], "successors": [ @@ -91994,91 +103431,106 @@ "address": "0x140009b74", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140009b76", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0x9b7d]" + "operands": "r11, [rip - 0x9b7d]", + "stack_offset": 0 }, { "address": "0x140009b7d", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rcx + 0x18], al" + "operands": "byte ptr [rcx + 0x18], al", + "stack_offset": 0 }, { "address": "0x140009b80", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x140009b83", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x1c], rax" + "operands": "qword ptr [rcx + 0x1c], rax", + "stack_offset": 0 }, { "address": "0x140009b87", "size": 3, "mnemonic": "mov", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x140009b8a", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x24], rax" + "operands": "qword ptr [rcx + 0x24], rax", + "stack_offset": 0 }, { "address": "0x140009b8e", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rcx + 0x30], xmm0" + "operands": "xmmword ptr [rcx + 0x30], xmm0", + "stack_offset": 0 }, { "address": "0x140009b92", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 8]" + "operands": "rax, qword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x140009b96", "size": 3, "mnemonic": "mov", - "operands": "r10b, byte ptr [rax]" + "operands": "r10b, byte ptr [rax]", + "stack_offset": 0 }, { "address": "0x140009b99", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rax + 1]" + "operands": "rdx, [rax + 1]", + "stack_offset": 0 }, { "address": "0x140009b9d", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rcx + 0x18], r10b" + "operands": "byte ptr [rcx + 0x18], r10b", + "stack_offset": 0 }, { "address": "0x140009ba1", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 8], rdx" + "operands": "qword ptr [rcx + 8], rdx", + "stack_offset": 0 }, { "address": "0x140009ba5", "size": 4, "mnemonic": "test", - "operands": "r10b, 1" + "operands": "r10b, 1", + "stack_offset": 0 }, { "address": "0x140009ba9", "size": 2, "mnemonic": "je", - "operands": "0x140009bd2" + "operands": "0x140009bd2", + "stack_offset": 0 } ], "successors": [ @@ -92096,13 +103548,15 @@ "address": "0x140009bd2", "size": 4, "mnemonic": "test", - "operands": "r10b, 2" + "operands": "r10b, 2", + "stack_offset": 0 }, { "address": "0x140009bd6", "size": 2, "mnemonic": "je", - "operands": "0x140009be6" + "operands": "0x140009be6", + "stack_offset": 0 } ], "successors": [ @@ -92120,67 +103574,78 @@ "address": "0x140009bab", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140009bae", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140009bb1", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140009bba", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140009bc2", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140009bc5", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140009bc8", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140009bca", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r8 + 0x1c], eax" + "operands": "dword ptr [r8 + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x140009bce", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r8 + 8], rdx" + "operands": "qword ptr [r8 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140009bd2", "size": 4, "mnemonic": "test", - "operands": "r10b, 2" + "operands": "r10b, 2", + "stack_offset": 0 }, { "address": "0x140009bd6", "size": 2, "mnemonic": "je", - "operands": "0x140009be6" + "operands": "0x140009be6", + "stack_offset": 0 } ], "successors": [ @@ -92198,13 +103663,15 @@ "address": "0x140009be6", "size": 4, "mnemonic": "test", - "operands": "r10b, 4" + "operands": "r10b, 4", + "stack_offset": 0 }, { "address": "0x140009bea", "size": 2, "mnemonic": "je", - "operands": "0x140009c13" + "operands": "0x140009c13", + "stack_offset": 0 } ], "successors": [ @@ -92222,37 +103689,43 @@ "address": "0x140009bd8", "size": 2, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx]" + "operands": "eax, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140009bda", "size": 4, "mnemonic": "add", - "operands": "rdx, 4" + "operands": "rdx, 4", + "stack_offset": 0 }, { "address": "0x140009bde", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r8 + 8], rdx" + "operands": "qword ptr [r8 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140009be2", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r8 + 0x20], eax" + "operands": "dword ptr [r8 + 0x20], eax", + "stack_offset": 0 }, { "address": "0x140009be6", "size": 4, "mnemonic": "test", - "operands": "r10b, 4" + "operands": "r10b, 4", + "stack_offset": 0 }, { "address": "0x140009bea", "size": 2, "mnemonic": "je", - "operands": "0x140009c13" + "operands": "0x140009c13", + "stack_offset": 0 } ], "successors": [ @@ -92270,49 +103743,57 @@ "address": "0x140009c13", "size": 2, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx]" + "operands": "eax, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140009c15", "size": 4, "mnemonic": "lea", - "operands": "r9, [rdx + 4]" + "operands": "r9, [rdx + 4]", + "stack_offset": 0 }, { "address": "0x140009c19", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r8 + 0x28], eax" + "operands": "dword ptr [r8 + 0x28], eax", + "stack_offset": 0 }, { "address": "0x140009c1d", "size": 3, "mnemonic": "mov", - "operands": "al, r10b" + "operands": "al, r10b", + "stack_offset": 0 }, { "address": "0x140009c20", "size": 2, "mnemonic": "and", - "operands": "al, 0x30" + "operands": "al, 0x30", + "stack_offset": 0 }, { "address": "0x140009c22", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r8 + 8], r9" + "operands": "qword ptr [r8 + 8], r9", + "stack_offset": 0 }, { "address": "0x140009c26", "size": 4, "mnemonic": "test", - "operands": "r10b, 8" + "operands": "r10b, 8", + "stack_offset": 0 }, { "address": "0x140009c2a", "size": 2, "mnemonic": "je", - "operands": "0x140009c67" + "operands": "0x140009c67", + "stack_offset": 0 } ], "successors": [ @@ -92330,103 +103811,120 @@ "address": "0x140009bec", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140009bef", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140009bf2", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140009bfb", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140009c03", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140009c06", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140009c09", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140009c0b", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r8 + 0x24], eax" + "operands": "dword ptr [r8 + 0x24], eax", + "stack_offset": 0 }, { "address": "0x140009c0f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r8 + 8], rdx" + "operands": "qword ptr [r8 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140009c13", "size": 2, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx]" + "operands": "eax, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140009c15", "size": 4, "mnemonic": "lea", - "operands": "r9, [rdx + 4]" + "operands": "r9, [rdx + 4]", + "stack_offset": 0 }, { "address": "0x140009c19", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r8 + 0x28], eax" + "operands": "dword ptr [r8 + 0x28], eax", + "stack_offset": 0 }, { "address": "0x140009c1d", "size": 3, "mnemonic": "mov", - "operands": "al, r10b" + "operands": "al, r10b", + "stack_offset": 0 }, { "address": "0x140009c20", "size": 2, "mnemonic": "and", - "operands": "al, 0x30" + "operands": "al, 0x30", + "stack_offset": 0 }, { "address": "0x140009c22", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r8 + 8], r9" + "operands": "qword ptr [r8 + 8], r9", + "stack_offset": 0 }, { "address": "0x140009c26", "size": 4, "mnemonic": "test", - "operands": "r10b, 8" + "operands": "r10b, 8", + "stack_offset": 0 }, { "address": "0x140009c2a", "size": 2, "mnemonic": "je", - "operands": "0x140009c67" + "operands": "0x140009c67", + "stack_offset": 0 } ], "successors": [ @@ -92444,85 +103942,99 @@ "address": "0x140009c67", "size": 2, "mnemonic": "cmp", - "operands": "al, 0x10" + "operands": "al, 0x10", + "stack_offset": 0 }, { "address": "0x140009c69", "size": 2, "mnemonic": "jne", - "operands": "0x140009c9b" + "operands": "0x140009c9b", + "stack_offset": 0 }, { "address": "0x140009c6b", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r9]" + "operands": "ecx, byte ptr [r9]", + "stack_offset": 0 }, { "address": "0x140009c6f", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140009c72", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140009c7b", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140009c83", "size": 3, "mnemonic": "sub", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x140009c86", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r8 + 0x48]" + "operands": "eax, dword ptr [r8 + 0x48]", + "stack_offset": 0 }, { "address": "0x140009c8a", "size": 4, "mnemonic": "mov", - "operands": "edx, dword ptr [r9 - 4]" + "operands": "edx, dword ptr [r9 - 4]", + "stack_offset": 0 }, { "address": "0x140009c8e", "size": 2, "mnemonic": "shr", - "operands": "edx, cl" + "operands": "edx, cl", + "stack_offset": 0 }, { "address": "0x140009c90", "size": 2, "mnemonic": "add", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x140009c92", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r8 + 8], r9" + "operands": "qword ptr [r8 + 8], r9", + "stack_offset": 0 }, { "address": "0x140009c96", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r8 + 0x30], rax" + "operands": "qword ptr [r8 + 0x30], rax", + "stack_offset": 0 }, { "address": "0x140009c9a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -92538,43 +104050,50 @@ "address": "0x140009c2c", "size": 2, "mnemonic": "cmp", - "operands": "al, 0x10" + "operands": "al, 0x10", + "stack_offset": 0 }, { "address": "0x140009c2e", "size": 2, "mnemonic": "jne", - "operands": "0x140009c40" + "operands": "0x140009c40", + "stack_offset": 0 }, { "address": "0x140009c30", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [r9]" + "operands": "rcx, dword ptr [r9]", + "stack_offset": 0 }, { "address": "0x140009c33", "size": 4, "mnemonic": "lea", - "operands": "rax, [r9 + 4]" + "operands": "rax, [r9 + 4]", + "stack_offset": 0 }, { "address": "0x140009c37", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r8 + 8], rax" + "operands": "qword ptr [r8 + 8], rax", + "stack_offset": 0 }, { "address": "0x140009c3b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r8 + 0x30], rcx" + "operands": "qword ptr [r8 + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x140009c3f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -92596,145 +104115,169 @@ "address": "0x140007cb0", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140007cb3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rbx" + "operands": "qword ptr [rax + 8], rbx", + "stack_offset": 0 }, { "address": "0x140007cb7", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], r8" + "operands": "qword ptr [rax + 0x18], r8", + "stack_offset": 0 }, { "address": "0x140007cbb", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140007cbc", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140007cbd", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007cbe", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140007cc0", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007cc2", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007cc4", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007cc6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140007cca", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0xc0]" + "operands": "r8, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140007cd2", "size": 3, "mnemonic": "mov", - "operands": "r12, r9" + "operands": "r12, r9", + "stack_offset": 0 }, { "address": "0x140007cd5", "size": 3, "mnemonic": "mov", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x140007cd8", "size": 4, "mnemonic": "lea", - "operands": "r9, [rax + 0x10]" + "operands": "r9, [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140007cdc", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140007cdf", "size": 3, "mnemonic": "mov", - "operands": "rdx, r12" + "operands": "rdx, r12", + "stack_offset": 0 }, { "address": "0x140007ce2", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140007ce5", "size": 5, "mnemonic": "call", - "operands": "0x140006544" + "operands": "0x140006544", + "stack_offset": 0 }, { "address": "0x140007cea", "size": 8, "mnemonic": "mov", - "operands": "r9, qword ptr [rsp + 0xd0]" + "operands": "r9, qword ptr [rsp + 0xd0]", + "stack_offset": 0 }, { "address": "0x140007cf2", "size": 3, "mnemonic": "mov", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x140007cf5", "size": 8, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0xc8]" + "operands": "rbp, qword ptr [rsp + 0xc8]", + "stack_offset": 0 }, { "address": "0x140007cfd", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x140007d00", "size": 2, "mnemonic": "je", - "operands": "0x140007d10" + "operands": "0x140007d10", + "stack_offset": 0 } ], "successors": [ @@ -92758,109 +104301,127 @@ "address": "0x140006240", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140006243", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], r9" + "operands": "qword ptr [rax + 0x20], r9", + "stack_offset": 0 }, { "address": "0x140006247", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], r8" + "operands": "qword ptr [rax + 0x18], r8", + "stack_offset": 0 }, { "address": "0x14000624b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rdx" + "operands": "qword ptr [rax + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14000624f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rcx" + "operands": "qword ptr [rax + 8], rcx", + "stack_offset": 0 }, { "address": "0x140006253", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140006254", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140006258", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000625b", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rax - 0x28], 0" + "operands": "dword ptr [rax - 0x28], 0", + "stack_offset": 0 }, { "address": "0x140006262", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax - 0x18], rcx" + "operands": "qword ptr [rax - 0x18], rcx", + "stack_offset": 0 }, { "address": "0x140006266", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax - 0x10], r8" + "operands": "qword ptr [rax - 0x10], r8", + "stack_offset": 0 }, { "address": "0x14000626a", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14000626f", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x50]" + "operands": "rdx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140006274", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140006276", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x10]" + "operands": "rax, qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x14000627a", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1a040]" + "operands": "qword ptr [rip + 0x1a040]", + "stack_offset": 0 }, { "address": "0x140006280", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], 0" + "operands": "dword ptr [rsp + 0x40], 0", + "stack_offset": 0 }, { "address": "0x140006288", "size": 2, "mnemonic": "jmp", - "operands": "0x14000628a" + "operands": "0x14000628a", + "stack_offset": 0 } ], "successors": [ @@ -92877,25 +104438,29 @@ "address": "0x14000628a", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0x40]" + "operands": "eax, dword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000628e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140006292", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140006293", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -92917,109 +104482,127 @@ "address": "0x140006294", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140006297", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], r9" + "operands": "qword ptr [rax + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14000629b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], r8" + "operands": "qword ptr [rax + 0x18], r8", + "stack_offset": 0 }, { "address": "0x14000629f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rdx" + "operands": "qword ptr [rax + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x1400062a3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rcx" + "operands": "qword ptr [rax + 8], rcx", + "stack_offset": 0 }, { "address": "0x1400062a7", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400062a8", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x1400062ac", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x1400062af", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rax - 0x28], 0" + "operands": "dword ptr [rax - 0x28], 0", + "stack_offset": 0 }, { "address": "0x1400062b6", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax - 0x18], rcx" + "operands": "qword ptr [rax - 0x18], rcx", + "stack_offset": 0 }, { "address": "0x1400062ba", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax - 0x10], r8" + "operands": "qword ptr [rax - 0x10], r8", + "stack_offset": 0 }, { "address": "0x1400062be", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400062c3", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x50]" + "operands": "rdx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400062c8", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x1400062ca", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x10]" + "operands": "rax, qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x1400062ce", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x19fec]" + "operands": "qword ptr [rip + 0x19fec]", + "stack_offset": 0 }, { "address": "0x1400062d4", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], 0" + "operands": "dword ptr [rsp + 0x40], 0", + "stack_offset": 0 }, { "address": "0x1400062dc", "size": 2, "mnemonic": "jmp", - "operands": "0x1400062de" + "operands": "0x1400062de", + "stack_offset": 0 } ], "successors": [ @@ -93036,25 +104619,29 @@ "address": "0x1400062de", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0x40]" + "operands": "eax, dword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400062e2", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x1400062e6", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400062e7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -93076,145 +104663,169 @@ "address": "0x140007d88", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140007d8b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rbx" + "operands": "qword ptr [rax + 8], rbx", + "stack_offset": 0 }, { "address": "0x140007d8f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], r8" + "operands": "qword ptr [rax + 0x18], r8", + "stack_offset": 0 }, { "address": "0x140007d93", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140007d94", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140007d95", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007d96", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140007d98", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007d9a", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007d9c", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007d9e", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x140007da2", "size": 8, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0xc0]" + "operands": "r8, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140007daa", "size": 3, "mnemonic": "mov", - "operands": "r12, r9" + "operands": "r12, r9", + "stack_offset": 0 }, { "address": "0x140007dad", "size": 3, "mnemonic": "mov", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x140007db0", "size": 4, "mnemonic": "lea", - "operands": "r9, [rax + 0x10]" + "operands": "r9, [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140007db4", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140007db7", "size": 3, "mnemonic": "mov", - "operands": "rdx, r12" + "operands": "rdx, r12", + "stack_offset": 0 }, { "address": "0x140007dba", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140007dbd", "size": 5, "mnemonic": "call", - "operands": "0x14000662c" + "operands": "0x14000662c", + "stack_offset": 0 }, { "address": "0x140007dc2", "size": 8, "mnemonic": "mov", - "operands": "r9, qword ptr [rsp + 0xd0]" + "operands": "r9, qword ptr [rsp + 0xd0]", + "stack_offset": 0 }, { "address": "0x140007dca", "size": 3, "mnemonic": "mov", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x140007dcd", "size": 8, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0xc8]" + "operands": "rbp, qword ptr [rsp + 0xc8]", + "stack_offset": 0 }, { "address": "0x140007dd5", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x140007dd8", "size": 2, "mnemonic": "je", - "operands": "0x140007de8" + "operands": "0x140007de8", + "stack_offset": 0 } ], "successors": [ @@ -93238,115 +104849,134 @@ "address": "0x14000a464", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rdx]" + "operands": "r8, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000a467", "size": 7, "mnemonic": "lea", - "operands": "r11, [rip - 0xa46e]" + "operands": "r11, [rip - 0xa46e]", + "stack_offset": 0 }, { "address": "0x14000a46e", "size": 3, "mnemonic": "mov", - "operands": "r10, rcx" + "operands": "r10, rcx", + "stack_offset": 0 }, { "address": "0x14000a471", "size": 3, "mnemonic": "mov", - "operands": "r9, rdx" + "operands": "r9, rdx", + "stack_offset": 0 }, { "address": "0x14000a474", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r8]" + "operands": "ecx, byte ptr [r8]", + "stack_offset": 0 }, { "address": "0x14000a478", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000a47b", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x14000a484", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000a48c", "size": 3, "mnemonic": "sub", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14000a48f", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r8 - 4]" + "operands": "eax, dword ptr [r8 - 4]", + "stack_offset": 0 }, { "address": "0x14000a493", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000a495", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x14000a497", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdx], r8" + "operands": "qword ptr [rdx], r8", + "stack_offset": 0 }, { "address": "0x14000a49a", "size": 3, "mnemonic": "and", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x14000a49d", "size": 3, "mnemonic": "shr", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14000a4a0", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r10 + 0x14], ecx" + "operands": "dword ptr [r10 + 0x14], ecx", + "stack_offset": 0 }, { "address": "0x14000a4a4", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r10 + 0x10], eax" + "operands": "dword ptr [r10 + 0x10], eax", + "stack_offset": 0 }, { "address": "0x14000a4a8", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 1" + "operands": "ecx, 1", + "stack_offset": 0 }, { "address": "0x14000a4ab", "size": 2, "mnemonic": "je", - "operands": "0x14000a4c8" + "operands": "0x14000a4c8", + "stack_offset": 0 } ], "successors": [ @@ -93364,97 +104994,113 @@ "address": "0x14000a4c8", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000a4cb", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rax]" + "operands": "ecx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000a4cd", "size": 4, "mnemonic": "add", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x14000a4d1", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdx], rax" + "operands": "qword ptr [rdx], rax", + "stack_offset": 0 }, { "address": "0x14000a4d4", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r10 + 0x18], ecx" + "operands": "dword ptr [r10 + 0x18], ecx", + "stack_offset": 0 }, { "address": "0x14000a4d8", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rdx]" + "operands": "rdx, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000a4db", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000a4de", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000a4e1", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r11 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r11 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x14000a4ea", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r11 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r11 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000a4f2", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000a4f5", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x14000a4f8", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000a4fa", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r9], rdx" + "operands": "qword ptr [r9], rdx", + "stack_offset": 0 }, { "address": "0x14000a4fd", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r10 + 0x1c], eax" + "operands": "dword ptr [r10 + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x14000a501", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -93470,13 +105116,15 @@ "address": "0x14000a4ad", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 2" + "operands": "ecx, 2", + "stack_offset": 0 }, { "address": "0x14000a4b0", "size": 2, "mnemonic": "je", - "operands": "0x14000a4c8" + "operands": "0x14000a4c8", + "stack_offset": 0 } ], "successors": [ @@ -93494,49 +105142,57 @@ "address": "0x14000a4b2", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x14000a4b5", "size": 2, "mnemonic": "jne", - "operands": "0x14000a501" + "operands": "0x14000a501", + "stack_offset": 0 }, { "address": "0x14000a4b7", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000a4ba", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rax]" + "operands": "ecx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000a4bc", "size": 4, "mnemonic": "add", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x14000a4c0", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdx], rax" + "operands": "qword ptr [rdx], rax", + "stack_offset": 0 }, { "address": "0x14000a4c3", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r10 + 0x18], ecx" + "operands": "dword ptr [r10 + 0x18], ecx", + "stack_offset": 0 }, { "address": "0x14000a4c7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -93558,79 +105214,92 @@ "address": "0x14000aefc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000af01", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000af06", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000af0b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000af0c", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000af10", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x14000af13", "size": 3, "mnemonic": "mov", - "operands": "ebx, r9d" + "operands": "ebx, r9d", + "stack_offset": 0 }, { "address": "0x14000af16", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x68]" + "operands": "rcx, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x14000af1b", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x14000af1e", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x14000af21", "size": 5, "mnemonic": "call", - "operands": "0x14000ac30" + "operands": "0x14000ac30", + "stack_offset": 0 }, { "address": "0x14000af26", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000af29", "size": 2, "mnemonic": "je", - "operands": "0x14000af67" + "operands": "0x14000af67", + "stack_offset": 0 } ], "successors": [ @@ -93648,85 +105317,99 @@ "address": "0x14000af67", "size": 5, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsp + 0x68]" + "operands": "rdx, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x14000af6c", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x27e65]" + "operands": "rcx, [rip + 0x27e65]", + "stack_offset": 0 }, { "address": "0x14000af73", "size": 5, "mnemonic": "call", - "operands": "0x14000ac9c" + "operands": "0x14000ac9c", + "stack_offset": 0 }, { "address": "0x14000af78", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14000af7b", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14000af7e", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000af81", "size": 3, "mnemonic": "mov", - "operands": "r10, qword ptr [rax]" + "operands": "r10, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000af84", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x260b5]" + "operands": "rax, qword ptr [rip + 0x260b5]", + "stack_offset": 0 }, { "address": "0x14000af8b", "size": 3, "mnemonic": "xor", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14000af8e", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x14000af90", "size": 3, "mnemonic": "and", - "operands": "ecx, 0x3f" + "operands": "ecx, 0x3f", + "stack_offset": 0 }, { "address": "0x14000af93", "size": 3, "mnemonic": "ror", - "operands": "r10, cl" + "operands": "r10, cl", + "stack_offset": 0 }, { "address": "0x14000af96", "size": 3, "mnemonic": "test", - "operands": "r10, r10" + "operands": "r10, r10", + "stack_offset": 0 }, { "address": "0x14000af99", "size": 2, "mnemonic": "je", - "operands": "0x14000afa0" + "operands": "0x14000afa0", + "stack_offset": 0 } ], "successors": [ @@ -93744,19 +105427,22 @@ "address": "0x14000af2b", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x3b8]" + "operands": "rax, qword ptr [rax + 0x3b8]", + "stack_offset": 0 }, { "address": "0x14000af32", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000af35", "size": 2, "mnemonic": "je", - "operands": "0x14000af67" + "operands": "0x14000af67", + "stack_offset": 0 } ], "successors": [ @@ -93774,31 +105460,36 @@ "address": "0x14000afa0", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x60]" + "operands": "rax, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000afa5", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14000afa8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14000afad", "size": 5, "mnemonic": "call", - "operands": "0x14000afd4" + "operands": "0x14000afd4", + "stack_offset": 0 }, { "address": "0x14000afb2", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -93814,13 +105505,15 @@ "address": "0x14000af9b", "size": 3, "mnemonic": "mov", - "operands": "rax, r10" + "operands": "rax, r10", + "stack_offset": 0 }, { "address": "0x14000af9e", "size": 2, "mnemonic": "jmp", - "operands": "0x14000af40" + "operands": "0x14000af40", + "stack_offset": 0 } ], "successors": [ @@ -93837,79 +105530,92 @@ "address": "0x14000af37", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14000af3a", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14000af3d", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000af40", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x60]" + "operands": "rcx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000af45", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rcx" + "operands": "qword ptr [rsp + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x14000af4a", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14000af4d", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x14000af52", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000af57", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000af5c", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000af61", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000af65", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000af66", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -93925,61 +105631,71 @@ "address": "0x14000af40", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x60]" + "operands": "rcx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000af45", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rcx" + "operands": "qword ptr [rsp + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x14000af4a", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14000af4d", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x14000af52", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000af57", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000af5c", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000af61", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000af65", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000af66", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -94001,85 +105717,99 @@ "address": "0x14000abc8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x14000abcd", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000abce", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000abd2", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rcx], 0" + "operands": "qword ptr [rcx], 0", + "stack_offset": 0 }, { "address": "0x14000abd6", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000abd9", "size": 2, "mnemonic": "jne", - "operands": "0x14000ac1b" + "operands": "0x14000ac1b", + "stack_offset": 0 }, { "address": "0x14000abdb", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x15517]" + "operands": "qword ptr [rip + 0x15517]", + "stack_offset": 0 }, { "address": "0x14000abe1", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rdi + 0x10], 0" + "operands": "byte ptr [rdi + 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000abe5", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], eax" + "operands": "dword ptr [rsp + 0x30], eax", + "stack_offset": 0 }, { "address": "0x14000abe9", "size": 2, "mnemonic": "jne", - "operands": "0x14000abf8" + "operands": "0x14000abf8", + "stack_offset": 0 }, { "address": "0x14000abeb", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rdi + 8], 0" + "operands": "qword ptr [rdi + 8], 0", + "stack_offset": 0 }, { "address": "0x14000abf0", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000abf2", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdi + 0x10], 1" + "operands": "byte ptr [rdi + 0x10], 1", + "stack_offset": 0 }, { "address": "0x14000abf6", "size": 2, "mnemonic": "jmp", - "operands": "0x14000abfc" + "operands": "0x14000abfc", + "stack_offset": 0 } ], "successors": [ @@ -94096,49 +105826,57 @@ "address": "0x14000abfc", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x30]" + "operands": "rcx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000ac01", "size": 5, "mnemonic": "call", - "operands": "0x1400119b4" + "operands": "0x1400119b4", + "stack_offset": 0 }, { "address": "0x14000ac06", "size": 4, "mnemonic": "mov", - "operands": "ecx, dword ptr [rsp + 0x30]" + "operands": "ecx, dword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000ac0a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14000ac0d", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdi], rax" + "operands": "qword ptr [rdi], rax", + "stack_offset": 0 }, { "address": "0x14000ac10", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x154ea]" + "operands": "qword ptr [rip + 0x154ea]", + "stack_offset": 0 }, { "address": "0x14000ac16", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14000ac19", "size": 2, "mnemonic": "je", - "operands": "0x14000ac29" + "operands": "0x14000ac29", + "stack_offset": 0 } ], "successors": [ @@ -94156,13 +105894,15 @@ "address": "0x14000ac29", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14000ac2e", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -94178,31 +105918,36 @@ "address": "0x14000ac1b", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000ac1e", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x38]" + "operands": "rbx, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000ac23", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000ac27", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000ac28", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -94224,133 +105969,155 @@ "address": "0x14000b210", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000b213", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rbx" + "operands": "qword ptr [rax + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x14000b217", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rcx" + "operands": "qword ptr [rax + 8], rcx", + "stack_offset": 0 }, { "address": "0x14000b21b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000b21c", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000b220", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x14000b223", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000b226", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000b229", "size": 2, "mnemonic": "jne", - "operands": "0x14000b259" + "operands": "0x14000b259", + "stack_offset": 0 }, { "address": "0x14000b22b", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdx + 0x30], 1" + "operands": "byte ptr [rdx + 0x30], 1", + "stack_offset": 0 }, { "address": "0x14000b22f", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rdx + 0x2c], 0x16" + "operands": "dword ptr [rdx + 0x2c], 0x16", + "stack_offset": 0 }, { "address": "0x14000b236", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax - 0x10], rdx" + "operands": "qword ptr [rax - 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14000b23a", "size": 4, "mnemonic": "and", - "operands": "qword ptr [rax - 0x18], rcx" + "operands": "qword ptr [rax - 0x18], rcx", + "stack_offset": 0 }, { "address": "0x14000b23e", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000b241", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000b244", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000b246", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x14000b24b", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14000b24e", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x48]" + "operands": "rbx, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000b253", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000b257", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000b258", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -94372,103 +106139,120 @@ "address": "0x14000b468", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000b46d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14000b472", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000b473", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000b474", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000b476", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000b47a", "size": 3, "mnemonic": "mov", - "operands": "rdi, r9" + "operands": "rdi, r9", + "stack_offset": 0 }, { "address": "0x14000b47d", "size": 3, "mnemonic": "mov", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x14000b480", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000b482", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x14000b487", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000b488", "size": 7, "mnemonic": "mov", - "operands": "rbx, qword ptr [rip + 0x27959]" + "operands": "rbx, qword ptr [rip + 0x27959]", + "stack_offset": 0 }, { "address": "0x14000b48f", "size": 7, "mnemonic": "movsxd", - "operands": "rax, dword ptr [rip + 0x2794a]" + "operands": "rax, dword ptr [rip + 0x2794a]", + "stack_offset": 0 }, { "address": "0x14000b496", "size": 4, "mnemonic": "lea", - "operands": "r14, [rbx + rax*8]" + "operands": "r14, [rbx + rax*8]", + "stack_offset": 0 }, { "address": "0x14000b49a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rbx" + "operands": "qword ptr [rsp + 0x38], rbx", + "stack_offset": 0 }, { "address": "0x14000b49f", "size": 3, "mnemonic": "cmp", - "operands": "rbx, r14" + "operands": "rbx, r14", + "stack_offset": 0 }, { "address": "0x14000b4a2", "size": 6, "mnemonic": "je", - "operands": "0x14000b531" + "operands": "0x14000b531", + "stack_offset": 0 } ], "successors": [ @@ -94486,49 +106270,57 @@ "address": "0x14000b531", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdi]" + "operands": "ecx, dword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000b533", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14000b538", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x80]" + "operands": "rbx, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x14000b540", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000b544", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000b546", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000b547", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000b548", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -94544,31 +106336,36 @@ "address": "0x14000b4a8", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx]" + "operands": "rcx, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000b4ab", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rcx" + "operands": "qword ptr [rsp + 0x20], rcx", + "stack_offset": 0 }, { "address": "0x14000b4b0", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsi]" + "operands": "rdx, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x14000b4b3", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000b4b6", "size": 2, "mnemonic": "je", - "operands": "0x14000b4da" + "operands": "0x14000b4da", + "stack_offset": 0 } ], "successors": [ @@ -94586,13 +106383,15 @@ "address": "0x14000b4da", "size": 4, "mnemonic": "add", - "operands": "rbx, 8" + "operands": "rbx, 8", + "stack_offset": 0 }, { "address": "0x14000b4de", "size": 2, "mnemonic": "jmp", - "operands": "0x14000b49a" + "operands": "0x14000b49a", + "stack_offset": 0 } ], "successors": [ @@ -94609,37 +106408,43 @@ "address": "0x14000b4b8", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rcx + 0x14]" + "operands": "ecx, dword ptr [rcx + 0x14]", + "stack_offset": 0 }, { "address": "0x14000b4bb", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000b4bc", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14000b4be", "size": 3, "mnemonic": "shr", - "operands": "eax, 0xd" + "operands": "eax, 0xd", + "stack_offset": 0 }, { "address": "0x14000b4c1", "size": 2, "mnemonic": "test", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14000b4c3", "size": 2, "mnemonic": "je", - "operands": "0x14000b4da" + "operands": "0x14000b4da", + "stack_offset": 0 } ], "successors": [ @@ -94657,19 +106462,22 @@ "address": "0x14000b49a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rbx" + "operands": "qword ptr [rsp + 0x38], rbx", + "stack_offset": 0 }, { "address": "0x14000b49f", "size": 3, "mnemonic": "cmp", - "operands": "rbx, r14" + "operands": "rbx, r14", + "stack_offset": 0 }, { "address": "0x14000b4a2", "size": 6, "mnemonic": "je", - "operands": "0x14000b531" + "operands": "0x14000b531", + "stack_offset": 0 } ], "successors": [ @@ -94687,49 +106495,57 @@ "address": "0x14000b4c5", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14000b4c7", "size": 2, "mnemonic": "and", - "operands": "al, 3" + "operands": "al, 3", + "stack_offset": 0 }, { "address": "0x14000b4c9", "size": 2, "mnemonic": "cmp", - "operands": "al, 2" + "operands": "al, 2", + "stack_offset": 0 }, { "address": "0x14000b4cb", "size": 2, "mnemonic": "jne", - "operands": "0x14000b4d2" + "operands": "0x14000b4d2", + "stack_offset": 0 }, { "address": "0x14000b4cd", "size": 3, "mnemonic": "test", - "operands": "cl, 0xc0" + "operands": "cl, 0xc0", + "stack_offset": 0 }, { "address": "0x14000b4d0", "size": 2, "mnemonic": "jne", - "operands": "0x14000b4e0" + "operands": "0x14000b4e0", + "stack_offset": 0 }, { "address": "0x14000b4d2", "size": 4, "mnemonic": "bt", - "operands": "ecx, 0xb" + "operands": "ecx, 0xb", + "stack_offset": 0 }, { "address": "0x14000b4d6", "size": 2, "mnemonic": "jb", - "operands": "0x14000b4e0" + "operands": "0x14000b4e0", + "stack_offset": 0 } ], "successors": [ @@ -94747,103 +106563,120 @@ "address": "0x14000b4e0", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsi + 0x10]" + "operands": "rdx, qword ptr [rsi + 0x10]", + "stack_offset": 0 }, { "address": "0x14000b4e4", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsi + 8]" + "operands": "rcx, qword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x14000b4e8", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x14000b4eb", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x20]" + "operands": "r8, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000b4f0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], r8" + "operands": "qword ptr [rsp + 0x40], r8", + "stack_offset": 0 }, { "address": "0x14000b4f5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], rax" + "operands": "qword ptr [rsp + 0x48], rax", + "stack_offset": 0 }, { "address": "0x14000b4fa", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x50], rcx" + "operands": "qword ptr [rsp + 0x50], rcx", + "stack_offset": 0 }, { "address": "0x14000b4ff", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x58], rdx" + "operands": "qword ptr [rsp + 0x58], rdx", + "stack_offset": 0 }, { "address": "0x14000b504", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x20]" + "operands": "rax, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000b509", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14000b50e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rax" + "operands": "qword ptr [rsp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x14000b513", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x28]" + "operands": "r9, [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000b518", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x40]" + "operands": "r8, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000b51d", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x30]" + "operands": "rdx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000b522", "size": 8, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x88]" + "operands": "rcx, [rsp + 0x88]", + "stack_offset": 0 }, { "address": "0x14000b52a", "size": 5, "mnemonic": "call", - "operands": "0x14000b3cc" + "operands": "0x14000b3cc", + "stack_offset": 0 }, { "address": "0x14000b52f", "size": 2, "mnemonic": "jmp", - "operands": "0x14000b4da" + "operands": "0x14000b4da", + "stack_offset": 0 } ], "successors": [ @@ -94860,19 +106693,22 @@ "address": "0x14000b4d8", "size": 2, "mnemonic": "inc", - "operands": "dword ptr [rdx]" + "operands": "dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000b4da", "size": 4, "mnemonic": "add", - "operands": "rbx, 8" + "operands": "rbx, 8", + "stack_offset": 0 }, { "address": "0x14000b4de", "size": 2, "mnemonic": "jmp", - "operands": "0x14000b49a" + "operands": "0x14000b49a", + "stack_offset": 0 } ], "successors": [ @@ -94895,157 +106731,183 @@ "address": "0x14000b58c", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 8], cl" + "operands": "byte ptr [rsp + 8], cl", + "stack_offset": 0 }, { "address": "0x14000b590", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b591", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000b594", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000b598", "size": 4, "mnemonic": "and", - "operands": "dword ptr [rbp + 0x28], 0" + "operands": "dword ptr [rbp + 0x28], 0", + "stack_offset": 0 }, { "address": "0x14000b59c", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x28]" + "operands": "rax, [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000b5a0", "size": 4, "mnemonic": "and", - "operands": "dword ptr [rbp + 0x20], 0" + "operands": "dword ptr [rbp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14000b5a4", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp - 0x20]" + "operands": "r9, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14000b5a8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x18], rax" + "operands": "qword ptr [rbp - 0x18], rax", + "stack_offset": 0 }, { "address": "0x14000b5ac", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x18]" + "operands": "r8, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14000b5b0", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x10]" + "operands": "rax, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000b5b4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x14000b5b8", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x1c]" + "operands": "rdx, [rbp - 0x1c]", + "stack_offset": 0 }, { "address": "0x14000b5bc", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x20]" + "operands": "rax, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000b5c0", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 8], rax" + "operands": "qword ptr [rbp - 8], rax", + "stack_offset": 0 }, { "address": "0x14000b5c4", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x18]" + "operands": "rcx, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x14000b5c8", "size": 5, "mnemonic": "mov", - "operands": "eax, 8" + "operands": "eax, 8", + "stack_offset": 0 }, { "address": "0x14000b5cd", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x20], eax" + "operands": "dword ptr [rbp - 0x20], eax", + "stack_offset": 0 }, { "address": "0x14000b5d0", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x1c], eax" + "operands": "dword ptr [rbp - 0x1c], eax", + "stack_offset": 0 }, { "address": "0x14000b5d3", "size": 5, "mnemonic": "call", - "operands": "0x14000b468" + "operands": "0x14000b468", + "stack_offset": 0 }, { "address": "0x14000b5d8", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp + 0x10], 0" + "operands": "byte ptr [rbp + 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000b5dc", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbp + 0x20]" + "operands": "eax, dword ptr [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000b5df", "size": 4, "mnemonic": "cmovne", - "operands": "eax, dword ptr [rbp + 0x28]" + "operands": "eax, dword ptr [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000b5e3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000b5e7", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b5e8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -95067,157 +106929,183 @@ "address": "0x14000b960", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000b963", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rbx" + "operands": "qword ptr [rax + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000b967", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], rsi" + "operands": "qword ptr [rax + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000b96b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rdx" + "operands": "qword ptr [rax + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14000b96f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000b970", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000b974", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rsp" + "operands": "qword ptr [rsp + 0x30], rsp", + "stack_offset": 0 }, { "address": "0x14000b979", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x14000b97c", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14000b97f", "size": 2, "mnemonic": "mov", - "operands": "esi, ecx" + "operands": "esi, ecx", + "stack_offset": 0 }, { "address": "0x14000b981", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000b984", "size": 2, "mnemonic": "jne", - "operands": "0x14000b9bb" + "operands": "0x14000b9bb", + "stack_offset": 0 }, { "address": "0x14000b986", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r8 + 0x30], 1" + "operands": "byte ptr [r8 + 0x30], 1", + "stack_offset": 0 }, { "address": "0x14000b98b", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [r8 + 0x2c], 0x16" + "operands": "dword ptr [r8 + 0x2c], 0x16", + "stack_offset": 0 }, { "address": "0x14000b993", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax - 0x20], r8" + "operands": "qword ptr [rax - 0x20], r8", + "stack_offset": 0 }, { "address": "0x14000b997", "size": 4, "mnemonic": "and", - "operands": "qword ptr [rax - 0x28], rdx" + "operands": "qword ptr [rax - 0x28], rdx", + "stack_offset": 0 }, { "address": "0x14000b99b", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000b99e", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000b9a1", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000b9a3", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x14000b9a8", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14000b9ab", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000b9b0", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x60]" + "operands": "rsi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000b9b5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000b9b9", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000b9ba", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -95239,55 +107127,64 @@ "address": "0x14000d878", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000d87c", "size": 5, "mnemonic": "call", - "operands": "0x140011924" + "operands": "0x140011924", + "stack_offset": 0 }, { "address": "0x14000d881", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000d884", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x23961]" + "operands": "rdx, [rip + 0x23961]", + "stack_offset": 0 }, { "address": "0x14000d88b", "size": 4, "mnemonic": "add", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x14000d88f", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000d892", "size": 4, "mnemonic": "cmove", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000d896", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000d89a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -95309,55 +107206,64 @@ "address": "0x14000afb4", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x14000afb8", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14000afbe", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000afc1", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000afc4", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000afc6", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000afc8", "size": 5, "mnemonic": "call", - "operands": "0x14000ae60" + "operands": "0x14000ae60", + "stack_offset": 0 }, { "address": "0x14000afcd", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x14000afd1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -95379,175 +107285,204 @@ "address": "0x14000bec8", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000becb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rbx" + "operands": "qword ptr [rax + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x14000becf", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], rsi" + "operands": "qword ptr [rax + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000bed3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rdi" + "operands": "qword ptr [rax + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x14000bed7", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rcx" + "operands": "qword ptr [rax + 8], rcx", + "stack_offset": 0 }, { "address": "0x14000bedb", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000bedd", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000bee1", "size": 3, "mnemonic": "mov", - "operands": "rdi, r9" + "operands": "rdi, r9", + "stack_offset": 0 }, { "address": "0x14000bee4", "size": 3, "mnemonic": "mov", - "operands": "esi, r8d" + "operands": "esi, r8d", + "stack_offset": 0 }, { "address": "0x14000bee7", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x14000beea", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000beed", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000bef0", "size": 2, "mnemonic": "jne", - "operands": "0x14000bf32" + "operands": "0x14000bf32", + "stack_offset": 0 }, { "address": "0x14000bef2", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r9 + 0x30], 1" + "operands": "byte ptr [r9 + 0x30], 1", + "stack_offset": 0 }, { "address": "0x14000bef7", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [r9 + 0x2c], 0x16" + "operands": "dword ptr [r9 + 0x2c], 0x16", + "stack_offset": 0 }, { "address": "0x14000beff", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rdi" + "operands": "qword ptr [rsp + 0x28], rdi", + "stack_offset": 0 }, { "address": "0x14000bf04", "size": 6, "mnemonic": "and", - "operands": "qword ptr [rsp + 0x20], 0" + "operands": "qword ptr [rsp + 0x20], 0", + "stack_offset": 0 }, { "address": "0x14000bf0a", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000bf0d", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000bf10", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000bf12", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000bf14", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x14000bf19", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14000bf1c", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x48]" + "operands": "rbx, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000bf21", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000bf26", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x58]" + "operands": "rdi, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000bf2b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000bf2f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000bf31", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -95569,61 +107504,71 @@ "address": "0x14000c2a4", "size": 3, "mnemonic": "mov", - "operands": "r11, rsp" + "operands": "r11, rsp", + "stack_offset": 0 }, { "address": "0x14000c2a7", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 0x20], r9" + "operands": "qword ptr [r11 + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14000c2ab", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 0x18], r8" + "operands": "qword ptr [r11 + 0x18], r8", + "stack_offset": 0 }, { "address": "0x14000c2af", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 0x10], rdx" + "operands": "qword ptr [r11 + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14000c2b3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], rcx" + "operands": "qword ptr [r11 + 8], rcx", + "stack_offset": 0 }, { "address": "0x14000c2b7", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000c2b8", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000c2bb", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14000c2bf", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000c2c2", "size": 2, "mnemonic": "je", - "operands": "0x14000c2f1" + "operands": "0x14000c2f1", + "stack_offset": 0 } ], "successors": [ @@ -95647,85 +107592,99 @@ "address": "0x14000f858", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rdx" + "operands": "qword ptr [rsp + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14000f85d", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 8], ecx" + "operands": "dword ptr [rsp + 8], ecx", + "stack_offset": 0 }, { "address": "0x14000f861", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000f862", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000f865", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000f869", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000f86e", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x38], 0" + "operands": "qword ptr [rbp - 0x38], 0", + "stack_offset": 0 }, { "address": "0x14000f873", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 5" + "operands": "ecx, 5", + "stack_offset": 0 }, { "address": "0x14000f876", "size": 2, "mnemonic": "jbe", - "operands": "0x14000f88c" + "operands": "0x14000f88c", + "stack_offset": 0 }, { "address": "0x14000f878", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14000f87d", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x14000f883", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14000f888", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000f88a", "size": 2, "mnemonic": "jmp", - "operands": "0x14000f8f3" + "operands": "0x14000f8f3", + "stack_offset": 0 } ], "successors": [ @@ -95748,25 +107707,29 @@ "address": "0x1400118c4", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400118c8", "size": 5, "mnemonic": "call", - "operands": "0x140011924" + "operands": "0x140011924", + "stack_offset": 0 }, { "address": "0x1400118cd", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400118d0", "size": 2, "mnemonic": "je", - "operands": "0x1400118d7" + "operands": "0x1400118d7", + "stack_offset": 0 } ], "successors": [ @@ -95784,13 +107747,15 @@ "address": "0x1400118d7", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x1400118dc", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -95806,13 +107771,15 @@ "address": "0x1400118d2", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400118d6", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -95834,79 +107801,92 @@ "address": "0x140015a74", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140015a79", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rdi" + "operands": "qword ptr [rsp + 0x10], rdi", + "stack_offset": 0 }, { "address": "0x140015a7e", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015a7f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x140015a82", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x140015a86", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x140015a8b", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x38]" + "operands": "rax, qword ptr [rbp + 0x38]", + "stack_offset": 0 }, { "address": "0x140015a8f", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x140015a93", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x140015a97", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x140015a9b", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x140015a9f", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140015aa2", "size": 2, "mnemonic": "je", - "operands": "0x140015aa9" + "operands": "0x140015aa9", + "stack_offset": 0 } ], "successors": [ @@ -95942,505 +107922,589 @@ "address": "0x140012358", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001235c", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23c9d]" + "operands": "rax, qword ptr [rip + 0x23c9d]", + "stack_offset": 0 }, { "address": "0x140012363", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140012366", "size": 2, "mnemonic": "jne", - "operands": "0x140012384" + "operands": "0x140012384", + "stack_offset": 0 }, { "address": "0x140012368", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x1451d]" + "operands": "r9, [rip + 0x1451d]", + "stack_offset": 0 }, { "address": "0x14001236f", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140012371", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x14510]" + "operands": "r8, [rip + 0x14510]", + "stack_offset": 0 }, { "address": "0x140012378", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x14511]" + "operands": "rdx, [rip + 0x14511]", + "stack_offset": 0 }, { "address": "0x14001237f", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x140012384", "size": 5, "mnemonic": "call", - "operands": "0x140011bc8" + "operands": "0x140011bc8", + "stack_offset": 0 }, { "address": "0x140012389", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23c80]" + "operands": "rax, qword ptr [rip + 0x23c80]", + "stack_offset": 0 }, { "address": "0x140012390", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140012393", "size": 2, "mnemonic": "jne", - "operands": "0x1400123b2" + "operands": "0x1400123b2", + "stack_offset": 0 }, { "address": "0x140012395", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x14524]" + "operands": "r9, [rip + 0x14524]", + "stack_offset": 0 }, { "address": "0x14001239c", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x14515]" + "operands": "r8, [rip + 0x14515]", + "stack_offset": 0 }, { "address": "0x1400123a3", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x14516]" + "operands": "rdx, [rip + 0x14516]", + "stack_offset": 0 }, { "address": "0x1400123aa", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 2]" + "operands": "ecx, [rax + 2]", + "stack_offset": 0 }, { "address": "0x1400123ad", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x1400123b2", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23c6f]" + "operands": "rax, qword ptr [rip + 0x23c6f]", + "stack_offset": 0 }, { "address": "0x1400123b9", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400123bc", "size": 2, "mnemonic": "jne", - "operands": "0x1400123db" + "operands": "0x1400123db", + "stack_offset": 0 }, { "address": "0x1400123be", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x14533]" + "operands": "r9, [rip + 0x14533]", + "stack_offset": 0 }, { "address": "0x1400123c5", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x14524]" + "operands": "r8, [rip + 0x14524]", + "stack_offset": 0 }, { "address": "0x1400123cc", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x14525]" + "operands": "rdx, [rip + 0x14525]", + "stack_offset": 0 }, { "address": "0x1400123d3", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 5]" + "operands": "ecx, [rax + 5]", + "stack_offset": 0 }, { "address": "0x1400123d6", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x1400123db", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23c6e]" + "operands": "rax, qword ptr [rip + 0x23c6e]", + "stack_offset": 0 }, { "address": "0x1400123e2", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400123e5", "size": 2, "mnemonic": "jne", - "operands": "0x140012404" + "operands": "0x140012404", + "stack_offset": 0 }, { "address": "0x1400123e7", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x14522]" + "operands": "r9, [rip + 0x14522]", + "stack_offset": 0 }, { "address": "0x1400123ee", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x14513]" + "operands": "r8, [rip + 0x14513]", + "stack_offset": 0 }, { "address": "0x1400123f5", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x14514]" + "operands": "rdx, [rip + 0x14514]", + "stack_offset": 0 }, { "address": "0x1400123fc", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0xa]" + "operands": "ecx, [rax + 0xa]", + "stack_offset": 0 }, { "address": "0x1400123ff", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x140012404", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23c5d]" + "operands": "rax, qword ptr [rip + 0x23c5d]", + "stack_offset": 0 }, { "address": "0x14001240b", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001240e", "size": 2, "mnemonic": "jne", - "operands": "0x14001242d" + "operands": "0x14001242d", + "stack_offset": 0 }, { "address": "0x140012410", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x14511]" + "operands": "r9, [rip + 0x14511]", + "stack_offset": 0 }, { "address": "0x140012417", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x14502]" + "operands": "r8, [rip + 0x14502]", + "stack_offset": 0 }, { "address": "0x14001241e", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x14503]" + "operands": "rdx, [rip + 0x14503]", + "stack_offset": 0 }, { "address": "0x140012425", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0xd]" + "operands": "ecx, [rax + 0xd]", + "stack_offset": 0 }, { "address": "0x140012428", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x14001242d", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23c3c]" + "operands": "rax, qword ptr [rip + 0x23c3c]", + "stack_offset": 0 }, { "address": "0x140012434", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140012437", "size": 2, "mnemonic": "jne", - "operands": "0x140012456" + "operands": "0x140012456", + "stack_offset": 0 }, { "address": "0x140012439", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x14500]" + "operands": "r9, [rip + 0x14500]", + "stack_offset": 0 }, { "address": "0x140012440", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x144f1]" + "operands": "r8, [rip + 0x144f1]", + "stack_offset": 0 }, { "address": "0x140012447", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x144f2]" + "operands": "rdx, [rip + 0x144f2]", + "stack_offset": 0 }, { "address": "0x14001244e", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0xe]" + "operands": "ecx, [rax + 0xe]", + "stack_offset": 0 }, { "address": "0x140012451", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x140012456", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23c2b]" + "operands": "rax, qword ptr [rip + 0x23c2b]", + "stack_offset": 0 }, { "address": "0x14001245d", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140012460", "size": 2, "mnemonic": "jne", - "operands": "0x14001247f" + "operands": "0x14001247f", + "stack_offset": 0 }, { "address": "0x140012462", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x144ff]" + "operands": "r9, [rip + 0x144ff]", + "stack_offset": 0 }, { "address": "0x140012469", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x144f0]" + "operands": "r8, [rip + 0x144f0]", + "stack_offset": 0 }, { "address": "0x140012470", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x144f1]" + "operands": "rdx, [rip + 0x144f1]", + "stack_offset": 0 }, { "address": "0x140012477", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0x11]" + "operands": "ecx, [rax + 0x11]", + "stack_offset": 0 }, { "address": "0x14001247a", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x14001247f", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23c0a]" + "operands": "rax, qword ptr [rip + 0x23c0a]", + "stack_offset": 0 }, { "address": "0x140012486", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140012489", "size": 2, "mnemonic": "jne", - "operands": "0x1400124a8" + "operands": "0x1400124a8", + "stack_offset": 0 }, { "address": "0x14001248b", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x144f6]" + "operands": "r9, [rip + 0x144f6]", + "stack_offset": 0 }, { "address": "0x140012492", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x144e7]" + "operands": "r8, [rip + 0x144e7]", + "stack_offset": 0 }, { "address": "0x140012499", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x144e8]" + "operands": "rdx, [rip + 0x144e8]", + "stack_offset": 0 }, { "address": "0x1400124a0", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0x12]" + "operands": "ecx, [rax + 0x12]", + "stack_offset": 0 }, { "address": "0x1400124a3", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x1400124a8", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23be9]" + "operands": "rax, qword ptr [rip + 0x23be9]", + "stack_offset": 0 }, { "address": "0x1400124af", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400124b2", "size": 2, "mnemonic": "jne", - "operands": "0x1400124d1" + "operands": "0x1400124d1", + "stack_offset": 0 }, { "address": "0x1400124b4", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x144e5]" + "operands": "r9, [rip + 0x144e5]", + "stack_offset": 0 }, { "address": "0x1400124bb", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x144d6]" + "operands": "r8, [rip + 0x144d6]", + "stack_offset": 0 }, { "address": "0x1400124c2", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x144d7]" + "operands": "rdx, [rip + 0x144d7]", + "stack_offset": 0 }, { "address": "0x1400124c9", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0x13]" + "operands": "ecx, [rax + 0x13]", + "stack_offset": 0 }, { "address": "0x1400124cc", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x1400124d1", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23bc8]" + "operands": "rax, qword ptr [rip + 0x23bc8]", + "stack_offset": 0 }, { "address": "0x1400124d8", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400124db", "size": 2, "mnemonic": "jne", - "operands": "0x1400124fa" + "operands": "0x1400124fa", + "stack_offset": 0 }, { "address": "0x1400124dd", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x144dc]" + "operands": "r9, [rip + 0x144dc]", + "stack_offset": 0 }, { "address": "0x1400124e4", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x144cd]" + "operands": "r8, [rip + 0x144cd]", + "stack_offset": 0 }, { "address": "0x1400124eb", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x144ce]" + "operands": "rdx, [rip + 0x144ce]", + "stack_offset": 0 }, { "address": "0x1400124f2", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0x14]" + "operands": "ecx, [rax + 0x14]", + "stack_offset": 0 }, { "address": "0x1400124f5", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x1400124fa", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400124fe", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -96462,115 +108526,134 @@ "address": "0x14000cac8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000cacd", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14000cad2", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000cad3", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000cad7", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x14000cada", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x14000cadd", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000cadf", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x14000cae4", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000cae5", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14000cae8", "size": 5, "mnemonic": "call", - "operands": "0x14000cb08" + "operands": "0x14000cb08", + "stack_offset": 0 }, { "address": "0x14000caed", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14000caf0", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000caf2", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14000caf7", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x14000cafa", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000caff", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000cb03", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000cb04", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -96592,25 +108675,29 @@ "address": "0x140017480", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140017484", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x140017487", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001748a", "size": 2, "mnemonic": "je", - "operands": "0x14001749b" + "operands": "0x14001749b", + "stack_offset": 0 } ], "successors": [ @@ -96628,37 +108715,43 @@ "address": "0x14001749b", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x1400174a0", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x1400174a6", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x1400174ab", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x16" + "operands": "eax, 0x16", + "stack_offset": 0 }, { "address": "0x1400174b0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400174b4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -96674,13 +108767,15 @@ "address": "0x14001748c", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001748f", "size": 2, "mnemonic": "je", - "operands": "0x14001749b" + "operands": "0x14001749b", + "stack_offset": 0 } ], "successors": [ @@ -96698,61 +108793,71 @@ "address": "0x140017491", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x140017494", "size": 2, "mnemonic": "jne", - "operands": "0x1400174b5" + "operands": "0x1400174b5", + "stack_offset": 0 }, { "address": "0x140017496", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140017498", "size": 3, "mnemonic": "mov", - "operands": "word ptr [rcx], ax" + "operands": "word ptr [rcx], ax", + "stack_offset": 0 }, { "address": "0x14001749b", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x1400174a0", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x1400174a6", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x1400174ab", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x16" + "operands": "eax, 0x16", + "stack_offset": 0 }, { "address": "0x1400174b0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400174b4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -96774,163 +108879,190 @@ "address": "0x14000f8fc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000f901", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000f906", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000f90b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000f90c", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000f90e", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000f910", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000f912", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000f914", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000f918", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000f91b", "size": 5, "mnemonic": "mov", - "operands": "edi, 1" + "operands": "edi, 1", + "stack_offset": 0 }, { "address": "0x14000f920", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x6a6" + "operands": "ecx, 0x6a6", + "stack_offset": 0 }, { "address": "0x14000f925", "size": 5, "mnemonic": "call", - "operands": "0x140015200" + "operands": "0x140015200", + "stack_offset": 0 }, { "address": "0x14000f92a", "size": 3, "mnemonic": "xor", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x14000f92d", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000f930", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000f933", "size": 2, "mnemonic": "jne", - "operands": "0x14000f952" + "operands": "0x14000f952", + "stack_offset": 0 }, { "address": "0x14000f935", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000f93a", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x68]" + "operands": "rbp, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x14000f93f", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x70]" + "operands": "rsi, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000f944", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000f948", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000f94a", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000f94c", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000f94e", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000f950", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000f951", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -96952,49 +109084,57 @@ "address": "0x14001a560", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001a565", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a566", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a56a", "size": 3, "mnemonic": "movzx", - "operands": "eax, word ptr [rcx]" + "operands": "eax, word ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001a56d", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x14001a570", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001a573", "size": 3, "mnemonic": "test", - "operands": "ax, ax" + "operands": "ax, ax", + "stack_offset": 0 }, { "address": "0x14001a576", "size": 2, "mnemonic": "je", - "operands": "0x14001a59d" + "operands": "0x14001a59d", + "stack_offset": 0 } ], "successors": [ @@ -97012,31 +109152,36 @@ "address": "0x14001a59d", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001a59f", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a5a4", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a5a8", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a5a9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -97052,91 +109197,106 @@ "address": "0x14001a578", "size": 8, "mnemonic": "nop", - "operands": "dword ptr [rax + rax]" + "operands": "dword ptr [rax + rax]", + "stack_offset": 0 }, { "address": "0x14001a580", "size": 3, "mnemonic": "movzx", - "operands": "edx, ax" + "operands": "edx, ax", + "stack_offset": 0 }, { "address": "0x14001a583", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14001a586", "size": 5, "mnemonic": "call", - "operands": "0x14001e2cc" + "operands": "0x14001e2cc", + "stack_offset": 0 }, { "address": "0x14001a58b", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a58e", "size": 2, "mnemonic": "jne", - "operands": "0x14001a5aa" + "operands": "0x14001a5aa", + "stack_offset": 0 }, { "address": "0x14001a590", "size": 4, "mnemonic": "movzx", - "operands": "eax, word ptr [rbx + 2]" + "operands": "eax, word ptr [rbx + 2]", + "stack_offset": 0 }, { "address": "0x14001a594", "size": 4, "mnemonic": "add", - "operands": "rbx, 2" + "operands": "rbx, 2", + "stack_offset": 0 }, { "address": "0x14001a598", "size": 3, "mnemonic": "test", - "operands": "ax, ax" + "operands": "ax, ax", + "stack_offset": 0 }, { "address": "0x14001a59b", "size": 2, "mnemonic": "jne", - "operands": "0x14001a580" + "operands": "0x14001a580", + "stack_offset": 0 }, { "address": "0x14001a59d", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001a59f", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a5a4", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a5a8", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a5a9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -97158,181 +109318,211 @@ "address": "0x14000fd80", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rbx" + "operands": "qword ptr [rsp + 0x20], rbx", + "stack_offset": 0 }, { "address": "0x14000fd85", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000fd86", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000fd87", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000fd88", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000fd8a", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000fd8c", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000fd8e", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000fd90", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x230]" + "operands": "rbp, [rsp - 0x230]", + "stack_offset": 0 }, { "address": "0x14000fd98", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x330" + "operands": "rsp, 0x330", + "stack_offset": 0 }, { "address": "0x14000fd9f", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2129a]" + "operands": "rax, qword ptr [rip + 0x2129a]", + "stack_offset": 0 }, { "address": "0x14000fda6", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000fda9", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x220], rax" + "operands": "qword ptr [rbp + 0x220], rax", + "stack_offset": 0 }, { "address": "0x14000fdb0", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x14000fdb3", "size": 3, "mnemonic": "movsxd", - "operands": "r12, edx" + "operands": "r12, edx", + "stack_offset": 0 }, { "address": "0x14000fdb6", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], r13d" + "operands": "dword ptr [rsp + 0x40], r13d", + "stack_offset": 0 }, { "address": "0x14000fdbb", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x14000fdbe", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000fdc1", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14000fdc6", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp + 0x70]" + "operands": "r9, [rbp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000fdca", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x83" + "operands": "r8d, 0x83", + "stack_offset": 0 }, { "address": "0x14000fdd0", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x60]" + "operands": "rdx, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000fdd5", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14000fdd8", "size": 7, "mnemonic": "lea", - "operands": "r14, [rax + 0x2c8]" + "operands": "r14, [rax + 0x2c8]", + "stack_offset": 0 }, { "address": "0x14000fddf", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x40]" + "operands": "rax, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000fde4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14000fde9", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0x55" + "operands": "qword ptr [rsp + 0x20], 0x55", + "stack_offset": 0 }, { "address": "0x14000fdf2", "size": 5, "mnemonic": "call", - "operands": "0x14000f36c" + "operands": "0x14000f36c", + "stack_offset": 0 }, { "address": "0x14000fdf7", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000fdfa", "size": 6, "mnemonic": "je", - "operands": "0x140010021" + "operands": "0x140010021", + "stack_offset": 0 } ], "successors": [ @@ -97356,25 +109546,29 @@ "address": "0x140011460", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x140011463", "size": 2, "mnemonic": "jne", - "operands": "0x140011468" + "operands": "0x140011468", + "stack_offset": 0 }, { "address": "0x140011465", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011467", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -97396,61 +109590,71 @@ "address": "0x14001a500", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001a505", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14001a50a", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a50b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a50f", "size": 3, "mnemonic": "movzx", - "operands": "eax, word ptr [rcx]" + "operands": "eax, word ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001a512", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x14001a515", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14001a518", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001a51b", "size": 3, "mnemonic": "test", - "operands": "ax, ax" + "operands": "ax, ax", + "stack_offset": 0 }, { "address": "0x14001a51e", "size": 2, "mnemonic": "je", - "operands": "0x14001a53d" + "operands": "0x14001a53d", + "stack_offset": 0 } ], "successors": [ @@ -97468,49 +109672,57 @@ "address": "0x14001a53d", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a542", "size": 3, "mnemonic": "sub", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x14001a545", "size": 3, "mnemonic": "sar", - "operands": "rbx, 1" + "operands": "rbx, 1", + "stack_offset": 0 }, { "address": "0x14001a548", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14001a54b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a550", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a554", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a555", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -97526,103 +109738,120 @@ "address": "0x14001a520", "size": 3, "mnemonic": "movzx", - "operands": "edx, ax" + "operands": "edx, ax", + "stack_offset": 0 }, { "address": "0x14001a523", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14001a526", "size": 5, "mnemonic": "call", - "operands": "0x14001e2cc" + "operands": "0x14001e2cc", + "stack_offset": 0 }, { "address": "0x14001a52b", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a52e", "size": 2, "mnemonic": "jne", - "operands": "0x14001a53d" + "operands": "0x14001a53d", + "stack_offset": 0 }, { "address": "0x14001a530", "size": 4, "mnemonic": "movzx", - "operands": "eax, word ptr [rbx + 2]" + "operands": "eax, word ptr [rbx + 2]", + "stack_offset": 0 }, { "address": "0x14001a534", "size": 4, "mnemonic": "add", - "operands": "rbx, 2" + "operands": "rbx, 2", + "stack_offset": 0 }, { "address": "0x14001a538", "size": 3, "mnemonic": "test", - "operands": "ax, ax" + "operands": "ax, ax", + "stack_offset": 0 }, { "address": "0x14001a53b", "size": 2, "mnemonic": "jne", - "operands": "0x14001a520" + "operands": "0x14001a520", + "stack_offset": 0 }, { "address": "0x14001a53d", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a542", "size": 3, "mnemonic": "sub", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x14001a545", "size": 3, "mnemonic": "sar", - "operands": "rbx, 1" + "operands": "rbx, 1", + "stack_offset": 0 }, { "address": "0x14001a548", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14001a54b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a550", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a554", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a555", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -97644,115 +109873,134 @@ "address": "0x140017510", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x140017515", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017516", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001751a", "size": 3, "mnemonic": "mov", - "operands": "rsi, r9" + "operands": "rsi, r9", + "stack_offset": 0 }, { "address": "0x14001751d", "size": 3, "mnemonic": "mov", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x140017520", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140017523", "size": 3, "mnemonic": "mov", - "operands": "r11, rcx" + "operands": "r11, rcx", + "stack_offset": 0 }, { "address": "0x140017526", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x140017529", "size": 2, "mnemonic": "jne", - "operands": "0x140017546" + "operands": "0x140017546", + "stack_offset": 0 }, { "address": "0x14001752b", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001752e", "size": 2, "mnemonic": "jne", - "operands": "0x14001754b" + "operands": "0x14001754b", + "stack_offset": 0 }, { "address": "0x140017530", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140017533", "size": 2, "mnemonic": "jne", - "operands": "0x140017573" + "operands": "0x140017573", + "stack_offset": 0 }, { "address": "0x140017535", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140017538", "size": 3, "mnemonic": "mov", - "operands": "eax, r8d" + "operands": "eax, r8d", + "stack_offset": 0 }, { "address": "0x14001753b", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140017540", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140017544", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017545", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -97774,25 +110022,29 @@ "address": "0x1400165b0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400165b4", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x1400165b7", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400165ba", "size": 2, "mnemonic": "je", - "operands": "0x1400165cb" + "operands": "0x1400165cb", + "stack_offset": 0 } ], "successors": [ @@ -97810,37 +110062,43 @@ "address": "0x1400165cb", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x1400165d0", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x1400165d6", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x1400165db", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x16" + "operands": "eax, 0x16", + "stack_offset": 0 }, { "address": "0x1400165e0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400165e4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -97856,13 +110114,15 @@ "address": "0x1400165bc", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x1400165bf", "size": 2, "mnemonic": "je", - "operands": "0x1400165cb" + "operands": "0x1400165cb", + "stack_offset": 0 } ], "successors": [ @@ -97880,61 +110140,71 @@ "address": "0x1400165c1", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x1400165c4", "size": 2, "mnemonic": "jne", - "operands": "0x1400165e5" + "operands": "0x1400165e5", + "stack_offset": 0 }, { "address": "0x1400165c6", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400165c8", "size": 3, "mnemonic": "mov", - "operands": "word ptr [rcx], ax" + "operands": "word ptr [rcx], ax", + "stack_offset": 0 }, { "address": "0x1400165cb", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x1400165d0", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x1400165d6", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x1400165db", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x16" + "operands": "eax, 0x16", + "stack_offset": 0 }, { "address": "0x1400165e0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400165e4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -97956,19 +110226,22 @@ "address": "0x14001ee30", "size": 3, "mnemonic": "sub", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14001ee33", "size": 4, "mnemonic": "cmp", - "operands": "r8, 8" + "operands": "r8, 8", + "stack_offset": 0 }, { "address": "0x14001ee37", "size": 2, "mnemonic": "jb", - "operands": "0x14001ee5b" + "operands": "0x14001ee5b", + "stack_offset": 0 } ], "successors": [ @@ -97986,13 +110259,15 @@ "address": "0x14001ee5b", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x14001ee5e", "size": 2, "mnemonic": "je", - "operands": "0x14001ee6f" + "operands": "0x14001ee6f", + "stack_offset": 0 } ], "successors": [ @@ -98010,13 +110285,15 @@ "address": "0x14001ee39", "size": 3, "mnemonic": "test", - "operands": "cl, 7" + "operands": "cl, 7", + "stack_offset": 0 }, { "address": "0x14001ee3c", "size": 2, "mnemonic": "je", - "operands": "0x14001ee52" + "operands": "0x14001ee52", + "stack_offset": 0 } ], "successors": [ @@ -98034,13 +110311,15 @@ "address": "0x14001ee6f", "size": 3, "mnemonic": "xor", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001ee72", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -98056,49 +110335,57 @@ "address": "0x14001ee60", "size": 2, "mnemonic": "mov", - "operands": "al, byte ptr [rcx]" + "operands": "al, byte ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001ee62", "size": 3, "mnemonic": "cmp", - "operands": "al, byte ptr [rcx + rdx]" + "operands": "al, byte ptr [rcx + rdx]", + "stack_offset": 0 }, { "address": "0x14001ee65", "size": 2, "mnemonic": "jne", - "operands": "0x14001ee73" + "operands": "0x14001ee73", + "stack_offset": 0 }, { "address": "0x14001ee67", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x14001ee6a", "size": 3, "mnemonic": "dec", - "operands": "r8" + "operands": "r8", + "stack_offset": 0 }, { "address": "0x14001ee6d", "size": 2, "mnemonic": "jne", - "operands": "0x14001ee60" + "operands": "0x14001ee60", + "stack_offset": 0 }, { "address": "0x14001ee6f", "size": 3, "mnemonic": "xor", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001ee72", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -98114,31 +110401,36 @@ "address": "0x14001ee52", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001ee55", "size": 4, "mnemonic": "shr", - "operands": "r9, 3" + "operands": "r9, 3", + "stack_offset": 0 }, { "address": "0x14001ee59", "size": 2, "mnemonic": "jne", - "operands": "0x14001ee7a" + "operands": "0x14001ee7a", + "stack_offset": 0 }, { "address": "0x14001ee5b", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x14001ee5e", "size": 2, "mnemonic": "je", - "operands": "0x14001ee6f" + "operands": "0x14001ee6f", + "stack_offset": 0 } ], "successors": [ @@ -98156,79 +110448,92 @@ "address": "0x14001ee3e", "size": 2, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001ee40", "size": 2, "mnemonic": "mov", - "operands": "al, byte ptr [rcx]" + "operands": "al, byte ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001ee42", "size": 3, "mnemonic": "cmp", - "operands": "al, byte ptr [rcx + rdx]" + "operands": "al, byte ptr [rcx + rdx]", + "stack_offset": 0 }, { "address": "0x14001ee45", "size": 2, "mnemonic": "jne", - "operands": "0x14001ee73" + "operands": "0x14001ee73", + "stack_offset": 0 }, { "address": "0x14001ee47", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x14001ee4a", "size": 3, "mnemonic": "dec", - "operands": "r8" + "operands": "r8", + "stack_offset": 0 }, { "address": "0x14001ee4d", "size": 3, "mnemonic": "test", - "operands": "cl, 7" + "operands": "cl, 7", + "stack_offset": 0 }, { "address": "0x14001ee50", "size": 2, "mnemonic": "jne", - "operands": "0x14001ee40" + "operands": "0x14001ee40", + "stack_offset": 0 }, { "address": "0x14001ee52", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001ee55", "size": 4, "mnemonic": "shr", - "operands": "r9, 3" + "operands": "r9, 3", + "stack_offset": 0 }, { "address": "0x14001ee59", "size": 2, "mnemonic": "jne", - "operands": "0x14001ee7a" + "operands": "0x14001ee7a", + "stack_offset": 0 }, { "address": "0x14001ee5b", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x14001ee5e", "size": 2, "mnemonic": "je", - "operands": "0x14001ee6f" + "operands": "0x14001ee6f", + "stack_offset": 0 } ], "successors": [ @@ -98252,67 +110557,78 @@ "address": "0x14001032c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140010331", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010332", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140010336", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdx + 0x10], 0" + "operands": "dword ptr [rdx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x14001033a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14001033d", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140010340", "size": 2, "mnemonic": "jne", - "operands": "0x140010392" + "operands": "0x140010392", + "stack_offset": 0 }, { "address": "0x140010342", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rdx + 8]" + "operands": "rdx, qword ptr [rdx + 8]", + "stack_offset": 0 }, { "address": "0x140010346", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdx - 2]" + "operands": "rax, [rdx - 2]", + "stack_offset": 0 }, { "address": "0x14001034a", "size": 4, "mnemonic": "cmp", - "operands": "rax, 1" + "operands": "rax, 1", + "stack_offset": 0 }, { "address": "0x14001034e", "size": 2, "mnemonic": "ja", - "operands": "0x140010392" + "operands": "0x140010392", + "stack_offset": 0 } ], "successors": [ @@ -98330,31 +110646,36 @@ "address": "0x140010392", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140010394", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140010399", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001039d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001039e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -98370,25 +110691,29 @@ "address": "0x140010350", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx]" + "operands": "rcx, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140010353", "size": 5, "mnemonic": "call", - "operands": "0x14001053c" + "operands": "0x14001053c", + "stack_offset": 0 }, { "address": "0x140010358", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001035a", "size": 2, "mnemonic": "je", - "operands": "0x140010392" + "operands": "0x140010392", + "stack_offset": 0 } ], "successors": [ @@ -98406,97 +110731,113 @@ "address": "0x14001035c", "size": 4, "mnemonic": "mov", - "operands": "r9, qword ptr [rbx + 8]" + "operands": "r9, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140010360", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x40" + "operands": "edx, 0x40", + "stack_offset": 0 }, { "address": "0x140010365", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rbx]" + "operands": "r8, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140010368", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14001036b", "size": 5, "mnemonic": "call", - "operands": "0x140017510" + "operands": "0x140017510", + "stack_offset": 0 }, { "address": "0x140010370", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140010372", "size": 2, "mnemonic": "jne", - "operands": "0x14001039f" + "operands": "0x14001039f", + "stack_offset": 0 }, { "address": "0x140010374", "size": 4, "mnemonic": "mov", - "operands": "r9, qword ptr [rbx + 8]" + "operands": "r9, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140010378", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rdi + 0x120]" + "operands": "rcx, [rdi + 0x120]", + "stack_offset": 0 }, { "address": "0x14001037f", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rbx]" + "operands": "r8, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140010382", "size": 3, "mnemonic": "lea", - "operands": "edx, [rax + 0x55]" + "operands": "edx, [rax + 0x55]", + "stack_offset": 0 }, { "address": "0x140010385", "size": 5, "mnemonic": "call", - "operands": "0x140017510" + "operands": "0x140017510", + "stack_offset": 0 }, { "address": "0x14001038a", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001038c", "size": 2, "mnemonic": "jne", - "operands": "0x14001039f" + "operands": "0x14001039f", + "stack_offset": 0 }, { "address": "0x14001038e", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140010390", "size": 2, "mnemonic": "jmp", - "operands": "0x140010394" + "operands": "0x140010394", + "stack_offset": 0 } ], "successors": [ @@ -98513,25 +110854,29 @@ "address": "0x140010394", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140010399", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001039d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001039e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -98553,85 +110898,99 @@ "address": "0x1400104ac", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400104b1", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400104b2", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x1400104b6", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdx + 0x10], 0" + "operands": "dword ptr [rdx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x1400104ba", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x1400104bd", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x1400104c0", "size": 2, "mnemonic": "jne", - "operands": "0x140010518" + "operands": "0x140010518", + "stack_offset": 0 }, { "address": "0x1400104c2", "size": 5, "mnemonic": "mov", - "operands": "edx, 4" + "operands": "edx, 4", + "stack_offset": 0 }, { "address": "0x1400104c7", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x1400104cb", "size": 2, "mnemonic": "jne", - "operands": "0x140010518" + "operands": "0x140010518", + "stack_offset": 0 }, { "address": "0x1400104cd", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx]" + "operands": "rcx, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x1400104d0", "size": 5, "mnemonic": "call", - "operands": "0x14001053c" + "operands": "0x14001053c", + "stack_offset": 0 }, { "address": "0x1400104d5", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400104d7", "size": 2, "mnemonic": "je", - "operands": "0x140010518" + "operands": "0x140010518", + "stack_offset": 0 } ], "successors": [ @@ -98649,31 +111008,36 @@ "address": "0x140010518", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001051a", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001051f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140010523", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010524", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -98689,97 +111053,113 @@ "address": "0x1400104d9", "size": 6, "mnemonic": "mov", - "operands": "r9d, 1" + "operands": "r9d, 1", + "stack_offset": 0 }, { "address": "0x1400104df", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x137e2]" + "operands": "r8, [rip + 0x137e2]", + "stack_offset": 0 }, { "address": "0x1400104e6", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rdi + 0x120]" + "operands": "rcx, [rdi + 0x120]", + "stack_offset": 0 }, { "address": "0x1400104ed", "size": 4, "mnemonic": "lea", - "operands": "edx, [r9 + 0x54]" + "operands": "edx, [r9 + 0x54]", + "stack_offset": 0 }, { "address": "0x1400104f1", "size": 5, "mnemonic": "call", - "operands": "0x14001a3c0" + "operands": "0x14001a3c0", + "stack_offset": 0 }, { "address": "0x1400104f6", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400104f8", "size": 2, "mnemonic": "jne", - "operands": "0x140010525" + "operands": "0x140010525", + "stack_offset": 0 }, { "address": "0x1400104fa", "size": 4, "mnemonic": "mov", - "operands": "r9, qword ptr [rbx + 8]" + "operands": "r9, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x1400104fe", "size": 3, "mnemonic": "lea", - "operands": "edx, [rax + 0x55]" + "operands": "edx, [rax + 0x55]", + "stack_offset": 0 }, { "address": "0x140010501", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rbx]" + "operands": "r8, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140010504", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rdi + 0x120]" + "operands": "rcx, [rdi + 0x120]", + "stack_offset": 0 }, { "address": "0x14001050b", "size": 5, "mnemonic": "call", - "operands": "0x14001a3c0" + "operands": "0x14001a3c0", + "stack_offset": 0 }, { "address": "0x140010510", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140010512", "size": 2, "mnemonic": "jne", - "operands": "0x140010525" + "operands": "0x140010525", + "stack_offset": 0 }, { "address": "0x140010514", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140010516", "size": 2, "mnemonic": "jmp", - "operands": "0x14001051a" + "operands": "0x14001051a", + "stack_offset": 0 } ], "successors": [ @@ -98796,25 +111176,29 @@ "address": "0x14001051a", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001051f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140010523", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010524", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -98836,157 +111220,183 @@ "address": "0x1400103b8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400103bd", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbp" + "operands": "qword ptr [rsp + 0x18], rbp", + "stack_offset": 0 }, { "address": "0x1400103c2", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x1400103c3", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400103c4", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400103c6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x1400103ca", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdx + 0x10], 0" + "operands": "dword ptr [rdx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x1400103ce", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x1400103d1", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x1400103d4", "size": 6, "mnemonic": "jne", - "operands": "0x140010480" + "operands": "0x140010480", + "stack_offset": 0 }, { "address": "0x1400103da", "size": 5, "mnemonic": "mov", - "operands": "edx, 2" + "operands": "edx, 2", + "stack_offset": 0 }, { "address": "0x1400103df", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rbx + 8], rdx" + "operands": "qword ptr [rbx + 8], rdx", + "stack_offset": 0 }, { "address": "0x1400103e3", "size": 2, "mnemonic": "jne", - "operands": "0x1400103f1" + "operands": "0x1400103f1", + "stack_offset": 0 }, { "address": "0x1400103e5", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx]" + "operands": "rcx, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x1400103e8", "size": 5, "mnemonic": "call", - "operands": "0x14001053c" + "operands": "0x14001053c", + "stack_offset": 0 }, { "address": "0x1400103ed", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400103ef", "size": 2, "mnemonic": "jne", - "operands": "0x140010428" + "operands": "0x140010428", + "stack_offset": 0 }, { "address": "0x1400103f1", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rbx + 8], 3" + "operands": "qword ptr [rbx + 8], 3", + "stack_offset": 0 }, { "address": "0x1400103f6", "size": 6, "mnemonic": "jne", - "operands": "0x140010480" + "operands": "0x140010480", + "stack_offset": 0 }, { "address": "0x1400103fc", "size": 3, "mnemonic": "mov", - "operands": "r14, qword ptr [rbx]" + "operands": "r14, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x1400103ff", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140010401", "size": 5, "mnemonic": "movzx", - "operands": "esi, word ptr [r14 + rdi*2]" + "operands": "esi, word ptr [r14 + rdi*2]", + "stack_offset": 0 }, { "address": "0x140010406", "size": 5, "mnemonic": "call", - "operands": "0x14000cdf4" + "operands": "0x14000cdf4", + "stack_offset": 0 }, { "address": "0x14001040b", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xff" + "operands": "ecx, 0xff", + "stack_offset": 0 }, { "address": "0x140010410", "size": 3, "mnemonic": "cmp", - "operands": "si, cx" + "operands": "si, cx", + "stack_offset": 0 }, { "address": "0x140010413", "size": 2, "mnemonic": "ja", - "operands": "0x140010480" + "operands": "0x140010480", + "stack_offset": 0 } ], "successors": [ @@ -99004,49 +111414,57 @@ "address": "0x140010480", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x140010482", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140010487", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x60]" + "operands": "rbp, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14001048c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140010490", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140010492", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010493", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140010494", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -99062,37 +111480,43 @@ "address": "0x140010415", "size": 4, "mnemonic": "movzx", - "operands": "eax, word ptr [rax + rsi*2]" + "operands": "eax, word ptr [rax + rsi*2]", + "stack_offset": 0 }, { "address": "0x140010419", "size": 4, "mnemonic": "bt", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14001041d", "size": 2, "mnemonic": "jae", - "operands": "0x140010480" + "operands": "0x140010480", + "stack_offset": 0 }, { "address": "0x14001041f", "size": 3, "mnemonic": "inc", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010422", "size": 4, "mnemonic": "cmp", - "operands": "rdi, 3" + "operands": "rdi, 3", + "stack_offset": 0 }, { "address": "0x140010426", "size": 2, "mnemonic": "jb", - "operands": "0x140010401" + "operands": "0x140010401", + "stack_offset": 0 } ], "successors": [ @@ -99110,31 +111534,36 @@ "address": "0x140010401", "size": 5, "mnemonic": "movzx", - "operands": "esi, word ptr [r14 + rdi*2]" + "operands": "esi, word ptr [r14 + rdi*2]", + "stack_offset": 0 }, { "address": "0x140010406", "size": 5, "mnemonic": "call", - "operands": "0x14000cdf4" + "operands": "0x14000cdf4", + "stack_offset": 0 }, { "address": "0x14001040b", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xff" + "operands": "ecx, 0xff", + "stack_offset": 0 }, { "address": "0x140010410", "size": 3, "mnemonic": "cmp", - "operands": "si, cx" + "operands": "si, cx", + "stack_offset": 0 }, { "address": "0x140010413", "size": 2, "mnemonic": "ja", - "operands": "0x140010480" + "operands": "0x140010480", + "stack_offset": 0 } ], "successors": [ @@ -99152,151 +111581,176 @@ "address": "0x140010428", "size": 4, "mnemonic": "mov", - "operands": "r9, qword ptr [rbx + 8]" + "operands": "r9, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x14001042c", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x80]" + "operands": "rcx, [rbp + 0x80]", + "stack_offset": 0 }, { "address": "0x140010433", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rbx]" + "operands": "r8, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140010436", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x40" + "operands": "edx, 0x40", + "stack_offset": 0 }, { "address": "0x14001043b", "size": 5, "mnemonic": "call", - "operands": "0x140017510" + "operands": "0x140017510", + "stack_offset": 0 }, { "address": "0x140010440", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140010442", "size": 2, "mnemonic": "jne", - "operands": "0x140010495" + "operands": "0x140010495", + "stack_offset": 0 }, { "address": "0x140010444", "size": 3, "mnemonic": "lea", - "operands": "esi, [rax + 0x55]" + "operands": "esi, [rax + 0x55]", + "stack_offset": 0 }, { "address": "0x140010447", "size": 7, "mnemonic": "lea", - "operands": "rdi, [rbp + 0x120]" + "operands": "rdi, [rbp + 0x120]", + "stack_offset": 0 }, { "address": "0x14001044e", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x140010450", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140010453", "size": 4, "mnemonic": "lea", - "operands": "r9d, [rax + 1]" + "operands": "r9d, [rax + 1]", + "stack_offset": 0 }, { "address": "0x140010457", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x1386a]" + "operands": "r8, [rip + 0x1386a]", + "stack_offset": 0 }, { "address": "0x14001045e", "size": 5, "mnemonic": "call", - "operands": "0x14001a3c0" + "operands": "0x14001a3c0", + "stack_offset": 0 }, { "address": "0x140010463", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140010465", "size": 2, "mnemonic": "jne", - "operands": "0x140010495" + "operands": "0x140010495", + "stack_offset": 0 }, { "address": "0x140010467", "size": 4, "mnemonic": "mov", - "operands": "r9, qword ptr [rbx + 8]" + "operands": "r9, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x14001046b", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x14001046d", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rbx]" + "operands": "r8, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140010470", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140010473", "size": 5, "mnemonic": "call", - "operands": "0x14001a3c0" + "operands": "0x14001a3c0", + "stack_offset": 0 }, { "address": "0x140010478", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001047a", "size": 2, "mnemonic": "jne", - "operands": "0x140010495" + "operands": "0x140010495", + "stack_offset": 0 }, { "address": "0x14001047c", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14001047e", "size": 2, "mnemonic": "jmp", - "operands": "0x140010482" + "operands": "0x140010482", + "stack_offset": 0 } ], "successors": [ @@ -99313,43 +111767,50 @@ "address": "0x140010482", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140010487", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x60]" + "operands": "rbp, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14001048c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140010490", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140010492", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010493", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140010494", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -99371,19 +111832,22 @@ "address": "0x1400102e4", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x1400102e8", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdx + 0x10], 2" + "operands": "dword ptr [rdx + 0x10], 2", + "stack_offset": 0 }, { "address": "0x1400102ec", "size": 2, "mnemonic": "je", - "operands": "0x1400102f5" + "operands": "0x1400102f5", + "stack_offset": 0 } ], "successors": [ @@ -99401,55 +111865,64 @@ "address": "0x1400102f5", "size": 4, "mnemonic": "mov", - "operands": "r9, qword ptr [rdx + 8]" + "operands": "r9, qword ptr [rdx + 8]", + "stack_offset": 0 }, { "address": "0x1400102f9", "size": 7, "mnemonic": "add", - "operands": "rcx, 0x100" + "operands": "rcx, 0x100", + "stack_offset": 0 }, { "address": "0x140010300", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rdx]" + "operands": "r8, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140010303", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x10" + "operands": "edx, 0x10", + "stack_offset": 0 }, { "address": "0x140010308", "size": 5, "mnemonic": "call", - "operands": "0x140017510" + "operands": "0x140017510", + "stack_offset": 0 }, { "address": "0x14001030d", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001030f", "size": 2, "mnemonic": "jne", - "operands": "0x140010315" + "operands": "0x140010315", + "stack_offset": 0 }, { "address": "0x140010311", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140010313", "size": 2, "mnemonic": "jmp", - "operands": "0x1400102f0" + "operands": "0x1400102f0", + "stack_offset": 0 } ], "successors": [ @@ -99466,19 +111939,22 @@ "address": "0x1400102ee", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400102f0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x1400102f4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -99494,13 +111970,15 @@ "address": "0x1400102f0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x1400102f4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -99522,115 +112000,134 @@ "address": "0x1400105f4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400105f9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x1400105fe", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400105ff", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140010603", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x140010606", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x140010609", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001060b", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x140010610", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140010611", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140010614", "size": 5, "mnemonic": "call", - "operands": "0x14001066c" + "operands": "0x14001066c", + "stack_offset": 0 }, { "address": "0x140010619", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x14001061b", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14001061d", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x140010622", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140010624", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140010629", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001062d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001062e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -99652,133 +112149,155 @@ "address": "0x140010c10", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbx" + "operands": "qword ptr [rsp + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x140010c15", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rcx" + "operands": "qword ptr [rsp + 8], rcx", + "stack_offset": 0 }, { "address": "0x140010c1a", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140010c1b", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140010c1c", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010c1d", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140010c1f", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140010c21", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140010c23", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140010c25", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xa0" + "operands": "rsp, 0xa0", + "stack_offset": 0 }, { "address": "0x140010c2c", "size": 3, "mnemonic": "mov", - "operands": "r12, qword ptr [rdx]" + "operands": "r12, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140010c2f", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x140010c32", "size": 4, "mnemonic": "movzx", - "operands": "esi, r9b" + "operands": "esi, r9b", + "stack_offset": 0 }, { "address": "0x140010c36", "size": 3, "mnemonic": "mov", - "operands": "r15d, r8d" + "operands": "r15d, r8d", + "stack_offset": 0 }, { "address": "0x140010c39", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x90], r12" + "operands": "qword ptr [rsp + 0x90], r12", + "stack_offset": 0 }, { "address": "0x140010c41", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140010c44", "size": 3, "mnemonic": "test", - "operands": "r12, r12" + "operands": "r12, r12", + "stack_offset": 0 }, { "address": "0x140010c47", "size": 2, "mnemonic": "jne", - "operands": "0x140010c5b" + "operands": "0x140010c5b", + "stack_offset": 0 }, { "address": "0x140010c49", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x140010c4e", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x140010c54", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x140010c59", "size": 2, "mnemonic": "jmp", - "operands": "0x140010c8d" + "operands": "0x140010c8d", + "stack_offset": 0 } ], "successors": [ @@ -99801,115 +112320,134 @@ "address": "0x140011494", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140011499", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14001149e", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001149f", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400114a3", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x1400114a6", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x1400114a9", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400114ab", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x1400114b0", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400114b1", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x1400114b4", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400114b7", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x88]" + "operands": "rax, qword ptr [rcx + 0x88]", + "stack_offset": 0 }, { "address": "0x1400114be", "size": 3, "mnemonic": "lock inc", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400114c1", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x1400114c3", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x1400114c8", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400114cd", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400114d1", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400114d2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -99931,133 +112469,155 @@ "address": "0x140011514", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140011519", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14001151e", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001151f", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011523", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x140011526", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x140011529", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001152b", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x140011530", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140011531", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi + 8]" + "operands": "rax, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x140011535", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140011538", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi]" + "operands": "rcx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14001153b", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rdx]" + "operands": "rdx, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001153e", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140011541", "size": 5, "mnemonic": "call", - "operands": "0x14001185c" + "operands": "0x14001185c", + "stack_offset": 0 }, { "address": "0x140011546", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140011547", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140011549", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14001154e", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140011553", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011557", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140011558", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -100079,85 +112639,99 @@ "address": "0x14001155c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140011561", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x140011566", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140011567", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001156b", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x14001156e", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x140011571", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140011573", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x140011578", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140011579", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14001157c", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001157f", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x88]" + "operands": "rcx, qword ptr [rcx + 0x88]", + "stack_offset": 0 }, { "address": "0x140011586", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140011589", "size": 2, "mnemonic": "je", - "operands": "0x1400115a9" + "operands": "0x1400115a9", + "stack_offset": 0 } ], "successors": [ @@ -100175,37 +112749,43 @@ "address": "0x1400115a9", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x1400115ab", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x1400115b0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400115b5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400115b9", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400115ba", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -100221,43 +112801,50 @@ "address": "0x14001158b", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14001158e", "size": 4, "mnemonic": "lock xadd", - "operands": "dword ptr [rcx], eax" + "operands": "dword ptr [rcx], eax", + "stack_offset": 0 }, { "address": "0x140011592", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140011595", "size": 2, "mnemonic": "jne", - "operands": "0x1400115a9" + "operands": "0x1400115a9", + "stack_offset": 0 }, { "address": "0x140011597", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x201a2]" + "operands": "rax, [rip + 0x201a2]", + "stack_offset": 0 }, { "address": "0x14001159e", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x1400115a1", "size": 2, "mnemonic": "je", - "operands": "0x1400115a9" + "operands": "0x1400115a9", + "stack_offset": 0 } ], "successors": [ @@ -100275,49 +112862,57 @@ "address": "0x1400115a3", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x1400115a8", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400115a9", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x1400115ab", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x1400115b0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400115b5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400115b9", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400115ba", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -100339,121 +112934,141 @@ "address": "0x1400114d4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400114d9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x1400114de", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400114df", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400114e3", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x1400114e6", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x1400114e9", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400114eb", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x1400114f0", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400114f1", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi]" + "operands": "rcx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x1400114f4", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400114f6", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x1400114f9", "size": 5, "mnemonic": "call", - "operands": "0x14001185c" + "operands": "0x14001185c", + "stack_offset": 0 }, { "address": "0x1400114fe", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400114ff", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140011501", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x140011506", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001150b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001150f", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140011510", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -100475,181 +113090,211 @@ "address": "0x14000d940", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000d945", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000d94a", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000d94b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000d94f", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000d952", "size": 5, "mnemonic": "call", - "operands": "0x14000abc8" + "operands": "0x14000abc8", + "stack_offset": 0 }, { "address": "0x14000d957", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rdi + 0x18]" + "operands": "rdx, [rdi + 0x18]", + "stack_offset": 0 }, { "address": "0x14000d95b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000d95e", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000d961", "size": 7, "mnemonic": "mov", - "operands": "r8, qword ptr [rax + 0x90]" + "operands": "r8, qword ptr [rax + 0x90]", + "stack_offset": 0 }, { "address": "0x14000d968", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdx], r8" + "operands": "qword ptr [rdx], r8", + "stack_offset": 0 }, { "address": "0x14000d96b", "size": 7, "mnemonic": "mov", - "operands": "r8, qword ptr [rax + 0x88]" + "operands": "r8, qword ptr [rax + 0x88]", + "stack_offset": 0 }, { "address": "0x14000d972", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x20], r8" + "operands": "qword ptr [rdi + 0x20], r8", + "stack_offset": 0 }, { "address": "0x14000d976", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rdi + 8]" + "operands": "r8, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x14000d97a", "size": 5, "mnemonic": "call", - "operands": "0x140015b60" + "operands": "0x140015b60", + "stack_offset": 0 }, { "address": "0x14000d97f", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rdi + 8]" + "operands": "r8, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x14000d983", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rdi + 0x20]" + "operands": "rdx, [rdi + 0x20]", + "stack_offset": 0 }, { "address": "0x14000d987", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14000d98a", "size": 5, "mnemonic": "call", - "operands": "0x140015bcc" + "operands": "0x140015bcc", + "stack_offset": 0 }, { "address": "0x14000d98f", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rsi + 0x3a8]" + "operands": "eax, dword ptr [rsi + 0x3a8]", + "stack_offset": 0 }, { "address": "0x14000d995", "size": 2, "mnemonic": "test", - "operands": "al, 2" + "operands": "al, 2", + "stack_offset": 0 }, { "address": "0x14000d997", "size": 2, "mnemonic": "jne", - "operands": "0x14000d9a6" + "operands": "0x14000d9a6", + "stack_offset": 0 }, { "address": "0x14000d999", "size": 3, "mnemonic": "or", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14000d99c", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rsi + 0x3a8], eax" + "operands": "dword ptr [rsi + 0x3a8], eax", + "stack_offset": 0 }, { "address": "0x14000d9a2", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdi + 0x28], 2" + "operands": "byte ptr [rdi + 0x28], 2", + "stack_offset": 0 }, { "address": "0x14000d9a6", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000d9ab", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000d9b0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000d9b4", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000d9b5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -100671,103 +113316,120 @@ "address": "0x140016e74", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x140016e79", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbp" + "operands": "qword ptr [rsp + 0x18], rbp", + "stack_offset": 0 }, { "address": "0x140016e7e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x140016e83", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140016e84", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140016e86", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140016e88", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140016e8a", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016e8c", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140016e90", "size": 3, "mnemonic": "mov", - "operands": "rdi, qword ptr [rdx]" + "operands": "rdi, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140016e93", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x140016e96", "size": 3, "mnemonic": "mov", - "operands": "r12, r9" + "operands": "r12, r9", + "stack_offset": 0 }, { "address": "0x140016e99", "size": 3, "mnemonic": "mov", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x140016e9c", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x140016e9f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x140016ea2", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140016ea5", "size": 6, "mnemonic": "je", - "operands": "0x140016f96" + "operands": "0x140016f96", + "stack_offset": 0 } ], "successors": [ @@ -100785,37 +113447,43 @@ "address": "0x140016f96", "size": 8, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x80]" + "operands": "rsi, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140016f9e", "size": 3, "mnemonic": "mov", - "operands": "rbx, r13" + "operands": "rbx, r13", + "stack_offset": 0 }, { "address": "0x140016fa1", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rdi], r13b" + "operands": "byte ptr [rdi], r13b", + "stack_offset": 0 }, { "address": "0x140016fa4", "size": 2, "mnemonic": "jne", - "operands": "0x140016fae" + "operands": "0x140016fae", + "stack_offset": 0 }, { "address": "0x140016fa6", "size": 6, "mnemonic": "mov", - "operands": "r8d, 1" + "operands": "r8d, 1", + "stack_offset": 0 }, { "address": "0x140016fac", "size": 2, "mnemonic": "jmp", - "operands": "0x140016fcb" + "operands": "0x140016fcb", + "stack_offset": 0 } ], "successors": [ @@ -100832,19 +113500,22 @@ "address": "0x140016eab", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140016eae", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x140016eb1", "size": 6, "mnemonic": "je", - "operands": "0x140016f6a" + "operands": "0x140016f6a", + "stack_offset": 0 } ], "successors": [ @@ -100862,43 +113533,50 @@ "address": "0x140016fcb", "size": 3, "mnemonic": "mov", - "operands": "r9, r12" + "operands": "r9, r12", + "stack_offset": 0 }, { "address": "0x140016fce", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x140016fd3", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140016fd6", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140016fd8", "size": 5, "mnemonic": "call", - "operands": "0x140016bc8" + "operands": "0x140016bc8", + "stack_offset": 0 }, { "address": "0x140016fdd", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x140016fe1", "size": 2, "mnemonic": "je", - "operands": "0x140016ffd" + "operands": "0x140016ffd", + "stack_offset": 0 } ], "successors": [ @@ -100916,31 +113594,36 @@ "address": "0x140016f6a", "size": 3, "mnemonic": "sub", - "operands": "rbx, rbp" + "operands": "rbx, rbp", + "stack_offset": 0 }, { "address": "0x140016f6d", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r14], rdi" + "operands": "qword ptr [r14], rdi", + "stack_offset": 0 }, { "address": "0x140016f70", "size": 3, "mnemonic": "sar", - "operands": "rbx, 1" + "operands": "rbx, 1", + "stack_offset": 0 }, { "address": "0x140016f73", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140016f76", "size": 5, "mnemonic": "jmp", - "operands": "0x14001700c" + "operands": "0x14001700c", + "stack_offset": 0 } ], "successors": [ @@ -100957,31 +113640,36 @@ "address": "0x140016eb7", "size": 8, "mnemonic": "mov", - "operands": "r15, qword ptr [rsp + 0x80]" + "operands": "r15, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140016ebf", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rdi], r13b" + "operands": "byte ptr [rdi], r13b", + "stack_offset": 0 }, { "address": "0x140016ec2", "size": 2, "mnemonic": "jne", - "operands": "0x140016ecc" + "operands": "0x140016ecc", + "stack_offset": 0 }, { "address": "0x140016ec4", "size": 6, "mnemonic": "mov", - "operands": "r8d, 1" + "operands": "r8d, 1", + "stack_offset": 0 }, { "address": "0x140016eca", "size": 2, "mnemonic": "jmp", - "operands": "0x140016ee9" + "operands": "0x140016ee9", + "stack_offset": 0 } ], "successors": [ @@ -100998,79 +113686,92 @@ "address": "0x140016ffd", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsi + 0x30], 1" + "operands": "byte ptr [rsi + 0x30], 1", + "stack_offset": 0 }, { "address": "0x140017001", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rsi + 0x2c], 0x2a" + "operands": "dword ptr [rsi + 0x2c], 0x2a", + "stack_offset": 0 }, { "address": "0x140017008", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001700c", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x68]" + "operands": "rbx, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140017011", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x70]" + "operands": "rbp, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140017016", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x78]" + "operands": "rsi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14001701b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001701f", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140017021", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140017023", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140017025", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140017027", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017028", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -101086,13 +113787,15 @@ "address": "0x140016fe3", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140016fe6", "size": 2, "mnemonic": "je", - "operands": "0x140016f73" + "operands": "0x140016f73", + "stack_offset": 0 } ], "successors": [ @@ -101110,61 +113813,71 @@ "address": "0x14001700c", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x68]" + "operands": "rbx, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140017011", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x70]" + "operands": "rbp, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140017016", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x78]" + "operands": "rsi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14001701b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001701f", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140017021", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140017023", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140017025", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140017027", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017028", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -101180,55 +113893,64 @@ "address": "0x140016ee9", "size": 3, "mnemonic": "mov", - "operands": "r9, r12" + "operands": "r9, r12", + "stack_offset": 0 }, { "address": "0x140016eec", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x60], r13d" + "operands": "dword ptr [rsp + 0x60], r13d", + "stack_offset": 0 }, { "address": "0x140016ef1", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140016ef4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r15" + "operands": "qword ptr [rsp + 0x20], r15", + "stack_offset": 0 }, { "address": "0x140016ef9", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x60]" + "operands": "rcx, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140016efe", "size": 5, "mnemonic": "call", - "operands": "0x140016bc8" + "operands": "0x140016bc8", + "stack_offset": 0 }, { "address": "0x140016f03", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140016f06", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x140016f0a", "size": 2, "mnemonic": "je", - "operands": "0x140016f84" + "operands": "0x140016f84", + "stack_offset": 0 } ], "successors": [ @@ -101246,13 +113968,15 @@ "address": "0x140016f73", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140016f76", "size": 5, "mnemonic": "jmp", - "operands": "0x14001700c" + "operands": "0x14001700c", + "stack_offset": 0 } ], "successors": [ @@ -101269,37 +113993,43 @@ "address": "0x140016fe8", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + 1]" + "operands": "rcx, [rbx + 1]", + "stack_offset": 0 }, { "address": "0x140016fec", "size": 3, "mnemonic": "add", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x140016fef", "size": 4, "mnemonic": "cmp", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x140016ff3", "size": 4, "mnemonic": "cmovne", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140016ff7", "size": 4, "mnemonic": "lea", - "operands": "rbx, [rcx + 1]" + "operands": "rbx, [rcx + 1]", + "stack_offset": 0 }, { "address": "0x140016ffb", "size": 2, "mnemonic": "jmp", - "operands": "0x140016fa1" + "operands": "0x140016fa1", + "stack_offset": 0 } ], "successors": [ @@ -101316,25 +114046,29 @@ "address": "0x140016f84", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r14], rdi" + "operands": "qword ptr [r14], rdi", + "stack_offset": 0 }, { "address": "0x140016f87", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r15 + 0x30], 1" + "operands": "byte ptr [r15 + 0x30], 1", + "stack_offset": 0 }, { "address": "0x140016f8c", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [r15 + 0x2c], 0x2a" + "operands": "dword ptr [r15 + 0x2c], 0x2a", + "stack_offset": 0 }, { "address": "0x140016f94", "size": 2, "mnemonic": "jmp", - "operands": "0x140017008" + "operands": "0x140017008", + "stack_offset": 0 } ], "successors": [ @@ -101351,13 +114085,15 @@ "address": "0x140016f0c", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140016f0f", "size": 2, "mnemonic": "je", - "operands": "0x140016f7b" + "operands": "0x140016f7b", + "stack_offset": 0 } ], "successors": [ @@ -101375,25 +114111,29 @@ "address": "0x140016fa1", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rdi], r13b" + "operands": "byte ptr [rdi], r13b", + "stack_offset": 0 }, { "address": "0x140016fa4", "size": 2, "mnemonic": "jne", - "operands": "0x140016fae" + "operands": "0x140016fae", + "stack_offset": 0 }, { "address": "0x140016fa6", "size": 6, "mnemonic": "mov", - "operands": "r8d, 1" + "operands": "r8d, 1", + "stack_offset": 0 }, { "address": "0x140016fac", "size": 2, "mnemonic": "jmp", - "operands": "0x140016fcb" + "operands": "0x140016fcb", + "stack_offset": 0 } ], "successors": [ @@ -101410,67 +114150,78 @@ "address": "0x140017008", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001700c", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x68]" + "operands": "rbx, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140017011", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x70]" + "operands": "rbp, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140017016", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x78]" + "operands": "rsi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14001701b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001701f", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140017021", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140017023", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140017025", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140017027", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017028", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -101486,19 +114237,22 @@ "address": "0x140016f7b", "size": 3, "mnemonic": "mov", - "operands": "rdi, r13" + "operands": "rdi, r13", + "stack_offset": 0 }, { "address": "0x140016f7e", "size": 4, "mnemonic": "mov", - "operands": "word ptr [rbx], r13w" + "operands": "word ptr [rbx], r13w", + "stack_offset": 0 }, { "address": "0x140016f82", "size": 2, "mnemonic": "jmp", - "operands": "0x140016f6a" + "operands": "0x140016f6a", + "stack_offset": 0 } ], "successors": [ @@ -101515,169 +114269,197 @@ "address": "0x140016f11", "size": 4, "mnemonic": "mov", - "operands": "ecx, dword ptr [rsp + 0x60]" + "operands": "ecx, dword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140016f15", "size": 6, "mnemonic": "cmp", - "operands": "ecx, 0xffff" + "operands": "ecx, 0xffff", + "stack_offset": 0 }, { "address": "0x140016f1b", "size": 2, "mnemonic": "jbe", - "operands": "0x140016f56" + "operands": "0x140016f56", + "stack_offset": 0 }, { "address": "0x140016f1d", "size": 4, "mnemonic": "cmp", - "operands": "rsi, 1" + "operands": "rsi, 1", + "stack_offset": 0 }, { "address": "0x140016f21", "size": 2, "mnemonic": "jbe", - "operands": "0x140016f6a" + "operands": "0x140016f6a", + "stack_offset": 0 }, { "address": "0x140016f23", "size": 6, "mnemonic": "add", - "operands": "ecx, 0xffff0000" + "operands": "ecx, 0xffff0000", + "stack_offset": 0 }, { "address": "0x140016f29", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0xd800" + "operands": "r8d, 0xd800", + "stack_offset": 0 }, { "address": "0x140016f2f", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x140016f31", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x60], ecx" + "operands": "dword ptr [rsp + 0x60], ecx", + "stack_offset": 0 }, { "address": "0x140016f35", "size": 3, "mnemonic": "shr", - "operands": "eax, 0xa" + "operands": "eax, 0xa", + "stack_offset": 0 }, { "address": "0x140016f38", "size": 3, "mnemonic": "dec", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140016f3b", "size": 4, "mnemonic": "or", - "operands": "ax, r8w" + "operands": "ax, r8w", + "stack_offset": 0 }, { "address": "0x140016f3f", "size": 3, "mnemonic": "mov", - "operands": "word ptr [rbx], ax" + "operands": "word ptr [rbx], ax", + "stack_offset": 0 }, { "address": "0x140016f42", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x3ff" + "operands": "eax, 0x3ff", + "stack_offset": 0 }, { "address": "0x140016f47", "size": 3, "mnemonic": "and", - "operands": "cx, ax" + "operands": "cx, ax", + "stack_offset": 0 }, { "address": "0x140016f4a", "size": 4, "mnemonic": "add", - "operands": "rbx, 2" + "operands": "rbx, 2", + "stack_offset": 0 }, { "address": "0x140016f4e", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xdc00" + "operands": "eax, 0xdc00", + "stack_offset": 0 }, { "address": "0x140016f53", "size": 3, "mnemonic": "or", - "operands": "cx, ax" + "operands": "cx, ax", + "stack_offset": 0 }, { "address": "0x140016f56", "size": 3, "mnemonic": "mov", - "operands": "word ptr [rbx], cx" + "operands": "word ptr [rbx], cx", + "stack_offset": 0 }, { "address": "0x140016f59", "size": 3, "mnemonic": "add", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140016f5c", "size": 4, "mnemonic": "add", - "operands": "rbx, 2" + "operands": "rbx, 2", + "stack_offset": 0 }, { "address": "0x140016f60", "size": 4, "mnemonic": "sub", - "operands": "rsi, 1" + "operands": "rsi, 1", + "stack_offset": 0 }, { "address": "0x140016f64", "size": 6, "mnemonic": "jne", - "operands": "0x140016ebf" + "operands": "0x140016ebf", + "stack_offset": 0 }, { "address": "0x140016f6a", "size": 3, "mnemonic": "sub", - "operands": "rbx, rbp" + "operands": "rbx, rbp", + "stack_offset": 0 }, { "address": "0x140016f6d", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r14], rdi" + "operands": "qword ptr [r14], rdi", + "stack_offset": 0 }, { "address": "0x140016f70", "size": 3, "mnemonic": "sar", - "operands": "rbx, 1" + "operands": "rbx, 1", + "stack_offset": 0 }, { "address": "0x140016f73", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140016f76", "size": 5, "mnemonic": "jmp", - "operands": "0x14001700c" + "operands": "0x14001700c", + "stack_offset": 0 } ], "successors": [ @@ -101700,67 +114482,78 @@ "address": "0x1400170bc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400170c1", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400170c2", "size": 6, "mnemonic": "lea", - "operands": "eax, [rcx - 0xfde8]" + "operands": "eax, [rcx - 0xfde8]", + "stack_offset": 0 }, { "address": "0x1400170c8", "size": 3, "mnemonic": "mov", - "operands": "r11d, r9d" + "operands": "r11d, r9d", + "stack_offset": 0 }, { "address": "0x1400170cb", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x1400170ce", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x1400170d1", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xdeac" + "operands": "eax, 0xdeac", + "stack_offset": 0 }, { "address": "0x1400170d6", "size": 4, "mnemonic": "setbe", - "operands": "r10b" + "operands": "r10b", + "stack_offset": 0 }, { "address": "0x1400170da", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x1400170dc", "size": 2, "mnemonic": "cmp", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x1400170de", "size": 2, "mnemonic": "ja", - "operands": "0x140017121" + "operands": "0x140017121", + "stack_offset": 0 } ], "successors": [ @@ -101778,19 +114571,22 @@ "address": "0x140017121", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x140017123", "size": 5, "mnemonic": "sub", - "operands": "eax, 0xdead" + "operands": "eax, 0xdead", + "stack_offset": 0 }, { "address": "0x140017128", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -101808,7 +114604,8 @@ "address": "0x1400170e0", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -101826,49 +114623,57 @@ "address": "0x14001715a", "size": 2, "mnemonic": "mov", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x14001715c", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x48]" + "operands": "rax, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x140017161", "size": 3, "mnemonic": "test", - "operands": "r10b, r10b" + "operands": "r10b, r10b", + "stack_offset": 0 }, { "address": "0x140017164", "size": 5, "mnemonic": "mov", - "operands": "r9, qword ptr [rsp + 0x40]" + "operands": "r9, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140017169", "size": 3, "mnemonic": "mov", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14001716c", "size": 4, "mnemonic": "cmovne", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x140017170", "size": 4, "mnemonic": "cmovne", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x140017174", "size": 2, "mnemonic": "je", - "operands": "0x14001717d" + "operands": "0x14001717d", + "stack_offset": 0 } ], "successors": [ @@ -101886,13 +114691,15 @@ "address": "0x14001712a", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001712d", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -101910,19 +114717,22 @@ "address": "0x1400170e2", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xc433" + "operands": "eax, 0xc433", + "stack_offset": 0 }, { "address": "0x1400170e7", "size": 2, "mnemonic": "cmp", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x1400170e9", "size": 2, "mnemonic": "ja", - "operands": "0x14001710a" + "operands": "0x14001710a", + "stack_offset": 0 } ], "successors": [ @@ -101940,43 +114750,50 @@ "address": "0x14001717d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], r8" + "operands": "qword ptr [rsp + 0x48], r8", + "stack_offset": 0 }, { "address": "0x140017182", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140017185", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], r9" + "operands": "qword ptr [rsp + 0x40], r9", + "stack_offset": 0 }, { "address": "0x14001718a", "size": 3, "mnemonic": "mov", - "operands": "r9d, r11d" + "operands": "r9d, r11d", + "stack_offset": 0 }, { "address": "0x14001718d", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x10]" + "operands": "rbx, qword ptr [rsp + 0x10]", + "stack_offset": 0 }, { "address": "0x140017192", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017193", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x8e9e]" + "operands": "qword ptr [rip + 0x8e9e]", + "stack_offset": 0 } ], "successors": [ @@ -101993,13 +114810,15 @@ "address": "0x140017176", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140017179", "size": 2, "mnemonic": "je", - "operands": "0x14001717d" + "operands": "0x14001717d", + "stack_offset": 0 } ], "successors": [ @@ -102017,13 +114836,15 @@ "address": "0x14001712f", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017132", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102041,19 +114862,22 @@ "address": "0x14001710a", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14001710c", "size": 5, "mnemonic": "sub", - "operands": "eax, 0xc435" + "operands": "eax, 0xc435", + "stack_offset": 0 }, { "address": "0x140017111", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102071,7 +114895,8 @@ "address": "0x1400170eb", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102099,49 +114924,57 @@ "address": "0x14001717b", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rax], edi" + "operands": "dword ptr [rax], edi", + "stack_offset": 0 }, { "address": "0x14001717d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x48], r8" + "operands": "qword ptr [rsp + 0x48], r8", + "stack_offset": 0 }, { "address": "0x140017182", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140017185", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], r9" + "operands": "qword ptr [rsp + 0x40], r9", + "stack_offset": 0 }, { "address": "0x14001718a", "size": 3, "mnemonic": "mov", - "operands": "r9d, r11d" + "operands": "r9d, r11d", + "stack_offset": 0 }, { "address": "0x14001718d", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x10]" + "operands": "rbx, qword ptr [rsp + 0x10]", + "stack_offset": 0 }, { "address": "0x140017192", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017193", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x8e9e]" + "operands": "qword ptr [rip + 0x8e9e]", + "stack_offset": 0 } ], "successors": [ @@ -102158,13 +114991,15 @@ "address": "0x140017134", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017137", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102182,13 +115017,15 @@ "address": "0x140017113", "size": 5, "mnemonic": "sub", - "operands": "eax, 0x1263" + "operands": "eax, 0x1263", + "stack_offset": 0 }, { "address": "0x140017118", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102206,19 +115043,22 @@ "address": "0x1400170ed", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x1400170ef", "size": 3, "mnemonic": "sub", - "operands": "eax, 0x2a" + "operands": "eax, 0x2a", + "stack_offset": 0 }, { "address": "0x1400170f2", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102236,13 +115076,15 @@ "address": "0x140017139", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001713c", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102260,13 +115102,15 @@ "address": "0x14001711a", "size": 5, "mnemonic": "sub", - "operands": "eax, 0x812" + "operands": "eax, 0x812", + "stack_offset": 0 }, { "address": "0x14001711f", "size": 2, "mnemonic": "jmp", - "operands": "0x14001714d" + "operands": "0x14001714d", + "stack_offset": 0 } ], "successors": [ @@ -102283,13 +115127,15 @@ "address": "0x1400170f4", "size": 5, "mnemonic": "sub", - "operands": "eax, 0xc402" + "operands": "eax, 0xc402", + "stack_offset": 0 }, { "address": "0x1400170f9", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102307,13 +115153,15 @@ "address": "0x14001713e", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017141", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102331,7 +115179,8 @@ "address": "0x14001714d", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102349,13 +115198,15 @@ "address": "0x1400170fb", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x1400170fe", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102373,13 +115224,15 @@ "address": "0x140017143", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017146", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102397,13 +115250,15 @@ "address": "0x14001714f", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017152", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102421,13 +115276,15 @@ "address": "0x140017100", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017103", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102445,13 +115302,15 @@ "address": "0x140017148", "size": 5, "mnemonic": "sub", - "operands": "eax, 0x1f35" + "operands": "eax, 0x1f35", + "stack_offset": 0 }, { "address": "0x14001714d", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102469,13 +115328,15 @@ "address": "0x140017154", "size": 4, "mnemonic": "btr", - "operands": "edx, 7" + "operands": "edx, 7", + "stack_offset": 0 }, { "address": "0x140017158", "size": 2, "mnemonic": "jmp", - "operands": "0x14001715c" + "operands": "0x14001715c", + "stack_offset": 0 } ], "successors": [ @@ -102492,13 +115353,15 @@ "address": "0x140017105", "size": 3, "mnemonic": "cmp", - "operands": "eax, 3" + "operands": "eax, 3", + "stack_offset": 0 }, { "address": "0x140017108", "size": 2, "mnemonic": "jmp", - "operands": "0x140017152" + "operands": "0x140017152", + "stack_offset": 0 } ], "successors": [ @@ -102515,43 +115378,50 @@ "address": "0x14001715c", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x48]" + "operands": "rax, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x140017161", "size": 3, "mnemonic": "test", - "operands": "r10b, r10b" + "operands": "r10b, r10b", + "stack_offset": 0 }, { "address": "0x140017164", "size": 5, "mnemonic": "mov", - "operands": "r9, qword ptr [rsp + 0x40]" + "operands": "r9, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140017169", "size": 3, "mnemonic": "mov", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14001716c", "size": 4, "mnemonic": "cmovne", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x140017170", "size": 4, "mnemonic": "cmovne", - "operands": "r9, rdi" + "operands": "r9, rdi", + "stack_offset": 0 }, { "address": "0x140017174", "size": 2, "mnemonic": "je", - "operands": "0x14001717d" + "operands": "0x14001717d", + "stack_offset": 0 } ], "successors": [ @@ -102569,7 +115439,8 @@ "address": "0x140017152", "size": 2, "mnemonic": "je", - "operands": "0x14001715a" + "operands": "0x14001715a", + "stack_offset": 0 } ], "successors": [ @@ -102593,49 +115464,57 @@ "address": "0x140012934", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140012938", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001293b", "size": 2, "mnemonic": "jne", - "operands": "0x140012952" + "operands": "0x140012952", + "stack_offset": 0 }, { "address": "0x14001293d", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x140012942", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x140012948", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14001294d", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140012950", "size": 2, "mnemonic": "jmp", - "operands": "0x140012956" + "operands": "0x140012956", + "stack_offset": 0 } ], "successors": [ @@ -102652,13 +115531,15 @@ "address": "0x140012956", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001295a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -102680,133 +115561,155 @@ "address": "0x140013a8c", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140013a8f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rbx" + "operands": "qword ptr [rax + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x140013a93", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rcx" + "operands": "qword ptr [rax + 8], rcx", + "stack_offset": 0 }, { "address": "0x140013a97", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140013a98", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140013a9c", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140013a9f", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140013aa2", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140013aa5", "size": 2, "mnemonic": "jne", - "operands": "0x140013ad6" + "operands": "0x140013ad6", + "stack_offset": 0 }, { "address": "0x140013aa7", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdx + 0x30], 1" + "operands": "byte ptr [rdx + 0x30], 1", + "stack_offset": 0 }, { "address": "0x140013aab", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rdx + 0x2c], 0x16" + "operands": "dword ptr [rdx + 0x2c], 0x16", + "stack_offset": 0 }, { "address": "0x140013ab2", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax - 0x10], rdx" + "operands": "qword ptr [rax - 0x10], rdx", + "stack_offset": 0 }, { "address": "0x140013ab6", "size": 4, "mnemonic": "and", - "operands": "qword ptr [rax - 0x18], rcx" + "operands": "qword ptr [rax - 0x18], rcx", + "stack_offset": 0 }, { "address": "0x140013aba", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x140013abd", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140013ac0", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140013ac2", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x140013ac7", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x140013acb", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x48]" + "operands": "rbx, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x140013ad0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140013ad4", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140013ad5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -102828,55 +115731,64 @@ "address": "0x14000d854", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000d858", "size": 5, "mnemonic": "call", - "operands": "0x140011924" + "operands": "0x140011924", + "stack_offset": 0 }, { "address": "0x14000d85d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000d860", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x23989]" + "operands": "rdx, [rip + 0x23989]", + "stack_offset": 0 }, { "address": "0x14000d867", "size": 4, "mnemonic": "add", - "operands": "rax, 0x24" + "operands": "rax, 0x24", + "stack_offset": 0 }, { "address": "0x14000d86b", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000d86e", "size": 4, "mnemonic": "cmove", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000d872", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000d876", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -102898,163 +115810,190 @@ "address": "0x140014d20", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbx" + "operands": "qword ptr [rsp + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x140014d25", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rdx" + "operands": "qword ptr [rsp + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x140014d2a", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 8], ecx" + "operands": "dword ptr [rsp + 8], ecx", + "stack_offset": 0 }, { "address": "0x140014d2e", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140014d2f", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140014d31", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140014d33", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140014d35", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140014d37", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140014d3b", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x140014d3e", "size": 3, "mnemonic": "mov", - "operands": "r13d, r8d" + "operands": "r13d, r8d", + "stack_offset": 0 }, { "address": "0x140014d41", "size": 3, "mnemonic": "movsxd", - "operands": "rsi, ecx" + "operands": "rsi, ecx", + "stack_offset": 0 }, { "address": "0x140014d44", "size": 3, "mnemonic": "cmp", - "operands": "esi, -2" + "operands": "esi, -2", + "stack_offset": 0 }, { "address": "0x140014d47", "size": 2, "mnemonic": "jne", - "operands": "0x140014d77" + "operands": "0x140014d77", + "stack_offset": 0 }, { "address": "0x140014d49", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r9 + 0x38], 1" + "operands": "byte ptr [r9 + 0x38], 1", + "stack_offset": 0 }, { "address": "0x140014d4e", "size": 5, "mnemonic": "and", - "operands": "dword ptr [r9 + 0x34], 0" + "operands": "dword ptr [r9 + 0x34], 0", + "stack_offset": 0 }, { "address": "0x140014d53", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [r9 + 0x30], 1" + "operands": "byte ptr [r9 + 0x30], 1", + "stack_offset": 0 }, { "address": "0x140014d58", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [r9 + 0x2c], 9" + "operands": "dword ptr [r9 + 0x2c], 9", + "stack_offset": 0 }, { "address": "0x140014d60", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x140014d64", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x70]" + "operands": "rbx, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140014d69", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140014d6d", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140014d6f", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140014d71", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140014d73", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140014d75", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140014d76", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -103076,103 +116015,120 @@ "address": "0x140014e40", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140014e45", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x140014e4a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x140014e4f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140014e50", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140014e54", "size": 3, "mnemonic": "movsxd", - "operands": "rdi, ecx" + "operands": "rdi, ecx", + "stack_offset": 0 }, { "address": "0x140014e57", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x140014e5a", "size": 2, "mnemonic": "mov", - "operands": "ecx, edi" + "operands": "ecx, edi", + "stack_offset": 0 }, { "address": "0x140014e5c", "size": 3, "mnemonic": "mov", - "operands": "esi, r8d" + "operands": "esi, r8d", + "stack_offset": 0 }, { "address": "0x140014e5f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x140014e62", "size": 5, "mnemonic": "call", - "operands": "0x14001949c" + "operands": "0x14001949c", + "stack_offset": 0 }, { "address": "0x140014e67", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x140014e6b", "size": 2, "mnemonic": "jne", - "operands": "0x140014e7e" + "operands": "0x140014e7e", + "stack_offset": 0 }, { "address": "0x140014e6d", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbx + 0x30], 1" + "operands": "byte ptr [rbx + 0x30], 1", + "stack_offset": 0 }, { "address": "0x140014e71", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x2c], 9" + "operands": "dword ptr [rbx + 0x2c], 9", + "stack_offset": 0 }, { "address": "0x140014e78", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x140014e7c", "size": 2, "mnemonic": "jmp", - "operands": "0x140014eda" + "operands": "0x140014eda", + "stack_offset": 0 } ], "successors": [ @@ -103189,37 +116145,43 @@ "address": "0x140014eda", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140014edf", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x140014ee4", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140014ee9", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140014eed", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140014eee", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -103241,103 +116203,120 @@ "address": "0x140015260", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140015265", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14001526a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14001526f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140015270", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140015272", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140015274", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140015278", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x14001527a", "size": 3, "mnemonic": "mov", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14001527d", "size": 3, "mnemonic": "mov", - "operands": "rbp, r8" + "operands": "rbp, r8", + "stack_offset": 0 }, { "address": "0x140015280", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x140015283", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140015286", "size": 3, "mnemonic": "mov", - "operands": "r12d, ebx" + "operands": "r12d, ebx", + "stack_offset": 0 }, { "address": "0x140015289", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001528c", "size": 2, "mnemonic": "jne", - "operands": "0x140015295" + "operands": "0x140015295", + "stack_offset": 0 }, { "address": "0x14001528e", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x140015291", "size": 2, "mnemonic": "je", - "operands": "0x1400152ce" + "operands": "0x1400152ce", + "stack_offset": 0 } ], "successors": [ @@ -103355,13 +116334,15 @@ "address": "0x1400152ce", "size": 3, "mnemonic": "test", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x1400152d1", "size": 2, "mnemonic": "je", - "operands": "0x1400152d6" + "operands": "0x1400152d6", + "stack_offset": 0 } ], "successors": [ @@ -103379,7 +116360,8 @@ "address": "0x140015293", "size": 2, "mnemonic": "jmp", - "operands": "0x14001529a" + "operands": "0x14001529a", + "stack_offset": 0 } ], "successors": [ @@ -103396,49 +116378,57 @@ "address": "0x1400152d6", "size": 5, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x70]" + "operands": "r8, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400152db", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x1400152e0", "size": 3, "mnemonic": "cmp", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x1400152e3", "size": 4, "mnemonic": "cmova", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x1400152e7", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x7fffffff" + "operands": "r8, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x1400152ee", "size": 2, "mnemonic": "jbe", - "operands": "0x1400152f7" + "operands": "0x1400152f7", + "stack_offset": 0 }, { "address": "0x1400152f0", "size": 5, "mnemonic": "mov", - "operands": "esi, 0x16" + "operands": "esi, 0x16", + "stack_offset": 0 }, { "address": "0x1400152f5", "size": 2, "mnemonic": "jmp", - "operands": "0x14001533c" + "operands": "0x14001533c", + "stack_offset": 0 } ], "successors": [ @@ -103455,55 +116445,64 @@ "address": "0x1400152d3", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rbx" + "operands": "qword ptr [rcx], rbx", + "stack_offset": 0 }, { "address": "0x1400152d6", "size": 5, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x70]" + "operands": "r8, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400152db", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x1400152e0", "size": 3, "mnemonic": "cmp", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x1400152e3", "size": 4, "mnemonic": "cmova", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x1400152e7", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x7fffffff" + "operands": "r8, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x1400152ee", "size": 2, "mnemonic": "jbe", - "operands": "0x1400152f7" + "operands": "0x1400152f7", + "stack_offset": 0 }, { "address": "0x1400152f0", "size": 5, "mnemonic": "mov", - "operands": "esi, 0x16" + "operands": "esi, 0x16", + "stack_offset": 0 }, { "address": "0x1400152f5", "size": 2, "mnemonic": "jmp", - "operands": "0x14001533c" + "operands": "0x14001533c", + "stack_offset": 0 } ], "successors": [ @@ -103520,79 +116519,92 @@ "address": "0x14001529a", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x78]" + "operands": "rax, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x14001529f", "size": 5, "mnemonic": "mov", - "operands": "esi, 0x16" + "operands": "esi, 0x16", + "stack_offset": 0 }, { "address": "0x1400152a4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x1400152a9", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rax + 0x30], 1" + "operands": "byte ptr [rax + 0x30], 1", + "stack_offset": 0 }, { "address": "0x1400152ad", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x2c], esi" + "operands": "dword ptr [rax + 0x2c], esi", + "stack_offset": 0 }, { "address": "0x1400152b0", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x1400152b3", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rbx" + "operands": "qword ptr [rsp + 0x20], rbx", + "stack_offset": 0 }, { "address": "0x1400152b8", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x1400152bb", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400152bd", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400152bf", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x1400152c4", "size": 2, "mnemonic": "mov", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x1400152c6", "size": 5, "mnemonic": "jmp", - "operands": "0x140015366" + "operands": "0x140015366", + "stack_offset": 0 } ], "successors": [ @@ -103609,25 +116621,29 @@ "address": "0x14001533c", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rdi + 0x2c], esi" + "operands": "dword ptr [rdi + 0x2c], esi", + "stack_offset": 0 }, { "address": "0x14001533f", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdi + 0x30], 1" + "operands": "byte ptr [rdi + 0x30], 1", + "stack_offset": 0 }, { "address": "0x140015343", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rdi" + "operands": "qword ptr [rsp + 0x28], rdi", + "stack_offset": 0 }, { "address": "0x140015348", "size": 5, "mnemonic": "jmp", - "operands": "0x1400152b0" + "operands": "0x1400152b0", + "stack_offset": 0 } ], "successors": [ @@ -103644,49 +116660,57 @@ "address": "0x140015366", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001536b", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x58]" + "operands": "rbp, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140015370", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x60]" + "operands": "rsi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140015375", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140015379", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001537b", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001537d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001537e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -103702,49 +116726,57 @@ "address": "0x1400152b0", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x1400152b3", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rbx" + "operands": "qword ptr [rsp + 0x20], rbx", + "stack_offset": 0 }, { "address": "0x1400152b8", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x1400152bb", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400152bd", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400152bf", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x1400152c4", "size": 2, "mnemonic": "mov", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x1400152c6", "size": 5, "mnemonic": "jmp", - "operands": "0x140015366" + "operands": "0x140015366", + "stack_offset": 0 } ], "successors": [ @@ -103767,91 +116799,106 @@ "address": "0x140015620", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140015625", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14001562a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14001562f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140015630", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140015632", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140015634", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140015638", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x14001563a", "size": 3, "mnemonic": "mov", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14001563d", "size": 3, "mnemonic": "mov", - "operands": "rbp, r8" + "operands": "rbp, r8", + "stack_offset": 0 }, { "address": "0x140015640", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x140015643", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140015646", "size": 3, "mnemonic": "mov", - "operands": "r12d, ebx" + "operands": "r12d, ebx", + "stack_offset": 0 }, { "address": "0x140015649", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001564c", "size": 2, "mnemonic": "je", - "operands": "0x14001567e" + "operands": "0x14001567e", + "stack_offset": 0 } ], "successors": [ @@ -103869,13 +116916,15 @@ "address": "0x14001567e", "size": 3, "mnemonic": "test", - "operands": "rbp, rbp" + "operands": "rbp, rbp", + "stack_offset": 0 }, { "address": "0x140015681", "size": 2, "mnemonic": "je", - "operands": "0x140015655" + "operands": "0x140015655", + "stack_offset": 0 } ], "successors": [ @@ -103893,13 +116942,15 @@ "address": "0x14001564e", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x140015651", "size": 2, "mnemonic": "je", - "operands": "0x140015683" + "operands": "0x140015683", + "stack_offset": 0 } ], "successors": [ @@ -103917,13 +116968,15 @@ "address": "0x140015655", "size": 3, "mnemonic": "test", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x140015658", "size": 2, "mnemonic": "je", - "operands": "0x14001565d" + "operands": "0x14001565d", + "stack_offset": 0 } ], "successors": [ @@ -103941,79 +116994,92 @@ "address": "0x140015683", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x78]" + "operands": "rax, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140015688", "size": 5, "mnemonic": "mov", - "operands": "esi, 0x16" + "operands": "esi, 0x16", + "stack_offset": 0 }, { "address": "0x14001568d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140015692", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rax + 0x30], 1" + "operands": "byte ptr [rax + 0x30], 1", + "stack_offset": 0 }, { "address": "0x140015696", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x2c], esi" + "operands": "dword ptr [rax + 0x2c], esi", + "stack_offset": 0 }, { "address": "0x140015699", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14001569c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rbx" + "operands": "qword ptr [rsp + 0x20], rbx", + "stack_offset": 0 }, { "address": "0x1400156a1", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x1400156a4", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400156a6", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400156a8", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x1400156ad", "size": 2, "mnemonic": "mov", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x1400156af", "size": 2, "mnemonic": "jmp", - "operands": "0x14001571a" + "operands": "0x14001571a", + "stack_offset": 0 } ], "successors": [ @@ -104030,19 +117096,22 @@ "address": "0x140015653", "size": 2, "mnemonic": "mov", - "operands": "byte ptr [rdx], bl" + "operands": "byte ptr [rdx], bl", + "stack_offset": 0 }, { "address": "0x140015655", "size": 3, "mnemonic": "test", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x140015658", "size": 2, "mnemonic": "je", - "operands": "0x14001565d" + "operands": "0x14001565d", + "stack_offset": 0 } ], "successors": [ @@ -104060,49 +117129,57 @@ "address": "0x14001565d", "size": 5, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x70]" + "operands": "r8, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140015662", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140015667", "size": 3, "mnemonic": "cmp", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x14001566a", "size": 4, "mnemonic": "cmova", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x14001566e", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x7fffffff" + "operands": "r8, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x140015675", "size": 2, "mnemonic": "jbe", - "operands": "0x1400156b1" + "operands": "0x1400156b1", + "stack_offset": 0 }, { "address": "0x140015677", "size": 5, "mnemonic": "mov", - "operands": "esi, 0x16" + "operands": "esi, 0x16", + "stack_offset": 0 }, { "address": "0x14001567c", "size": 2, "mnemonic": "jmp", - "operands": "0x1400156f4" + "operands": "0x1400156f4", + "stack_offset": 0 } ], "successors": [ @@ -104119,55 +117196,64 @@ "address": "0x14001565a", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rbx" + "operands": "qword ptr [rcx], rbx", + "stack_offset": 0 }, { "address": "0x14001565d", "size": 5, "mnemonic": "mov", - "operands": "r8, qword ptr [rsp + 0x70]" + "operands": "r8, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140015662", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x78]" + "operands": "rdi, qword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140015667", "size": 3, "mnemonic": "cmp", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x14001566a", "size": 4, "mnemonic": "cmova", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x14001566e", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x7fffffff" + "operands": "r8, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x140015675", "size": 2, "mnemonic": "jbe", - "operands": "0x1400156b1" + "operands": "0x1400156b1", + "stack_offset": 0 }, { "address": "0x140015677", "size": 5, "mnemonic": "mov", - "operands": "esi, 0x16" + "operands": "esi, 0x16", + "stack_offset": 0 }, { "address": "0x14001567c", "size": 2, "mnemonic": "jmp", - "operands": "0x1400156f4" + "operands": "0x1400156f4", + "stack_offset": 0 } ], "successors": [ @@ -104184,49 +117270,57 @@ "address": "0x14001571a", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001571f", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x58]" + "operands": "rbp, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140015724", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x60]" + "operands": "rsi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140015729", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001572d", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001572f", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140015731", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140015732", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -104242,25 +117336,29 @@ "address": "0x1400156f4", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rdi + 0x2c], esi" + "operands": "dword ptr [rdi + 0x2c], esi", + "stack_offset": 0 }, { "address": "0x1400156f7", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdi + 0x30], 1" + "operands": "byte ptr [rdi + 0x30], 1", + "stack_offset": 0 }, { "address": "0x1400156fb", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rdi" + "operands": "qword ptr [rsp + 0x28], rdi", + "stack_offset": 0 }, { "address": "0x140015700", "size": 2, "mnemonic": "jmp", - "operands": "0x140015699" + "operands": "0x140015699", + "stack_offset": 0 } ], "successors": [ @@ -104277,49 +117375,57 @@ "address": "0x140015699", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14001569c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rbx" + "operands": "qword ptr [rsp + 0x20], rbx", + "stack_offset": 0 }, { "address": "0x1400156a1", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x1400156a4", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400156a6", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400156a8", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x1400156ad", "size": 2, "mnemonic": "mov", - "operands": "eax, esi" + "operands": "eax, esi", + "stack_offset": 0 }, { "address": "0x1400156af", "size": 2, "mnemonic": "jmp", - "operands": "0x14001571a" + "operands": "0x14001571a", + "stack_offset": 0 } ], "successors": [ @@ -104342,55 +117448,64 @@ "address": "0x14000d89c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000d8a1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000d8a6", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000d8a7", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000d8ab", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rcx + 0x18], 0" + "operands": "byte ptr [rcx + 0x18], 0", + "stack_offset": 0 }, { "address": "0x14000d8af", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000d8b2", "size": 4, "mnemonic": "lea", - "operands": "rsi, [rcx + 8]" + "operands": "rsi, [rcx + 8]", + "stack_offset": 0 }, { "address": "0x14000d8b6", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14000d8b9", "size": 2, "mnemonic": "je", - "operands": "0x14000d8c0" + "operands": "0x14000d8c0", + "stack_offset": 0 } ], "successors": [ @@ -104408,31 +117523,36 @@ "address": "0x14000d8c0", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x25929], 0" + "operands": "dword ptr [rip + 0x25929], 0", + "stack_offset": 0 }, { "address": "0x14000d8c7", "size": 2, "mnemonic": "jne", - "operands": "0x14000d8d6" + "operands": "0x14000d8d6", + "stack_offset": 0 }, { "address": "0x14000d8c9", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x23b58]" + "operands": "xmm0, xmmword ptr [rip + 0x23b58]", + "stack_offset": 0 }, { "address": "0x14000d8d0", "size": 4, "mnemonic": "movdqu", - "operands": "xmmword ptr [rsi], xmm0" + "operands": "xmmword ptr [rsi], xmm0", + "stack_offset": 0 }, { "address": "0x14000d8d4", "size": 2, "mnemonic": "jmp", - "operands": "0x14000d924" + "operands": "0x14000d924", + "stack_offset": 0 } ], "successors": [ @@ -104449,13 +117569,15 @@ "address": "0x14000d8bb", "size": 3, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rdx]" + "operands": "xmm0, xmmword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000d8be", "size": 2, "mnemonic": "jmp", - "operands": "0x14000d8d0" + "operands": "0x14000d8d0", + "stack_offset": 0 } ], "successors": [ @@ -104472,37 +117594,43 @@ "address": "0x14000d924", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000d929", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x14000d92c", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000d931", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000d935", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000d936", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -104518,13 +117646,15 @@ "address": "0x14000d8d0", "size": 4, "mnemonic": "movdqu", - "operands": "xmmword ptr [rsi], xmm0" + "operands": "xmmword ptr [rsi], xmm0", + "stack_offset": 0 }, { "address": "0x14000d8d4", "size": 2, "mnemonic": "jmp", - "operands": "0x14000d924" + "operands": "0x14000d924", + "stack_offset": 0 } ], "successors": [ @@ -104547,73 +117677,85 @@ "address": "0x140011ff0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140011ff5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x140011ffa", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x140011fff", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140012000", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140012004", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x24045]" + "operands": "rax, qword ptr [rip + 0x24045]", + "stack_offset": 0 }, { "address": "0x14001200b", "size": 3, "mnemonic": "mov", - "operands": "ebx, r9d" + "operands": "ebx, r9d", + "stack_offset": 0 }, { "address": "0x14001200e", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x140012011", "size": 2, "mnemonic": "mov", - "operands": "esi, edx" + "operands": "esi, edx", + "stack_offset": 0 }, { "address": "0x140012013", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x140012016", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x14001201a", "size": 2, "mnemonic": "je", - "operands": "0x140012055" + "operands": "0x140012055", + "stack_offset": 0 } ], "successors": [ @@ -104631,85 +117773,99 @@ "address": "0x140012055", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140012057", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14001205a", "size": 5, "mnemonic": "call", - "operands": "0x1400122e0" + "operands": "0x1400122e0", + "stack_offset": 0 }, { "address": "0x14001205f", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x140012061", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x140012064", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x140012067", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x140012069", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe159]" + "operands": "qword ptr [rip + 0xe159]", + "stack_offset": 0 }, { "address": "0x14001206f", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140012074", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x140012079", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001207e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140012082", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140012083", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -104725,55 +117881,64 @@ "address": "0x14001201c", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001201f", "size": 2, "mnemonic": "jne", - "operands": "0x140012043" + "operands": "0x140012043", + "stack_offset": 0 }, { "address": "0x140012021", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x148e8]" + "operands": "r9, [rip + 0x148e8]", + "stack_offset": 0 }, { "address": "0x140012028", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x148d9]" + "operands": "r8, [rip + 0x148d9]", + "stack_offset": 0 }, { "address": "0x14001202f", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x148da]" + "operands": "rdx, [rip + 0x148da]", + "stack_offset": 0 }, { "address": "0x140012036", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0xa]" + "operands": "ecx, [rax + 0xa]", + "stack_offset": 0 }, { "address": "0x140012039", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x14001203e", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140012041", "size": 2, "mnemonic": "je", - "operands": "0x140012055" + "operands": "0x140012055", + "stack_offset": 0 } ], "successors": [ @@ -104791,37 +117956,43 @@ "address": "0x140012043", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x140012046", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x140012049", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x14001204b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14001204e", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x140012053", "size": 2, "mnemonic": "jmp", - "operands": "0x14001206f" + "operands": "0x14001206f", + "stack_offset": 0 } ], "successors": [ @@ -104838,37 +118009,43 @@ "address": "0x14001206f", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140012074", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x140012079", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001207e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140012082", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140012083", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -104890,37 +118067,43 @@ "address": "0x140011a80", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140011a82", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011a86", "size": 3, "mnemonic": "mov", - "operands": "r8, rdx" + "operands": "r8, rdx", + "stack_offset": 0 }, { "address": "0x140011a89", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140011a8c", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140011a8f", "size": 2, "mnemonic": "je", - "operands": "0x140011a9f" + "operands": "0x140011a9f", + "stack_offset": 0 } ], "successors": [ @@ -104938,31 +118121,36 @@ "address": "0x140011a9f", "size": 4, "mnemonic": "imul", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x140011aa3", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140011aa8", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140011aab", "size": 4, "mnemonic": "cmove", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140011aaf", "size": 2, "mnemonic": "jmp", - "operands": "0x140011ac6" + "operands": "0x140011ac6", + "stack_offset": 0 } ], "successors": [ @@ -104979,31 +118167,36 @@ "address": "0x140011a91", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140011a93", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdx - 0x20]" + "operands": "rax, [rdx - 0x20]", + "stack_offset": 0 }, { "address": "0x140011a97", "size": 3, "mnemonic": "div", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140011a9a", "size": 3, "mnemonic": "cmp", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x140011a9d", "size": 2, "mnemonic": "jb", - "operands": "0x140011ae2" + "operands": "0x140011ae2", + "stack_offset": 0 } ], "successors": [ @@ -105021,37 +118214,43 @@ "address": "0x140011ac6", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rip + 0x21d8b]" + "operands": "rcx, qword ptr [rip + 0x21d8b]", + "stack_offset": 0 }, { "address": "0x140011acd", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140011ad0", "size": 5, "mnemonic": "mov", - "operands": "edx, 8" + "operands": "edx, 8", + "stack_offset": 0 }, { "address": "0x140011ad5", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe6a5]" + "operands": "qword ptr [rip + 0xe6a5]", + "stack_offset": 0 }, { "address": "0x140011adb", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140011ade", "size": 2, "mnemonic": "je", - "operands": "0x140011ab1" + "operands": "0x140011ab1", + "stack_offset": 0 } ], "successors": [ @@ -105069,37 +118268,43 @@ "address": "0x140011ae2", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x140011ae7", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0xc" + "operands": "dword ptr [rax], 0xc", + "stack_offset": 0 }, { "address": "0x140011aed", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011aef", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011af3", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140011af4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -105115,19 +118320,22 @@ "address": "0x140011ab1", "size": 5, "mnemonic": "call", - "operands": "0x1400105b0" + "operands": "0x1400105b0", + "stack_offset": 0 }, { "address": "0x140011ab6", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011ab8", "size": 2, "mnemonic": "je", - "operands": "0x140011ae2" + "operands": "0x140011ae2", + "stack_offset": 0 } ], "successors": [ @@ -105145,7 +118353,8 @@ "address": "0x140011ae0", "size": 2, "mnemonic": "jmp", - "operands": "0x140011aef" + "operands": "0x140011aef", + "stack_offset": 0 } ], "successors": [ @@ -105162,25 +118371,29 @@ "address": "0x140011aba", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140011abd", "size": 5, "mnemonic": "call", - "operands": "0x14000deb0" + "operands": "0x14000deb0", + "stack_offset": 0 }, { "address": "0x140011ac2", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011ac4", "size": 2, "mnemonic": "je", - "operands": "0x140011ae2" + "operands": "0x140011ae2", + "stack_offset": 0 } ], "successors": [ @@ -105198,19 +118411,22 @@ "address": "0x140011aef", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011af3", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140011af4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -105232,109 +118448,127 @@ "address": "0x14001c3c0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001c3c5", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c3c6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001c3ca", "size": 3, "mnemonic": "mov", - "operands": "rdi, r9" + "operands": "rdi, r9", + "stack_offset": 0 }, { "address": "0x14001c3cd", "size": 3, "mnemonic": "mov", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x14001c3d0", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14001c3d3", "size": 3, "mnemonic": "mov", - "operands": "r11, rcx" + "operands": "r11, rcx", + "stack_offset": 0 }, { "address": "0x14001c3d6", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x14001c3d9", "size": 2, "mnemonic": "jne", - "operands": "0x14001c3f2" + "operands": "0x14001c3f2", + "stack_offset": 0 }, { "address": "0x14001c3db", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001c3de", "size": 2, "mnemonic": "jne", - "operands": "0x14001c3f7" + "operands": "0x14001c3f7", + "stack_offset": 0 }, { "address": "0x14001c3e0", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001c3e3", "size": 2, "mnemonic": "jne", - "operands": "0x14001c419" + "operands": "0x14001c419", + "stack_offset": 0 }, { "address": "0x14001c3e5", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001c3e7", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001c3ec", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001c3f0", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c3f1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -105356,19 +118590,22 @@ "address": "0x14001702c", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xdeac" + "operands": "eax, 0xdeac", + "stack_offset": 0 }, { "address": "0x140017031", "size": 2, "mnemonic": "cmp", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x140017033", "size": 2, "mnemonic": "ja", - "operands": "0x140017084" + "operands": "0x140017084", + "stack_offset": 0 } ], "successors": [ @@ -105386,19 +118623,22 @@ "address": "0x140017084", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x140017086", "size": 5, "mnemonic": "sub", - "operands": "eax, 0xdead" + "operands": "eax, 0xdead", + "stack_offset": 0 }, { "address": "0x14001708b", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105416,7 +118656,8 @@ "address": "0x140017035", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105434,13 +118675,15 @@ "address": "0x14001707b", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001707d", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x8fac]" + "operands": "qword ptr [rip + 0x8fac]", + "stack_offset": 0 } ], "successors": [ @@ -105457,13 +118700,15 @@ "address": "0x14001708d", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017090", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105481,19 +118726,22 @@ "address": "0x140017037", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xc433" + "operands": "eax, 0xc433", + "stack_offset": 0 }, { "address": "0x14001703c", "size": 2, "mnemonic": "cmp", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x14001703e", "size": 2, "mnemonic": "ja", - "operands": "0x14001705f" + "operands": "0x14001705f", + "stack_offset": 0 } ], "successors": [ @@ -105521,13 +118769,15 @@ "address": "0x140017092", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017095", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105545,19 +118795,22 @@ "address": "0x14001705f", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x140017061", "size": 5, "mnemonic": "sub", - "operands": "eax, 0xc435" + "operands": "eax, 0xc435", + "stack_offset": 0 }, { "address": "0x140017066", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105575,7 +118828,8 @@ "address": "0x140017040", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105593,13 +118847,15 @@ "address": "0x140017097", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001709a", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105617,13 +118873,15 @@ "address": "0x140017068", "size": 5, "mnemonic": "sub", - "operands": "eax, 0x1263" + "operands": "eax, 0x1263", + "stack_offset": 0 }, { "address": "0x14001706d", "size": 2, "mnemonic": "je", - "operands": "0x1400170b7" + "operands": "0x1400170b7", + "stack_offset": 0 } ], "successors": [ @@ -105641,19 +118899,22 @@ "address": "0x140017042", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x140017044", "size": 3, "mnemonic": "sub", - "operands": "eax, 0x2a" + "operands": "eax, 0x2a", + "stack_offset": 0 }, { "address": "0x140017047", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105671,13 +118932,15 @@ "address": "0x14001709c", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001709f", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105695,13 +118958,15 @@ "address": "0x1400170b7", "size": 3, "mnemonic": "and", - "operands": "edx, 8" + "operands": "edx, 8", + "stack_offset": 0 }, { "address": "0x1400170ba", "size": 2, "mnemonic": "jmp", - "operands": "0x14001707d" + "operands": "0x14001707d", + "stack_offset": 0 } ], "successors": [ @@ -105718,13 +118983,15 @@ "address": "0x14001706f", "size": 5, "mnemonic": "sub", - "operands": "eax, 0x812" + "operands": "eax, 0x812", + "stack_offset": 0 }, { "address": "0x140017074", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105742,13 +119009,15 @@ "address": "0x140017049", "size": 5, "mnemonic": "sub", - "operands": "eax, 0xc402" + "operands": "eax, 0xc402", + "stack_offset": 0 }, { "address": "0x14001704e", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105766,13 +119035,15 @@ "address": "0x1400170a1", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x1400170a4", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105790,7 +119061,8 @@ "address": "0x14001707d", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x8fac]" + "operands": "qword ptr [rip + 0x8fac]", + "stack_offset": 0 } ], "successors": [ @@ -105807,25 +119079,29 @@ "address": "0x140017076", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017079", "size": 2, "mnemonic": "jne", - "operands": "0x14001707d" + "operands": "0x14001707d", + "stack_offset": 0 }, { "address": "0x14001707b", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001707d", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x8fac]" + "operands": "qword ptr [rip + 0x8fac]", + "stack_offset": 0 } ], "successors": [ @@ -105842,13 +119118,15 @@ "address": "0x140017050", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017053", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105866,13 +119144,15 @@ "address": "0x1400170a6", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x1400170a9", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105890,13 +119170,15 @@ "address": "0x140017055", "size": 3, "mnemonic": "sub", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140017058", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105914,13 +119196,15 @@ "address": "0x1400170ab", "size": 5, "mnemonic": "sub", - "operands": "eax, 0x1f35" + "operands": "eax, 0x1f35", + "stack_offset": 0 }, { "address": "0x1400170b0", "size": 2, "mnemonic": "je", - "operands": "0x14001707b" + "operands": "0x14001707b", + "stack_offset": 0 } ], "successors": [ @@ -105938,13 +119222,15 @@ "address": "0x14001705a", "size": 3, "mnemonic": "cmp", - "operands": "eax, 3" + "operands": "eax, 3", + "stack_offset": 0 }, { "address": "0x14001705d", "size": 2, "mnemonic": "jmp", - "operands": "0x140017079" + "operands": "0x140017079", + "stack_offset": 0 } ], "successors": [ @@ -105961,25 +119247,29 @@ "address": "0x1400170b2", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x1400170b5", "size": 2, "mnemonic": "jne", - "operands": "0x14001707d" + "operands": "0x14001707d", + "stack_offset": 0 }, { "address": "0x1400170b7", "size": 3, "mnemonic": "and", - "operands": "edx, 8" + "operands": "edx, 8", + "stack_offset": 0 }, { "address": "0x1400170ba", "size": 2, "mnemonic": "jmp", - "operands": "0x14001707d" + "operands": "0x14001707d", + "stack_offset": 0 } ], "successors": [ @@ -105996,19 +119286,22 @@ "address": "0x140017079", "size": 2, "mnemonic": "jne", - "operands": "0x14001707d" + "operands": "0x14001707d", + "stack_offset": 0 }, { "address": "0x14001707b", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001707d", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x8fac]" + "operands": "qword ptr [rip + 0x8fac]", + "stack_offset": 0 } ], "successors": [ @@ -106031,73 +119324,85 @@ "address": "0x1400121ec", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400121f1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x1400121f6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x1400121fb", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400121fc", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x140012200", "size": 7, "mnemonic": "mov", - "operands": "r10, qword ptr [rip + 0x23e89]" + "operands": "r10, qword ptr [rip + 0x23e89]", + "stack_offset": 0 }, { "address": "0x140012207", "size": 3, "mnemonic": "mov", - "operands": "ebx, r9d" + "operands": "ebx, r9d", + "stack_offset": 0 }, { "address": "0x14001220a", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x14001220d", "size": 2, "mnemonic": "mov", - "operands": "esi, edx" + "operands": "esi, edx", + "stack_offset": 0 }, { "address": "0x14001220f", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x140012212", "size": 4, "mnemonic": "cmp", - "operands": "r10, -1" + "operands": "r10, -1", + "stack_offset": 0 }, { "address": "0x140012216", "size": 2, "mnemonic": "je", - "operands": "0x140012297" + "operands": "0x140012297", + "stack_offset": 0 } ], "successors": [ @@ -106115,109 +119420,127 @@ "address": "0x140012297", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140012299", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14001229c", "size": 5, "mnemonic": "call", - "operands": "0x1400122e0" + "operands": "0x1400122e0", + "stack_offset": 0 }, { "address": "0x1400122a1", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x1400122a3", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x1400122a6", "size": 7, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0x88]" + "operands": "eax, dword ptr [rsp + 0x88]", + "stack_offset": 0 }, { "address": "0x1400122ad", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x1400122b0", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x1400122b4", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x1400122b6", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x80]" + "operands": "rax, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x1400122be", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x1400122c3", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xdef7]" + "operands": "qword ptr [rip + 0xdef7]", + "stack_offset": 0 }, { "address": "0x1400122c9", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400122ce", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x68]" + "operands": "rbp, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x1400122d3", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x70]" + "operands": "rsi, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400122d8", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x1400122dc", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400122dd", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -106233,61 +119556,71 @@ "address": "0x140012218", "size": 3, "mnemonic": "test", - "operands": "r10, r10" + "operands": "r10, r10", + "stack_offset": 0 }, { "address": "0x14001221b", "size": 2, "mnemonic": "jne", - "operands": "0x140012243" + "operands": "0x140012243", + "stack_offset": 0 }, { "address": "0x14001221d", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x14764]" + "operands": "r9, [rip + 0x14764]", + "stack_offset": 0 }, { "address": "0x140012224", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x14755]" + "operands": "r8, [rip + 0x14755]", + "stack_offset": 0 }, { "address": "0x14001222b", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x14756]" + "operands": "rdx, [rip + 0x14756]", + "stack_offset": 0 }, { "address": "0x140012232", "size": 4, "mnemonic": "lea", - "operands": "ecx, [r10 + 0x12]" + "operands": "ecx, [r10 + 0x12]", + "stack_offset": 0 }, { "address": "0x140012236", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x14001223b", "size": 3, "mnemonic": "mov", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14001223e", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140012241", "size": 2, "mnemonic": "je", - "operands": "0x140012297" + "operands": "0x140012297", + "stack_offset": 0 } ], "successors": [ @@ -106305,103 +119638,120 @@ "address": "0x140012243", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xa0]" + "operands": "rcx, qword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001224b", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebx" + "operands": "r9d, ebx", + "stack_offset": 0 }, { "address": "0x14001224e", "size": 7, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0x88]" + "operands": "eax, dword ptr [rsp + 0x88]", + "stack_offset": 0 }, { "address": "0x140012255", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x140012258", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rcx" + "operands": "qword ptr [rsp + 0x40], rcx", + "stack_offset": 0 }, { "address": "0x14001225d", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x14001225f", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x98]" + "operands": "rcx, qword ptr [rsp + 0x98]", + "stack_offset": 0 }, { "address": "0x140012267", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rcx" + "operands": "qword ptr [rsp + 0x38], rcx", + "stack_offset": 0 }, { "address": "0x14001226c", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x90]" + "operands": "rcx, qword ptr [rsp + 0x90]", + "stack_offset": 0 }, { "address": "0x140012274", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x140012279", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14001227c", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x140012280", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x80]" + "operands": "rax, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140012288", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14001228d", "size": 3, "mnemonic": "mov", - "operands": "rax, r10" + "operands": "rax, r10", + "stack_offset": 0 }, { "address": "0x140012290", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x140012295", "size": 2, "mnemonic": "jmp", - "operands": "0x1400122c9" + "operands": "0x1400122c9", + "stack_offset": 0 } ], "successors": [ @@ -106418,37 +119768,43 @@ "address": "0x1400122c9", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x1400122ce", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x68]" + "operands": "rbp, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x1400122d3", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x70]" + "operands": "rsi, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x1400122d8", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x1400122dc", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400122dd", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -106470,211 +119826,246 @@ "address": "0x140017a50", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140017a55", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x140017a5a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x140017a5f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017a60", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140017a62", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140017a64", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140017a66", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140017a68", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140017a6c", "size": 4, "mnemonic": "or", - "operands": "rbp, 0xffffffffffffffff" + "operands": "rbp, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x140017a70", "size": 3, "mnemonic": "mov", - "operands": "rsi, r9" + "operands": "rsi, r9", + "stack_offset": 0 }, { "address": "0x140017a73", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140017a75", "size": 3, "mnemonic": "mov", - "operands": "r14, r8" + "operands": "r14, r8", + "stack_offset": 0 }, { "address": "0x140017a78", "size": 3, "mnemonic": "mov", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x140017a7b", "size": 3, "mnemonic": "mov", - "operands": "r12, rcx" + "operands": "r12, rcx", + "stack_offset": 0 }, { "address": "0x140017a7e", "size": 3, "mnemonic": "inc", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140017a81", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + rbp], dil" + "operands": "byte ptr [rcx + rbp], dil", + "stack_offset": 0 }, { "address": "0x140017a85", "size": 2, "mnemonic": "jne", - "operands": "0x140017a7e" + "operands": "0x140017a7e", + "stack_offset": 0 }, { "address": "0x140017a87", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140017a8c", "size": 3, "mnemonic": "mov", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x140017a8f", "size": 3, "mnemonic": "add", - "operands": "rbp, rdx" + "operands": "rbp, rdx", + "stack_offset": 0 }, { "address": "0x140017a92", "size": 3, "mnemonic": "not", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x140017a95", "size": 3, "mnemonic": "cmp", - "operands": "rbp, rax" + "operands": "rbp, rax", + "stack_offset": 0 }, { "address": "0x140017a98", "size": 2, "mnemonic": "jbe", - "operands": "0x140017aba" + "operands": "0x140017aba", + "stack_offset": 0 }, { "address": "0x140017a9a", "size": 3, "mnemonic": "lea", - "operands": "eax, [rdx + 0xb]" + "operands": "eax, [rdx + 0xb]", + "stack_offset": 0 }, { "address": "0x140017a9d", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x60]" + "operands": "rbx, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140017aa2", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x68]" + "operands": "rbp, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140017aa7", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x70]" + "operands": "rsi, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x140017aac", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140017ab0", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140017ab2", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140017ab4", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140017ab6", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140017ab8", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140017ab9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -106696,13 +120087,15 @@ "address": "0x14001cea8", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14001ceab", "size": 5, "mnemonic": "jmp", - "operands": "0x14001ceb0" + "operands": "0x14001ceb0", + "stack_offset": 0 } ], "successors": [ @@ -106719,73 +120112,85 @@ "address": "0x14001ceb0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001ceb5", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001ceb6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001ceba", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14001cebd", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14001cec0", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001cec3", "size": 2, "mnemonic": "jne", - "operands": "0x14001ced9" + "operands": "0x14001ced9", + "stack_offset": 0 }, { "address": "0x14001cec5", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14001ceca", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x14001ced0", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14001ced5", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001ced7", "size": 2, "mnemonic": "jmp", - "operands": "0x14001cf39" + "operands": "0x14001cf39", + "stack_offset": 0 } ], "successors": [ @@ -106802,25 +120207,29 @@ "address": "0x14001cf39", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001cf3e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14001cf42", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001cf43", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -106842,91 +120251,106 @@ "address": "0x14000d9d8", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000d9db", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rbx" + "operands": "qword ptr [rax + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000d9df", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rbp" + "operands": "qword ptr [rax + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000d9e3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], rsi" + "operands": "qword ptr [rax + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000d9e7", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rdi" + "operands": "qword ptr [rax + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x14000d9eb", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000d9ed", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000d9f1", "size": 3, "mnemonic": "xor", - "operands": "r14d, r14d" + "operands": "r14d, r14d", + "stack_offset": 0 }, { "address": "0x14000d9f4", "size": 3, "mnemonic": "mov", - "operands": "ebp, r9d" + "operands": "ebp, r9d", + "stack_offset": 0 }, { "address": "0x14000d9f7", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14000d9fa", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000d9fd", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000da00", "size": 2, "mnemonic": "jne", - "operands": "0x14000da26" + "operands": "0x14000da26", + "stack_offset": 0 }, { "address": "0x14000da02", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rdx + 0x28], r14b" + "operands": "byte ptr [rdx + 0x28], r14b", + "stack_offset": 0 }, { "address": "0x14000da06", "size": 2, "mnemonic": "je", - "operands": "0x14000da15" + "operands": "0x14000da15", + "stack_offset": 0 } ], "successors": [ @@ -106944,25 +120368,29 @@ "address": "0x14000da15", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x10], r14" + "operands": "qword ptr [rbx + 0x10], r14", + "stack_offset": 0 }, { "address": "0x14000da19", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x18], r14" + "operands": "qword ptr [rbx + 0x18], r14", + "stack_offset": 0 }, { "address": "0x14000da1d", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x20], r14" + "operands": "qword ptr [rbx + 0x20], r14", + "stack_offset": 0 }, { "address": "0x14000da21", "size": 5, "mnemonic": "jmp", - "operands": "0x14000db58" + "operands": "0x14000db58", + "stack_offset": 0 } ], "successors": [ @@ -106979,43 +120407,50 @@ "address": "0x14000da08", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdx + 0x10]" + "operands": "rcx, qword ptr [rdx + 0x10]", + "stack_offset": 0 }, { "address": "0x14000da0c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14000da11", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbx + 0x28], r14b" + "operands": "byte ptr [rbx + 0x28], r14b", + "stack_offset": 0 }, { "address": "0x14000da15", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x10], r14" + "operands": "qword ptr [rbx + 0x10], r14", + "stack_offset": 0 }, { "address": "0x14000da19", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x18], r14" + "operands": "qword ptr [rbx + 0x18], r14", + "stack_offset": 0 }, { "address": "0x14000da1d", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x20], r14" + "operands": "qword ptr [rbx + 0x20], r14", + "stack_offset": 0 }, { "address": "0x14000da21", "size": 5, "mnemonic": "jmp", - "operands": "0x14000db58" + "operands": "0x14000db58", + "stack_offset": 0 } ], "successors": [ @@ -107032,49 +120467,57 @@ "address": "0x14000db58", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000db5a", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000db5f", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000db64", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000db69", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x58]" + "operands": "rdi, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000db6e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000db72", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000db74", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -107096,79 +120539,92 @@ "address": "0x14000d808", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000d80a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000d80e", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14000d810", "size": 5, "mnemonic": "call", - "operands": "0x14000d854" + "operands": "0x14000d854", + "stack_offset": 0 }, { "address": "0x14000d815", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14000d817", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rax], ebx" + "operands": "dword ptr [rax], ebx", + "stack_offset": 0 }, { "address": "0x14000d819", "size": 5, "mnemonic": "call", - "operands": "0x14000d738" + "operands": "0x14000d738", + "stack_offset": 0 }, { "address": "0x14000d81e", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x14000d820", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14000d825", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rax], ebx" + "operands": "dword ptr [rax], ebx", + "stack_offset": 0 }, { "address": "0x14000d827", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000d82b", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000d82c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -107190,163 +120646,190 @@ "address": "0x140016514", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140016519", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14001651e", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001651f", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x140016523", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x140016526", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x140016529", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14001652c", "size": 3, "mnemonic": "mov", - "operands": "edi, r8d" + "operands": "edi, r8d", + "stack_offset": 0 }, { "address": "0x14001652f", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x50]" + "operands": "rcx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140016534", "size": 5, "mnemonic": "call", - "operands": "0x14000d89c" + "operands": "0x14000d89c", + "stack_offset": 0 }, { "address": "0x140016539", "size": 7, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0xc0]" + "operands": "eax, dword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x140016540", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x58]" + "operands": "rcx, [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140016545", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], eax" + "operands": "dword ptr [rsp + 0x40], eax", + "stack_offset": 0 }, { "address": "0x140016549", "size": 3, "mnemonic": "mov", - "operands": "r9, rbx" + "operands": "r9, rbx", + "stack_offset": 0 }, { "address": "0x14001654c", "size": 7, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0xb8]" + "operands": "eax, dword ptr [rsp + 0xb8]", + "stack_offset": 0 }, { "address": "0x140016553", "size": 3, "mnemonic": "mov", - "operands": "r8d, edi" + "operands": "r8d, edi", + "stack_offset": 0 }, { "address": "0x140016556", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], eax" + "operands": "dword ptr [rsp + 0x38], eax", + "stack_offset": 0 }, { "address": "0x14001655a", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14001655d", "size": 7, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0xb0]" + "operands": "eax, dword ptr [rsp + 0xb0]", + "stack_offset": 0 }, { "address": "0x140016564", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], eax" + "operands": "dword ptr [rsp + 0x30], eax", + "stack_offset": 0 }, { "address": "0x140016568", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0xa8]" + "operands": "rax, qword ptr [rsp + 0xa8]", + "stack_offset": 0 }, { "address": "0x140016570", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140016575", "size": 7, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0xa0]" + "operands": "eax, dword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x14001657c", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], eax" + "operands": "dword ptr [rsp + 0x20], eax", + "stack_offset": 0 }, { "address": "0x140016580", "size": 5, "mnemonic": "call", - "operands": "0x1400161e0" + "operands": "0x1400161e0", + "stack_offset": 0 }, { "address": "0x140016585", "size": 5, "mnemonic": "cmp", - "operands": "byte ptr [rsp + 0x68], 0" + "operands": "byte ptr [rsp + 0x68], 0", + "stack_offset": 0 }, { "address": "0x14001658a", "size": 2, "mnemonic": "je", - "operands": "0x140016598" + "operands": "0x140016598", + "stack_offset": 0 } ], "successors": [ @@ -107364,37 +120847,43 @@ "address": "0x140016598", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14001659d", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x1400165a1", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x18]" + "operands": "rsi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x1400165a5", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x1400165a8", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400165a9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -107410,49 +120899,57 @@ "address": "0x14001658c", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x50]" + "operands": "rcx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140016591", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x140016598", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x70]" + "operands": "r11, [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14001659d", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x10]" + "operands": "rbx, qword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x1400165a1", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x18]" + "operands": "rsi, qword ptr [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x1400165a5", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x1400165a8", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400165a9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -107474,55 +120971,64 @@ "address": "0x1400187b0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x1400187b5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x1400187ba", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400187bb", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400187bf", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x1400187c2", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x1400187c5", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rip + 0x18dc5]" + "operands": "eax, dword ptr [rip + 0x18dc5]", + "stack_offset": 0 }, { "address": "0x1400187cb", "size": 6, "mnemonic": "test", - "operands": "dword ptr [rcx + 0x3a8], eax" + "operands": "dword ptr [rcx + 0x3a8], eax", + "stack_offset": 0 }, { "address": "0x1400187d1", "size": 2, "mnemonic": "je", - "operands": "0x1400187e6" + "operands": "0x1400187e6", + "stack_offset": 0 } ], "successors": [ @@ -107540,43 +121046,50 @@ "address": "0x1400187e6", "size": 5, "mnemonic": "mov", - "operands": "ecx, 5" + "operands": "ecx, 5", + "stack_offset": 0 }, { "address": "0x1400187eb", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x1400187f0", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400187f1", "size": 7, "mnemonic": "mov", - "operands": "rbx, qword ptr [rdi + 0x88]" + "operands": "rbx, qword ptr [rdi + 0x88]", + "stack_offset": 0 }, { "address": "0x1400187f8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rbx" + "operands": "qword ptr [rsp + 0x30], rbx", + "stack_offset": 0 }, { "address": "0x1400187fd", "size": 3, "mnemonic": "cmp", - "operands": "rbx, qword ptr [rsi]" + "operands": "rbx, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140018800", "size": 2, "mnemonic": "je", - "operands": "0x140018840" + "operands": "0x140018840", + "stack_offset": 0 } ], "successors": [ @@ -107594,13 +121107,15 @@ "address": "0x1400187d3", "size": 8, "mnemonic": "cmp", - "operands": "qword ptr [rcx + 0x90], 0" + "operands": "qword ptr [rcx + 0x90], 0", + "stack_offset": 0 }, { "address": "0x1400187db", "size": 2, "mnemonic": "je", - "operands": "0x1400187e6" + "operands": "0x1400187e6", + "stack_offset": 0 } ], "successors": [ @@ -107618,25 +121133,29 @@ "address": "0x140018840", "size": 5, "mnemonic": "mov", - "operands": "ecx, 5" + "operands": "ecx, 5", + "stack_offset": 0 }, { "address": "0x140018845", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14001884a", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14001884d", "size": 2, "mnemonic": "je", - "operands": "0x140018862" + "operands": "0x140018862", + "stack_offset": 0 } ], "successors": [ @@ -107654,13 +121173,15 @@ "address": "0x140018802", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140018805", "size": 2, "mnemonic": "je", - "operands": "0x140018829" + "operands": "0x140018829", + "stack_offset": 0 } ], "successors": [ @@ -107678,13 +121199,15 @@ "address": "0x1400187dd", "size": 7, "mnemonic": "mov", - "operands": "rbx, qword ptr [rcx + 0x88]" + "operands": "rbx, qword ptr [rcx + 0x88]", + "stack_offset": 0 }, { "address": "0x1400187e4", "size": 2, "mnemonic": "jmp", - "operands": "0x14001884a" + "operands": "0x14001884a", + "stack_offset": 0 } ], "successors": [ @@ -107701,127 +121224,148 @@ "address": "0x140018862", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140018867", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140018868", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001886c", "size": 7, "mnemonic": "cmp", - "operands": "byte ptr [rip + 0x1afd9], 0" + "operands": "byte ptr [rip + 0x1afd9], 0", + "stack_offset": 0 }, { "address": "0x140018873", "size": 2, "mnemonic": "jne", - "operands": "0x1400188c1" + "operands": "0x1400188c1", + "stack_offset": 0 }, { "address": "0x140018875", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x19204]" + "operands": "rcx, [rip + 0x19204]", + "stack_offset": 0 }, { "address": "0x14001887c", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x1afb5], rcx" + "operands": "qword ptr [rip + 0x1afb5], rcx", + "stack_offset": 0 }, { "address": "0x140018883", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x18eb6]" + "operands": "rax, [rip + 0x18eb6]", + "stack_offset": 0 }, { "address": "0x14001888a", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x190df]" + "operands": "rcx, [rip + 0x190df]", + "stack_offset": 0 }, { "address": "0x140018891", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x1afa8], rax" + "operands": "qword ptr [rip + 0x1afa8], rax", + "stack_offset": 0 }, { "address": "0x140018898", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rip + 0x1af91], rcx" + "operands": "qword ptr [rip + 0x1af91], rcx", + "stack_offset": 0 }, { "address": "0x14001889f", "size": 5, "mnemonic": "call", - "operands": "0x1400118e0" + "operands": "0x1400118e0", + "stack_offset": 0 }, { "address": "0x1400188a4", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x1af95]" + "operands": "r9, [rip + 0x1af95]", + "stack_offset": 0 }, { "address": "0x1400188ab", "size": 3, "mnemonic": "mov", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x1400188ae", "size": 2, "mnemonic": "mov", - "operands": "dl, 1" + "operands": "dl, 1", + "stack_offset": 0 }, { "address": "0x1400188b0", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xfffffffd" + "operands": "ecx, 0xfffffffd", + "stack_offset": 0 }, { "address": "0x1400188b5", "size": 5, "mnemonic": "call", - "operands": "0x140018540" + "operands": "0x140018540", + "stack_offset": 0 }, { "address": "0x1400188ba", "size": 7, "mnemonic": "mov", - "operands": "byte ptr [rip + 0x1af8b], 1" + "operands": "byte ptr [rip + 0x1af8b], 1", + "stack_offset": 0 }, { "address": "0x1400188c1", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x1400188c3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400188c7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -107837,37 +121381,43 @@ "address": "0x14001884f", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140018852", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x38]" + "operands": "rbx, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140018857", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001885c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140018860", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140018861", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -107883,55 +121433,64 @@ "address": "0x140018829", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x14001882c", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x88], rax" + "operands": "qword ptr [rdi + 0x88], rax", + "stack_offset": 0 }, { "address": "0x140018833", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rax" + "operands": "qword ptr [rsp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x140018838", "size": 3, "mnemonic": "lock inc", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001883b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140018840", "size": 5, "mnemonic": "mov", - "operands": "ecx, 5" + "operands": "ecx, 5", + "stack_offset": 0 }, { "address": "0x140018845", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14001884a", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14001884d", "size": 2, "mnemonic": "je", - "operands": "0x140018862" + "operands": "0x140018862", + "stack_offset": 0 } ], "successors": [ @@ -107949,49 +121508,57 @@ "address": "0x140018807", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14001880a", "size": 4, "mnemonic": "lock xadd", - "operands": "dword ptr [rbx], eax" + "operands": "dword ptr [rbx], eax", + "stack_offset": 0 }, { "address": "0x14001880e", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140018811", "size": 2, "mnemonic": "jne", - "operands": "0x140018829" + "operands": "0x140018829", + "stack_offset": 0 }, { "address": "0x140018813", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x18f26]" + "operands": "rax, [rip + 0x18f26]", + "stack_offset": 0 }, { "address": "0x14001881a", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x30]" + "operands": "rcx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001881f", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140018822", "size": 2, "mnemonic": "je", - "operands": "0x140018829" + "operands": "0x140018829", + "stack_offset": 0 } ], "successors": [ @@ -108009,13 +121576,15 @@ "address": "0x14001884a", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14001884d", "size": 2, "mnemonic": "je", - "operands": "0x140018862" + "operands": "0x140018862", + "stack_offset": 0 } ], "successors": [ @@ -108033,61 +121602,71 @@ "address": "0x140018824", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140018829", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x14001882c", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x88], rax" + "operands": "qword ptr [rdi + 0x88], rax", + "stack_offset": 0 }, { "address": "0x140018833", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rax" + "operands": "qword ptr [rsp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x140018838", "size": 3, "mnemonic": "lock inc", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001883b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140018840", "size": 5, "mnemonic": "mov", - "operands": "ecx, 5" + "operands": "ecx, 5", + "stack_offset": 0 }, { "address": "0x140018845", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14001884a", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14001884d", "size": 2, "mnemonic": "je", - "operands": "0x140018862" + "operands": "0x140018862", + "stack_offset": 0 } ], "successors": [ @@ -108111,73 +121690,85 @@ "address": "0x140018230", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140018232", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x140018236", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x140018238", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001823a", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001823f", "size": 5, "mnemonic": "call", - "operands": "0x14000d89c" + "operands": "0x14000d89c", + "stack_offset": 0 }, { "address": "0x140018244", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rip + 0x1b5fd], 0" + "operands": "dword ptr [rip + 0x1b5fd], 0", + "stack_offset": 0 }, { "address": "0x14001824b", "size": 3, "mnemonic": "cmp", - "operands": "ebx, -2" + "operands": "ebx, -2", + "stack_offset": 0 }, { "address": "0x14001824e", "size": 2, "mnemonic": "jne", - "operands": "0x140018262" + "operands": "0x140018262", + "stack_offset": 0 }, { "address": "0x140018250", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x1b5ee], 1" + "operands": "dword ptr [rip + 0x1b5ee], 1", + "stack_offset": 0 }, { "address": "0x14001825a", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x8000]" + "operands": "qword ptr [rip + 0x8000]", + "stack_offset": 0 }, { "address": "0x140018260", "size": 2, "mnemonic": "jmp", - "operands": "0x140018277" + "operands": "0x140018277", + "stack_offset": 0 } ], "successors": [ @@ -108194,13 +121785,15 @@ "address": "0x140018277", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x140018279", "size": 2, "mnemonic": "jmp", - "operands": "0x140018292" + "operands": "0x140018292", + "stack_offset": 0 } ], "successors": [ @@ -108217,13 +121810,15 @@ "address": "0x140018292", "size": 5, "mnemonic": "cmp", - "operands": "byte ptr [rsp + 0x38], 0" + "operands": "byte ptr [rsp + 0x38], 0", + "stack_offset": 0 }, { "address": "0x140018297", "size": 2, "mnemonic": "je", - "operands": "0x1400182a5" + "operands": "0x1400182a5", + "stack_offset": 0 } ], "successors": [ @@ -108241,25 +121836,29 @@ "address": "0x1400182a5", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x1400182a7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x1400182ab", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400182ac", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -108275,37 +121874,43 @@ "address": "0x140018299", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x20]" + "operands": "rcx, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14001829e", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rcx + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x1400182a5", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x1400182a7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x1400182ab", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400182ac", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -108327,43 +121932,50 @@ "address": "0x14000ef78", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000ef7d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000ef82", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000ef83", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000ef87", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000ef8a", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000ef8d", "size": 2, "mnemonic": "je", - "operands": "0x14000efd2" + "operands": "0x14000efd2", + "stack_offset": 0 } ], "successors": [ @@ -108381,37 +121993,43 @@ "address": "0x14000efd2", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000efd4", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000efd9", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x48]" + "operands": "rsi, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000efde", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000efe2", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000efe3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -108427,61 +122045,71 @@ "address": "0x14000ef8f", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x55" + "operands": "edx, 0x55", + "stack_offset": 0 }, { "address": "0x14000ef94", "size": 5, "mnemonic": "call", - "operands": "0x14000dca0" + "operands": "0x14000dca0", + "stack_offset": 0 }, { "address": "0x14000ef99", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000ef9c", "size": 4, "mnemonic": "cmp", - "operands": "rax, 0x55" + "operands": "rax, 0x55", + "stack_offset": 0 }, { "address": "0x14000efa0", "size": 2, "mnemonic": "jae", - "operands": "0x14000efd2" + "operands": "0x14000efd2", + "stack_offset": 0 }, { "address": "0x14000efa2", "size": 8, "mnemonic": "lea", - "operands": "rcx, [rax*2 + 2]" + "operands": "rcx, [rax*2 + 2]", + "stack_offset": 0 }, { "address": "0x14000efaa", "size": 5, "mnemonic": "call", - "operands": "0x140015200" + "operands": "0x140015200", + "stack_offset": 0 }, { "address": "0x14000efaf", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14000efb2", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000efb5", "size": 2, "mnemonic": "je", - "operands": "0x14000efd2" + "operands": "0x14000efd2", + "stack_offset": 0 } ], "successors": [ @@ -108499,55 +122127,64 @@ "address": "0x14000efb7", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rsi + 1]" + "operands": "rdx, [rsi + 1]", + "stack_offset": 0 }, { "address": "0x14000efbb", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14000efbe", "size": 3, "mnemonic": "mov", - "operands": "r9, rdx" + "operands": "r9, rdx", + "stack_offset": 0 }, { "address": "0x14000efc1", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000efc4", "size": 5, "mnemonic": "call", - "operands": "0x140017510" + "operands": "0x140017510", + "stack_offset": 0 }, { "address": "0x14000efc9", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000efcb", "size": 2, "mnemonic": "jne", - "operands": "0x14000efe4" + "operands": "0x14000efe4", + "stack_offset": 0 }, { "address": "0x14000efcd", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14000efd0", "size": 2, "mnemonic": "jmp", - "operands": "0x14000efd4" + "operands": "0x14000efd4", + "stack_offset": 0 } ], "successors": [ @@ -108564,31 +122201,36 @@ "address": "0x14000efd4", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000efd9", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x48]" + "operands": "rsi, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000efde", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000efe2", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000efe3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -108610,163 +122252,190 @@ "address": "0x140015e88", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015e8a", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140015e8b", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140015e8c", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140015e8d", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140015e8f", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140015e91", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140015e93", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0xd0" + "operands": "rsp, 0xd0", + "stack_offset": 0 }, { "address": "0x140015e9a", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1b19f]" + "operands": "rax, qword ptr [rip + 0x1b19f]", + "stack_offset": 0 }, { "address": "0x140015ea1", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140015ea4", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0xc0], rax" + "operands": "qword ptr [rsp + 0xc0], rax", + "stack_offset": 0 }, { "address": "0x140015eac", "size": 8, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x130]" + "operands": "rsi, qword ptr [rsp + 0x130]", + "stack_offset": 0 }, { "address": "0x140015eb4", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140015eb6", "size": 3, "mnemonic": "mov", - "operands": "ebp, r9d" + "operands": "ebp, r9d", + "stack_offset": 0 }, { "address": "0x140015eb9", "size": 3, "mnemonic": "mov", - "operands": "r14, r8" + "operands": "r14, r8", + "stack_offset": 0 }, { "address": "0x140015ebc", "size": 3, "mnemonic": "mov", - "operands": "r12, rcx" + "operands": "r12, rcx", + "stack_offset": 0 }, { "address": "0x140015ebf", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rdi" + "operands": "qword ptr [rsi], rdi", + "stack_offset": 0 }, { "address": "0x140015ec2", "size": 3, "mnemonic": "cmp", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140015ec5", "size": 6, "mnemonic": "jne", - "operands": "0x140015fa5" + "operands": "0x140015fa5", + "stack_offset": 0 }, { "address": "0x140015ecb", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x40]" + "operands": "r9, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140015ed0", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], 0x80" + "operands": "dword ptr [rsp + 0x20], 0x80", + "stack_offset": 0 }, { "address": "0x140015ed8", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebp" + "operands": "r8d, ebp", + "stack_offset": 0 }, { "address": "0x140015edb", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140015ede", "size": 5, "mnemonic": "call", - "operands": "0x140015d0c" + "operands": "0x140015d0c", + "stack_offset": 0 }, { "address": "0x140015ee3", "size": 3, "mnemonic": "movsxd", - "operands": "rbx, eax" + "operands": "rbx, eax", + "stack_offset": 0 }, { "address": "0x140015ee6", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140015ee8", "size": 2, "mnemonic": "je", - "operands": "0x140015f2d" + "operands": "0x140015f2d", + "stack_offset": 0 } ], "successors": [ @@ -108790,79 +122459,92 @@ "address": "0x14001bb54", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001bb59", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14001bb5e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14001bb63", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001bb64", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001bb66", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001bb68", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001bb6c", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x14001bb6e", "size": 3, "mnemonic": "mov", - "operands": "r14, r8" + "operands": "r14, r8", + "stack_offset": 0 }, { "address": "0x14001bb71", "size": 2, "mnemonic": "mov", - "operands": "ebx, edx" + "operands": "ebx, edx", + "stack_offset": 0 }, { "address": "0x14001bb73", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x14001bb76", "size": 2, "mnemonic": "test", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001bb78", "size": 2, "mnemonic": "js", - "operands": "0x14001bbb0" + "operands": "0x14001bbb0", + "stack_offset": 0 } ], "successors": [ @@ -108880,55 +122562,64 @@ "address": "0x14001bbb0", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001bbb2", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001bbb7", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001bbbc", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001bbc1", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001bbc5", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001bbc7", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001bbc9", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001bbca", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -108944,73 +122635,85 @@ "address": "0x14001bb7a", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [r14]" + "operands": "rcx, qword ptr [r14]", + "stack_offset": 0 }, { "address": "0x14001bb7d", "size": 3, "mnemonic": "lea", - "operands": "eax, [rsi + rbx]" + "operands": "eax, [rsi + rbx]", + "stack_offset": 0 }, { "address": "0x14001bb80", "size": 1, "mnemonic": "cdq", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001bb81", "size": 2, "mnemonic": "sub", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x14001bb83", "size": 2, "mnemonic": "sar", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001bb85", "size": 3, "mnemonic": "movsxd", - "operands": "r15, eax" + "operands": "r15, eax", + "stack_offset": 0 }, { "address": "0x14001bb88", "size": 3, "mnemonic": "mov", - "operands": "rdi, r15" + "operands": "rdi, r15", + "stack_offset": 0 }, { "address": "0x14001bb8b", "size": 4, "mnemonic": "shl", - "operands": "rdi, 4" + "operands": "rdi, 4", + "stack_offset": 0 }, { "address": "0x14001bb8f", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rdi + rbp]" + "operands": "rdx, qword ptr [rdi + rbp]", + "stack_offset": 0 }, { "address": "0x14001bb93", "size": 5, "mnemonic": "call", - "operands": "0x140017230" + "operands": "0x140017230", + "stack_offset": 0 }, { "address": "0x14001bb98", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001bb9a", "size": 2, "mnemonic": "je", - "operands": "0x14001bbcb" + "operands": "0x14001bbcb", + "stack_offset": 0 } ], "successors": [ @@ -109028,31 +122731,36 @@ "address": "0x14001bbcb", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 8]" + "operands": "rax, [rbp + 8]", + "stack_offset": 0 }, { "address": "0x14001bbcf", "size": 3, "mnemonic": "add", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x14001bbd2", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r14], rax" + "operands": "qword ptr [r14], rax", + "stack_offset": 0 }, { "address": "0x14001bbd5", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14001bbd7", "size": 2, "mnemonic": "jmp", - "operands": "0x14001bbb2" + "operands": "0x14001bbb2", + "stack_offset": 0 } ], "successors": [ @@ -109069,97 +122777,113 @@ "address": "0x14001bb9c", "size": 4, "mnemonic": "lea", - "operands": "ecx, [r15 - 1]" + "operands": "ecx, [r15 - 1]", + "stack_offset": 0 }, { "address": "0x14001bba0", "size": 3, "mnemonic": "cmovns", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14001bba3", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14001bba5", "size": 4, "mnemonic": "lea", - "operands": "ecx, [r15 + 1]" + "operands": "ecx, [r15 + 1]", + "stack_offset": 0 }, { "address": "0x14001bba9", "size": 3, "mnemonic": "cmovns", - "operands": "esi, ecx" + "operands": "esi, ecx", + "stack_offset": 0 }, { "address": "0x14001bbac", "size": 2, "mnemonic": "cmp", - "operands": "esi, ebx" + "operands": "esi, ebx", + "stack_offset": 0 }, { "address": "0x14001bbae", "size": 2, "mnemonic": "jle", - "operands": "0x14001bb7a" + "operands": "0x14001bb7a", + "stack_offset": 0 }, { "address": "0x14001bbb0", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001bbb2", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001bbb7", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001bbbc", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001bbc1", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001bbc5", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001bbc7", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001bbc9", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001bbca", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -109175,49 +122899,57 @@ "address": "0x14001bbb2", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001bbb7", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001bbbc", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001bbc1", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001bbc5", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001bbc7", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001bbc9", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001bbca", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -109239,61 +122971,71 @@ "address": "0x14001b9e4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x14001b9e9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14001b9ee", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001b9ef", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001b9f3", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x14001b9f5", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x14001b9f8", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], esi" + "operands": "dword ptr [rsp + 0x30], esi", + "stack_offset": 0 }, { "address": "0x14001b9fc", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001b9ff", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001ba02", "size": 2, "mnemonic": "je", - "operands": "0x14001ba57" + "operands": "0x14001ba57", + "stack_offset": 0 } ], "successors": [ @@ -109311,55 +123053,64 @@ "address": "0x14001ba57", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdi + 8]" + "operands": "ecx, dword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x14001ba5a", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x30]" + "operands": "r8, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001ba5f", "size": 6, "mnemonic": "mov", - "operands": "r9d, 2" + "operands": "r9d, 2", + "stack_offset": 0 }, { "address": "0x14001ba65", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x20001004" + "operands": "edx, 0x20001004", + "stack_offset": 0 }, { "address": "0x14001ba6a", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x4758]" + "operands": "qword ptr [rip + 0x4758]", + "stack_offset": 0 }, { "address": "0x14001ba70", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001ba72", "size": 2, "mnemonic": "jne", - "operands": "0x14001ba78" + "operands": "0x14001ba78", + "stack_offset": 0 }, { "address": "0x14001ba74", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001ba76", "size": 2, "mnemonic": "jmp", - "operands": "0x14001ba86" + "operands": "0x14001ba86", + "stack_offset": 0 } ], "successors": [ @@ -109376,13 +123127,15 @@ "address": "0x14001ba04", "size": 3, "mnemonic": "cmp", - "operands": "word ptr [rcx], si" + "operands": "word ptr [rcx], si", + "stack_offset": 0 }, { "address": "0x14001ba07", "size": 2, "mnemonic": "je", - "operands": "0x14001ba57" + "operands": "0x14001ba57", + "stack_offset": 0 } ], "successors": [ @@ -109400,31 +123153,36 @@ "address": "0x14001ba86", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x38]" + "operands": "rbx, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001ba8b", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001ba90", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001ba94", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001ba95", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -109440,25 +123198,29 @@ "address": "0x14001ba09", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0xc058]" + "operands": "rdx, [rip + 0xc058]", + "stack_offset": 0 }, { "address": "0x14001ba10", "size": 5, "mnemonic": "call", - "operands": "0x14001d690" + "operands": "0x14001d690", + "stack_offset": 0 }, { "address": "0x14001ba15", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001ba17", "size": 2, "mnemonic": "je", - "operands": "0x14001ba57" + "operands": "0x14001ba57", + "stack_offset": 0 } ], "successors": [ @@ -109476,73 +123238,85 @@ "address": "0x14001ba19", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0xc060]" + "operands": "rdx, [rip + 0xc060]", + "stack_offset": 0 }, { "address": "0x14001ba20", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001ba23", "size": 5, "mnemonic": "call", - "operands": "0x14001d690" + "operands": "0x14001d690", + "stack_offset": 0 }, { "address": "0x14001ba28", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001ba2a", "size": 2, "mnemonic": "jne", - "operands": "0x14001ba4d" + "operands": "0x14001ba4d", + "stack_offset": 0 }, { "address": "0x14001ba2c", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdi + 8]" + "operands": "ecx, dword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x14001ba2f", "size": 4, "mnemonic": "lea", - "operands": "r9d, [rsi + 2]" + "operands": "r9d, [rsi + 2]", + "stack_offset": 0 }, { "address": "0x14001ba33", "size": 5, "mnemonic": "lea", - "operands": "r8, [rsp + 0x30]" + "operands": "r8, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001ba38", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x2000000b" + "operands": "edx, 0x2000000b", + "stack_offset": 0 }, { "address": "0x14001ba3d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x4785]" + "operands": "qword ptr [rip + 0x4785]", + "stack_offset": 0 }, { "address": "0x14001ba43", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001ba45", "size": 2, "mnemonic": "je", - "operands": "0x14001ba74" + "operands": "0x14001ba74", + "stack_offset": 0 } ], "successors": [ @@ -109560,13 +123334,15 @@ "address": "0x14001ba74", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001ba76", "size": 2, "mnemonic": "jmp", - "operands": "0x14001ba86" + "operands": "0x14001ba86", + "stack_offset": 0 } ], "successors": [ @@ -109583,13 +123359,15 @@ "address": "0x14001ba47", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0x30]" + "operands": "eax, dword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001ba4b", "size": 2, "mnemonic": "jmp", - "operands": "0x14001ba86" + "operands": "0x14001ba86", + "stack_offset": 0 } ], "successors": [ @@ -109612,109 +123390,127 @@ "address": "0x14001b5b0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001b5b5", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001b5b6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001b5ba", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001b5bd", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14001b5c2", "size": 4, "mnemonic": "or", - "operands": "r8, 0xffffffffffffffff" + "operands": "r8, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001b5c6", "size": 3, "mnemonic": "mov", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14001b5c9", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001b5cb", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax + 0x98]" + "operands": "rdx, qword ptr [rax + 0x98]", + "stack_offset": 0 }, { "address": "0x14001b5d2", "size": 3, "mnemonic": "inc", - "operands": "r8" + "operands": "r8", + "stack_offset": 0 }, { "address": "0x14001b5d5", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [rdx + r8*2], di" + "operands": "word ptr [rdx + r8*2], di", + "stack_offset": 0 }, { "address": "0x14001b5da", "size": 2, "mnemonic": "jne", - "operands": "0x14001b5d2" + "operands": "0x14001b5d2", + "stack_offset": 0 }, { "address": "0x14001b5dc", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14001b5de", "size": 4, "mnemonic": "cmp", - "operands": "r8, 3" + "operands": "r8, 3", + "stack_offset": 0 }, { "address": "0x14001b5e2", "size": 5, "mnemonic": "mov", - "operands": "ecx, 2" + "operands": "ecx, 2", + "stack_offset": 0 }, { "address": "0x14001b5e7", "size": 3, "mnemonic": "sete", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x14001b5ea", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [r10 + 0xb0], eax" + "operands": "dword ptr [r10 + 0xb0], eax", + "stack_offset": 0 }, { "address": "0x14001b5f1", "size": 2, "mnemonic": "je", - "operands": "0x14001b61b" + "operands": "0x14001b61b", + "stack_offset": 0 } ], "successors": [ @@ -109732,67 +123528,78 @@ "address": "0x14001b61b", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [r10 + 0xac], ecx" + "operands": "dword ptr [r10 + 0xac], ecx", + "stack_offset": 0 }, { "address": "0x14001b622", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x14001b627", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x25e]" + "operands": "rcx, [rip + 0x25e]", + "stack_offset": 0 }, { "address": "0x14001b62e", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x4bac]" + "operands": "qword ptr [rip + 0x4bac]", + "stack_offset": 0 }, { "address": "0x14001b634", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rbx], 4" + "operands": "byte ptr [rbx], 4", + "stack_offset": 0 }, { "address": "0x14001b637", "size": 2, "mnemonic": "jne", - "operands": "0x14001b63b" + "operands": "0x14001b63b", + "stack_offset": 0 }, { "address": "0x14001b639", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rbx], edi" + "operands": "dword ptr [rbx], edi", + "stack_offset": 0 }, { "address": "0x14001b63b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001b640", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001b644", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001b645", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -109808,55 +123615,64 @@ "address": "0x14001b5f3", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x14001b5f6", "size": 4, "mnemonic": "movzx", - "operands": "r8d, word ptr [rdx]" + "operands": "r8d, word ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001b5fa", "size": 3, "mnemonic": "add", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14001b5fd", "size": 4, "mnemonic": "lea", - "operands": "eax, [r8 - 0x41]" + "operands": "eax, [r8 - 0x41]", + "stack_offset": 0 }, { "address": "0x14001b601", "size": 4, "mnemonic": "cmp", - "operands": "ax, 0x19" + "operands": "ax, 0x19", + "stack_offset": 0 }, { "address": "0x14001b605", "size": 2, "mnemonic": "jbe", - "operands": "0x14001b613" + "operands": "0x14001b613", + "stack_offset": 0 }, { "address": "0x14001b607", "size": 5, "mnemonic": "sub", - "operands": "r8w, 0x61" + "operands": "r8w, 0x61", + "stack_offset": 0 }, { "address": "0x14001b60c", "size": 5, "mnemonic": "cmp", - "operands": "r8w, 0x19" + "operands": "r8w, 0x19", + "stack_offset": 0 }, { "address": "0x14001b611", "size": 2, "mnemonic": "ja", - "operands": "0x14001b618" + "operands": "0x14001b618", + "stack_offset": 0 } ], "successors": [ @@ -109874,73 +123690,85 @@ "address": "0x14001b618", "size": 3, "mnemonic": "mov", - "operands": "ecx, r9d" + "operands": "ecx, r9d", + "stack_offset": 0 }, { "address": "0x14001b61b", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [r10 + 0xac], ecx" + "operands": "dword ptr [r10 + 0xac], ecx", + "stack_offset": 0 }, { "address": "0x14001b622", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x14001b627", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x25e]" + "operands": "rcx, [rip + 0x25e]", + "stack_offset": 0 }, { "address": "0x14001b62e", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x4bac]" + "operands": "qword ptr [rip + 0x4bac]", + "stack_offset": 0 }, { "address": "0x14001b634", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rbx], 4" + "operands": "byte ptr [rbx], 4", + "stack_offset": 0 }, { "address": "0x14001b637", "size": 2, "mnemonic": "jne", - "operands": "0x14001b63b" + "operands": "0x14001b63b", + "stack_offset": 0 }, { "address": "0x14001b639", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rbx], edi" + "operands": "dword ptr [rbx], edi", + "stack_offset": 0 }, { "address": "0x14001b63b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001b640", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001b644", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001b645", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -109956,13 +123784,15 @@ "address": "0x14001b613", "size": 3, "mnemonic": "inc", - "operands": "r9d" + "operands": "r9d", + "stack_offset": 0 }, { "address": "0x14001b616", "size": 2, "mnemonic": "jmp", - "operands": "0x14001b5f6" + "operands": "0x14001b5f6", + "stack_offset": 0 } ], "successors": [ @@ -109979,49 +123809,57 @@ "address": "0x14001b5f6", "size": 4, "mnemonic": "movzx", - "operands": "r8d, word ptr [rdx]" + "operands": "r8d, word ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001b5fa", "size": 3, "mnemonic": "add", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14001b5fd", "size": 4, "mnemonic": "lea", - "operands": "eax, [r8 - 0x41]" + "operands": "eax, [r8 - 0x41]", + "stack_offset": 0 }, { "address": "0x14001b601", "size": 4, "mnemonic": "cmp", - "operands": "ax, 0x19" + "operands": "ax, 0x19", + "stack_offset": 0 }, { "address": "0x14001b605", "size": 2, "mnemonic": "jbe", - "operands": "0x14001b613" + "operands": "0x14001b613", + "stack_offset": 0 }, { "address": "0x14001b607", "size": 5, "mnemonic": "sub", - "operands": "r8w, 0x61" + "operands": "r8w, 0x61", + "stack_offset": 0 }, { "address": "0x14001b60c", "size": 5, "mnemonic": "cmp", - "operands": "r8w, 0x19" + "operands": "r8w, 0x19", + "stack_offset": 0 }, { "address": "0x14001b611", "size": 2, "mnemonic": "ja", - "operands": "0x14001b618" + "operands": "0x14001b618", + "stack_offset": 0 } ], "successors": [ @@ -110045,235 +123883,274 @@ "address": "0x14001b4e0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001b4e5", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001b4e6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001b4ea", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001b4ed", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14001b4f2", "size": 4, "mnemonic": "or", - "operands": "r8, 0xffffffffffffffff" + "operands": "r8, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001b4f6", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001b4f9", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001b4fb", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rax + 0x98]" + "operands": "rdx, [rax + 0x98]", + "stack_offset": 0 }, { "address": "0x14001b502", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001b505", "size": 3, "mnemonic": "inc", - "operands": "r9" + "operands": "r9", + "stack_offset": 0 }, { "address": "0x14001b508", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [rax + r9*2], di" + "operands": "word ptr [rax + r9*2], di", + "stack_offset": 0 }, { "address": "0x14001b50d", "size": 2, "mnemonic": "jne", - "operands": "0x14001b505" + "operands": "0x14001b505", + "stack_offset": 0 }, { "address": "0x14001b50f", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14001b511", "size": 4, "mnemonic": "cmp", - "operands": "r9, 3" + "operands": "r9, 3", + "stack_offset": 0 }, { "address": "0x14001b515", "size": 3, "mnemonic": "sete", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x14001b518", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rdx + 0x18], eax" + "operands": "dword ptr [rdx + 0x18], eax", + "stack_offset": 0 }, { "address": "0x14001b51b", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx + 8]" + "operands": "rax, qword ptr [rdx + 8]", + "stack_offset": 0 }, { "address": "0x14001b51f", "size": 3, "mnemonic": "inc", - "operands": "r8" + "operands": "r8", + "stack_offset": 0 }, { "address": "0x14001b522", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [rax + r8*2], di" + "operands": "word ptr [rax + r8*2], di", + "stack_offset": 0 }, { "address": "0x14001b527", "size": 2, "mnemonic": "jne", - "operands": "0x14001b51f" + "operands": "0x14001b51f", + "stack_offset": 0 }, { "address": "0x14001b529", "size": 4, "mnemonic": "cmp", - "operands": "r8, 3" + "operands": "r8, 3", + "stack_offset": 0 }, { "address": "0x14001b52d", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x14001b52f", "size": 6, "mnemonic": "mov", - "operands": "r8d, 2" + "operands": "r8d, 2", + "stack_offset": 0 }, { "address": "0x14001b535", "size": 3, "mnemonic": "sete", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x14001b538", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rdx + 0x1c], eax" + "operands": "dword ptr [rdx + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x14001b53b", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbx + 4], edi" + "operands": "dword ptr [rbx + 4], edi", + "stack_offset": 0 }, { "address": "0x14001b53e", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rdx + 0x18], edi" + "operands": "dword ptr [rdx + 0x18], edi", + "stack_offset": 0 }, { "address": "0x14001b541", "size": 2, "mnemonic": "jne", - "operands": "0x14001b56e" + "operands": "0x14001b56e", + "stack_offset": 0 }, { "address": "0x14001b543", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdx]" + "operands": "rcx, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001b546", "size": 3, "mnemonic": "mov", - "operands": "r10d, edi" + "operands": "r10d, edi", + "stack_offset": 0 }, { "address": "0x14001b549", "size": 4, "mnemonic": "movzx", - "operands": "r9d, word ptr [rcx]" + "operands": "r9d, word ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001b54d", "size": 3, "mnemonic": "add", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x14001b550", "size": 4, "mnemonic": "lea", - "operands": "eax, [r9 - 0x41]" + "operands": "eax, [r9 - 0x41]", + "stack_offset": 0 }, { "address": "0x14001b554", "size": 4, "mnemonic": "cmp", - "operands": "ax, 0x19" + "operands": "ax, 0x19", + "stack_offset": 0 }, { "address": "0x14001b558", "size": 2, "mnemonic": "jbe", - "operands": "0x14001b566" + "operands": "0x14001b566", + "stack_offset": 0 }, { "address": "0x14001b55a", "size": 5, "mnemonic": "sub", - "operands": "r9w, 0x61" + "operands": "r9w, 0x61", + "stack_offset": 0 }, { "address": "0x14001b55f", "size": 5, "mnemonic": "cmp", - "operands": "r9w, 0x19" + "operands": "r9w, 0x19", + "stack_offset": 0 }, { "address": "0x14001b564", "size": 2, "mnemonic": "ja", - "operands": "0x14001b56b" + "operands": "0x14001b56b", + "stack_offset": 0 } ], "successors": [ @@ -110291,121 +124168,141 @@ "address": "0x14001b56b", "size": 3, "mnemonic": "mov", - "operands": "r8d, r10d" + "operands": "r8d, r10d", + "stack_offset": 0 }, { "address": "0x14001b56e", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rdx + 0x14], r8d" + "operands": "dword ptr [rdx + 0x14], r8d", + "stack_offset": 0 }, { "address": "0x14001b572", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0xcf]" + "operands": "rcx, [rip + 0xcf]", + "stack_offset": 0 }, { "address": "0x14001b579", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x14001b57e", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x4c5c]" + "operands": "qword ptr [rip + 0x4c5c]", + "stack_offset": 0 }, { "address": "0x14001b584", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14001b586", "size": 3, "mnemonic": "test", - "operands": "cl, 7" + "operands": "cl, 7", + "stack_offset": 0 }, { "address": "0x14001b589", "size": 3, "mnemonic": "setne", - "operands": "dl" + "operands": "dl", + "stack_offset": 0 }, { "address": "0x14001b58c", "size": 4, "mnemonic": "bt", - "operands": "ecx, 9" + "operands": "ecx, 9", + "stack_offset": 0 }, { "address": "0x14001b590", "size": 3, "mnemonic": "setb", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x14001b593", "size": 2, "mnemonic": "and", - "operands": "dl, al" + "operands": "dl, al", + "stack_offset": 0 }, { "address": "0x14001b595", "size": 4, "mnemonic": "bt", - "operands": "ecx, 8" + "operands": "ecx, 8", + "stack_offset": 0 }, { "address": "0x14001b599", "size": 3, "mnemonic": "setb", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x14001b59c", "size": 2, "mnemonic": "test", - "operands": "al, dl" + "operands": "al, dl", + "stack_offset": 0 }, { "address": "0x14001b59e", "size": 2, "mnemonic": "jne", - "operands": "0x14001b5a2" + "operands": "0x14001b5a2", + "stack_offset": 0 }, { "address": "0x14001b5a0", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rbx], edi" + "operands": "dword ptr [rbx], edi", + "stack_offset": 0 }, { "address": "0x14001b5a2", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001b5a7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001b5ab", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001b5ac", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -110421,13 +124318,15 @@ "address": "0x14001b566", "size": 3, "mnemonic": "inc", - "operands": "r10d" + "operands": "r10d", + "stack_offset": 0 }, { "address": "0x14001b569", "size": 2, "mnemonic": "jmp", - "operands": "0x14001b549" + "operands": "0x14001b549", + "stack_offset": 0 } ], "successors": [ @@ -110444,49 +124343,57 @@ "address": "0x14001b549", "size": 4, "mnemonic": "movzx", - "operands": "r9d, word ptr [rcx]" + "operands": "r9d, word ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001b54d", "size": 3, "mnemonic": "add", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x14001b550", "size": 4, "mnemonic": "lea", - "operands": "eax, [r9 - 0x41]" + "operands": "eax, [r9 - 0x41]", + "stack_offset": 0 }, { "address": "0x14001b554", "size": 4, "mnemonic": "cmp", - "operands": "ax, 0x19" + "operands": "ax, 0x19", + "stack_offset": 0 }, { "address": "0x14001b558", "size": 2, "mnemonic": "jbe", - "operands": "0x14001b566" + "operands": "0x14001b566", + "stack_offset": 0 }, { "address": "0x14001b55a", "size": 5, "mnemonic": "sub", - "operands": "r9w, 0x61" + "operands": "r9w, 0x61", + "stack_offset": 0 }, { "address": "0x14001b55f", "size": 5, "mnemonic": "cmp", - "operands": "r9w, 0x19" + "operands": "r9w, 0x19", + "stack_offset": 0 }, { "address": "0x14001b564", "size": 2, "mnemonic": "ja", - "operands": "0x14001b56b" + "operands": "0x14001b56b", + "stack_offset": 0 } ], "successors": [ @@ -110510,73 +124417,85 @@ "address": "0x140012164", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140012169", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14001216e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x140012173", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140012174", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140012178", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23f19]" + "operands": "rax, qword ptr [rip + 0x23f19]", + "stack_offset": 0 }, { "address": "0x14001217f", "size": 3, "mnemonic": "mov", - "operands": "ebp, r9d" + "operands": "ebp, r9d", + "stack_offset": 0 }, { "address": "0x140012182", "size": 3, "mnemonic": "mov", - "operands": "ebx, r8d" + "operands": "ebx, r8d", + "stack_offset": 0 }, { "address": "0x140012185", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140012188", "size": 2, "mnemonic": "mov", - "operands": "esi, ecx" + "operands": "esi, ecx", + "stack_offset": 0 }, { "address": "0x14001218a", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x14001218e", "size": 2, "mnemonic": "je", - "operands": "0x1400121c9" + "operands": "0x1400121c9", + "stack_offset": 0 } ], "successors": [ @@ -110594,61 +124513,71 @@ "address": "0x1400121c9", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebx" + "operands": "r8d, ebx", + "stack_offset": 0 }, { "address": "0x1400121cc", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x1400121cf", "size": 2, "mnemonic": "mov", - "operands": "ecx, esi" + "operands": "ecx, esi", + "stack_offset": 0 }, { "address": "0x1400121d1", "size": 5, "mnemonic": "call", - "operands": "0x14001c034" + "operands": "0x14001c034", + "stack_offset": 0 }, { "address": "0x1400121d6", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400121db", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x1400121e0", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400121e5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x1400121e9", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400121ea", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -110664,55 +124593,64 @@ "address": "0x140012190", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140012193", "size": 2, "mnemonic": "jne", - "operands": "0x1400121b7" + "operands": "0x1400121b7", + "stack_offset": 0 }, { "address": "0x140012195", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x14804]" + "operands": "r9, [rip + 0x14804]", + "stack_offset": 0 }, { "address": "0x14001219c", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x147f5]" + "operands": "r8, [rip + 0x147f5]", + "stack_offset": 0 }, { "address": "0x1400121a3", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x147f6]" + "operands": "rdx, [rip + 0x147f6]", + "stack_offset": 0 }, { "address": "0x1400121aa", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0x13]" + "operands": "ecx, [rax + 0x13]", + "stack_offset": 0 }, { "address": "0x1400121ad", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x1400121b2", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400121b5", "size": 2, "mnemonic": "je", - "operands": "0x1400121c9" + "operands": "0x1400121c9", + "stack_offset": 0 } ], "successors": [ @@ -110730,37 +124668,43 @@ "address": "0x1400121b7", "size": 3, "mnemonic": "mov", - "operands": "r9d, ebp" + "operands": "r9d, ebp", + "stack_offset": 0 }, { "address": "0x1400121ba", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebx" + "operands": "r8d, ebx", + "stack_offset": 0 }, { "address": "0x1400121bd", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x1400121c0", "size": 2, "mnemonic": "mov", - "operands": "ecx, esi" + "operands": "ecx, esi", + "stack_offset": 0 }, { "address": "0x1400121c2", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x1400121c7", "size": 2, "mnemonic": "jmp", - "operands": "0x1400121d6" + "operands": "0x1400121d6", + "stack_offset": 0 } ], "successors": [ @@ -110777,37 +124721,43 @@ "address": "0x1400121d6", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400121db", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x1400121e0", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400121e5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x1400121e9", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400121ea", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -110829,67 +124779,78 @@ "address": "0x14001d3e4", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x14001d3e8", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001d3ea", "size": 4, "mnemonic": "cmp", - "operands": "r9d, 0xa" + "operands": "r9d, 0xa", + "stack_offset": 0 }, { "address": "0x14001d3ee", "size": 2, "mnemonic": "jne", - "operands": "0x14001d3f6" + "operands": "0x14001d3f6", + "stack_offset": 0 }, { "address": "0x14001d3f0", "size": 2, "mnemonic": "test", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14001d3f2", "size": 2, "mnemonic": "jns", - "operands": "0x14001d3f6" + "operands": "0x14001d3f6", + "stack_offset": 0 }, { "address": "0x14001d3f4", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14001d3f6", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x20], al" + "operands": "byte ptr [rsp + 0x20], al", + "stack_offset": 0 }, { "address": "0x14001d3fa", "size": 5, "mnemonic": "call", - "operands": "0x14001d378" + "operands": "0x14001d378", + "stack_offset": 0 }, { "address": "0x14001d3ff", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x14001d403", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -110911,79 +124872,92 @@ "address": "0x140016d88", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140016d8a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140016d8e", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x140016d91", "size": 7, "mnemonic": "lea", - "operands": "rbx, [rip + 0x1c9b0]" + "operands": "rbx, [rip + 0x1c9b0]", + "stack_offset": 0 }, { "address": "0x140016d98", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x2400" + "operands": "eax, 0x2400", + "stack_offset": 0 }, { "address": "0x140016d9d", "size": 3, "mnemonic": "mov", - "operands": "r10, rcx" + "operands": "r10, rcx", + "stack_offset": 0 }, { "address": "0x140016da0", "size": 4, "mnemonic": "cmovne", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x140016da4", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x3ff" + "operands": "ecx, 0x3ff", + "stack_offset": 0 }, { "address": "0x140016da9", "size": 2, "mnemonic": "add", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x140016dab", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx], 0" + "operands": "dword ptr [rbx], 0", + "stack_offset": 0 }, { "address": "0x140016dae", "size": 2, "mnemonic": "jne", - "operands": "0x140016df7" + "operands": "0x140016df7", + "stack_offset": 0 }, { "address": "0x140016db0", "size": 3, "mnemonic": "cmp", - "operands": "ax, cx" + "operands": "ax, cx", + "stack_offset": 0 }, { "address": "0x140016db3", "size": 2, "mnemonic": "ja", - "operands": "0x140016dc2" + "operands": "0x140016dc2", + "stack_offset": 0 } ], "successors": [ @@ -111001,25 +124975,29 @@ "address": "0x140016dc2", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x2800" + "operands": "eax, 0x2800", + "stack_offset": 0 }, { "address": "0x140016dc7", "size": 2, "mnemonic": "add", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x140016dc9", "size": 3, "mnemonic": "cmp", - "operands": "ax, cx" + "operands": "ax, cx", + "stack_offset": 0 }, { "address": "0x140016dcc", "size": 2, "mnemonic": "ja", - "operands": "0x140016de4" + "operands": "0x140016de4", + "stack_offset": 0 } ], "successors": [ @@ -111037,25 +125015,29 @@ "address": "0x140016db5", "size": 3, "mnemonic": "mov", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140016db8", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140016dbb", "size": 5, "mnemonic": "call", - "operands": "0x14001c5a0" + "operands": "0x14001c5a0", + "stack_offset": 0 }, { "address": "0x140016dc0", "size": 2, "mnemonic": "jmp", - "operands": "0x140016e25" + "operands": "0x140016e25", + "stack_offset": 0 } ], "successors": [ @@ -111072,37 +125054,43 @@ "address": "0x140016de4", "size": 3, "mnemonic": "movzx", - "operands": "edx, dx" + "operands": "edx, dx", + "stack_offset": 0 }, { "address": "0x140016de7", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140016dea", "size": 3, "mnemonic": "mov", - "operands": "rcx, r10" + "operands": "rcx, r10", + "stack_offset": 0 }, { "address": "0x140016ded", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140016df1", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140016df2", "size": 5, "mnemonic": "jmp", - "operands": "0x14001c4f4" + "operands": "0x14001c4f4", + "stack_offset": 0 } ], "successors": [ @@ -111119,43 +125107,50 @@ "address": "0x140016dce", "size": 3, "mnemonic": "movzx", - "operands": "eax, dx" + "operands": "eax, dx", + "stack_offset": 0 }, { "address": "0x140016dd1", "size": 3, "mnemonic": "shl", - "operands": "eax, 0xa" + "operands": "eax, 0xa", + "stack_offset": 0 }, { "address": "0x140016dd4", "size": 5, "mnemonic": "and", - "operands": "eax, 0xfc9ffc00" + "operands": "eax, 0xfc9ffc00", + "stack_offset": 0 }, { "address": "0x140016dd9", "size": 5, "mnemonic": "add", - "operands": "eax, 0x10000" + "operands": "eax, 0x10000", + "stack_offset": 0 }, { "address": "0x140016dde", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rbx], eax" + "operands": "dword ptr [rbx], eax", + "stack_offset": 0 }, { "address": "0x140016de0", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140016de2", "size": 2, "mnemonic": "jmp", - "operands": "0x140016e25" + "operands": "0x140016e25", + "stack_offset": 0 } ], "successors": [ @@ -111172,19 +125167,22 @@ "address": "0x140016e25", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140016e29", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140016e2a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -111200,43 +125198,50 @@ "address": "0x14001c4f4", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001c4f6", "size": 3, "mnemonic": "mov", - "operands": "r10, rcx" + "operands": "r10, rcx", + "stack_offset": 0 }, { "address": "0x14001c4f9", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001c4fc", "size": 2, "mnemonic": "jne", - "operands": "0x14001c507" + "operands": "0x14001c507", + "stack_offset": 0 }, { "address": "0x14001c4fe", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r8], rax" + "operands": "qword ptr [r8], rax", + "stack_offset": 0 }, { "address": "0x14001c501", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001c506", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -111258,49 +125263,57 @@ "address": "0x14001d930", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001d932", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x158b7], 0" + "operands": "dword ptr [rip + 0x158b7], 0", + "stack_offset": 0 }, { "address": "0x14001d939", "size": 3, "mnemonic": "mov", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x14001d93c", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14001d93f", "size": 3, "mnemonic": "mov", - "operands": "r11, rcx" + "operands": "r11, rcx", + "stack_offset": 0 }, { "address": "0x14001d942", "size": 2, "mnemonic": "jne", - "operands": "0x14001d9a9" + "operands": "0x14001d9a9", + "stack_offset": 0 }, { "address": "0x14001d944", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001d947", "size": 2, "mnemonic": "je", - "operands": "0x14001d9a3" + "operands": "0x14001d9a3", + "stack_offset": 0 } ], "successors": [ @@ -111318,13 +125331,15 @@ "address": "0x14001d9a3", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001d9a4", "size": 5, "mnemonic": "jmp", - "operands": "0x14001d8f0" + "operands": "0x14001d8f0", + "stack_offset": 0 } ], "successors": [ @@ -111341,13 +125356,15 @@ "address": "0x14001d949", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001d94c", "size": 2, "mnemonic": "je", - "operands": "0x14001d9a3" + "operands": "0x14001d9a3", + "stack_offset": 0 } ], "successors": [ @@ -111365,19 +125382,22 @@ "address": "0x14001d8f0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001d8f4", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001d8f7", "size": 2, "mnemonic": "je", - "operands": "0x14001d907" + "operands": "0x14001d907", + "stack_offset": 0 } ], "successors": [ @@ -111395,13 +125415,15 @@ "address": "0x14001d94e", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x7fffffff" + "operands": "r8, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x14001d955", "size": 2, "mnemonic": "ja", - "operands": "0x14001d9a3" + "operands": "0x14001d9a3", + "stack_offset": 0 } ], "successors": [ @@ -111419,37 +125441,43 @@ "address": "0x14001d907", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14001d90c", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x14001d912", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14001d917", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x7fffffff" + "operands": "eax, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x14001d91c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001d920", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -111465,13 +125493,15 @@ "address": "0x14001d8f9", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001d8fc", "size": 2, "mnemonic": "je", - "operands": "0x14001d907" + "operands": "0x14001d907", + "stack_offset": 0 } ], "successors": [ @@ -111489,31 +125519,36 @@ "address": "0x14001d957", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x14001d95a", "size": 2, "mnemonic": "jne", - "operands": "0x14001d960" + "operands": "0x14001d960", + "stack_offset": 0 }, { "address": "0x14001d95c", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001d95e", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001d95f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -111529,49 +125564,57 @@ "address": "0x14001d8fe", "size": 7, "mnemonic": "cmp", - "operands": "r8, 0x7fffffff" + "operands": "r8, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x14001d905", "size": 2, "mnemonic": "jbe", - "operands": "0x14001d917" + "operands": "0x14001d917", + "stack_offset": 0 }, { "address": "0x14001d907", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14001d90c", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x14001d912", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14001d917", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x7fffffff" + "operands": "eax, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x14001d91c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001d920", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -111593,43 +125636,50 @@ "address": "0x140002b78", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140002b7c", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e96d]" + "operands": "rax, [rip + 0x1e96d]", + "stack_offset": 0 }, { "address": "0x140002b83", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rax" + "operands": "qword ptr [rcx], rax", + "stack_offset": 0 }, { "address": "0x140002b86", "size": 5, "mnemonic": "call", - "operands": "0x140004cbc" + "operands": "0x140004cbc", + "stack_offset": 0 }, { "address": "0x140002b8b", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140002b8c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140002b90", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -111651,73 +125701,85 @@ "address": "0x14000dfac", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000dfb1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000dfb6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000dfbb", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000dfbc", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000dfc0", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x14000dfc3", "size": 2, "mnemonic": "mov", - "operands": "edi, ecx" + "operands": "edi, ecx", + "stack_offset": 0 }, { "address": "0x14000dfc5", "size": 5, "mnemonic": "call", - "operands": "0x140011924" + "operands": "0x140011924", + "stack_offset": 0 }, { "address": "0x14000dfca", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000dfcd", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14000dfd0", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000dfd3", "size": 2, "mnemonic": "je", - "operands": "0x14000dff4" + "operands": "0x14000dff4", + "stack_offset": 0 } ], "successors": [ @@ -111735,43 +125797,50 @@ "address": "0x14000dff4", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000dff6", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000dffb", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000e000", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000e005", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e009", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e00a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -111787,31 +125856,36 @@ "address": "0x14000dfd5", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000dfd8", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000dfdb", "size": 7, "mnemonic": "lea", - "operands": "r8, [rcx + 0xc0]" + "operands": "r8, [rcx + 0xc0]", + "stack_offset": 0 }, { "address": "0x14000dfe2", "size": 3, "mnemonic": "cmp", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x14000dfe5", "size": 2, "mnemonic": "je", - "operands": "0x14000dff4" + "operands": "0x14000dff4", + "stack_offset": 0 } ], "successors": [ @@ -111829,13 +125903,15 @@ "address": "0x14000dfe7", "size": 2, "mnemonic": "cmp", - "operands": "dword ptr [rax], edi" + "operands": "dword ptr [rax], edi", + "stack_offset": 0 }, { "address": "0x14000dfe9", "size": 2, "mnemonic": "je", - "operands": "0x14000e00b" + "operands": "0x14000e00b", + "stack_offset": 0 } ], "successors": [ @@ -111853,13 +125929,15 @@ "address": "0x14000e00b", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000e00e", "size": 2, "mnemonic": "je", - "operands": "0x14000dff4" + "operands": "0x14000dff4", + "stack_offset": 0 } ], "successors": [ @@ -111877,61 +125955,71 @@ "address": "0x14000dfeb", "size": 4, "mnemonic": "add", - "operands": "rax, 0x10" + "operands": "rax, 0x10", + "stack_offset": 0 }, { "address": "0x14000dfef", "size": 3, "mnemonic": "cmp", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x14000dff2", "size": 2, "mnemonic": "jne", - "operands": "0x14000dfe7" + "operands": "0x14000dfe7", + "stack_offset": 0 }, { "address": "0x14000dff4", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000dff6", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000dffb", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000e000", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000e005", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e009", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e00a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -111947,19 +126035,22 @@ "address": "0x14000e010", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rax + 8]" + "operands": "r8, qword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x14000e014", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x14000e017", "size": 2, "mnemonic": "je", - "operands": "0x14000dff4" + "operands": "0x14000dff4", + "stack_offset": 0 } ], "successors": [ @@ -111977,31 +126068,36 @@ "address": "0x14000e019", "size": 4, "mnemonic": "cmp", - "operands": "r8, 5" + "operands": "r8, 5", + "stack_offset": 0 }, { "address": "0x14000e01d", "size": 2, "mnemonic": "jne", - "operands": "0x14000e029" + "operands": "0x14000e029", + "stack_offset": 0 }, { "address": "0x14000e01f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], r9" + "operands": "qword ptr [rax + 8], r9", + "stack_offset": 0 }, { "address": "0x14000e023", "size": 4, "mnemonic": "lea", - "operands": "eax, [r8 - 4]" + "operands": "eax, [r8 - 4]", + "stack_offset": 0 }, { "address": "0x14000e027", "size": 2, "mnemonic": "jmp", - "operands": "0x14000dff6" + "operands": "0x14000dff6", + "stack_offset": 0 } ], "successors": [ @@ -112018,37 +126114,43 @@ "address": "0x14000dff6", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000dffb", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000e000", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000e005", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000e009", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000e00a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -112070,7 +126172,8 @@ "address": "0x14000952c", "size": 5, "mnemonic": "jmp", - "operands": "0x140009054" + "operands": "0x140009054", + "stack_offset": 0 } ], "successors": [ @@ -112087,133 +126190,155 @@ "address": "0x140009054", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140009059", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000905e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x140009063", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140009064", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009066", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140009068", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x50" + "operands": "rsp, 0x50", + "stack_offset": 0 }, { "address": "0x14000906c", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000906f", "size": 3, "mnemonic": "mov", - "operands": "rsi, r9" + "operands": "rsi, r9", + "stack_offset": 0 }, { "address": "0x140009072", "size": 3, "mnemonic": "mov", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x140009075", "size": 3, "mnemonic": "mov", - "operands": "r15, r8" + "operands": "r15, r8", + "stack_offset": 0 }, { "address": "0x140009078", "size": 3, "mnemonic": "mov", - "operands": "r14, rdx" + "operands": "r14, rdx", + "stack_offset": 0 }, { "address": "0x14000907b", "size": 5, "mnemonic": "call", - "operands": "0x14000a704" + "operands": "0x14000a704", + "stack_offset": 0 }, { "address": "0x140009080", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009085", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x90]" + "operands": "rbx, qword ptr [rsp + 0x90]", + "stack_offset": 0 }, { "address": "0x14000908d", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x80000029" + "operands": "edx, 0x80000029", + "stack_offset": 0 }, { "address": "0x140009092", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x1fffffff" + "operands": "ecx, 0x1fffffff", + "stack_offset": 0 }, { "address": "0x140009097", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x80000026" + "operands": "r8d, 0x80000026", + "stack_offset": 0 }, { "address": "0x14000909d", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x40], 0" + "operands": "dword ptr [rax + 0x40], 0", + "stack_offset": 0 }, { "address": "0x1400090a1", "size": 2, "mnemonic": "jne", - "operands": "0x1400090d9" + "operands": "0x1400090d9", + "stack_offset": 0 }, { "address": "0x1400090a3", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe06d7363" + "operands": "dword ptr [rdi], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x1400090a9", "size": 2, "mnemonic": "je", - "operands": "0x1400090d9" + "operands": "0x1400090d9", + "stack_offset": 0 } ], "successors": [ @@ -112231,13 +126356,15 @@ "address": "0x1400090d9", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rdi + 4], 0x66" + "operands": "byte ptr [rdi + 4], 0x66", + "stack_offset": 0 }, { "address": "0x1400090dd", "size": 6, "mnemonic": "je", - "operands": "0x140009172" + "operands": "0x140009172", + "stack_offset": 0 } ], "successors": [ @@ -112255,37 +126382,43 @@ "address": "0x1400090ab", "size": 2, "mnemonic": "cmp", - "operands": "dword ptr [rdi], edx" + "operands": "dword ptr [rdi], edx", + "stack_offset": 0 }, { "address": "0x1400090ad", "size": 2, "mnemonic": "jne", - "operands": "0x1400090bf" + "operands": "0x1400090bf", + "stack_offset": 0 }, { "address": "0x1400090af", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0x18], 0xf" + "operands": "dword ptr [rdi + 0x18], 0xf", + "stack_offset": 0 }, { "address": "0x1400090b3", "size": 2, "mnemonic": "jne", - "operands": "0x1400090c4" + "operands": "0x1400090c4", + "stack_offset": 0 }, { "address": "0x1400090b5", "size": 8, "mnemonic": "cmp", - "operands": "qword ptr [rdi + 0x60], 0x19930520" + "operands": "qword ptr [rdi + 0x60], 0x19930520", + "stack_offset": 0 }, { "address": "0x1400090bd", "size": 2, "mnemonic": "jmp", - "operands": "0x1400090c2" + "operands": "0x1400090c2", + "stack_offset": 0 } ], "successors": [ @@ -112302,37 +126435,43 @@ "address": "0x140009172", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0xc], 0" + "operands": "dword ptr [rbx + 0xc], 0", + "stack_offset": 0 }, { "address": "0x140009176", "size": 2, "mnemonic": "jne", - "operands": "0x1400091b3" + "operands": "0x1400091b3", + "stack_offset": 0 }, { "address": "0x140009178", "size": 2, "mnemonic": "mov", - "operands": "eax, dword ptr [rbx]" + "operands": "eax, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000917a", "size": 2, "mnemonic": "and", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14000917c", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930521" + "operands": "eax, 0x19930521", + "stack_offset": 0 }, { "address": "0x140009181", "size": 2, "mnemonic": "jb", - "operands": "0x14000919a" + "operands": "0x14000919a", + "stack_offset": 0 } ], "successors": [ @@ -112350,13 +126489,15 @@ "address": "0x1400090e3", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 4], 0" + "operands": "dword ptr [rbx + 4], 0", + "stack_offset": 0 }, { "address": "0x1400090e7", "size": 6, "mnemonic": "je", - "operands": "0x14000925c" + "operands": "0x14000925c", + "stack_offset": 0 } ], "successors": [ @@ -112374,7 +126515,8 @@ "address": "0x1400090c2", "size": 2, "mnemonic": "je", - "operands": "0x1400090d9" + "operands": "0x1400090d9", + "stack_offset": 0 } ], "successors": [ @@ -112392,25 +126534,29 @@ "address": "0x14000919a", "size": 2, "mnemonic": "mov", - "operands": "eax, dword ptr [rbx]" + "operands": "eax, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000919c", "size": 2, "mnemonic": "and", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14000919e", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930522" + "operands": "eax, 0x19930522", + "stack_offset": 0 }, { "address": "0x1400091a3", "size": 6, "mnemonic": "jb", - "operands": "0x14000925c" + "operands": "0x14000925c", + "stack_offset": 0 } ], "successors": [ @@ -112428,19 +126574,22 @@ "address": "0x140009183", "size": 4, "mnemonic": "movsxd", - "operands": "rbp, dword ptr [rbx + 0x20]" + "operands": "rbp, dword ptr [rbx + 0x20]", + "stack_offset": 0 }, { "address": "0x140009187", "size": 2, "mnemonic": "test", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x140009189", "size": 2, "mnemonic": "je", - "operands": "0x14000919a" + "operands": "0x14000919a", + "stack_offset": 0 } ], "successors": [ @@ -112458,61 +126607,71 @@ "address": "0x14000925c", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140009261", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x50]" + "operands": "r11, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140009266", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000926a", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x28]" + "operands": "rbp, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x14000926e", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x140009272", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140009275", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140009277", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009279", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000927a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -112528,25 +126687,29 @@ "address": "0x1400090ed", "size": 8, "mnemonic": "cmp", - "operands": "dword ptr [rsp + 0x98], 0" + "operands": "dword ptr [rsp + 0x98], 0", + "stack_offset": 0 }, { "address": "0x1400090f5", "size": 6, "mnemonic": "jne", - "operands": "0x14000925c" + "operands": "0x14000925c", + "stack_offset": 0 }, { "address": "0x1400090fb", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rdi + 4], 0x20" + "operands": "byte ptr [rdi + 4], 0x20", + "stack_offset": 0 }, { "address": "0x1400090ff", "size": 2, "mnemonic": "je", - "operands": "0x14000915f" + "operands": "0x14000915f", + "stack_offset": 0 } ], "successors": [ @@ -112564,25 +126727,29 @@ "address": "0x1400090c4", "size": 2, "mnemonic": "mov", - "operands": "eax, dword ptr [rbx]" + "operands": "eax, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x1400090c6", "size": 2, "mnemonic": "and", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x1400090c8", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930522" + "operands": "eax, 0x19930522", + "stack_offset": 0 }, { "address": "0x1400090cd", "size": 2, "mnemonic": "jb", - "operands": "0x1400090d9" + "operands": "0x1400090d9", + "stack_offset": 0 } ], "successors": [ @@ -112600,13 +126767,15 @@ "address": "0x1400091a9", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbx + 0x24], 4" + "operands": "byte ptr [rbx + 0x24], 4", + "stack_offset": 0 }, { "address": "0x1400091ad", "size": 6, "mnemonic": "je", - "operands": "0x14000925c" + "operands": "0x14000925c", + "stack_offset": 0 } ], "successors": [ @@ -112624,49 +126793,57 @@ "address": "0x14000918b", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140009190", "size": 3, "mnemonic": "add", - "operands": "rax, rbp" + "operands": "rax, rbp", + "stack_offset": 0 }, { "address": "0x140009193", "size": 2, "mnemonic": "jne", - "operands": "0x1400091b3" + "operands": "0x1400091b3", + "stack_offset": 0 }, { "address": "0x140009195", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x1fffffff" + "operands": "ecx, 0x1fffffff", + "stack_offset": 0 }, { "address": "0x14000919a", "size": 2, "mnemonic": "mov", - "operands": "eax, dword ptr [rbx]" + "operands": "eax, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000919c", "size": 2, "mnemonic": "and", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14000919e", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0x19930522" + "operands": "eax, 0x19930522", + "stack_offset": 0 }, { "address": "0x1400091a3", "size": 6, "mnemonic": "jb", - "operands": "0x14000925c" + "operands": "0x14000925c", + "stack_offset": 0 } ], "successors": [ @@ -112684,31 +126861,36 @@ "address": "0x14000915f", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140009162", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x140009165", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140009168", "size": 5, "mnemonic": "call", - "operands": "0x1400064ac" + "operands": "0x1400064ac", + "stack_offset": 0 }, { "address": "0x14000916d", "size": 5, "mnemonic": "jmp", - "operands": "0x14000925c" + "operands": "0x14000925c", + "stack_offset": 0 } ], "successors": [ @@ -112725,49 +126907,57 @@ "address": "0x140009101", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rdi], r8d" + "operands": "dword ptr [rdi], r8d", + "stack_offset": 0 }, { "address": "0x140009104", "size": 2, "mnemonic": "jne", - "operands": "0x14000913d" + "operands": "0x14000913d", + "stack_offset": 0 }, { "address": "0x140009106", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rsi + 0x20]" + "operands": "r8, qword ptr [rsi + 0x20]", + "stack_offset": 0 }, { "address": "0x14000910a", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x14000910d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140009110", "size": 5, "mnemonic": "call", - "operands": "0x1400075e8" + "operands": "0x1400075e8", + "stack_offset": 0 }, { "address": "0x140009115", "size": 3, "mnemonic": "cmp", - "operands": "eax, -1" + "operands": "eax, -1", + "stack_offset": 0 }, { "address": "0x140009118", "size": 6, "mnemonic": "jl", - "operands": "0x14000927b" + "operands": "0x14000927b", + "stack_offset": 0 } ], "successors": [ @@ -112785,25 +126975,29 @@ "address": "0x1400090cf", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbx + 0x24], 1" + "operands": "byte ptr [rbx + 0x24], 1", + "stack_offset": 0 }, { "address": "0x1400090d3", "size": 6, "mnemonic": "jne", - "operands": "0x14000925c" + "operands": "0x14000925c", + "stack_offset": 0 }, { "address": "0x1400090d9", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rdi + 4], 0x66" + "operands": "byte ptr [rdi + 4], 0x66", + "stack_offset": 0 }, { "address": "0x1400090dd", "size": 6, "mnemonic": "je", - "operands": "0x140009172" + "operands": "0x140009172", + "stack_offset": 0 } ], "successors": [ @@ -112821,25 +127015,29 @@ "address": "0x1400091b3", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe06d7363" + "operands": "dword ptr [rdi], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x1400091b9", "size": 2, "mnemonic": "jne", - "operands": "0x140009223" + "operands": "0x140009223", + "stack_offset": 0 }, { "address": "0x1400091bb", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0x18], 3" + "operands": "dword ptr [rdi + 0x18], 3", + "stack_offset": 0 }, { "address": "0x1400091bf", "size": 2, "mnemonic": "jb", - "operands": "0x140009223" + "operands": "0x140009223", + "stack_offset": 0 } ], "successors": [ @@ -112857,13 +127055,15 @@ "address": "0x14000927b", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140009280", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -112879,49 +127079,57 @@ "address": "0x14000911e", "size": 3, "mnemonic": "cmp", - "operands": "eax, dword ptr [rbx + 4]" + "operands": "eax, dword ptr [rbx + 4]", + "stack_offset": 0 }, { "address": "0x140009121", "size": 6, "mnemonic": "jge", - "operands": "0x14000927b" + "operands": "0x14000927b", + "stack_offset": 0 }, { "address": "0x140009127", "size": 3, "mnemonic": "mov", - "operands": "r9d, eax" + "operands": "r9d, eax", + "stack_offset": 0 }, { "address": "0x14000912a", "size": 3, "mnemonic": "mov", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x14000912d", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x140009130", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140009133", "size": 5, "mnemonic": "call", - "operands": "0x140009dc4" + "operands": "0x140009dc4", + "stack_offset": 0 }, { "address": "0x140009138", "size": 5, "mnemonic": "jmp", - "operands": "0x14000925c" + "operands": "0x14000925c", + "stack_offset": 0 } ], "successors": [ @@ -112938,133 +127146,155 @@ "address": "0x140009223", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0xa0]" + "operands": "rax, qword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x14000922b", "size": 3, "mnemonic": "mov", - "operands": "r9, rsi" + "operands": "r9, rsi", + "stack_offset": 0 }, { "address": "0x14000922e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rax" + "operands": "qword ptr [rsp + 0x38], rax", + "stack_offset": 0 }, { "address": "0x140009233", "size": 3, "mnemonic": "mov", - "operands": "r8, r15" + "operands": "r8, r15", + "stack_offset": 0 }, { "address": "0x140009236", "size": 7, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0x98]" + "operands": "eax, dword ptr [rsp + 0x98]", + "stack_offset": 0 }, { "address": "0x14000923d", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140009240", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], eax" + "operands": "dword ptr [rsp + 0x30], eax", + "stack_offset": 0 }, { "address": "0x140009244", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140009247", "size": 7, "mnemonic": "mov", - "operands": "al, byte ptr [rsp + 0xa8]" + "operands": "al, byte ptr [rsp + 0xa8]", + "stack_offset": 0 }, { "address": "0x14000924e", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x28], al" + "operands": "byte ptr [rsp + 0x28], al", + "stack_offset": 0 }, { "address": "0x140009252", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rbx" + "operands": "qword ptr [rsp + 0x20], rbx", + "stack_offset": 0 }, { "address": "0x140009257", "size": 5, "mnemonic": "call", - "operands": "0x140007e60" + "operands": "0x140007e60", + "stack_offset": 0 }, { "address": "0x14000925c", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140009261", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x50]" + "operands": "r11, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140009266", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000926a", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x28]" + "operands": "rbp, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x14000926e", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x140009272", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140009275", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140009277", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009279", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000927a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -113080,37 +127310,43 @@ "address": "0x1400091c1", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 0x20], 0x19930522" + "operands": "dword ptr [rdi + 0x20], 0x19930522", + "stack_offset": 0 }, { "address": "0x1400091c8", "size": 2, "mnemonic": "jbe", - "operands": "0x140009223" + "operands": "0x140009223", + "stack_offset": 0 }, { "address": "0x1400091ca", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi + 0x30]" + "operands": "rax, qword ptr [rdi + 0x30]", + "stack_offset": 0 }, { "address": "0x1400091ce", "size": 4, "mnemonic": "movsxd", - "operands": "rbp, dword ptr [rax + 8]" + "operands": "rbp, dword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x1400091d2", "size": 2, "mnemonic": "test", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x1400091d4", "size": 2, "mnemonic": "je", - "operands": "0x140009223" + "operands": "0x140009223", + "stack_offset": 0 } ], "successors": [ @@ -113128,25 +127364,29 @@ "address": "0x1400091d6", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x1400091db", "size": 3, "mnemonic": "mov", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x1400091de", "size": 3, "mnemonic": "add", - "operands": "r10, rbp" + "operands": "r10, rbp", + "stack_offset": 0 }, { "address": "0x1400091e1", "size": 2, "mnemonic": "je", - "operands": "0x140009223" + "operands": "0x140009223", + "stack_offset": 0 } ], "successors": [ @@ -113164,85 +127404,99 @@ "address": "0x1400091e3", "size": 8, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rsp + 0xa8]" + "operands": "ecx, byte ptr [rsp + 0xa8]", + "stack_offset": 0 }, { "address": "0x1400091eb", "size": 3, "mnemonic": "mov", - "operands": "r9, rsi" + "operands": "r9, rsi", + "stack_offset": 0 }, { "address": "0x1400091ee", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], ecx" + "operands": "dword ptr [rsp + 0x38], ecx", + "stack_offset": 0 }, { "address": "0x1400091f2", "size": 3, "mnemonic": "mov", - "operands": "r8, r15" + "operands": "r8, r15", + "stack_offset": 0 }, { "address": "0x1400091f5", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xa0]" + "operands": "rcx, qword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x1400091fd", "size": 3, "mnemonic": "mov", - "operands": "rdx, r14" + "operands": "rdx, r14", + "stack_offset": 0 }, { "address": "0x140009200", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x140009205", "size": 3, "mnemonic": "mov", - "operands": "rax, r10" + "operands": "rax, r10", + "stack_offset": 0 }, { "address": "0x140009208", "size": 7, "mnemonic": "mov", - "operands": "ecx, dword ptr [rsp + 0x98]" + "operands": "ecx, dword ptr [rsp + 0x98]", + "stack_offset": 0 }, { "address": "0x14000920f", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], ecx" + "operands": "dword ptr [rsp + 0x28], ecx", + "stack_offset": 0 }, { "address": "0x140009213", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140009216", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rbx" + "operands": "qword ptr [rsp + 0x20], rbx", + "stack_offset": 0 }, { "address": "0x14000921b", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1709f]" + "operands": "qword ptr [rip + 0x1709f]", + "stack_offset": 0 }, { "address": "0x140009221", "size": 2, "mnemonic": "jmp", - "operands": "0x140009261" + "operands": "0x140009261", + "stack_offset": 0 } ], "successors": [ @@ -113259,55 +127513,64 @@ "address": "0x140009261", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x50]" + "operands": "r11, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140009266", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000926a", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x28]" + "operands": "rbp, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x14000926e", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x140009272", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140009275", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140009277", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009279", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000927a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -113329,109 +127592,127 @@ "address": "0x140009534", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140009536", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000953a", "size": 7, "mnemonic": "mov", - "operands": "al, byte ptr [rsp + 0x88]" + "operands": "al, byte ptr [rsp + 0x88]", + "stack_offset": 0 }, { "address": "0x140009541", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x38], al" + "operands": "byte ptr [rsp + 0x38], al", + "stack_offset": 0 }, { "address": "0x140009545", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x80]" + "operands": "rax, qword ptr [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x14000954d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rax" + "operands": "qword ptr [rsp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x140009552", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0x78]" + "operands": "eax, dword ptr [rsp + 0x78]", + "stack_offset": 0 }, { "address": "0x140009556", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], eax" + "operands": "dword ptr [rsp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x14000955a", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x70]" + "operands": "rax, qword ptr [rsp + 0x70]", + "stack_offset": 0 }, { "address": "0x14000955f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140009564", "size": 5, "mnemonic": "call", - "operands": "0x140009284" + "operands": "0x140009284", + "stack_offset": 0 }, { "address": "0x140009569", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x14000956b", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009570", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x78], 0xfffffffe" + "operands": "dword ptr [rax + 0x78], 0xfffffffe", + "stack_offset": 0 }, { "address": "0x140009577", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x140009579", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000957d", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000957e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -113453,85 +127734,99 @@ "address": "0x140009cfc", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140009cfe", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140009d02", "size": 3, "mnemonic": "mov", - "operands": "r9, qword ptr [rcx]" + "operands": "r9, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140009d05", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x140009d08", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xe06d7363" + "operands": "ecx, 0xe06d7363", + "stack_offset": 0 }, { "address": "0x140009d0d", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [r8], 0" + "operands": "dword ptr [r8], 0", + "stack_offset": 0 }, { "address": "0x140009d14", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [r9], ecx" + "operands": "dword ptr [r9], ecx", + "stack_offset": 0 }, { "address": "0x140009d17", "size": 2, "mnemonic": "jne", - "operands": "0x140009d89" + "operands": "0x140009d89", + "stack_offset": 0 }, { "address": "0x140009d19", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [r9 + 0x18], 4" + "operands": "dword ptr [r9 + 0x18], 4", + "stack_offset": 0 }, { "address": "0x140009d1e", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x19930520" + "operands": "r8d, 0x19930520", + "stack_offset": 0 }, { "address": "0x140009d24", "size": 2, "mnemonic": "jne", - "operands": "0x140009d49" + "operands": "0x140009d49", + "stack_offset": 0 }, { "address": "0x140009d26", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r9 + 0x20]" + "operands": "eax, dword ptr [r9 + 0x20]", + "stack_offset": 0 }, { "address": "0x140009d2a", "size": 3, "mnemonic": "cmp", - "operands": "eax, r8d" + "operands": "eax, r8d", + "stack_offset": 0 }, { "address": "0x140009d2d", "size": 2, "mnemonic": "je", - "operands": "0x140009d39" + "operands": "0x140009d39", + "stack_offset": 0 } ], "successors": [ @@ -113549,67 +127844,78 @@ "address": "0x140009d39", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx + 0x28]" + "operands": "rax, qword ptr [rdx + 0x28]", + "stack_offset": 0 }, { "address": "0x140009d3d", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [r9 + 0x28], rax" + "operands": "qword ptr [r9 + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140009d41", "size": 2, "mnemonic": "jne", - "operands": "0x140009d49" + "operands": "0x140009d49", + "stack_offset": 0 }, { "address": "0x140009d43", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rbx], 1" + "operands": "dword ptr [rbx], 1", + "stack_offset": 0 }, { "address": "0x140009d49", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [r9], ecx" + "operands": "dword ptr [r9], ecx", + "stack_offset": 0 }, { "address": "0x140009d4c", "size": 2, "mnemonic": "jne", - "operands": "0x140009d89" + "operands": "0x140009d89", + "stack_offset": 0 }, { "address": "0x140009d4e", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [r9 + 0x18], 4" + "operands": "dword ptr [r9 + 0x18], 4", + "stack_offset": 0 }, { "address": "0x140009d53", "size": 2, "mnemonic": "jne", - "operands": "0x140009d89" + "operands": "0x140009d89", + "stack_offset": 0 }, { "address": "0x140009d55", "size": 4, "mnemonic": "mov", - "operands": "ecx, dword ptr [r9 + 0x20]" + "operands": "ecx, dword ptr [r9 + 0x20]", + "stack_offset": 0 }, { "address": "0x140009d59", "size": 3, "mnemonic": "cmp", - "operands": "ecx, r8d" + "operands": "ecx, r8d", + "stack_offset": 0 }, { "address": "0x140009d5c", "size": 2, "mnemonic": "je", - "operands": "0x140009d69" + "operands": "0x140009d69", + "stack_offset": 0 } ], "successors": [ @@ -113627,19 +127933,22 @@ "address": "0x140009d2f", "size": 5, "mnemonic": "add", - "operands": "eax, 0xe66cfadf" + "operands": "eax, 0xe66cfadf", + "stack_offset": 0 }, { "address": "0x140009d34", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140009d37", "size": 2, "mnemonic": "ja", - "operands": "0x140009d49" + "operands": "0x140009d49", + "stack_offset": 0 } ], "successors": [ @@ -113657,43 +127966,50 @@ "address": "0x140009d69", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [r9 + 0x30], 0" + "operands": "qword ptr [r9 + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140009d6e", "size": 2, "mnemonic": "jne", - "operands": "0x140009d89" + "operands": "0x140009d89", + "stack_offset": 0 }, { "address": "0x140009d70", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009d75", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x40], 1" + "operands": "dword ptr [rax + 0x40], 1", + "stack_offset": 0 }, { "address": "0x140009d7c", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140009d81", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rbx], 1" + "operands": "dword ptr [rbx], 1", + "stack_offset": 0 }, { "address": "0x140009d87", "size": 2, "mnemonic": "jmp", - "operands": "0x140009d8b" + "operands": "0x140009d8b", + "stack_offset": 0 } ], "successors": [ @@ -113710,19 +128026,22 @@ "address": "0x140009d5e", "size": 6, "mnemonic": "add", - "operands": "ecx, 0xe66cfadf" + "operands": "ecx, 0xe66cfadf", + "stack_offset": 0 }, { "address": "0x140009d64", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 1" + "operands": "ecx, 1", + "stack_offset": 0 }, { "address": "0x140009d67", "size": 2, "mnemonic": "ja", - "operands": "0x140009d89" + "operands": "0x140009d89", + "stack_offset": 0 } ], "successors": [ @@ -113740,43 +128059,50 @@ "address": "0x140009d49", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [r9], ecx" + "operands": "dword ptr [r9], ecx", + "stack_offset": 0 }, { "address": "0x140009d4c", "size": 2, "mnemonic": "jne", - "operands": "0x140009d89" + "operands": "0x140009d89", + "stack_offset": 0 }, { "address": "0x140009d4e", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [r9 + 0x18], 4" + "operands": "dword ptr [r9 + 0x18], 4", + "stack_offset": 0 }, { "address": "0x140009d53", "size": 2, "mnemonic": "jne", - "operands": "0x140009d89" + "operands": "0x140009d89", + "stack_offset": 0 }, { "address": "0x140009d55", "size": 4, "mnemonic": "mov", - "operands": "ecx, dword ptr [r9 + 0x20]" + "operands": "ecx, dword ptr [r9 + 0x20]", + "stack_offset": 0 }, { "address": "0x140009d59", "size": 3, "mnemonic": "cmp", - "operands": "ecx, r8d" + "operands": "ecx, r8d", + "stack_offset": 0 }, { "address": "0x140009d5c", "size": 2, "mnemonic": "je", - "operands": "0x140009d69" + "operands": "0x140009d69", + "stack_offset": 0 } ], "successors": [ @@ -113794,19 +128120,22 @@ "address": "0x140009d8b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140009d8f", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140009d90", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -113822,25 +128151,29 @@ "address": "0x140009d89", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140009d8b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140009d8f", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140009d90", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -113862,67 +128195,78 @@ "address": "0x140006d54", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140006d59", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140006d5a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140006d5e", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140006d61", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140006d66", "size": 4, "mnemonic": "cmp", - "operands": "rdi, qword ptr [rax + 0x58]" + "operands": "rdi, qword ptr [rax + 0x58]", + "stack_offset": 0 }, { "address": "0x140006d6a", "size": 2, "mnemonic": "jne", - "operands": "0x140006da1" + "operands": "0x140006da1", + "stack_offset": 0 }, { "address": "0x140006d6c", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140006d71", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax + 0x58]" + "operands": "rdx, qword ptr [rax + 0x58]", + "stack_offset": 0 }, { "address": "0x140006d75", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140006d78", "size": 2, "mnemonic": "je", - "operands": "0x140006da1" + "operands": "0x140006da1", + "stack_offset": 0 } ], "successors": [ @@ -113940,13 +128284,15 @@ "address": "0x140006da1", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140006da6", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -113962,19 +128308,22 @@ "address": "0x140006d7a", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rdx + 8]" + "operands": "rbx, qword ptr [rdx + 8]", + "stack_offset": 0 }, { "address": "0x140006d7e", "size": 3, "mnemonic": "cmp", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140006d81", "size": 2, "mnemonic": "je", - "operands": "0x140006d8d" + "operands": "0x140006d8d", + "stack_offset": 0 } ], "successors": [ @@ -113992,37 +128341,43 @@ "address": "0x140006d8d", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140006d92", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x58], rbx" + "operands": "qword ptr [rax + 0x58], rbx", + "stack_offset": 0 }, { "address": "0x140006d96", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140006d9b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140006d9f", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140006da0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -114038,19 +128393,22 @@ "address": "0x140006d83", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140006d86", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140006d89", "size": 2, "mnemonic": "je", - "operands": "0x140006da1" + "operands": "0x140006da1", + "stack_offset": 0 } ], "successors": [ @@ -114068,7 +128426,8 @@ "address": "0x140006d8b", "size": 2, "mnemonic": "jmp", - "operands": "0x140006d7a" + "operands": "0x140006d7a", + "stack_offset": 0 } ], "successors": [ @@ -114091,37 +128450,43 @@ "address": "0x140007010", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140007012", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007016", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140007019", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14000701e", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax + 0x58]" + "operands": "rdx, qword ptr [rax + 0x58]", + "stack_offset": 0 }, { "address": "0x140007022", "size": 2, "mnemonic": "jmp", - "operands": "0x14000702d" + "operands": "0x14000702d", + "stack_offset": 0 } ], "successors": [ @@ -114138,37 +128503,43 @@ "address": "0x14000702d", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140007030", "size": 2, "mnemonic": "jne", - "operands": "0x140007024" + "operands": "0x140007024", + "stack_offset": 0 }, { "address": "0x140007032", "size": 3, "mnemonic": "lea", - "operands": "eax, [rdx + 1]" + "operands": "eax, [rdx + 1]", + "stack_offset": 0 }, { "address": "0x140007035", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007039", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000703a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -114190,97 +128561,113 @@ "address": "0x140009d94", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140009d99", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140009d9a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140009d9e", "size": 3, "mnemonic": "mov", - "operands": "edi, r8d" + "operands": "edi, r8d", + "stack_offset": 0 }, { "address": "0x140009da1", "size": 3, "mnemonic": "mov", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x140009da4", "size": 5, "mnemonic": "call", - "operands": "0x140009cfc" + "operands": "0x140009cfc", + "stack_offset": 0 }, { "address": "0x140009da9", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x140009dab", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140009dad", "size": 2, "mnemonic": "jne", - "operands": "0x140009db7" + "operands": "0x140009db7", + "stack_offset": 0 }, { "address": "0x140009daf", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009db4", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x78], edi" + "operands": "dword ptr [rax + 0x78], edi", + "stack_offset": 0 }, { "address": "0x140009db7", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x140009db9", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140009dbe", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140009dc2", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140009dc3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -114302,43 +128689,50 @@ "address": "0x140007064", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140007069", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000706a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000706e", "size": 3, "mnemonic": "mov", - "operands": "rdi, qword ptr [rcx]" + "operands": "rdi, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140007071", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140007074", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe0434352" + "operands": "dword ptr [rdi], 0xe0434352", + "stack_offset": 0 }, { "address": "0x14000707a", "size": 2, "mnemonic": "je", - "operands": "0x14000708e" + "operands": "0x14000708e", + "stack_offset": 0 } ], "successors": [ @@ -114356,61 +128750,71 @@ "address": "0x14000708e", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140007093", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x30], 0" + "operands": "dword ptr [rax + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140007097", "size": 2, "mnemonic": "jle", - "operands": "0x1400070a1" + "operands": "0x1400070a1", + "stack_offset": 0 }, { "address": "0x140007099", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14000709e", "size": 3, "mnemonic": "dec", - "operands": "dword ptr [rax + 0x30]" + "operands": "dword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x1400070a1", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400070a6", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400070a8", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400070ac", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400070ad", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -114426,13 +128830,15 @@ "address": "0x14000707c", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe0434f4d" + "operands": "dword ptr [rdi], 0xe0434f4d", + "stack_offset": 0 }, { "address": "0x140007082", "size": 2, "mnemonic": "je", - "operands": "0x14000708e" + "operands": "0x14000708e", + "stack_offset": 0 } ], "successors": [ @@ -114450,13 +128856,15 @@ "address": "0x140007084", "size": 6, "mnemonic": "cmp", - "operands": "dword ptr [rdi], 0xe06d7363" + "operands": "dword ptr [rdi], 0xe06d7363", + "stack_offset": 0 }, { "address": "0x14000708a", "size": 2, "mnemonic": "je", - "operands": "0x1400070ae" + "operands": "0x1400070ae", + "stack_offset": 0 } ], "successors": [ @@ -114474,43 +128882,50 @@ "address": "0x1400070ae", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400070b3", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rdi" + "operands": "qword ptr [rax + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x1400070b7", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbx + 8]" + "operands": "rbx, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x1400070bb", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400070c0", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x28], rbx" + "operands": "qword ptr [rax + 0x28], rbx", + "stack_offset": 0 }, { "address": "0x1400070c4", "size": 5, "mnemonic": "call", - "operands": "0x140010b70" + "operands": "0x140010b70", + "stack_offset": 0 }, { "address": "0x1400070c9", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -114526,7 +128941,8 @@ "address": "0x14000708c", "size": 2, "mnemonic": "jmp", - "operands": "0x1400070a1" + "operands": "0x1400070a1", + "stack_offset": 0 } ], "successors": [ @@ -114543,31 +128959,36 @@ "address": "0x1400070a1", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400070a6", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400070a8", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400070ac", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400070ad", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -114601,67 +129022,78 @@ "address": "0x14000a73c", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000a73e", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a742", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x14000a744", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x2861d]" + "operands": "rdx, [rip + 0x2861d]", + "stack_offset": 0 }, { "address": "0x14000a74b", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000a74e", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + rbx*4]" + "operands": "rcx, [rbx + rbx*4]", + "stack_offset": 0 }, { "address": "0x14000a752", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdx + rcx*8]" + "operands": "rcx, [rdx + rcx*8]", + "stack_offset": 0 }, { "address": "0x14000a756", "size": 5, "mnemonic": "mov", - "operands": "edx, 0xfa0" + "operands": "edx, 0xfa0", + "stack_offset": 0 }, { "address": "0x14000a75b", "size": 5, "mnemonic": "call", - "operands": "0x14000aa38" + "operands": "0x14000aa38", + "stack_offset": 0 }, { "address": "0x14000a760", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a762", "size": 2, "mnemonic": "je", - "operands": "0x14000a775" + "operands": "0x14000a775", + "stack_offset": 0 } ], "successors": [ @@ -114679,31 +129111,36 @@ "address": "0x14000a775", "size": 5, "mnemonic": "call", - "operands": "0x14000a784" + "operands": "0x14000a784", + "stack_offset": 0 }, { "address": "0x14000a77a", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14000a77c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a780", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000a781", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -114719,25 +129156,29 @@ "address": "0x14000a764", "size": 6, "mnemonic": "inc", - "operands": "dword ptr [rip + 0x28626]" + "operands": "dword ptr [rip + 0x28626]", + "stack_offset": 0 }, { "address": "0x14000a76a", "size": 2, "mnemonic": "inc", - "operands": "ebx" + "operands": "ebx", + "stack_offset": 0 }, { "address": "0x14000a76c", "size": 3, "mnemonic": "cmp", - "operands": "ebx, 1" + "operands": "ebx, 1", + "stack_offset": 0 }, { "address": "0x14000a76f", "size": 2, "mnemonic": "jb", - "operands": "0x14000a744" + "operands": "0x14000a744", + "stack_offset": 0 } ], "successors": [ @@ -114755,49 +129196,57 @@ "address": "0x14000a744", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x2861d]" + "operands": "rdx, [rip + 0x2861d]", + "stack_offset": 0 }, { "address": "0x14000a74b", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000a74e", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + rbx*4]" + "operands": "rcx, [rbx + rbx*4]", + "stack_offset": 0 }, { "address": "0x14000a752", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdx + rcx*8]" + "operands": "rcx, [rdx + rcx*8]", + "stack_offset": 0 }, { "address": "0x14000a756", "size": 5, "mnemonic": "mov", - "operands": "edx, 0xfa0" + "operands": "edx, 0xfa0", + "stack_offset": 0 }, { "address": "0x14000a75b", "size": 5, "mnemonic": "call", - "operands": "0x14000aa38" + "operands": "0x14000aa38", + "stack_offset": 0 }, { "address": "0x14000a760", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a762", "size": 2, "mnemonic": "je", - "operands": "0x14000a775" + "operands": "0x14000a775", + "stack_offset": 0 } ], "successors": [ @@ -114815,13 +129264,15 @@ "address": "0x14000a771", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14000a773", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a77c" + "operands": "0x14000a77c", + "stack_offset": 0 } ], "successors": [ @@ -114838,19 +129289,22 @@ "address": "0x14000a77c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a780", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000a781", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -114872,13 +129326,15 @@ "address": "0x14000b74c", "size": 2, "mnemonic": "mov", - "operands": "cl, 1" + "operands": "cl, 1", + "stack_offset": 0 }, { "address": "0x14000b74e", "size": 5, "mnemonic": "jmp", - "operands": "0x14000b58c" + "operands": "0x14000b58c", + "stack_offset": 0 } ], "successors": [ @@ -114901,25 +129357,29 @@ "address": "0x140007514", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140007518", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rip + 0x29ba2]" + "operands": "ecx, dword ptr [rip + 0x29ba2]", + "stack_offset": 0 }, { "address": "0x14000751e", "size": 3, "mnemonic": "cmp", - "operands": "ecx, -1" + "operands": "ecx, -1", + "stack_offset": 0 }, { "address": "0x140007521", "size": 2, "mnemonic": "je", - "operands": "0x140007532" + "operands": "0x140007532", + "stack_offset": 0 } ], "successors": [ @@ -114937,19 +129397,22 @@ "address": "0x140007532", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140007534", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140007538", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -114965,31 +129428,36 @@ "address": "0x140007523", "size": 5, "mnemonic": "call", - "operands": "0x14000a954" + "operands": "0x14000a954", + "stack_offset": 0 }, { "address": "0x140007528", "size": 10, "mnemonic": "mov", - "operands": "dword ptr [rip + 0x29b8e], 0xffffffff" + "operands": "dword ptr [rip + 0x29b8e], 0xffffffff", + "stack_offset": 0 }, { "address": "0x140007532", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x140007534", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140007538", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -115011,25 +129479,29 @@ "address": "0x14000a784", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000a786", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a78a", "size": 6, "mnemonic": "mov", - "operands": "ebx, dword ptr [rip + 0x28600]" + "operands": "ebx, dword ptr [rip + 0x28600]", + "stack_offset": 0 }, { "address": "0x14000a790", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a7af" + "operands": "0x14000a7af", + "stack_offset": 0 } ], "successors": [ @@ -115046,37 +129518,43 @@ "address": "0x14000a7af", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x14000a7b1", "size": 2, "mnemonic": "jne", - "operands": "0x14000a792" + "operands": "0x14000a792", + "stack_offset": 0 }, { "address": "0x14000a7b3", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14000a7b5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a7b9", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000a7ba", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -115098,31 +129576,36 @@ "address": "0x14000ca20", "size": 3, "mnemonic": "movsxd", - "operands": "rax, ecx" + "operands": "rax, ecx", + "stack_offset": 0 }, { "address": "0x14000ca23", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rax*4]" + "operands": "rcx, [rax + rax*4]", + "stack_offset": 0 }, { "address": "0x14000ca27", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x263d2]" + "operands": "rax, [rip + 0x263d2]", + "stack_offset": 0 }, { "address": "0x14000ca2e", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rcx*8]" + "operands": "rcx, [rax + rcx*8]", + "stack_offset": 0 }, { "address": "0x14000ca32", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x135d7]" + "operands": "qword ptr [rip + 0x135d7]", + "stack_offset": 0 } ], "successors": [ @@ -115155,91 +129638,106 @@ "address": "0x14000e96c", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000e96e", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000e972", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000e975", "size": 7, "mnemonic": "cmp", - "operands": "byte ptr [rip + 0x2483c], 0" + "operands": "byte ptr [rip + 0x2483c], 0", + "stack_offset": 0 }, { "address": "0x14000e97c", "size": 6, "mnemonic": "jne", - "operands": "0x14000ea20" + "operands": "0x14000ea20", + "stack_offset": 0 }, { "address": "0x14000e982", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14000e987", "size": 6, "mnemonic": "xchg", - "operands": "dword ptr [rip + 0x2481b], eax" + "operands": "dword ptr [rip + 0x2481b], eax", + "stack_offset": 0 }, { "address": "0x14000e98d", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000e990", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rax]" + "operands": "ecx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000e992", "size": 2, "mnemonic": "test", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000e994", "size": 2, "mnemonic": "jne", - "operands": "0x14000e9c9" + "operands": "0x14000e9c9", + "stack_offset": 0 }, { "address": "0x14000e996", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x226a3]" + "operands": "rax, qword ptr [rip + 0x226a3]", + "stack_offset": 0 }, { "address": "0x14000e99d", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0x2480c]" + "operands": "rdx, qword ptr [rip + 0x2480c]", + "stack_offset": 0 }, { "address": "0x14000e9a4", "size": 3, "mnemonic": "cmp", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000e9a7", "size": 2, "mnemonic": "je", - "operands": "0x14000e9c0" + "operands": "0x14000e9c0", + "stack_offset": 0 } ], "successors": [ @@ -115257,13 +129755,15 @@ "address": "0x14000e9c0", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x24839]" + "operands": "rcx, [rip + 0x24839]", + "stack_offset": 0 }, { "address": "0x14000e9c7", "size": 2, "mnemonic": "jmp", - "operands": "0x14000e9d5" + "operands": "0x14000e9d5", + "stack_offset": 0 } ], "successors": [ @@ -115280,61 +129780,71 @@ "address": "0x14000e9a9", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x14000e9ab", "size": 3, "mnemonic": "and", - "operands": "ecx, 0x3f" + "operands": "ecx, 0x3f", + "stack_offset": 0 }, { "address": "0x14000e9ae", "size": 3, "mnemonic": "xor", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000e9b1", "size": 3, "mnemonic": "ror", - "operands": "rax, cl" + "operands": "rax, cl", + "stack_offset": 0 }, { "address": "0x14000e9b4", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000e9b7", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000e9b9", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000e9bb", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x14000e9c0", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x24839]" + "operands": "rcx, [rip + 0x24839]", + "stack_offset": 0 }, { "address": "0x14000e9c7", "size": 2, "mnemonic": "jmp", - "operands": "0x14000e9d5" + "operands": "0x14000e9d5", + "stack_offset": 0 } ], "successors": [ @@ -115351,121 +129861,141 @@ "address": "0x14000e9d5", "size": 5, "mnemonic": "call", - "operands": "0x140010944" + "operands": "0x140010944", + "stack_offset": 0 }, { "address": "0x14000e9da", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000e9db", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000e9de", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rax], 0" + "operands": "dword ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x14000e9e1", "size": 2, "mnemonic": "jne", - "operands": "0x14000e9f6" + "operands": "0x14000e9f6", + "stack_offset": 0 }, { "address": "0x14000e9e3", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x119c6]" + "operands": "rdx, [rip + 0x119c6]", + "stack_offset": 0 }, { "address": "0x14000e9ea", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x1199f]" + "operands": "rcx, [rip + 0x1199f]", + "stack_offset": 0 }, { "address": "0x14000e9f1", "size": 5, "mnemonic": "call", - "operands": "0x14000e8c0" + "operands": "0x14000e8c0", + "stack_offset": 0 }, { "address": "0x14000e9f6", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x119c3]" + "operands": "rdx, [rip + 0x119c3]", + "stack_offset": 0 }, { "address": "0x14000e9fd", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x119b4]" + "operands": "rcx, [rip + 0x119b4]", + "stack_offset": 0 }, { "address": "0x14000ea04", "size": 5, "mnemonic": "call", - "operands": "0x14000e8c0" + "operands": "0x14000e8c0", + "stack_offset": 0 }, { "address": "0x14000ea09", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 8]" + "operands": "rax, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x14000ea0d", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rax], 0" + "operands": "dword ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x14000ea10", "size": 2, "mnemonic": "jne", - "operands": "0x14000ea20" + "operands": "0x14000ea20", + "stack_offset": 0 }, { "address": "0x14000ea12", "size": 7, "mnemonic": "mov", - "operands": "byte ptr [rip + 0x2479f], 1" + "operands": "byte ptr [rip + 0x2479f], 1", + "stack_offset": 0 }, { "address": "0x14000ea19", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 0x10]" + "operands": "rax, qword ptr [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x14000ea1d", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rax], 1" + "operands": "byte ptr [rax], 1", + "stack_offset": 0 }, { "address": "0x14000ea20", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000ea24", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000ea25", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -115487,37 +130017,43 @@ "address": "0x1400191a8", "size": 9, "mnemonic": "mov", - "operands": "rax, qword ptr gs:[0x30]" + "operands": "rax, qword ptr gs:[0x30]", + "stack_offset": 0 }, { "address": "0x1400191b1", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax + 0x60]" + "operands": "rcx, qword ptr [rax + 0x60]", + "stack_offset": 0 }, { "address": "0x1400191b5", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x20]" + "operands": "rax, qword ptr [rcx + 0x20]", + "stack_offset": 0 }, { "address": "0x1400191b9", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rax + 8]" + "operands": "eax, dword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x1400191bc", "size": 3, "mnemonic": "shr", - "operands": "eax, 0x1f" + "operands": "eax, 0x1f", + "stack_offset": 0 }, { "address": "0x1400191bf", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -115539,37 +130075,43 @@ "address": "0x140011db4", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140011db6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011dba", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2430f]" + "operands": "rax, qword ptr [rip + 0x2430f]", + "stack_offset": 0 }, { "address": "0x140011dc1", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140011dc4", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x140011dc8", "size": 2, "mnemonic": "je", - "operands": "0x140011e05" + "operands": "0x140011e05", + "stack_offset": 0 } ], "successors": [ @@ -115587,25 +130129,29 @@ "address": "0x140011e05", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xc0000225" + "operands": "eax, 0xc0000225", + "stack_offset": 0 }, { "address": "0x140011e0a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011e0e", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140011e0f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -115621,55 +130167,64 @@ "address": "0x140011dca", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140011dcd", "size": 2, "mnemonic": "jne", - "operands": "0x140011df1" + "operands": "0x140011df1", + "stack_offset": 0 }, { "address": "0x140011dcf", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x14c02]" + "operands": "r9, [rip + 0x14c02]", + "stack_offset": 0 }, { "address": "0x140011dd6", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x14bf7]" + "operands": "r8, [rip + 0x14bf7]", + "stack_offset": 0 }, { "address": "0x140011ddd", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x14bf4]" + "operands": "rdx, [rip + 0x14bf4]", + "stack_offset": 0 }, { "address": "0x140011de4", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0x1a]" + "operands": "ecx, [rax + 0x1a]", + "stack_offset": 0 }, { "address": "0x140011de7", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x140011dec", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140011def", "size": 2, "mnemonic": "je", - "operands": "0x140011e05" + "operands": "0x140011e05", + "stack_offset": 0 } ], "successors": [ @@ -115687,31 +130242,36 @@ "address": "0x140011df1", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140011df4", "size": 7, "mnemonic": "mov", - "operands": "rcx, 0xfffffffffffffffa" + "operands": "rcx, 0xfffffffffffffffa", + "stack_offset": 0 }, { "address": "0x140011dfb", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011dff", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140011e00", "size": 5, "mnemonic": "jmp", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 } ], "successors": [ @@ -115734,67 +130294,78 @@ "address": "0x140001ab0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140001ab5", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140001ab6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140001aba", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rdx" + "operands": "qword ptr [rcx], rdx", + "stack_offset": 0 }, { "address": "0x140001abd", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140001ac0", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140001ac3", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140001ac6", "size": 4, "mnemonic": "movsxd", - "operands": "r8, dword ptr [rax + 4]" + "operands": "r8, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140001aca", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [r8 + rdx + 0x48]" + "operands": "rcx, qword ptr [r8 + rdx + 0x48]", + "stack_offset": 0 }, { "address": "0x140001acf", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140001ad2", "size": 2, "mnemonic": "je", - "operands": "0x140001ada" + "operands": "0x140001ada", + "stack_offset": 0 } ], "successors": [ @@ -115812,25 +130383,29 @@ "address": "0x140001ada", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x140001add", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140001ae1", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [rcx + rdi + 0x10], 0" + "operands": "dword ptr [rcx + rdi + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140001ae6", "size": 2, "mnemonic": "je", - "operands": "0x140001afa" + "operands": "0x140001afa", + "stack_offset": 0 } ], "successors": [ @@ -115848,37 +130423,43 @@ "address": "0x140001ad4", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140001ad7", "size": 3, "mnemonic": "call", - "operands": "qword ptr [rax + 8]" + "operands": "qword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x140001ada", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x140001add", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140001ae1", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [rcx + rdi + 0x10], 0" + "operands": "dword ptr [rcx + rdi + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140001ae6", "size": 2, "mnemonic": "je", - "operands": "0x140001afa" + "operands": "0x140001afa", + "stack_offset": 0 } ], "successors": [ @@ -115896,19 +130477,22 @@ "address": "0x140001afa", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + rdi + 0x50]" + "operands": "rcx, qword ptr [rcx + rdi + 0x50]", + "stack_offset": 0 }, { "address": "0x140001aff", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140001b02", "size": 2, "mnemonic": "je", - "operands": "0x140001b2e" + "operands": "0x140001b2e", + "stack_offset": 0 } ], "successors": [ @@ -115926,37 +130510,43 @@ "address": "0x140001ae8", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbx + 8], 0" + "operands": "byte ptr [rbx + 8], 0", + "stack_offset": 0 }, { "address": "0x140001aec", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140001aef", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140001af4", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140001af8", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140001af9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -115972,37 +130562,43 @@ "address": "0x140001b2e", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbx + 8], 1" + "operands": "byte ptr [rbx + 8], 1", + "stack_offset": 0 }, { "address": "0x140001b32", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140001b35", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140001b3a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140001b3e", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140001b3f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -116018,13 +130614,15 @@ "address": "0x140001b04", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140001b07", "size": 2, "mnemonic": "je", - "operands": "0x140001b2e" + "operands": "0x140001b2e", + "stack_offset": 0 } ], "successors": [ @@ -116042,67 +130640,78 @@ "address": "0x140001b09", "size": 5, "mnemonic": "call", - "operands": "0x140002000" + "operands": "0x140002000", + "stack_offset": 0 }, { "address": "0x140001b0e", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdi]" + "operands": "rax, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x140001b11", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rax + 4]" + "operands": "rcx, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140001b15", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [rcx + rdi + 0x10], 0" + "operands": "dword ptr [rcx + rdi + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140001b1a", "size": 3, "mnemonic": "sete", - "operands": "al" + "operands": "al", + "stack_offset": 0 }, { "address": "0x140001b1d", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rbx + 8], al" + "operands": "byte ptr [rbx + 8], al", + "stack_offset": 0 }, { "address": "0x140001b20", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140001b23", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140001b28", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140001b2c", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140001b2d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -116124,43 +130733,50 @@ "address": "0x14000747c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140007481", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007482", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007486", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x29c33], -1" + "operands": "dword ptr [rip + 0x29c33], -1", + "stack_offset": 0 }, { "address": "0x14000748d", "size": 2, "mnemonic": "jne", - "operands": "0x140007493" + "operands": "0x140007493", + "stack_offset": 0 }, { "address": "0x14000748f", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140007491", "size": 2, "mnemonic": "jmp", - "operands": "0x1400074be" + "operands": "0x1400074be", + "stack_offset": 0 } ], "successors": [ @@ -116177,25 +130793,29 @@ "address": "0x1400074be", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400074c3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400074c7", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400074c8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -116217,49 +130837,57 @@ "address": "0x1400023ac", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x1400023b0", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x1400023b3", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400023b8", "size": 5, "mnemonic": "call", - "operands": "0x1400022c0" + "operands": "0x1400022c0", + "stack_offset": 0 }, { "address": "0x1400023bd", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x2daac]" + "operands": "rdx, [rip + 0x2daac]", + "stack_offset": 0 }, { "address": "0x1400023c4", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400023c9", "size": 5, "mnemonic": "call", - "operands": "0x140006198" + "operands": "0x140006198", + "stack_offset": 0 }, { "address": "0x1400023ce", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -116281,37 +130909,43 @@ "address": "0x14000d738", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000d73d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000d742", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rdi" + "operands": "qword ptr [rsp + 0x18], rdi", + "stack_offset": 0 }, { "address": "0x14000d747", "size": 2, "mnemonic": "mov", - "operands": "edx, ecx" + "operands": "edx, ecx", + "stack_offset": 0 }, { "address": "0x14000d749", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 1" + "operands": "ecx, 1", + "stack_offset": 0 }, { "address": "0x14000d74c", "size": 2, "mnemonic": "jb", - "operands": "0x14000d7bb" + "operands": "0x14000d7bb", + "stack_offset": 0 } ], "successors": [ @@ -116329,19 +130963,22 @@ "address": "0x14000d7bb", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rdx - 0x13]" + "operands": "ecx, [rdx - 0x13]", + "stack_offset": 0 }, { "address": "0x14000d7be", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 0x11" + "operands": "ecx, 0x11", + "stack_offset": 0 }, { "address": "0x14000d7c1", "size": 2, "mnemonic": "ja", - "operands": "0x14000d7e3" + "operands": "0x14000d7e3", + "stack_offset": 0 } ], "successors": [ @@ -116359,13 +130996,15 @@ "address": "0x14000d74e", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 0xd" + "operands": "ecx, 0xd", + "stack_offset": 0 }, { "address": "0x14000d751", "size": 2, "mnemonic": "ja", - "operands": "0x14000d767" + "operands": "0x14000d767", + "stack_offset": 0 } ], "successors": [ @@ -116383,55 +131022,64 @@ "address": "0x14000d7e3", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x16" + "operands": "eax, 0x16", + "stack_offset": 0 }, { "address": "0x14000d7e8", "size": 6, "mnemonic": "lea", - "operands": "ecx, [rdx - 0xbc]" + "operands": "ecx, [rdx - 0xbc]", + "stack_offset": 0 }, { "address": "0x14000d7ee", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 0xe" + "operands": "ecx, 0xe", + "stack_offset": 0 }, { "address": "0x14000d7f1", "size": 3, "mnemonic": "lea", - "operands": "edx, [rax - 0xe]" + "operands": "edx, [rax - 0xe]", + "stack_offset": 0 }, { "address": "0x14000d7f4", "size": 3, "mnemonic": "cmovbe", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x14000d7f7", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 8]" + "operands": "rbx, qword ptr [rsp + 8]", + "stack_offset": 0 }, { "address": "0x14000d7fc", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x10]" + "operands": "rsi, qword ptr [rsp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000d801", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x18]" + "operands": "rdi, qword ptr [rsp + 0x18]", + "stack_offset": 0 }, { "address": "0x14000d806", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -116447,13 +131095,15 @@ "address": "0x14000d7c3", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xd" + "operands": "eax, 0xd", + "stack_offset": 0 }, { "address": "0x14000d7c8", "size": 2, "mnemonic": "jmp", - "operands": "0x14000d7f7" + "operands": "0x14000d7f7", + "stack_offset": 0 } ], "successors": [ @@ -116470,13 +131120,15 @@ "address": "0x14000d767", "size": 6, "mnemonic": "cmp", - "operands": "edx, 0x718" + "operands": "edx, 0x718", + "stack_offset": 0 }, { "address": "0x14000d76d", "size": 2, "mnemonic": "ja", - "operands": "0x14000d7bb" + "operands": "0x14000d7bb", + "stack_offset": 0 } ], "successors": [ @@ -116494,25 +131146,29 @@ "address": "0x14000d753", "size": 3, "mnemonic": "lea", - "operands": "eax, [rcx - 1]" + "operands": "eax, [rcx - 1]", + "stack_offset": 0 }, { "address": "0x14000d756", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x17ee3]" + "operands": "r9, [rip + 0x17ee3]", + "stack_offset": 0 }, { "address": "0x14000d75d", "size": 5, "mnemonic": "mov", - "operands": "eax, dword ptr [r9 + rax*8 + 4]" + "operands": "eax, dword ptr [r9 + rax*8 + 4]", + "stack_offset": 0 }, { "address": "0x14000d762", "size": 5, "mnemonic": "jmp", - "operands": "0x14000d7f7" + "operands": "0x14000d7f7", + "stack_offset": 0 } ], "successors": [ @@ -116529,25 +131185,29 @@ "address": "0x14000d7f7", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 8]" + "operands": "rbx, qword ptr [rsp + 8]", + "stack_offset": 0 }, { "address": "0x14000d7fc", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x10]" + "operands": "rsi, qword ptr [rsp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000d801", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x18]" + "operands": "rdi, qword ptr [rsp + 0x18]", + "stack_offset": 0 }, { "address": "0x14000d806", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -116563,49 +131223,57 @@ "address": "0x14000d76f", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x2d" + "operands": "ecx, 0x2d", + "stack_offset": 0 }, { "address": "0x14000d774", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x17ec5]" + "operands": "r9, [rip + 0x17ec5]", + "stack_offset": 0 }, { "address": "0x14000d77b", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x14000d77d", "size": 3, "mnemonic": "mov", - "operands": "r10d, esi" + "operands": "r10d, esi", + "stack_offset": 0 }, { "address": "0x14000d780", "size": 3, "mnemonic": "lea", - "operands": "edi, [rcx - 1]" + "operands": "edi, [rcx - 1]", + "stack_offset": 0 }, { "address": "0x14000d783", "size": 3, "mnemonic": "mov", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x14000d786", "size": 3, "mnemonic": "shr", - "operands": "r8, 1" + "operands": "r8, 1", + "stack_offset": 0 }, { "address": "0x14000d789", "size": 2, "mnemonic": "je", - "operands": "0x14000d7ca" + "operands": "0x14000d7ca", + "stack_offset": 0 } ], "successors": [ @@ -116623,13 +131291,15 @@ "address": "0x14000d7ca", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000d7cd", "size": 2, "mnemonic": "je", - "operands": "0x14000d7bb" + "operands": "0x14000d7bb", + "stack_offset": 0 } ], "successors": [ @@ -116647,43 +131317,50 @@ "address": "0x14000d78b", "size": 3, "mnemonic": "test", - "operands": "cl, 1" + "operands": "cl, 1", + "stack_offset": 0 }, { "address": "0x14000d78e", "size": 4, "mnemonic": "lea", - "operands": "rcx, [r8 - 1]" + "operands": "rcx, [r8 - 1]", + "stack_offset": 0 }, { "address": "0x14000d792", "size": 4, "mnemonic": "cmovne", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x14000d796", "size": 4, "mnemonic": "lea", - "operands": "r11, [rcx + r10]" + "operands": "r11, [rcx + r10]", + "stack_offset": 0 }, { "address": "0x14000d79a", "size": 4, "mnemonic": "lea", - "operands": "rax, [r9 + r11*8]" + "operands": "rax, [r9 + r11*8]", + "stack_offset": 0 }, { "address": "0x14000d79e", "size": 2, "mnemonic": "cmp", - "operands": "edx, dword ptr [rax]" + "operands": "edx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000d7a0", "size": 2, "mnemonic": "je", - "operands": "0x14000d7d9" + "operands": "0x14000d7d9", + "stack_offset": 0 } ], "successors": [ @@ -116701,31 +131378,36 @@ "address": "0x14000d7cf", "size": 4, "mnemonic": "lea", - "operands": "rax, [r9 + r10*8]" + "operands": "rax, [r9 + r10*8]", + "stack_offset": 0 }, { "address": "0x14000d7d3", "size": 2, "mnemonic": "cmp", - "operands": "edx, dword ptr [rax]" + "operands": "edx, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000d7d5", "size": 4, "mnemonic": "cmovne", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x14000d7d9", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000d7dc", "size": 2, "mnemonic": "je", - "operands": "0x14000d7bb" + "operands": "0x14000d7bb", + "stack_offset": 0 } ], "successors": [ @@ -116743,13 +131425,15 @@ "address": "0x14000d7d9", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000d7dc", "size": 2, "mnemonic": "je", - "operands": "0x14000d7bb" + "operands": "0x14000d7bb", + "stack_offset": 0 } ], "successors": [ @@ -116767,7 +131451,8 @@ "address": "0x14000d7a2", "size": 2, "mnemonic": "jb", - "operands": "0x14000d7ab" + "operands": "0x14000d7ab", + "stack_offset": 0 } ], "successors": [ @@ -116785,13 +131470,15 @@ "address": "0x14000d7de", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rax + 4]" + "operands": "eax, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x14000d7e1", "size": 2, "mnemonic": "jmp", - "operands": "0x14000d7f7" + "operands": "0x14000d7f7", + "stack_offset": 0 } ], "successors": [ @@ -116808,49 +131495,57 @@ "address": "0x14000d7ab", "size": 4, "mnemonic": "lea", - "operands": "rax, [r11 - 1]" + "operands": "rax, [r11 - 1]", + "stack_offset": 0 }, { "address": "0x14000d7af", "size": 4, "mnemonic": "cmovae", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x14000d7b3", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14000d7b6", "size": 3, "mnemonic": "cmp", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14000d7b9", "size": 2, "mnemonic": "jbe", - "operands": "0x14000d783" + "operands": "0x14000d783", + "stack_offset": 0 }, { "address": "0x14000d7bb", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rdx - 0x13]" + "operands": "ecx, [rdx - 0x13]", + "stack_offset": 0 }, { "address": "0x14000d7be", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 0x11" + "operands": "ecx, 0x11", + "stack_offset": 0 }, { "address": "0x14000d7c1", "size": 2, "mnemonic": "ja", - "operands": "0x14000d7e3" + "operands": "0x14000d7e3", + "stack_offset": 0 } ], "successors": [ @@ -116868,61 +131563,71 @@ "address": "0x14000d7a4", "size": 4, "mnemonic": "lea", - "operands": "r10, [r11 + 1]" + "operands": "r10, [r11 + 1]", + "stack_offset": 0 }, { "address": "0x14000d7a8", "size": 3, "mnemonic": "mov", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x14000d7ab", "size": 4, "mnemonic": "lea", - "operands": "rax, [r11 - 1]" + "operands": "rax, [r11 - 1]", + "stack_offset": 0 }, { "address": "0x14000d7af", "size": 4, "mnemonic": "cmovae", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x14000d7b3", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14000d7b6", "size": 3, "mnemonic": "cmp", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14000d7b9", "size": 2, "mnemonic": "jbe", - "operands": "0x14000d783" + "operands": "0x14000d783", + "stack_offset": 0 }, { "address": "0x14000d7bb", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rdx - 0x13]" + "operands": "ecx, [rdx - 0x13]", + "stack_offset": 0 }, { "address": "0x14000d7be", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 0x11" + "operands": "ecx, 0x11", + "stack_offset": 0 }, { "address": "0x14000d7c1", "size": 2, "mnemonic": "ja", - "operands": "0x14000d7e3" + "operands": "0x14000d7e3", + "stack_offset": 0 } ], "successors": [ @@ -116946,25 +131651,29 @@ "address": "0x140010b90", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140010b94", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x140010b97", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140010b9a", "size": 2, "mnemonic": "je", - "operands": "0x140010ba9" + "operands": "0x140010ba9", + "stack_offset": 0 } ], "successors": [ @@ -116982,37 +131691,43 @@ "address": "0x140010ba9", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x140010bae", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x140010bb4", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x140010bb9", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x16" + "operands": "eax, 0x16", + "stack_offset": 0 }, { "address": "0x140010bbe", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140010bc2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -117028,13 +131743,15 @@ "address": "0x140010b9c", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140010b9f", "size": 2, "mnemonic": "je", - "operands": "0x140010ba9" + "operands": "0x140010ba9", + "stack_offset": 0 } ], "successors": [ @@ -117052,55 +131769,64 @@ "address": "0x140010ba1", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x140010ba4", "size": 2, "mnemonic": "jne", - "operands": "0x140010bc3" + "operands": "0x140010bc3", + "stack_offset": 0 }, { "address": "0x140010ba6", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rcx], r8b" + "operands": "byte ptr [rcx], r8b", + "stack_offset": 0 }, { "address": "0x140010ba9", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x140010bae", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x140010bb4", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x140010bb9", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x16" + "operands": "eax, 0x16", + "stack_offset": 0 }, { "address": "0x140010bbe", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140010bc2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -117122,91 +131848,106 @@ "address": "0x14000ace8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x14000aced", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000acf2", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000acf3", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000acf4", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000acf6", "size": 8, "mnemonic": "lea", - "operands": "rbp, [rsp - 0x4f0]" + "operands": "rbp, [rsp - 0x4f0]", + "stack_offset": 0 }, { "address": "0x14000acfe", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x5f0" + "operands": "rsp, 0x5f0", + "stack_offset": 0 }, { "address": "0x14000ad05", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x26334]" + "operands": "rax, qword ptr [rip + 0x26334]", + "stack_offset": 0 }, { "address": "0x14000ad0c", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x14000ad0f", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rbp + 0x4e0], rax" + "operands": "qword ptr [rbp + 0x4e0], rax", + "stack_offset": 0 }, { "address": "0x14000ad16", "size": 3, "mnemonic": "mov", - "operands": "edi, r8d" + "operands": "edi, r8d", + "stack_offset": 0 }, { "address": "0x14000ad19", "size": 2, "mnemonic": "mov", - "operands": "esi, edx" + "operands": "esi, edx", + "stack_offset": 0 }, { "address": "0x14000ad1b", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14000ad1d", "size": 3, "mnemonic": "cmp", - "operands": "ecx, -1" + "operands": "ecx, -1", + "stack_offset": 0 }, { "address": "0x14000ad20", "size": 2, "mnemonic": "je", - "operands": "0x14000ad27" + "operands": "0x14000ad27", + "stack_offset": 0 } ], "successors": [ @@ -117230,31 +131971,36 @@ "address": "0x14000ca90", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000ca94", "size": 5, "mnemonic": "call", - "operands": "0x140012358" + "operands": "0x140012358", + "stack_offset": 0 }, { "address": "0x14000ca99", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x26400]" + "operands": "rcx, [rip + 0x26400]", + "stack_offset": 0 }, { "address": "0x14000caa0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000caa4", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x13565]" + "operands": "qword ptr [rip + 0x13565]", + "stack_offset": 0 } ], "successors": [ @@ -117277,25 +132023,29 @@ "address": "0x140005134", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140005136", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000513a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000513d", "size": 2, "mnemonic": "jmp", - "operands": "0x14000514e" + "operands": "0x14000514e", + "stack_offset": 0 } ], "successors": [ @@ -117312,19 +132062,22 @@ "address": "0x14000514e", "size": 5, "mnemonic": "call", - "operands": "0x14000cac0" + "operands": "0x14000cac0", + "stack_offset": 0 }, { "address": "0x140005153", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140005156", "size": 2, "mnemonic": "je", - "operands": "0x14000513f" + "operands": "0x14000513f", + "stack_offset": 0 } ], "successors": [ @@ -117342,25 +132095,29 @@ "address": "0x14000513f", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140005142", "size": 5, "mnemonic": "call", - "operands": "0x14000deb0" + "operands": "0x14000deb0", + "stack_offset": 0 }, { "address": "0x140005147", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140005149", "size": 2, "mnemonic": "je", - "operands": "0x14000515e" + "operands": "0x14000515e", + "stack_offset": 0 } ], "successors": [ @@ -117378,19 +132135,22 @@ "address": "0x140005158", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000515c", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000515d", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -117406,13 +132166,15 @@ "address": "0x14000515e", "size": 4, "mnemonic": "cmp", - "operands": "rbx, -1" + "operands": "rbx, -1", + "stack_offset": 0 }, { "address": "0x140005162", "size": 2, "mnemonic": "je", - "operands": "0x14000516a" + "operands": "0x14000516a", + "stack_offset": 0 } ], "successors": [ @@ -117430,25 +132192,29 @@ "address": "0x14000514b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14000514e", "size": 5, "mnemonic": "call", - "operands": "0x14000cac0" + "operands": "0x14000cac0", + "stack_offset": 0 }, { "address": "0x140005153", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140005156", "size": 2, "mnemonic": "je", - "operands": "0x14000513f" + "operands": "0x14000513f", + "stack_offset": 0 } ], "successors": [ @@ -117466,13 +132232,15 @@ "address": "0x14000516a", "size": 5, "mnemonic": "call", - "operands": "0x140001dd0" + "operands": "0x140001dd0", + "stack_offset": 0 }, { "address": "0x14000516f", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -117488,13 +132256,15 @@ "address": "0x140005164", "size": 5, "mnemonic": "call", - "operands": "0x14000238c" + "operands": "0x14000238c", + "stack_offset": 0 }, { "address": "0x140005169", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -117516,43 +132286,50 @@ "address": "0x140002bb8", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140002bba", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140002bbe", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140002bc1", "size": 5, "mnemonic": "call", - "operands": "0x1400047dc" + "operands": "0x1400047dc", + "stack_offset": 0 }, { "address": "0x140002bc6", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x58]" + "operands": "rcx, qword ptr [rbx + 0x58]", + "stack_offset": 0 }, { "address": "0x140002bca", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002bcd", "size": 2, "mnemonic": "je", - "operands": "0x140002bd4" + "operands": "0x140002bd4", + "stack_offset": 0 } ], "successors": [ @@ -117570,25 +132347,29 @@ "address": "0x140002bd4", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x58], 0" + "operands": "qword ptr [rbx + 0x58], 0", + "stack_offset": 0 }, { "address": "0x140002bdc", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x48]" + "operands": "rcx, qword ptr [rbx + 0x48]", + "stack_offset": 0 }, { "address": "0x140002be0", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002be3", "size": 2, "mnemonic": "je", - "operands": "0x140002bea" + "operands": "0x140002bea", + "stack_offset": 0 } ], "successors": [ @@ -117606,31 +132387,36 @@ "address": "0x140002bcf", "size": 5, "mnemonic": "call", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 }, { "address": "0x140002bd4", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x58], 0" + "operands": "qword ptr [rbx + 0x58], 0", + "stack_offset": 0 }, { "address": "0x140002bdc", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x48]" + "operands": "rcx, qword ptr [rbx + 0x48]", + "stack_offset": 0 }, { "address": "0x140002be0", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002be3", "size": 2, "mnemonic": "je", - "operands": "0x140002bea" + "operands": "0x140002bea", + "stack_offset": 0 } ], "successors": [ @@ -117648,25 +132434,29 @@ "address": "0x140002bea", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x48], 0" + "operands": "qword ptr [rbx + 0x48], 0", + "stack_offset": 0 }, { "address": "0x140002bf2", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x38]" + "operands": "rcx, qword ptr [rbx + 0x38]", + "stack_offset": 0 }, { "address": "0x140002bf6", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002bf9", "size": 2, "mnemonic": "je", - "operands": "0x140002c00" + "operands": "0x140002c00", + "stack_offset": 0 } ], "successors": [ @@ -117684,31 +132474,36 @@ "address": "0x140002be5", "size": 5, "mnemonic": "call", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 }, { "address": "0x140002bea", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x48], 0" + "operands": "qword ptr [rbx + 0x48], 0", + "stack_offset": 0 }, { "address": "0x140002bf2", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x38]" + "operands": "rcx, qword ptr [rbx + 0x38]", + "stack_offset": 0 }, { "address": "0x140002bf6", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002bf9", "size": 2, "mnemonic": "je", - "operands": "0x140002c00" + "operands": "0x140002c00", + "stack_offset": 0 } ], "successors": [ @@ -117726,25 +132521,29 @@ "address": "0x140002c00", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x38], 0" + "operands": "qword ptr [rbx + 0x38], 0", + "stack_offset": 0 }, { "address": "0x140002c08", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x28]" + "operands": "rcx, qword ptr [rbx + 0x28]", + "stack_offset": 0 }, { "address": "0x140002c0c", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002c0f", "size": 2, "mnemonic": "je", - "operands": "0x140002c16" + "operands": "0x140002c16", + "stack_offset": 0 } ], "successors": [ @@ -117762,31 +132561,36 @@ "address": "0x140002bfb", "size": 5, "mnemonic": "call", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 }, { "address": "0x140002c00", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x38], 0" + "operands": "qword ptr [rbx + 0x38], 0", + "stack_offset": 0 }, { "address": "0x140002c08", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x28]" + "operands": "rcx, qword ptr [rbx + 0x28]", + "stack_offset": 0 }, { "address": "0x140002c0c", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002c0f", "size": 2, "mnemonic": "je", - "operands": "0x140002c16" + "operands": "0x140002c16", + "stack_offset": 0 } ], "successors": [ @@ -117804,25 +132608,29 @@ "address": "0x140002c16", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x28], 0" + "operands": "qword ptr [rbx + 0x28], 0", + "stack_offset": 0 }, { "address": "0x140002c1e", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x18]" + "operands": "rcx, qword ptr [rbx + 0x18]", + "stack_offset": 0 }, { "address": "0x140002c22", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002c25", "size": 2, "mnemonic": "je", - "operands": "0x140002c2c" + "operands": "0x140002c2c", + "stack_offset": 0 } ], "successors": [ @@ -117840,31 +132648,36 @@ "address": "0x140002c11", "size": 5, "mnemonic": "call", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 }, { "address": "0x140002c16", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x28], 0" + "operands": "qword ptr [rbx + 0x28], 0", + "stack_offset": 0 }, { "address": "0x140002c1e", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x18]" + "operands": "rcx, qword ptr [rbx + 0x18]", + "stack_offset": 0 }, { "address": "0x140002c22", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002c25", "size": 2, "mnemonic": "je", - "operands": "0x140002c2c" + "operands": "0x140002c2c", + "stack_offset": 0 } ], "successors": [ @@ -117882,25 +132695,29 @@ "address": "0x140002c2c", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x18], 0" + "operands": "qword ptr [rbx + 0x18], 0", + "stack_offset": 0 }, { "address": "0x140002c34", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 8]" + "operands": "rcx, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140002c38", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002c3b", "size": 2, "mnemonic": "je", - "operands": "0x140002c42" + "operands": "0x140002c42", + "stack_offset": 0 } ], "successors": [ @@ -117918,31 +132735,36 @@ "address": "0x140002c27", "size": 5, "mnemonic": "call", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 }, { "address": "0x140002c2c", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x18], 0" + "operands": "qword ptr [rbx + 0x18], 0", + "stack_offset": 0 }, { "address": "0x140002c34", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 8]" + "operands": "rcx, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140002c38", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140002c3b", "size": 2, "mnemonic": "je", - "operands": "0x140002c42" + "operands": "0x140002c42", + "stack_offset": 0 } ], "successors": [ @@ -117960,31 +132782,36 @@ "address": "0x140002c42", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], 0" + "operands": "qword ptr [rbx + 8], 0", + "stack_offset": 0 }, { "address": "0x140002c4a", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140002c4d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140002c51", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140002c52", "size": 5, "mnemonic": "jmp", - "operands": "0x140004504" + "operands": "0x140004504", + "stack_offset": 0 } ], "successors": [ @@ -118001,37 +132828,43 @@ "address": "0x140002c3d", "size": 5, "mnemonic": "call", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 }, { "address": "0x140002c42", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], 0" + "operands": "qword ptr [rbx + 8], 0", + "stack_offset": 0 }, { "address": "0x140002c4a", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140002c4d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140002c51", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140002c52", "size": 5, "mnemonic": "jmp", - "operands": "0x140004504" + "operands": "0x140004504", + "stack_offset": 0 } ], "successors": [ @@ -118054,145 +132887,169 @@ "address": "0x1400029cc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x1400029d1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rcx" + "operands": "qword ptr [rsp + 8], rcx", + "stack_offset": 0 }, { "address": "0x1400029d6", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400029d7", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400029db", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x1400029de", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x1400029e1", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x1400029e3", "size": 5, "mnemonic": "call", - "operands": "0x14000448c" + "operands": "0x14000448c", + "stack_offset": 0 }, { "address": "0x1400029e8", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400029e9", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400029eb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rax" + "operands": "qword ptr [rbx + 8], rax", + "stack_offset": 0 }, { "address": "0x1400029ef", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rbx + 0x10], al" + "operands": "byte ptr [rbx + 0x10], al", + "stack_offset": 0 }, { "address": "0x1400029f2", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x18], rax" + "operands": "qword ptr [rbx + 0x18], rax", + "stack_offset": 0 }, { "address": "0x1400029f6", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rbx + 0x20], al" + "operands": "byte ptr [rbx + 0x20], al", + "stack_offset": 0 }, { "address": "0x1400029f9", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x28], rax" + "operands": "qword ptr [rbx + 0x28], rax", + "stack_offset": 0 }, { "address": "0x1400029fd", "size": 4, "mnemonic": "mov", - "operands": "word ptr [rbx + 0x30], ax" + "operands": "word ptr [rbx + 0x30], ax", + "stack_offset": 0 }, { "address": "0x140002a01", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x38], rax" + "operands": "qword ptr [rbx + 0x38], rax", + "stack_offset": 0 }, { "address": "0x140002a05", "size": 4, "mnemonic": "mov", - "operands": "word ptr [rbx + 0x40], ax" + "operands": "word ptr [rbx + 0x40], ax", + "stack_offset": 0 }, { "address": "0x140002a09", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x48], rax" + "operands": "qword ptr [rbx + 0x48], rax", + "stack_offset": 0 }, { "address": "0x140002a0d", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rbx + 0x50], al" + "operands": "byte ptr [rbx + 0x50], al", + "stack_offset": 0 }, { "address": "0x140002a10", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x58], rax" + "operands": "qword ptr [rbx + 0x58], rax", + "stack_offset": 0 }, { "address": "0x140002a14", "size": 3, "mnemonic": "mov", - "operands": "byte ptr [rbx + 0x60], al" + "operands": "byte ptr [rbx + 0x60], al", + "stack_offset": 0 }, { "address": "0x140002a17", "size": 3, "mnemonic": "test", - "operands": "rdi, rdi" + "operands": "rdi, rdi", + "stack_offset": 0 }, { "address": "0x140002a1a", "size": 2, "mnemonic": "je", - "operands": "0x140002a36" + "operands": "0x140002a36", + "stack_offset": 0 } ], "successors": [ @@ -118210,19 +133067,22 @@ "address": "0x140002a36", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x1ea33]" + "operands": "rcx, [rip + 0x1ea33]", + "stack_offset": 0 }, { "address": "0x140002a3d", "size": 5, "mnemonic": "call", - "operands": "0x1400023d0" + "operands": "0x1400023d0", + "stack_offset": 0 }, { "address": "0x140002a42", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -118238,55 +133098,64 @@ "address": "0x140002a1c", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140002a1f", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140002a22", "size": 5, "mnemonic": "call", - "operands": "0x140004770" + "operands": "0x140004770", + "stack_offset": 0 }, { "address": "0x140002a27", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140002a28", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140002a2b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x38]" + "operands": "rbx, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140002a30", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140002a34", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140002a35", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -118308,43 +133177,50 @@ "address": "0x140002a80", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e9b9]" + "operands": "rax, [rip + 0x1e9b9]", + "stack_offset": 0 }, { "address": "0x140002a87", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x10], 0" + "operands": "qword ptr [rcx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x140002a8f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 8], rax" + "operands": "qword ptr [rcx + 8], rax", + "stack_offset": 0 }, { "address": "0x140002a93", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e996]" + "operands": "rax, [rip + 0x1e996]", + "stack_offset": 0 }, { "address": "0x140002a9a", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rax" + "operands": "qword ptr [rcx], rax", + "stack_offset": 0 }, { "address": "0x140002a9d", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140002aa0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -118366,43 +133242,50 @@ "address": "0x14000238c", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x140002390", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140002395", "size": 5, "mnemonic": "call", - "operands": "0x140002260" + "operands": "0x140002260", + "stack_offset": 0 }, { "address": "0x14000239a", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x2da6f]" + "operands": "rdx, [rip + 0x2da6f]", + "stack_offset": 0 }, { "address": "0x1400023a1", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400023a6", "size": 5, "mnemonic": "call", - "operands": "0x140006198" + "operands": "0x140006198", + "stack_offset": 0 }, { "address": "0x1400023ab", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -118424,79 +133307,92 @@ "address": "0x140004910", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140004915", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140004916", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000491a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000491d", "size": 5, "mnemonic": "call", - "operands": "0x14000cf88" + "operands": "0x14000cf88", + "stack_offset": 0 }, { "address": "0x140004922", "size": 5, "mnemonic": "mov", - "operands": "edx, 2" + "operands": "edx, 2", + "stack_offset": 0 }, { "address": "0x140004927", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rbx], eax" + "operands": "dword ptr [rbx], eax", + "stack_offset": 0 }, { "address": "0x140004929", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0x100" + "operands": "ecx, 0x100", + "stack_offset": 0 }, { "address": "0x14000492e", "size": 5, "mnemonic": "call", - "operands": "0x14000d630" + "operands": "0x14000d630", + "stack_offset": 0 }, { "address": "0x140004933", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rax" + "operands": "qword ptr [rbx + 8], rax", + "stack_offset": 0 }, { "address": "0x140004937", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14000493a", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000493d", "size": 2, "mnemonic": "je", - "operands": "0x14000499f" + "operands": "0x14000499f", + "stack_offset": 0 } ], "successors": [ @@ -118514,49 +133410,57 @@ "address": "0x14000499f", "size": 5, "mnemonic": "call", - "operands": "0x14000cdf4" + "operands": "0x14000cdf4", + "stack_offset": 0 }, { "address": "0x1400049a4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rax" + "operands": "qword ptr [rbx + 8], rax", + "stack_offset": 0 }, { "address": "0x1400049a8", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x10], 0" + "operands": "dword ptr [rbx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x1400049af", "size": 5, "mnemonic": "call", - "operands": "0x14000cfb8" + "operands": "0x14000cfb8", + "stack_offset": 0 }, { "address": "0x1400049b4", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax + 8]" + "operands": "rcx, qword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x1400049b8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x18], rcx" + "operands": "qword ptr [rbx + 0x18], rcx", + "stack_offset": 0 }, { "address": "0x1400049bc", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400049bf", "size": 2, "mnemonic": "je", - "operands": "0x1400049ca" + "operands": "0x1400049ca", + "stack_offset": 0 } ], "successors": [ @@ -118574,151 +133478,176 @@ "address": "0x14000493f", "size": 5, "mnemonic": "call", - "operands": "0x14000cdf4" + "operands": "0x14000cdf4", + "stack_offset": 0 }, { "address": "0x140004944", "size": 5, "mnemonic": "mov", - "operands": "ecx, 4" + "operands": "ecx, 4", + "stack_offset": 0 }, { "address": "0x140004949", "size": 3, "mnemonic": "lea", - "operands": "edx, [rcx + 0x7c]" + "operands": "edx, [rcx + 0x7c]", + "stack_offset": 0 }, { "address": "0x14000494c", "size": 3, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax]" + "operands": "xmm0, xmmword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000494f", "size": 3, "mnemonic": "movups", - "operands": "xmmword ptr [rdi], xmm0" + "operands": "xmmword ptr [rdi], xmm0", + "stack_offset": 0 }, { "address": "0x140004952", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x10]" + "operands": "xmm1, xmmword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140004956", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rdi + 0x10], xmm1" + "operands": "xmmword ptr [rdi + 0x10], xmm1", + "stack_offset": 0 }, { "address": "0x14000495a", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x20]" + "operands": "xmm0, xmmword ptr [rax + 0x20]", + "stack_offset": 0 }, { "address": "0x14000495e", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rdi + 0x20], xmm0" + "operands": "xmmword ptr [rdi + 0x20], xmm0", + "stack_offset": 0 }, { "address": "0x140004962", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x30]" + "operands": "xmm1, xmmword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x140004966", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rdi + 0x30], xmm1" + "operands": "xmmword ptr [rdi + 0x30], xmm1", + "stack_offset": 0 }, { "address": "0x14000496a", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x40]" + "operands": "xmm0, xmmword ptr [rax + 0x40]", + "stack_offset": 0 }, { "address": "0x14000496e", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rdi + 0x40], xmm0" + "operands": "xmmword ptr [rdi + 0x40], xmm0", + "stack_offset": 0 }, { "address": "0x140004972", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x50]" + "operands": "xmm1, xmmword ptr [rax + 0x50]", + "stack_offset": 0 }, { "address": "0x140004976", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rdi + 0x50], xmm1" + "operands": "xmmword ptr [rdi + 0x50], xmm1", + "stack_offset": 0 }, { "address": "0x14000497a", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rax + 0x60]" + "operands": "xmm0, xmmword ptr [rax + 0x60]", + "stack_offset": 0 }, { "address": "0x14000497e", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rdi + 0x60], xmm0" + "operands": "xmmword ptr [rdi + 0x60], xmm0", + "stack_offset": 0 }, { "address": "0x140004982", "size": 3, "mnemonic": "add", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140004985", "size": 4, "mnemonic": "movups", - "operands": "xmm1, xmmword ptr [rax + 0x70]" + "operands": "xmm1, xmmword ptr [rax + 0x70]", + "stack_offset": 0 }, { "address": "0x140004989", "size": 3, "mnemonic": "add", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000498c", "size": 4, "mnemonic": "movups", - "operands": "xmmword ptr [rdi - 0x10], xmm1" + "operands": "xmmword ptr [rdi - 0x10], xmm1", + "stack_offset": 0 }, { "address": "0x140004990", "size": 4, "mnemonic": "sub", - "operands": "rcx, 1" + "operands": "rcx, 1", + "stack_offset": 0 }, { "address": "0x140004994", "size": 2, "mnemonic": "jne", - "operands": "0x14000494c" + "operands": "0x14000494c", + "stack_offset": 0 }, { "address": "0x140004996", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rbx + 0x10], 1" + "operands": "dword ptr [rbx + 0x10], 1", + "stack_offset": 0 }, { "address": "0x14000499d", "size": 2, "mnemonic": "jmp", - "operands": "0x1400049af" + "operands": "0x1400049af", + "stack_offset": 0 } ], "successors": [ @@ -118735,31 +133664,36 @@ "address": "0x1400049ca", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x1400049cd", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400049d2", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400049d6", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400049d7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -118775,43 +133709,50 @@ "address": "0x1400049c1", "size": 5, "mnemonic": "call", - "operands": "0x14000d640" + "operands": "0x14000d640", + "stack_offset": 0 }, { "address": "0x1400049c6", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x18], rax" + "operands": "qword ptr [rbx + 0x18], rax", + "stack_offset": 0 }, { "address": "0x1400049ca", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x1400049cd", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400049d2", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400049d6", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400049d7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -118827,31 +133768,36 @@ "address": "0x1400049af", "size": 5, "mnemonic": "call", - "operands": "0x14000cfb8" + "operands": "0x14000cfb8", + "stack_offset": 0 }, { "address": "0x1400049b4", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax + 8]" + "operands": "rcx, qword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x1400049b8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 0x18], rcx" + "operands": "qword ptr [rbx + 0x18], rcx", + "stack_offset": 0 }, { "address": "0x1400049bc", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400049bf", "size": 2, "mnemonic": "je", - "operands": "0x1400049ca" + "operands": "0x1400049ca", + "stack_offset": 0 } ], "successors": [ @@ -118875,37 +133821,43 @@ "address": "0x140015b2c", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015b2e", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140015b32", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1d6ff]" + "operands": "rax, qword ptr [rip + 0x1d6ff]", + "stack_offset": 0 }, { "address": "0x140015b39", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x140015b3c", "size": 3, "mnemonic": "cmp", - "operands": "qword ptr [rdx], rax" + "operands": "qword ptr [rdx], rax", + "stack_offset": 0 }, { "address": "0x140015b3f", "size": 2, "mnemonic": "je", - "operands": "0x140015b57" + "operands": "0x140015b57", + "stack_offset": 0 } ], "successors": [ @@ -118923,19 +133875,22 @@ "address": "0x140015b57", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140015b5b", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015b5c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -118951,49 +133906,57 @@ "address": "0x140015b41", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rcx + 0x3a8]" + "operands": "eax, dword ptr [rcx + 0x3a8]", + "stack_offset": 0 }, { "address": "0x140015b47", "size": 6, "mnemonic": "test", - "operands": "dword ptr [rip + 0x1ba43], eax" + "operands": "dword ptr [rip + 0x1ba43], eax", + "stack_offset": 0 }, { "address": "0x140015b4d", "size": 2, "mnemonic": "jne", - "operands": "0x140015b57" + "operands": "0x140015b57", + "stack_offset": 0 }, { "address": "0x140015b4f", "size": 5, "mnemonic": "call", - "operands": "0x14001a8ec" + "operands": "0x14001a8ec", + "stack_offset": 0 }, { "address": "0x140015b54", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x140015b57", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140015b5b", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015b5c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -119015,19 +133978,22 @@ "address": "0x1400105b0", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rip + 0x22c3e]" + "operands": "eax, dword ptr [rip + 0x22c3e]", + "stack_offset": 0 }, { "address": "0x1400105b6", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400105b7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -119049,49 +134015,57 @@ "address": "0x14000deb0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000deb5", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000deb6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000deba", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000debd", "size": 5, "mnemonic": "call", - "operands": "0x14000df00" + "operands": "0x14000df00", + "stack_offset": 0 }, { "address": "0x14000dec2", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x14000dec4", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000dec7", "size": 2, "mnemonic": "je", - "operands": "0x14000ded8" + "operands": "0x14000ded8", + "stack_offset": 0 } ], "successors": [ @@ -119109,25 +134083,29 @@ "address": "0x14000ded8", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000dedd", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000dee1", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000dee2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -119143,55 +134121,64 @@ "address": "0x14000dec9", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14000decc", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x14000ded1", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000ded3", "size": 3, "mnemonic": "setne", - "operands": "bl" + "operands": "bl", + "stack_offset": 0 }, { "address": "0x14000ded6", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x14000ded8", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000dedd", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000dee1", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000dee2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -119213,13 +134200,15 @@ "address": "0x1400075d8", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rdx]" + "operands": "r8, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400075db", "size": 5, "mnemonic": "jmp", - "operands": "0x1400075e8" + "operands": "0x1400075e8", + "stack_offset": 0 } ], "successors": [ @@ -119236,31 +134225,36 @@ "address": "0x1400075e8", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400075ea", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400075ee", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x1400075f1", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400075f4", "size": 2, "mnemonic": "je", - "operands": "0x140007648" + "operands": "0x140007648", + "stack_offset": 0 } ], "successors": [ @@ -119278,13 +134272,15 @@ "address": "0x140007648", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14000764d", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -119300,31 +134296,36 @@ "address": "0x1400075f6", "size": 4, "mnemonic": "movsxd", - "operands": "r11, dword ptr [rcx + 0x18]" + "operands": "r11, dword ptr [rcx + 0x18]", + "stack_offset": 0 }, { "address": "0x1400075fa", "size": 4, "mnemonic": "mov", - "operands": "r10, qword ptr [rdx + 8]" + "operands": "r10, qword ptr [rdx + 8]", + "stack_offset": 0 }, { "address": "0x1400075fe", "size": 4, "mnemonic": "lea", - "operands": "rax, [r10 + r11]" + "operands": "rax, [r10 + r11]", + "stack_offset": 0 }, { "address": "0x140007602", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140007605", "size": 2, "mnemonic": "je", - "operands": "0x140007648" + "operands": "0x140007648", + "stack_offset": 0 } ], "successors": [ @@ -119342,25 +134343,29 @@ "address": "0x140007607", "size": 4, "mnemonic": "mov", - "operands": "r8d, dword ptr [rcx + 0x14]" + "operands": "r8d, dword ptr [rcx + 0x14]", + "stack_offset": 0 }, { "address": "0x14000760b", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000760e", "size": 3, "mnemonic": "test", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140007611", "size": 2, "mnemonic": "je", - "operands": "0x140007643" + "operands": "0x140007643", + "stack_offset": 0 } ], "successors": [ @@ -119378,13 +134383,15 @@ "address": "0x140007643", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140007646", "size": 2, "mnemonic": "jmp", - "operands": "0x14000763d" + "operands": "0x14000763d", + "stack_offset": 0 } ], "successors": [ @@ -119401,31 +134408,36 @@ "address": "0x140007613", "size": 4, "mnemonic": "lea", - "operands": "rcx, [r11 + r9*8]" + "operands": "rcx, [r11 + r9*8]", + "stack_offset": 0 }, { "address": "0x140007617", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rcx + r10]" + "operands": "rdx, dword ptr [rcx + r10]", + "stack_offset": 0 }, { "address": "0x14000761b", "size": 3, "mnemonic": "add", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000761e", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x140007621", "size": 2, "mnemonic": "jb", - "operands": "0x14000762b" + "operands": "0x14000762b", + "stack_offset": 0 } ], "successors": [ @@ -119443,19 +134455,22 @@ "address": "0x14000763d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007641", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140007642", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -119471,13 +134486,15 @@ "address": "0x14000762b", "size": 3, "mnemonic": "test", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000762e", "size": 2, "mnemonic": "je", - "operands": "0x140007643" + "operands": "0x140007643", + "stack_offset": 0 } ], "successors": [ @@ -119495,19 +134512,22 @@ "address": "0x140007623", "size": 3, "mnemonic": "inc", - "operands": "r9d" + "operands": "r9d", + "stack_offset": 0 }, { "address": "0x140007626", "size": 3, "mnemonic": "cmp", - "operands": "r9d, r8d" + "operands": "r9d, r8d", + "stack_offset": 0 }, { "address": "0x140007629", "size": 2, "mnemonic": "jb", - "operands": "0x140007613" + "operands": "0x140007613", + "stack_offset": 0 } ], "successors": [ @@ -119525,37 +134545,43 @@ "address": "0x140007630", "size": 4, "mnemonic": "lea", - "operands": "ecx, [r9 - 1]" + "operands": "ecx, [r9 - 1]", + "stack_offset": 0 }, { "address": "0x140007634", "size": 4, "mnemonic": "lea", - "operands": "rax, [r10 + rcx*8]" + "operands": "rax, [r10 + rcx*8]", + "stack_offset": 0 }, { "address": "0x140007638", "size": 5, "mnemonic": "mov", - "operands": "eax, dword ptr [rax + r11 + 4]" + "operands": "eax, dword ptr [rax + r11 + 4]", + "stack_offset": 0 }, { "address": "0x14000763d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007641", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140007642", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -119577,91 +134603,106 @@ "address": "0x140007740", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140007745", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000774a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rdi" + "operands": "qword ptr [rsp + 0x18], rdi", + "stack_offset": 0 }, { "address": "0x14000774f", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007751", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007753", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007755", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140007759", "size": 3, "mnemonic": "mov", - "operands": "r14, r9" + "operands": "r14, r9", + "stack_offset": 0 }, { "address": "0x14000775c", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x14000775f", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x140007762", "size": 3, "mnemonic": "mov", - "operands": "r13, rcx" + "operands": "r13, rcx", + "stack_offset": 0 }, { "address": "0x140007765", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140007767", "size": 4, "mnemonic": "movsxd", - "operands": "r15, dword ptr [r8 + 4]" + "operands": "r15, dword ptr [r8 + 4]", + "stack_offset": 0 }, { "address": "0x14000776b", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14000776e", "size": 2, "mnemonic": "je", - "operands": "0x14000777b" + "operands": "0x14000777b", + "stack_offset": 0 } ], "successors": [ @@ -119679,19 +134720,22 @@ "address": "0x14000777b", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x14000777e", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140007781", "size": 6, "mnemonic": "je", - "operands": "0x1400078f6" + "operands": "0x1400078f6", + "stack_offset": 0 } ], "successors": [ @@ -119709,19 +134753,22 @@ "address": "0x140007770", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140007775", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r15 + rax]" + "operands": "rdx, [r15 + rax]", + "stack_offset": 0 }, { "address": "0x140007779", "size": 2, "mnemonic": "jmp", - "operands": "0x14000777e" + "operands": "0x14000777e", + "stack_offset": 0 } ], "successors": [ @@ -119738,55 +134785,64 @@ "address": "0x1400078f6", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400078f8", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400078fd", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x58]" + "operands": "rsi, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140007902", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x60]" + "operands": "rdi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140007907", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000790b", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000790d", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000790f", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007911", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -119802,19 +134858,22 @@ "address": "0x140007787", "size": 4, "mnemonic": "movsxd", - "operands": "r15, dword ptr [rbx + 4]" + "operands": "r15, dword ptr [rbx + 4]", + "stack_offset": 0 }, { "address": "0x14000778b", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x14000778e", "size": 2, "mnemonic": "je", - "operands": "0x14000779b" + "operands": "0x14000779b", + "stack_offset": 0 } ], "successors": [ @@ -119832,13 +134891,15 @@ "address": "0x14000777e", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140007781", "size": 6, "mnemonic": "je", - "operands": "0x1400078f6" + "operands": "0x1400078f6", + "stack_offset": 0 } ], "successors": [ @@ -119856,19 +134917,22 @@ "address": "0x14000779b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14000779e", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 0x10], dil" + "operands": "byte ptr [rcx + 0x10], dil", + "stack_offset": 0 }, { "address": "0x1400077a2", "size": 6, "mnemonic": "je", - "operands": "0x1400078f6" + "operands": "0x1400078f6", + "stack_offset": 0 } ], "successors": [ @@ -119886,19 +134950,22 @@ "address": "0x140007790", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140007795", "size": 4, "mnemonic": "lea", - "operands": "rcx, [r15 + rax]" + "operands": "rcx, [r15 + rax]", + "stack_offset": 0 }, { "address": "0x140007799", "size": 2, "mnemonic": "jmp", - "operands": "0x14000779e" + "operands": "0x14000779e", + "stack_offset": 0 } ], "successors": [ @@ -119915,37 +134982,43 @@ "address": "0x1400077a8", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 8], edi" + "operands": "dword ptr [rbx + 8], edi", + "stack_offset": 0 }, { "address": "0x1400077ab", "size": 2, "mnemonic": "jne", - "operands": "0x1400077b5" + "operands": "0x1400077b5", + "stack_offset": 0 }, { "address": "0x1400077ad", "size": 2, "mnemonic": "cmp", - "operands": "dword ptr [rbx], edi" + "operands": "dword ptr [rbx], edi", + "stack_offset": 0 }, { "address": "0x1400077af", "size": 6, "mnemonic": "jge", - "operands": "0x1400078f6" + "operands": "0x1400078f6", + "stack_offset": 0 }, { "address": "0x1400077b5", "size": 2, "mnemonic": "cmp", - "operands": "dword ptr [rbx], edi" + "operands": "dword ptr [rbx], edi", + "stack_offset": 0 }, { "address": "0x1400077b7", "size": 2, "mnemonic": "jl", - "operands": "0x1400077c3" + "operands": "0x1400077c3", + "stack_offset": 0 } ], "successors": [ @@ -119963,13 +135036,15 @@ "address": "0x14000779e", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 0x10], dil" + "operands": "byte ptr [rcx + 0x10], dil", + "stack_offset": 0 }, { "address": "0x1400077a2", "size": 6, "mnemonic": "je", - "operands": "0x1400078f6" + "operands": "0x1400078f6", + "stack_offset": 0 } ], "successors": [ @@ -119987,13 +135062,15 @@ "address": "0x1400077c3", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rbx], 0x80" + "operands": "byte ptr [rbx], 0x80", + "stack_offset": 0 }, { "address": "0x1400077c6", "size": 2, "mnemonic": "je", - "operands": "0x1400077fa" + "operands": "0x1400077fa", + "stack_offset": 0 } ], "successors": [ @@ -120011,31 +135088,36 @@ "address": "0x1400077b9", "size": 4, "mnemonic": "movsxd", - "operands": "rax, dword ptr [rbx + 8]" + "operands": "rax, dword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x1400077bd", "size": 3, "mnemonic": "add", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x1400077c0", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x1400077c3", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rbx], 0x80" + "operands": "byte ptr [rbx], 0x80", + "stack_offset": 0 }, { "address": "0x1400077c6", "size": 2, "mnemonic": "je", - "operands": "0x1400077fa" + "operands": "0x1400077fa", + "stack_offset": 0 } ], "successors": [ @@ -120053,13 +135135,15 @@ "address": "0x1400077fa", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rbx], 8" + "operands": "byte ptr [rbx], 8", + "stack_offset": 0 }, { "address": "0x1400077fd", "size": 2, "mnemonic": "je", - "operands": "0x14000781a" + "operands": "0x14000781a", + "stack_offset": 0 } ], "successors": [ @@ -120077,13 +135161,15 @@ "address": "0x1400077c8", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r14], 0x10" + "operands": "byte ptr [r14], 0x10", + "stack_offset": 0 }, { "address": "0x1400077cc", "size": 2, "mnemonic": "je", - "operands": "0x1400077fa" + "operands": "0x1400077fa", + "stack_offset": 0 } ], "successors": [ @@ -120101,13 +135187,15 @@ "address": "0x14000781a", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r14], 1" + "operands": "byte ptr [r14], 1", + "stack_offset": 0 }, { "address": "0x14000781e", "size": 2, "mnemonic": "je", - "operands": "0x14000786a" + "operands": "0x14000786a", + "stack_offset": 0 } ], "successors": [ @@ -120125,19 +135213,22 @@ "address": "0x1400077ff", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r13 + 0x28]" + "operands": "rcx, qword ptr [r13 + 0x28]", + "stack_offset": 0 }, { "address": "0x140007803", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140007806", "size": 6, "mnemonic": "je", - "operands": "0x140007917" + "operands": "0x140007917", + "stack_offset": 0 } ], "successors": [ @@ -120155,19 +135246,22 @@ "address": "0x1400077ce", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2b4fb]" + "operands": "rax, qword ptr [rip + 0x2b4fb]", + "stack_offset": 0 }, { "address": "0x1400077d5", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400077d8", "size": 2, "mnemonic": "je", - "operands": "0x1400077fa" + "operands": "0x1400077fa", + "stack_offset": 0 } ], "successors": [ @@ -120185,19 +135279,22 @@ "address": "0x14000786a", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r14 + 0x18]" + "operands": "rbx, dword ptr [r14 + 0x18]", + "stack_offset": 0 }, { "address": "0x14000786e", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140007870", "size": 2, "mnemonic": "je", - "operands": "0x14000787d" + "operands": "0x14000787d", + "stack_offset": 0 } ], "successors": [ @@ -120215,19 +135312,22 @@ "address": "0x140007820", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [r13 + 0x28]" + "operands": "rdx, qword ptr [r13 + 0x28]", + "stack_offset": 0 }, { "address": "0x140007824", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140007827", "size": 6, "mnemonic": "je", - "operands": "0x14000791c" + "operands": "0x14000791c", + "stack_offset": 0 } ], "successors": [ @@ -120245,49 +135345,57 @@ "address": "0x140007917", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14000791c", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007921", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007926", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14000792b", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000792c", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007931", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007932", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -120303,13 +135411,15 @@ "address": "0x14000780c", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x14000780f", "size": 6, "mnemonic": "je", - "operands": "0x140007917" + "operands": "0x140007917", + "stack_offset": 0 } ], "successors": [ @@ -120327,19 +135437,22 @@ "address": "0x1400077da", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x18ae0]" + "operands": "qword ptr [rip + 0x18ae0]", + "stack_offset": 0 }, { "address": "0x1400077e0", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400077e3", "size": 6, "mnemonic": "je", - "operands": "0x140007912" + "operands": "0x140007912", + "stack_offset": 0 } ], "successors": [ @@ -120357,31 +135470,36 @@ "address": "0x14000787d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007880", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140007883", "size": 2, "mnemonic": "jne", - "operands": "0x1400078b9" + "operands": "0x1400078b9", + "stack_offset": 0 }, { "address": "0x140007885", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [r13 + 0x28], rdi" + "operands": "qword ptr [r13 + 0x28], rdi", + "stack_offset": 0 }, { "address": "0x140007889", "size": 6, "mnemonic": "je", - "operands": "0x140007921" + "operands": "0x140007921", + "stack_offset": 0 } ], "successors": [ @@ -120399,19 +135517,22 @@ "address": "0x140007872", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140007877", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + rax]" + "operands": "rcx, [rbx + rax]", + "stack_offset": 0 }, { "address": "0x14000787b", "size": 2, "mnemonic": "jmp", - "operands": "0x140007880" + "operands": "0x140007880", + "stack_offset": 0 } ], "successors": [ @@ -120428,43 +135549,50 @@ "address": "0x14000791c", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007921", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007926", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14000792b", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000792c", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007931", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007932", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -120480,13 +135608,15 @@ "address": "0x14000782d", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x140007830", "size": 6, "mnemonic": "je", - "operands": "0x14000791c" + "operands": "0x14000791c", + "stack_offset": 0 } ], "successors": [ @@ -120504,13 +135634,15 @@ "address": "0x140007815", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rcx" + "operands": "qword ptr [rsi], rcx", + "stack_offset": 0 }, { "address": "0x140007818", "size": 2, "mnemonic": "jmp", - "operands": "0x140007859" + "operands": "0x140007859", + "stack_offset": 0 } ], "successors": [ @@ -120527,55 +135659,64 @@ "address": "0x140007912", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007917", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14000791c", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007921", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007926", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14000792b", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000792c", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007931", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007932", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -120591,13 +135732,15 @@ "address": "0x1400077e9", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x1400077ec", "size": 6, "mnemonic": "je", - "operands": "0x140007912" + "operands": "0x140007912", + "stack_offset": 0 } ], "successors": [ @@ -120615,37 +135758,43 @@ "address": "0x140007921", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007926", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14000792b", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000792c", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007931", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007932", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -120661,13 +135810,15 @@ "address": "0x14000788f", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x140007892", "size": 6, "mnemonic": "je", - "operands": "0x140007921" + "operands": "0x140007921", + "stack_offset": 0 } ], "successors": [ @@ -120685,25 +135836,29 @@ "address": "0x140007880", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140007883", "size": 2, "mnemonic": "jne", - "operands": "0x1400078b9" + "operands": "0x1400078b9", + "stack_offset": 0 }, { "address": "0x140007885", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [r13 + 0x28], rdi" + "operands": "qword ptr [r13 + 0x28], rdi", + "stack_offset": 0 }, { "address": "0x140007889", "size": 6, "mnemonic": "je", - "operands": "0x140007921" + "operands": "0x140007921", + "stack_offset": 0 } ], "successors": [ @@ -120721,43 +135876,50 @@ "address": "0x140007836", "size": 4, "mnemonic": "movsxd", - "operands": "r8, dword ptr [r14 + 0x14]" + "operands": "r8, dword ptr [r14 + 0x14]", + "stack_offset": 0 }, { "address": "0x14000783a", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14000783d", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x140007842", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [r14 + 0x14], 8" + "operands": "dword ptr [r14 + 0x14], 8", + "stack_offset": 0 }, { "address": "0x140007847", "size": 6, "mnemonic": "jne", - "operands": "0x1400078f2" + "operands": "0x1400078f2", + "stack_offset": 0 }, { "address": "0x14000784d", "size": 3, "mnemonic": "cmp", - "operands": "qword ptr [rsi], rdi" + "operands": "qword ptr [rsi], rdi", + "stack_offset": 0 }, { "address": "0x140007850", "size": 6, "mnemonic": "je", - "operands": "0x1400078f2" + "operands": "0x1400078f2", + "stack_offset": 0 } ], "successors": [ @@ -120775,25 +135937,29 @@ "address": "0x140007859", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r14 + 8]" + "operands": "rdx, [r14 + 8]", + "stack_offset": 0 }, { "address": "0x14000785d", "size": 5, "mnemonic": "call", - "operands": "0x140007040" + "operands": "0x140007040", + "stack_offset": 0 }, { "address": "0x140007862", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x140007865", "size": 5, "mnemonic": "jmp", - "operands": "0x1400078f2" + "operands": "0x1400078f2", + "stack_offset": 0 } ], "successors": [ @@ -120810,19 +135976,22 @@ "address": "0x1400077f2", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x1400077f5", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x1400077f8", "size": 2, "mnemonic": "jmp", - "operands": "0x140007859" + "operands": "0x140007859", + "stack_offset": 0 } ], "successors": [ @@ -120839,55 +136008,64 @@ "address": "0x140007898", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r14 + 0x14]" + "operands": "rbx, dword ptr [r14 + 0x14]", + "stack_offset": 0 }, { "address": "0x14000789c", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r14 + 8]" + "operands": "rdx, [r14 + 8]", + "stack_offset": 0 }, { "address": "0x1400078a0", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r13 + 0x28]" + "operands": "rcx, qword ptr [r13 + 0x28]", + "stack_offset": 0 }, { "address": "0x1400078a4", "size": 5, "mnemonic": "call", - "operands": "0x140007040" + "operands": "0x140007040", + "stack_offset": 0 }, { "address": "0x1400078a9", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x1400078ac", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x1400078af", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x1400078b2", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x1400078b7", "size": 2, "mnemonic": "jmp", - "operands": "0x1400078f2" + "operands": "0x1400078f2", + "stack_offset": 0 } ], "successors": [ @@ -120904,13 +136082,15 @@ "address": "0x1400078f2", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x1400078f4", "size": 2, "mnemonic": "jmp", - "operands": "0x1400078f8" + "operands": "0x1400078f8", + "stack_offset": 0 } ], "successors": [ @@ -120927,31 +136107,36 @@ "address": "0x140007856", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsi]" + "operands": "rcx, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140007859", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r14 + 8]" + "operands": "rdx, [r14 + 8]", + "stack_offset": 0 }, { "address": "0x14000785d", "size": 5, "mnemonic": "call", - "operands": "0x140007040" + "operands": "0x140007040", + "stack_offset": 0 }, { "address": "0x140007862", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x140007865", "size": 5, "mnemonic": "jmp", - "operands": "0x1400078f2" + "operands": "0x1400078f2", + "stack_offset": 0 } ], "successors": [ @@ -120968,49 +136153,57 @@ "address": "0x1400078f8", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x1400078fd", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x58]" + "operands": "rsi, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140007902", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x60]" + "operands": "rdi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140007907", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000790b", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000790d", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000790f", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007911", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -121032,25 +136225,29 @@ "address": "0x140007040", "size": 3, "mnemonic": "movsxd", - "operands": "rax, dword ptr [rdx]" + "operands": "rax, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140007043", "size": 3, "mnemonic": "add", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140007046", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdx + 4], 0" + "operands": "dword ptr [rdx + 4], 0", + "stack_offset": 0 }, { "address": "0x14000704a", "size": 2, "mnemonic": "jl", - "operands": "0x140007062" + "operands": "0x140007062", + "stack_offset": 0 } ], "successors": [ @@ -121068,7 +136265,8 @@ "address": "0x140007062", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -121084,43 +136282,50 @@ "address": "0x14000704c", "size": 4, "mnemonic": "movsxd", - "operands": "r9, dword ptr [rdx + 4]" + "operands": "r9, dword ptr [rdx + 4]", + "stack_offset": 0 }, { "address": "0x140007050", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rdx + 8]" + "operands": "rdx, dword ptr [rdx + 8]", + "stack_offset": 0 }, { "address": "0x140007054", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r9 + rcx]" + "operands": "rcx, qword ptr [r9 + rcx]", + "stack_offset": 0 }, { "address": "0x140007058", "size": 4, "mnemonic": "movsxd", - "operands": "r8, dword ptr [rdx + rcx]" + "operands": "r8, dword ptr [rdx + rcx]", + "stack_offset": 0 }, { "address": "0x14000705c", "size": 3, "mnemonic": "add", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x14000705f", "size": 3, "mnemonic": "add", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x140007062", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -121142,19 +136347,22 @@ "address": "0x14000a504", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000a507", "size": 3, "mnemonic": "mov", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x14000a50a", "size": 3, "mnemonic": "jmp", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 } ], "successors": [ @@ -121176,31 +136384,36 @@ "address": "0x14000a510", "size": 3, "mnemonic": "mov", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x14000a513", "size": 3, "mnemonic": "mov", - "operands": "r10, rdx" + "operands": "r10, rdx", + "stack_offset": 0 }, { "address": "0x14000a516", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000a519", "size": 3, "mnemonic": "mov", - "operands": "r8d, r9d" + "operands": "r8d, r9d", + "stack_offset": 0 }, { "address": "0x14000a51c", "size": 3, "mnemonic": "jmp", - "operands": "r10" + "operands": "r10", + "stack_offset": 0 } ], "successors": [ @@ -121222,91 +136435,106 @@ "address": "0x140007934", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140007939", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000793e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rdi" + "operands": "qword ptr [rsp + 0x18], rdi", + "stack_offset": 0 }, { "address": "0x140007943", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007945", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007947", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007949", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000794d", "size": 3, "mnemonic": "mov", - "operands": "r14, r9" + "operands": "r14, r9", + "stack_offset": 0 }, { "address": "0x140007950", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x140007953", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x140007956", "size": 3, "mnemonic": "mov", - "operands": "r13, rcx" + "operands": "r13, rcx", + "stack_offset": 0 }, { "address": "0x140007959", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14000795b", "size": 4, "mnemonic": "movsxd", - "operands": "r15, dword ptr [r8 + 8]" + "operands": "r15, dword ptr [r8 + 8]", + "stack_offset": 0 }, { "address": "0x14000795f", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x140007962", "size": 2, "mnemonic": "je", - "operands": "0x14000796f" + "operands": "0x14000796f", + "stack_offset": 0 } ], "successors": [ @@ -121324,19 +136552,22 @@ "address": "0x14000796f", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140007972", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140007975", "size": 6, "mnemonic": "je", - "operands": "0x140007aed" + "operands": "0x140007aed", + "stack_offset": 0 } ], "successors": [ @@ -121354,19 +136585,22 @@ "address": "0x140007964", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140007969", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r15 + rax]" + "operands": "rdx, [r15 + rax]", + "stack_offset": 0 }, { "address": "0x14000796d", "size": 2, "mnemonic": "jmp", - "operands": "0x140007972" + "operands": "0x140007972", + "stack_offset": 0 } ], "successors": [ @@ -121383,55 +136617,64 @@ "address": "0x140007aed", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140007aef", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140007af4", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x58]" + "operands": "rsi, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140007af9", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x60]" + "operands": "rdi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140007afe", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140007b02", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007b04", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007b06", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007b08", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -121447,19 +136690,22 @@ "address": "0x14000797b", "size": 4, "mnemonic": "movsxd", - "operands": "r15, dword ptr [rbx + 8]" + "operands": "r15, dword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x14000797f", "size": 3, "mnemonic": "test", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x140007982", "size": 2, "mnemonic": "je", - "operands": "0x14000798f" + "operands": "0x14000798f", + "stack_offset": 0 } ], "successors": [ @@ -121477,13 +136723,15 @@ "address": "0x140007972", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140007975", "size": 6, "mnemonic": "je", - "operands": "0x140007aed" + "operands": "0x140007aed", + "stack_offset": 0 } ], "successors": [ @@ -121501,19 +136749,22 @@ "address": "0x14000798f", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007992", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 0x10], dil" + "operands": "byte ptr [rcx + 0x10], dil", + "stack_offset": 0 }, { "address": "0x140007996", "size": 6, "mnemonic": "je", - "operands": "0x140007aed" + "operands": "0x140007aed", + "stack_offset": 0 } ], "successors": [ @@ -121531,19 +136782,22 @@ "address": "0x140007984", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140007989", "size": 4, "mnemonic": "lea", - "operands": "rcx, [r15 + rax]" + "operands": "rcx, [r15 + rax]", + "stack_offset": 0 }, { "address": "0x14000798d", "size": 2, "mnemonic": "jmp", - "operands": "0x140007992" + "operands": "0x140007992", + "stack_offset": 0 } ], "successors": [ @@ -121560,37 +136814,43 @@ "address": "0x14000799c", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0xc], edi" + "operands": "dword ptr [rbx + 0xc], edi", + "stack_offset": 0 }, { "address": "0x14000799f", "size": 2, "mnemonic": "jne", - "operands": "0x1400079aa" + "operands": "0x1400079aa", + "stack_offset": 0 }, { "address": "0x1400079a1", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 4], edi" + "operands": "dword ptr [rbx + 4], edi", + "stack_offset": 0 }, { "address": "0x1400079a4", "size": 6, "mnemonic": "jge", - "operands": "0x140007aed" + "operands": "0x140007aed", + "stack_offset": 0 }, { "address": "0x1400079aa", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 4], edi" + "operands": "dword ptr [rbx + 4], edi", + "stack_offset": 0 }, { "address": "0x1400079ad", "size": 2, "mnemonic": "jl", - "operands": "0x1400079b8" + "operands": "0x1400079b8", + "stack_offset": 0 } ], "successors": [ @@ -121608,13 +136868,15 @@ "address": "0x140007992", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rcx + 0x10], dil" + "operands": "byte ptr [rcx + 0x10], dil", + "stack_offset": 0 }, { "address": "0x140007996", "size": 6, "mnemonic": "je", - "operands": "0x140007aed" + "operands": "0x140007aed", + "stack_offset": 0 } ], "successors": [ @@ -121632,13 +136894,15 @@ "address": "0x1400079b8", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbx + 4], 0x80" + "operands": "byte ptr [rbx + 4], 0x80", + "stack_offset": 0 }, { "address": "0x1400079bc", "size": 2, "mnemonic": "je", - "operands": "0x1400079f0" + "operands": "0x1400079f0", + "stack_offset": 0 } ], "successors": [ @@ -121656,31 +136920,36 @@ "address": "0x1400079af", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbx + 0xc]" + "operands": "eax, dword ptr [rbx + 0xc]", + "stack_offset": 0 }, { "address": "0x1400079b2", "size": 3, "mnemonic": "add", - "operands": "rax, qword ptr [rsi]" + "operands": "rax, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x1400079b5", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x1400079b8", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbx + 4], 0x80" + "operands": "byte ptr [rbx + 4], 0x80", + "stack_offset": 0 }, { "address": "0x1400079bc", "size": 2, "mnemonic": "je", - "operands": "0x1400079f0" + "operands": "0x1400079f0", + "stack_offset": 0 } ], "successors": [ @@ -121698,13 +136967,15 @@ "address": "0x1400079f0", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbx + 4], 8" + "operands": "byte ptr [rbx + 4], 8", + "stack_offset": 0 }, { "address": "0x1400079f4", "size": 2, "mnemonic": "je", - "operands": "0x140007a11" + "operands": "0x140007a11", + "stack_offset": 0 } ], "successors": [ @@ -121722,13 +136993,15 @@ "address": "0x1400079be", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r14], 0x10" + "operands": "byte ptr [r14], 0x10", + "stack_offset": 0 }, { "address": "0x1400079c2", "size": 2, "mnemonic": "je", - "operands": "0x1400079f0" + "operands": "0x1400079f0", + "stack_offset": 0 } ], "successors": [ @@ -121746,13 +137019,15 @@ "address": "0x140007a11", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r14], 1" + "operands": "byte ptr [r14], 1", + "stack_offset": 0 }, { "address": "0x140007a15", "size": 2, "mnemonic": "je", - "operands": "0x140007a61" + "operands": "0x140007a61", + "stack_offset": 0 } ], "successors": [ @@ -121770,19 +137045,22 @@ "address": "0x1400079f6", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r13 + 0x28]" + "operands": "rcx, qword ptr [r13 + 0x28]", + "stack_offset": 0 }, { "address": "0x1400079fa", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400079fd", "size": 6, "mnemonic": "je", - "operands": "0x140007b0e" + "operands": "0x140007b0e", + "stack_offset": 0 } ], "successors": [ @@ -121800,19 +137078,22 @@ "address": "0x1400079c4", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2b305]" + "operands": "rax, qword ptr [rip + 0x2b305]", + "stack_offset": 0 }, { "address": "0x1400079cb", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400079ce", "size": 2, "mnemonic": "je", - "operands": "0x1400079f0" + "operands": "0x1400079f0", + "stack_offset": 0 } ], "successors": [ @@ -121830,19 +137111,22 @@ "address": "0x140007a61", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r14 + 0x18]" + "operands": "rbx, dword ptr [r14 + 0x18]", + "stack_offset": 0 }, { "address": "0x140007a65", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140007a67", "size": 2, "mnemonic": "je", - "operands": "0x140007a74" + "operands": "0x140007a74", + "stack_offset": 0 } ], "successors": [ @@ -121860,19 +137144,22 @@ "address": "0x140007a17", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [r13 + 0x28]" + "operands": "rdx, qword ptr [r13 + 0x28]", + "stack_offset": 0 }, { "address": "0x140007a1b", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140007a1e", "size": 6, "mnemonic": "je", - "operands": "0x140007b13" + "operands": "0x140007b13", + "stack_offset": 0 } ], "successors": [ @@ -121890,49 +137177,57 @@ "address": "0x140007b0e", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b13", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b18", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b1d", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b22", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007b23", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b28", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007b29", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -121948,13 +137243,15 @@ "address": "0x140007a03", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x140007a06", "size": 6, "mnemonic": "je", - "operands": "0x140007b0e" + "operands": "0x140007b0e", + "stack_offset": 0 } ], "successors": [ @@ -121972,19 +137269,22 @@ "address": "0x1400079d0", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x188ea]" + "operands": "qword ptr [rip + 0x188ea]", + "stack_offset": 0 }, { "address": "0x1400079d6", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400079d9", "size": 6, "mnemonic": "je", - "operands": "0x140007b09" + "operands": "0x140007b09", + "stack_offset": 0 } ], "successors": [ @@ -122002,31 +137302,36 @@ "address": "0x140007a74", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140007a77", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140007a7a", "size": 2, "mnemonic": "jne", - "operands": "0x140007ab0" + "operands": "0x140007ab0", + "stack_offset": 0 }, { "address": "0x140007a7c", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [r13 + 0x28], rdi" + "operands": "qword ptr [r13 + 0x28], rdi", + "stack_offset": 0 }, { "address": "0x140007a80", "size": 6, "mnemonic": "je", - "operands": "0x140007b18" + "operands": "0x140007b18", + "stack_offset": 0 } ], "successors": [ @@ -122044,19 +137349,22 @@ "address": "0x140007a69", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x140007a6e", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + rax]" + "operands": "rcx, [rbx + rax]", + "stack_offset": 0 }, { "address": "0x140007a72", "size": 2, "mnemonic": "jmp", - "operands": "0x140007a77" + "operands": "0x140007a77", + "stack_offset": 0 } ], "successors": [ @@ -122073,43 +137381,50 @@ "address": "0x140007b13", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b18", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b1d", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b22", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007b23", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b28", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007b29", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -122125,13 +137440,15 @@ "address": "0x140007a24", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x140007a27", "size": 6, "mnemonic": "je", - "operands": "0x140007b13" + "operands": "0x140007b13", + "stack_offset": 0 } ], "successors": [ @@ -122149,13 +137466,15 @@ "address": "0x140007a0c", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rcx" + "operands": "qword ptr [rsi], rcx", + "stack_offset": 0 }, { "address": "0x140007a0f", "size": 2, "mnemonic": "jmp", - "operands": "0x140007a50" + "operands": "0x140007a50", + "stack_offset": 0 } ], "successors": [ @@ -122172,55 +137491,64 @@ "address": "0x140007b09", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b0e", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b13", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b18", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b1d", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b22", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007b23", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b28", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007b29", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -122236,13 +137564,15 @@ "address": "0x1400079df", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x1400079e2", "size": 6, "mnemonic": "je", - "operands": "0x140007b09" + "operands": "0x140007b09", + "stack_offset": 0 } ], "successors": [ @@ -122260,37 +137590,43 @@ "address": "0x140007b18", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b1d", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b22", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007b23", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140007b28", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140007b29", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -122306,13 +137642,15 @@ "address": "0x140007a86", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x140007a89", "size": 6, "mnemonic": "je", - "operands": "0x140007b18" + "operands": "0x140007b18", + "stack_offset": 0 } ], "successors": [ @@ -122330,25 +137668,29 @@ "address": "0x140007a77", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140007a7a", "size": 2, "mnemonic": "jne", - "operands": "0x140007ab0" + "operands": "0x140007ab0", + "stack_offset": 0 }, { "address": "0x140007a7c", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [r13 + 0x28], rdi" + "operands": "qword ptr [r13 + 0x28], rdi", + "stack_offset": 0 }, { "address": "0x140007a80", "size": 6, "mnemonic": "je", - "operands": "0x140007b18" + "operands": "0x140007b18", + "stack_offset": 0 } ], "successors": [ @@ -122366,43 +137708,50 @@ "address": "0x140007a2d", "size": 4, "mnemonic": "movsxd", - "operands": "r8, dword ptr [r14 + 0x14]" + "operands": "r8, dword ptr [r14 + 0x14]", + "stack_offset": 0 }, { "address": "0x140007a31", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140007a34", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x140007a39", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [r14 + 0x14], 8" + "operands": "dword ptr [r14 + 0x14], 8", + "stack_offset": 0 }, { "address": "0x140007a3e", "size": 6, "mnemonic": "jne", - "operands": "0x140007ae9" + "operands": "0x140007ae9", + "stack_offset": 0 }, { "address": "0x140007a44", "size": 3, "mnemonic": "cmp", - "operands": "qword ptr [rsi], rdi" + "operands": "qword ptr [rsi], rdi", + "stack_offset": 0 }, { "address": "0x140007a47", "size": 6, "mnemonic": "je", - "operands": "0x140007ae9" + "operands": "0x140007ae9", + "stack_offset": 0 } ], "successors": [ @@ -122420,25 +137769,29 @@ "address": "0x140007a50", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r14 + 8]" + "operands": "rdx, [r14 + 8]", + "stack_offset": 0 }, { "address": "0x140007a54", "size": 5, "mnemonic": "call", - "operands": "0x140007040" + "operands": "0x140007040", + "stack_offset": 0 }, { "address": "0x140007a59", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x140007a5c", "size": 5, "mnemonic": "jmp", - "operands": "0x140007ae9" + "operands": "0x140007ae9", + "stack_offset": 0 } ], "successors": [ @@ -122455,19 +137808,22 @@ "address": "0x1400079e8", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x1400079eb", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x1400079ee", "size": 2, "mnemonic": "jmp", - "operands": "0x140007a50" + "operands": "0x140007a50", + "stack_offset": 0 } ], "successors": [ @@ -122484,55 +137840,64 @@ "address": "0x140007a8f", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [r14 + 0x14]" + "operands": "rbx, dword ptr [r14 + 0x14]", + "stack_offset": 0 }, { "address": "0x140007a93", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r14 + 8]" + "operands": "rdx, [r14 + 8]", + "stack_offset": 0 }, { "address": "0x140007a97", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r13 + 0x28]" + "operands": "rcx, qword ptr [r13 + 0x28]", + "stack_offset": 0 }, { "address": "0x140007a9b", "size": 5, "mnemonic": "call", - "operands": "0x140007040" + "operands": "0x140007040", + "stack_offset": 0 }, { "address": "0x140007aa0", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140007aa3", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x140007aa6", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140007aa9", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x140007aae", "size": 2, "mnemonic": "jmp", - "operands": "0x140007ae9" + "operands": "0x140007ae9", + "stack_offset": 0 } ], "successors": [ @@ -122549,13 +137914,15 @@ "address": "0x140007ae9", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140007aeb", "size": 2, "mnemonic": "jmp", - "operands": "0x140007aef" + "operands": "0x140007aef", + "stack_offset": 0 } ], "successors": [ @@ -122572,31 +137939,36 @@ "address": "0x140007a4d", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsi]" + "operands": "rcx, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140007a50", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r14 + 8]" + "operands": "rdx, [r14 + 8]", + "stack_offset": 0 }, { "address": "0x140007a54", "size": 5, "mnemonic": "call", - "operands": "0x140007040" + "operands": "0x140007040", + "stack_offset": 0 }, { "address": "0x140007a59", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rsi], rax" + "operands": "qword ptr [rsi], rax", + "stack_offset": 0 }, { "address": "0x140007a5c", "size": 5, "mnemonic": "jmp", - "operands": "0x140007ae9" + "operands": "0x140007ae9", + "stack_offset": 0 } ], "successors": [ @@ -122613,49 +137985,57 @@ "address": "0x140007aef", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140007af4", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x58]" + "operands": "rsi, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140007af9", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x60]" + "operands": "rdi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140007afe", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140007b02", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140007b04", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140007b06", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140007b08", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -122677,73 +138057,85 @@ "address": "0x140007564", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140007566", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000756a", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x40]" + "operands": "r9, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000756f", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x140007572", "size": 5, "mnemonic": "call", - "operands": "0x140006544" + "operands": "0x140006544", + "stack_offset": 0 }, { "address": "0x140007577", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000757a", "size": 4, "mnemonic": "movsxd", - "operands": "rax, dword ptr [rbx + 0x1c]" + "operands": "rax, dword ptr [rbx + 0x1c]", + "stack_offset": 0 }, { "address": "0x14000757e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rcx" + "operands": "qword ptr [rsp + 0x40], rcx", + "stack_offset": 0 }, { "address": "0x140007583", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [rax + rcx + 4]" + "operands": "eax, dword ptr [rax + rcx + 4]", + "stack_offset": 0 }, { "address": "0x140007587", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000758b", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000758c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -122765,25 +138157,29 @@ "address": "0x140007590", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rdx + 0x1c]" + "operands": "rdx, dword ptr [rdx + 0x1c]", + "stack_offset": 0 }, { "address": "0x140007594", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140007597", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rdx + rax], r8d" + "operands": "dword ptr [rdx + rax], r8d", + "stack_offset": 0 }, { "address": "0x14000759b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -122805,103 +138201,120 @@ "address": "0x14000759c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400075a1", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400075a2", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400075a6", "size": 3, "mnemonic": "mov", - "operands": "edi, r9d" + "operands": "edi, r9d", + "stack_offset": 0 }, { "address": "0x1400075a9", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x1400075ac", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x40]" + "operands": "r9, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400075b1", "size": 5, "mnemonic": "call", - "operands": "0x140006544" + "operands": "0x140006544", + "stack_offset": 0 }, { "address": "0x1400075b6", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400075b9", "size": 4, "mnemonic": "movsxd", - "operands": "rax, dword ptr [rbx + 0x1c]" + "operands": "rax, dword ptr [rbx + 0x1c]", + "stack_offset": 0 }, { "address": "0x1400075bd", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rcx" + "operands": "qword ptr [rsp + 0x40], rcx", + "stack_offset": 0 }, { "address": "0x1400075c2", "size": 4, "mnemonic": "cmp", - "operands": "edi, dword ptr [rax + rcx + 4]" + "operands": "edi, dword ptr [rax + rcx + 4]", + "stack_offset": 0 }, { "address": "0x1400075c6", "size": 2, "mnemonic": "jle", - "operands": "0x1400075cc" + "operands": "0x1400075cc", + "stack_offset": 0 }, { "address": "0x1400075c8", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rax + rcx + 4], edi" + "operands": "dword ptr [rax + rcx + 4], edi", + "stack_offset": 0 }, { "address": "0x1400075cc", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400075d1", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400075d5", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400075d6", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -122923,73 +138336,85 @@ "address": "0x14001667c", "size": 3, "mnemonic": "mov", - "operands": "r11, rsp" + "operands": "r11, rsp", + "stack_offset": 0 }, { "address": "0x14001667f", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140016683", "size": 5, "mnemonic": "mov", - "operands": "eax, 3" + "operands": "eax, 3", + "stack_offset": 0 }, { "address": "0x140016688", "size": 4, "mnemonic": "lea", - "operands": "r9, [r11 + 0x10]" + "operands": "r9, [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x14001668c", "size": 4, "mnemonic": "lea", - "operands": "r8, [r11 + 8]" + "operands": "r8, [r11 + 8]", + "stack_offset": 0 }, { "address": "0x140016690", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], eax" + "operands": "dword ptr [rsp + 0x38], eax", + "stack_offset": 0 }, { "address": "0x140016694", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r11 + 0x18]" + "operands": "rdx, [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140016698", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], eax" + "operands": "dword ptr [rsp + 0x40], eax", + "stack_offset": 0 }, { "address": "0x14001669c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [r11 + 8]" + "operands": "rcx, [r11 + 8]", + "stack_offset": 0 }, { "address": "0x1400166a0", "size": 5, "mnemonic": "call", - "operands": "0x140016634" + "operands": "0x140016634", + "stack_offset": 0 }, { "address": "0x1400166a5", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400166a9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -123011,97 +138436,113 @@ "address": "0x1400166cc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbx" + "operands": "qword ptr [rsp + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x1400166d1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x1400166d6", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400166d7", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x1400166d9", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x1400166db", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400166dd", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x1400166df", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x1400166e3", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x1400166e5", "size": 3, "mnemonic": "xor", - "operands": "r15d, r15d" + "operands": "r15d, r15d", + "stack_offset": 0 }, { "address": "0x1400166e8", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x78], r15d" + "operands": "dword ptr [rsp + 0x78], r15d", + "stack_offset": 0 }, { "address": "0x1400166ed", "size": 3, "mnemonic": "mov", - "operands": "r14b, 1" + "operands": "r14b, 1", + "stack_offset": 0 }, { "address": "0x1400166f0", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x70], r14b" + "operands": "byte ptr [rsp + 0x70], r14b", + "stack_offset": 0 }, { "address": "0x1400166f5", "size": 2, "mnemonic": "mov", - "operands": "edx, ecx" + "operands": "edx, ecx", + "stack_offset": 0 }, { "address": "0x1400166f7", "size": 3, "mnemonic": "sub", - "operands": "edx, 2" + "operands": "edx, 2", + "stack_offset": 0 }, { "address": "0x1400166fa", "size": 2, "mnemonic": "je", - "operands": "0x140016723" + "operands": "0x140016723", + "stack_offset": 0 } ], "successors": [ @@ -123119,13 +138560,15 @@ "address": "0x140016723", "size": 3, "mnemonic": "sub", - "operands": "ecx, 2" + "operands": "ecx, 2", + "stack_offset": 0 }, { "address": "0x140016726", "size": 6, "mnemonic": "je", - "operands": "0x1400167e0" + "operands": "0x1400167e0", + "stack_offset": 0 } ], "successors": [ @@ -123143,13 +138586,15 @@ "address": "0x1400166fc", "size": 3, "mnemonic": "sub", - "operands": "edx, 2" + "operands": "edx, 2", + "stack_offset": 0 }, { "address": "0x1400166ff", "size": 2, "mnemonic": "je", - "operands": "0x140016753" + "operands": "0x140016753", + "stack_offset": 0 } ], "successors": [ @@ -123167,25 +138612,29 @@ "address": "0x1400167e0", "size": 7, "mnemonic": "lea", - "operands": "rdi, [rip + 0x1cf31]" + "operands": "rdi, [rip + 0x1cf31]", + "stack_offset": 0 }, { "address": "0x1400167e7", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x1400167ea", "size": 3, "mnemonic": "test", - "operands": "r14b, r14b" + "operands": "r14b, r14b", + "stack_offset": 0 }, { "address": "0x1400167ed", "size": 2, "mnemonic": "je", - "operands": "0x1400167f9" + "operands": "0x1400167f9", + "stack_offset": 0 } ], "successors": [ @@ -123203,13 +138652,15 @@ "address": "0x14001672c", "size": 3, "mnemonic": "sub", - "operands": "ecx, 4" + "operands": "ecx, 4", + "stack_offset": 0 }, { "address": "0x14001672f", "size": 6, "mnemonic": "je", - "operands": "0x1400167c5" + "operands": "0x1400167c5", + "stack_offset": 0 } ], "successors": [ @@ -123227,91 +138678,106 @@ "address": "0x140016753", "size": 5, "mnemonic": "call", - "operands": "0x140011924" + "operands": "0x140011924", + "stack_offset": 0 }, { "address": "0x140016758", "size": 3, "mnemonic": "mov", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x14001675b", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001675e", "size": 2, "mnemonic": "jne", - "operands": "0x14001677d" + "operands": "0x14001677d", + "stack_offset": 0 }, { "address": "0x140016760", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140016763", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x40]" + "operands": "r11, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140016768", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x40]" + "operands": "rbx, qword ptr [r11 + 0x40]", + "stack_offset": 0 }, { "address": "0x14001676c", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x48]" + "operands": "rsi, qword ptr [r11 + 0x48]", + "stack_offset": 0 }, { "address": "0x140016770", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140016773", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016775", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140016777", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140016779", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001677b", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001677c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -123327,13 +138793,15 @@ "address": "0x140016701", "size": 3, "mnemonic": "sub", - "operands": "edx, 2" + "operands": "edx, 2", + "stack_offset": 0 }, { "address": "0x140016704", "size": 2, "mnemonic": "je", - "operands": "0x140016723" + "operands": "0x140016723", + "stack_offset": 0 } ], "successors": [ @@ -123351,19 +138819,22 @@ "address": "0x1400167f9", "size": 3, "mnemonic": "mov", - "operands": "rsi, qword ptr [rdi]" + "operands": "rsi, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x1400167fc", "size": 3, "mnemonic": "test", - "operands": "r14b, r14b" + "operands": "r14b, r14b", + "stack_offset": 0 }, { "address": "0x1400167ff", "size": 2, "mnemonic": "je", - "operands": "0x140016813" + "operands": "0x140016813", + "stack_offset": 0 } ], "successors": [ @@ -123381,37 +138852,43 @@ "address": "0x1400167ef", "size": 4, "mnemonic": "lea", - "operands": "ecx, [r13 + 3]" + "operands": "ecx, [r13 + 3]", + "stack_offset": 0 }, { "address": "0x1400167f3", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x1400167f8", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x1400167f9", "size": 3, "mnemonic": "mov", - "operands": "rsi, qword ptr [rdi]" + "operands": "rsi, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x1400167fc", "size": 3, "mnemonic": "test", - "operands": "r14b, r14b" + "operands": "r14b, r14b", + "stack_offset": 0 }, { "address": "0x1400167ff", "size": 2, "mnemonic": "je", - "operands": "0x140016813" + "operands": "0x140016813", + "stack_offset": 0 } ], "successors": [ @@ -123429,13 +138906,15 @@ "address": "0x1400167c5", "size": 7, "mnemonic": "lea", - "operands": "rdi, [rip + 0x1cf5c]" + "operands": "rdi, [rip + 0x1cf5c]", + "stack_offset": 0 }, { "address": "0x1400167cc", "size": 2, "mnemonic": "jmp", - "operands": "0x1400167e7" + "operands": "0x1400167e7", + "stack_offset": 0 } ], "successors": [ @@ -123452,13 +138931,15 @@ "address": "0x140016735", "size": 3, "mnemonic": "sub", - "operands": "ecx, 9" + "operands": "ecx, 9", + "stack_offset": 0 }, { "address": "0x140016738", "size": 6, "mnemonic": "je", - "operands": "0x1400167d7" + "operands": "0x1400167d7", + "stack_offset": 0 } ], "successors": [ @@ -123476,13 +138957,15 @@ "address": "0x140016706", "size": 3, "mnemonic": "sub", - "operands": "edx, 2" + "operands": "edx, 2", + "stack_offset": 0 }, { "address": "0x140016709", "size": 2, "mnemonic": "je", - "operands": "0x140016753" + "operands": "0x140016753", + "stack_offset": 0 } ], "successors": [ @@ -123500,13 +138983,15 @@ "address": "0x140016813", "size": 4, "mnemonic": "cmp", - "operands": "rsi, 1" + "operands": "rsi, 1", + "stack_offset": 0 }, { "address": "0x140016817", "size": 6, "mnemonic": "je", - "operands": "0x1400168a8" + "operands": "0x1400168a8", + "stack_offset": 0 } ], "successors": [ @@ -123524,43 +139009,50 @@ "address": "0x140016801", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1a838]" + "operands": "rax, qword ptr [rip + 0x1a838]", + "stack_offset": 0 }, { "address": "0x140016808", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x14001680a", "size": 3, "mnemonic": "and", - "operands": "ecx, 0x3f" + "operands": "ecx, 0x3f", + "stack_offset": 0 }, { "address": "0x14001680d", "size": 3, "mnemonic": "xor", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x140016810", "size": 3, "mnemonic": "ror", - "operands": "rsi, cl" + "operands": "rsi, cl", + "stack_offset": 0 }, { "address": "0x140016813", "size": 4, "mnemonic": "cmp", - "operands": "rsi, 1" + "operands": "rsi, 1", + "stack_offset": 0 }, { "address": "0x140016817", "size": 6, "mnemonic": "je", - "operands": "0x1400168a8" + "operands": "0x1400168a8", + "stack_offset": 0 } ], "successors": [ @@ -123578,19 +139070,22 @@ "address": "0x1400167e7", "size": 3, "mnemonic": "xor", - "operands": "r13d, r13d" + "operands": "r13d, r13d", + "stack_offset": 0 }, { "address": "0x1400167ea", "size": 3, "mnemonic": "test", - "operands": "r14b, r14b" + "operands": "r14b, r14b", + "stack_offset": 0 }, { "address": "0x1400167ed", "size": 2, "mnemonic": "je", - "operands": "0x1400167f9" + "operands": "0x1400167f9", + "stack_offset": 0 } ], "successors": [ @@ -123608,13 +139103,15 @@ "address": "0x1400167d7", "size": 7, "mnemonic": "lea", - "operands": "rdi, [rip + 0x1cf52]" + "operands": "rdi, [rip + 0x1cf52]", + "stack_offset": 0 }, { "address": "0x1400167de", "size": 2, "mnemonic": "jmp", - "operands": "0x1400167e7" + "operands": "0x1400167e7", + "stack_offset": 0 } ], "successors": [ @@ -123631,13 +139128,15 @@ "address": "0x14001673e", "size": 3, "mnemonic": "sub", - "operands": "ecx, 6" + "operands": "ecx, 6", + "stack_offset": 0 }, { "address": "0x140016741", "size": 6, "mnemonic": "je", - "operands": "0x1400167ce" + "operands": "0x1400167ce", + "stack_offset": 0 } ], "successors": [ @@ -123655,13 +139154,15 @@ "address": "0x14001670b", "size": 3, "mnemonic": "sub", - "operands": "edx, 3" + "operands": "edx, 3", + "stack_offset": 0 }, { "address": "0x14001670e", "size": 2, "mnemonic": "je", - "operands": "0x140016753" + "operands": "0x140016753", + "stack_offset": 0 } ], "successors": [ @@ -123679,19 +139180,22 @@ "address": "0x1400168a8", "size": 6, "mnemonic": "mov", - "operands": "r12d, 0x910" + "operands": "r12d, 0x910", + "stack_offset": 0 }, { "address": "0x1400168ae", "size": 3, "mnemonic": "test", - "operands": "r14b, r14b" + "operands": "r14b, r14b", + "stack_offset": 0 }, { "address": "0x1400168b1", "size": 2, "mnemonic": "je", - "operands": "0x1400168bd" + "operands": "0x1400168bd", + "stack_offset": 0 } ], "successors": [ @@ -123709,13 +139213,15 @@ "address": "0x14001681d", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x140016820", "size": 6, "mnemonic": "je", - "operands": "0x14001690f" + "operands": "0x14001690f", + "stack_offset": 0 } ], "successors": [ @@ -123733,13 +139239,15 @@ "address": "0x1400167ce", "size": 7, "mnemonic": "lea", - "operands": "rdi, [rip + 0x1cf4b]" + "operands": "rdi, [rip + 0x1cf4b]", + "stack_offset": 0 }, { "address": "0x1400167d5", "size": 2, "mnemonic": "jmp", - "operands": "0x1400167e7" + "operands": "0x1400167e7", + "stack_offset": 0 } ], "successors": [ @@ -123756,13 +139264,15 @@ "address": "0x140016747", "size": 3, "mnemonic": "cmp", - "operands": "ecx, 1" + "operands": "ecx, 1", + "stack_offset": 0 }, { "address": "0x14001674a", "size": 2, "mnemonic": "je", - "operands": "0x1400167c5" + "operands": "0x1400167c5", + "stack_offset": 0 } ], "successors": [ @@ -123780,13 +139290,15 @@ "address": "0x140016710", "size": 3, "mnemonic": "sub", - "operands": "edx, 4" + "operands": "edx, 4", + "stack_offset": 0 }, { "address": "0x140016713", "size": 2, "mnemonic": "je", - "operands": "0x140016723" + "operands": "0x140016723", + "stack_offset": 0 } ], "successors": [ @@ -123804,25 +139316,29 @@ "address": "0x1400168bd", "size": 4, "mnemonic": "cmp", - "operands": "rsi, 1" + "operands": "rsi, 1", + "stack_offset": 0 }, { "address": "0x1400168c1", "size": 2, "mnemonic": "jne", - "operands": "0x1400168ca" + "operands": "0x1400168ca", + "stack_offset": 0 }, { "address": "0x1400168c3", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400168c5", "size": 5, "mnemonic": "jmp", - "operands": "0x140016763" + "operands": "0x140016763", + "stack_offset": 0 } ], "successors": [ @@ -123839,37 +139355,43 @@ "address": "0x1400168b3", "size": 5, "mnemonic": "mov", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x1400168b8", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x1400168bd", "size": 4, "mnemonic": "cmp", - "operands": "rsi, 1" + "operands": "rsi, 1", + "stack_offset": 0 }, { "address": "0x1400168c1", "size": 2, "mnemonic": "jne", - "operands": "0x1400168ca" + "operands": "0x1400168ca", + "stack_offset": 0 }, { "address": "0x1400168c3", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400168c5", "size": 5, "mnemonic": "jmp", - "operands": "0x140016763" + "operands": "0x140016763", + "stack_offset": 0 } ], "successors": [ @@ -123886,13 +139408,15 @@ "address": "0x14001690f", "size": 3, "mnemonic": "test", - "operands": "r14b, r14b" + "operands": "r14b, r14b", + "stack_offset": 0 }, { "address": "0x140016912", "size": 2, "mnemonic": "je", - "operands": "0x14001691c" + "operands": "0x14001691c", + "stack_offset": 0 } ], "successors": [ @@ -123910,19 +139434,22 @@ "address": "0x140016826", "size": 6, "mnemonic": "mov", - "operands": "r12d, 0x910" + "operands": "r12d, 0x910", + "stack_offset": 0 }, { "address": "0x14001682c", "size": 3, "mnemonic": "cmp", - "operands": "ebx, 0xb" + "operands": "ebx, 0xb", + "stack_offset": 0 }, { "address": "0x14001682f", "size": 2, "mnemonic": "ja", - "operands": "0x140016866" + "operands": "0x140016866", + "stack_offset": 0 } ], "successors": [ @@ -123940,13 +139467,15 @@ "address": "0x14001674c", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001674e", "size": 5, "mnemonic": "jmp", - "operands": "0x1400167e7" + "operands": "0x1400167e7", + "stack_offset": 0 } ], "successors": [ @@ -123963,13 +139492,15 @@ "address": "0x140016715", "size": 3, "mnemonic": "sub", - "operands": "edx, 6" + "operands": "edx, 6", + "stack_offset": 0 }, { "address": "0x140016718", "size": 2, "mnemonic": "je", - "operands": "0x140016723" + "operands": "0x140016723", + "stack_offset": 0 } ], "successors": [ @@ -123987,61 +139518,71 @@ "address": "0x140016763", "size": 5, "mnemonic": "lea", - "operands": "r11, [rsp + 0x40]" + "operands": "r11, [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140016768", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x40]" + "operands": "rbx, qword ptr [r11 + 0x40]", + "stack_offset": 0 }, { "address": "0x14001676c", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x48]" + "operands": "rsi, qword ptr [r11 + 0x48]", + "stack_offset": 0 }, { "address": "0x140016770", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x140016773", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016775", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140016777", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140016779", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14001677b", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001677c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -124057,25 +139598,29 @@ "address": "0x14001691c", "size": 5, "mnemonic": "mov", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x140016921", "size": 5, "mnemonic": "call", - "operands": "0x14000ebcc" + "operands": "0x14000ebcc", + "stack_offset": 0 }, { "address": "0x140016926", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140016927", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -124091,37 +139636,43 @@ "address": "0x140016914", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rsi + 3]" + "operands": "ecx, [rsi + 3]", + "stack_offset": 0 }, { "address": "0x140016917", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14001691c", "size": 5, "mnemonic": "mov", - "operands": "ecx, 3" + "operands": "ecx, 3", + "stack_offset": 0 }, { "address": "0x140016921", "size": 5, "mnemonic": "call", - "operands": "0x14000ebcc" + "operands": "0x14000ebcc", + "stack_offset": 0 }, { "address": "0x140016926", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140016927", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -124137,67 +139688,78 @@ "address": "0x140016866", "size": 3, "mnemonic": "cmp", - "operands": "ebx, 8" + "operands": "ebx, 8", + "stack_offset": 0 }, { "address": "0x140016869", "size": 2, "mnemonic": "jne", - "operands": "0x14001689c" + "operands": "0x14001689c", + "stack_offset": 0 }, { "address": "0x14001686b", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0xf006]" + "operands": "rax, qword ptr [rip + 0xf006]", + "stack_offset": 0 }, { "address": "0x140016872", "size": 4, "mnemonic": "shl", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x140016876", "size": 3, "mnemonic": "add", - "operands": "rax, qword ptr [r15]" + "operands": "rax, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x140016879", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rip + 0xf000]" + "operands": "rcx, qword ptr [rip + 0xf000]", + "stack_offset": 0 }, { "address": "0x140016880", "size": 4, "mnemonic": "shl", - "operands": "rcx, 4" + "operands": "rcx, 4", + "stack_offset": 0 }, { "address": "0x140016884", "size": 3, "mnemonic": "add", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140016887", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14001688c", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14001688f", "size": 2, "mnemonic": "je", - "operands": "0x1400168ae" + "operands": "0x1400168ae", + "stack_offset": 0 } ], "successors": [ @@ -124215,145 +139777,169 @@ "address": "0x140016831", "size": 4, "mnemonic": "bt", - "operands": "r12d, ebx" + "operands": "r12d, ebx", + "stack_offset": 0 }, { "address": "0x140016835", "size": 2, "mnemonic": "jae", - "operands": "0x140016866" + "operands": "0x140016866", + "stack_offset": 0 }, { "address": "0x140016837", "size": 4, "mnemonic": "mov", - "operands": "r13, qword ptr [r15 + 8]" + "operands": "r13, qword ptr [r15 + 8]", + "stack_offset": 0 }, { "address": "0x14001683b", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], r13" + "operands": "qword ptr [rsp + 0x30], r13", + "stack_offset": 0 }, { "address": "0x140016840", "size": 5, "mnemonic": "and", - "operands": "qword ptr [r15 + 8], 0" + "operands": "qword ptr [r15 + 8], 0", + "stack_offset": 0 }, { "address": "0x140016845", "size": 3, "mnemonic": "cmp", - "operands": "ebx, 8" + "operands": "ebx, 8", + "stack_offset": 0 }, { "address": "0x140016848", "size": 2, "mnemonic": "jne", - "operands": "0x14001689c" + "operands": "0x14001689c", + "stack_offset": 0 }, { "address": "0x14001684a", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14001684f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rax + 0x10]" + "operands": "eax, dword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140016852", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x78], eax" + "operands": "dword ptr [rsp + 0x78], eax", + "stack_offset": 0 }, { "address": "0x140016856", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], eax" + "operands": "dword ptr [rsp + 0x20], eax", + "stack_offset": 0 }, { "address": "0x14001685a", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14001685f", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x10], 0x8c" + "operands": "dword ptr [rax + 0x10], 0x8c", + "stack_offset": 0 }, { "address": "0x140016866", "size": 3, "mnemonic": "cmp", - "operands": "ebx, 8" + "operands": "ebx, 8", + "stack_offset": 0 }, { "address": "0x140016869", "size": 2, "mnemonic": "jne", - "operands": "0x14001689c" + "operands": "0x14001689c", + "stack_offset": 0 }, { "address": "0x14001686b", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0xf006]" + "operands": "rax, qword ptr [rip + 0xf006]", + "stack_offset": 0 }, { "address": "0x140016872", "size": 4, "mnemonic": "shl", - "operands": "rax, 4" + "operands": "rax, 4", + "stack_offset": 0 }, { "address": "0x140016876", "size": 3, "mnemonic": "add", - "operands": "rax, qword ptr [r15]" + "operands": "rax, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x140016879", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rip + 0xf000]" + "operands": "rcx, qword ptr [rip + 0xf000]", + "stack_offset": 0 }, { "address": "0x140016880", "size": 4, "mnemonic": "shl", - "operands": "rcx, 4" + "operands": "rcx, 4", + "stack_offset": 0 }, { "address": "0x140016884", "size": 3, "mnemonic": "add", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140016887", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14001688c", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14001688f", "size": 2, "mnemonic": "je", - "operands": "0x1400168ae" + "operands": "0x1400168ae", + "stack_offset": 0 } ], "successors": [ @@ -124371,25 +139957,29 @@ "address": "0x14001671a", "size": 3, "mnemonic": "cmp", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x14001671d", "size": 6, "mnemonic": "jne", - "operands": "0x1400167a5" + "operands": "0x1400167a5", + "stack_offset": 0 }, { "address": "0x140016723", "size": 3, "mnemonic": "sub", - "operands": "ecx, 2" + "operands": "ecx, 2", + "stack_offset": 0 }, { "address": "0x140016726", "size": 6, "mnemonic": "je", - "operands": "0x1400167e0" + "operands": "0x1400167e0", + "stack_offset": 0 } ], "successors": [ @@ -124407,13 +139997,15 @@ "address": "0x1400168ae", "size": 3, "mnemonic": "test", - "operands": "r14b, r14b" + "operands": "r14b, r14b", + "stack_offset": 0 }, { "address": "0x1400168b1", "size": 2, "mnemonic": "je", - "operands": "0x1400168bd" + "operands": "0x1400168bd", + "stack_offset": 0 } ], "successors": [ @@ -124431,19 +140023,22 @@ "address": "0x140016891", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rax + 8], 0" + "operands": "qword ptr [rax + 8], 0", + "stack_offset": 0 }, { "address": "0x140016896", "size": 4, "mnemonic": "add", - "operands": "rax, 0x10" + "operands": "rax, 0x10", + "stack_offset": 0 }, { "address": "0x14001689a", "size": 2, "mnemonic": "jmp", - "operands": "0x140016887" + "operands": "0x140016887", + "stack_offset": 0 } ], "successors": [ @@ -124460,19 +140055,22 @@ "address": "0x140016887", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14001688c", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14001688f", "size": 2, "mnemonic": "je", - "operands": "0x1400168ae" + "operands": "0x1400168ae", + "stack_offset": 0 } ], "successors": [ @@ -124496,55 +140094,64 @@ "address": "0x1400073b0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400073b5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x1400073ba", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x1400073bf", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400073c0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400073c4", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x29cf5], -1" + "operands": "dword ptr [rip + 0x29cf5], -1", + "stack_offset": 0 }, { "address": "0x1400073cb", "size": 2, "mnemonic": "jne", - "operands": "0x1400073d4" + "operands": "0x1400073d4", + "stack_offset": 0 }, { "address": "0x1400073cd", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400073cf", "size": 5, "mnemonic": "jmp", - "operands": "0x140007464" + "operands": "0x140007464", + "stack_offset": 0 } ], "successors": [ @@ -124561,37 +140168,43 @@ "address": "0x140007464", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140007469", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000746e", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140007473", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140007477", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140007478", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -124613,25 +140226,29 @@ "address": "0x14000735c", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x14000735f", "size": 2, "mnemonic": "jne", - "operands": "0x140007364" + "operands": "0x140007364", + "stack_offset": 0 }, { "address": "0x140007361", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140007363", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -124653,19 +140270,22 @@ "address": "0x14001efd0", "size": 3, "mnemonic": "sub", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14001efd3", "size": 3, "mnemonic": "test", - "operands": "cl, 7" + "operands": "cl, 7", + "stack_offset": 0 }, { "address": "0x14001efd6", "size": 2, "mnemonic": "je", - "operands": "0x14001efec" + "operands": "0x14001efec", + "stack_offset": 0 } ], "successors": [ @@ -124683,37 +140303,43 @@ "address": "0x14001efec", "size": 10, "mnemonic": "movabs", - "operands": "r11, 0x8080808080808080" + "operands": "r11, 0x8080808080808080", + "stack_offset": 0 }, { "address": "0x14001eff6", "size": 10, "mnemonic": "movabs", - "operands": "r10, 0xfefefefefefefeff" + "operands": "r10, 0xfefefefefefefeff", + "stack_offset": 0 }, { "address": "0x14001f000", "size": 4, "mnemonic": "lea", - "operands": "eax, [edx + ecx]" + "operands": "eax, [edx + ecx]", + "stack_offset": 0 }, { "address": "0x14001f004", "size": 5, "mnemonic": "and", - "operands": "eax, 0xfff" + "operands": "eax, 0xfff", + "stack_offset": 0 }, { "address": "0x14001f009", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0xff8" + "operands": "eax, 0xff8", + "stack_offset": 0 }, { "address": "0x14001f00e", "size": 2, "mnemonic": "ja", - "operands": "0x14001efd8" + "operands": "0x14001efd8", + "stack_offset": 0 } ], "successors": [ @@ -124731,37 +140357,43 @@ "address": "0x14001efd8", "size": 3, "mnemonic": "movzx", - "operands": "eax, byte ptr [rcx]" + "operands": "eax, byte ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001efdb", "size": 3, "mnemonic": "cmp", - "operands": "al, byte ptr [rdx + rcx]" + "operands": "al, byte ptr [rdx + rcx]", + "stack_offset": 0 }, { "address": "0x14001efde", "size": 2, "mnemonic": "jne", - "operands": "0x14001f02f" + "operands": "0x14001f02f", + "stack_offset": 0 }, { "address": "0x14001efe0", "size": 3, "mnemonic": "inc", - "operands": "rcx" + "operands": "rcx", + "stack_offset": 0 }, { "address": "0x14001efe3", "size": 2, "mnemonic": "test", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x14001efe5", "size": 2, "mnemonic": "je", - "operands": "0x14001f02c" + "operands": "0x14001f02c", + "stack_offset": 0 } ], "successors": [ @@ -124779,55 +140411,64 @@ "address": "0x14001f010", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001f013", "size": 4, "mnemonic": "cmp", - "operands": "rax, qword ptr [rdx + rcx]" + "operands": "rax, qword ptr [rdx + rcx]", + "stack_offset": 0 }, { "address": "0x14001f017", "size": 2, "mnemonic": "jne", - "operands": "0x14001efd8" + "operands": "0x14001efd8", + "stack_offset": 0 }, { "address": "0x14001f019", "size": 4, "mnemonic": "lea", - "operands": "r9, [rax + r10]" + "operands": "r9, [rax + r10]", + "stack_offset": 0 }, { "address": "0x14001f01d", "size": 3, "mnemonic": "not", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x14001f020", "size": 4, "mnemonic": "add", - "operands": "rcx, 8" + "operands": "rcx, 8", + "stack_offset": 0 }, { "address": "0x14001f024", "size": 3, "mnemonic": "and", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14001f027", "size": 3, "mnemonic": "test", - "operands": "r11, rax" + "operands": "r11, rax", + "stack_offset": 0 }, { "address": "0x14001f02a", "size": 2, "mnemonic": "je", - "operands": "0x14001f000" + "operands": "0x14001f000", + "stack_offset": 0 } ], "successors": [ @@ -124845,13 +140486,15 @@ "address": "0x14001f02c", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001f02e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -124867,49 +140510,57 @@ "address": "0x14001efe7", "size": 3, "mnemonic": "test", - "operands": "cl, 7" + "operands": "cl, 7", + "stack_offset": 0 }, { "address": "0x14001efea", "size": 2, "mnemonic": "jne", - "operands": "0x14001efd8" + "operands": "0x14001efd8", + "stack_offset": 0 }, { "address": "0x14001efec", "size": 10, "mnemonic": "movabs", - "operands": "r11, 0x8080808080808080" + "operands": "r11, 0x8080808080808080", + "stack_offset": 0 }, { "address": "0x14001eff6", "size": 10, "mnemonic": "movabs", - "operands": "r10, 0xfefefefefefefeff" + "operands": "r10, 0xfefefefefefefeff", + "stack_offset": 0 }, { "address": "0x14001f000", "size": 4, "mnemonic": "lea", - "operands": "eax, [edx + ecx]" + "operands": "eax, [edx + ecx]", + "stack_offset": 0 }, { "address": "0x14001f004", "size": 5, "mnemonic": "and", - "operands": "eax, 0xfff" + "operands": "eax, 0xfff", + "stack_offset": 0 }, { "address": "0x14001f009", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0xff8" + "operands": "eax, 0xff8", + "stack_offset": 0 }, { "address": "0x14001f00e", "size": 2, "mnemonic": "ja", - "operands": "0x14001efd8" + "operands": "0x14001efd8", + "stack_offset": 0 } ], "successors": [ @@ -124927,25 +140578,29 @@ "address": "0x14001f000", "size": 4, "mnemonic": "lea", - "operands": "eax, [edx + ecx]" + "operands": "eax, [edx + ecx]", + "stack_offset": 0 }, { "address": "0x14001f004", "size": 5, "mnemonic": "and", - "operands": "eax, 0xfff" + "operands": "eax, 0xfff", + "stack_offset": 0 }, { "address": "0x14001f009", "size": 5, "mnemonic": "cmp", - "operands": "eax, 0xff8" + "operands": "eax, 0xff8", + "stack_offset": 0 }, { "address": "0x14001f00e", "size": 2, "mnemonic": "ja", - "operands": "0x14001efd8" + "operands": "0x14001efd8", + "stack_offset": 0 } ], "successors": [ @@ -124969,7 +140624,8 @@ "address": "0x14000700c", "size": 3, "mnemonic": "jmp", - "operands": "rdx" + "operands": "rdx", + "stack_offset": 0 } ], "successors": [ @@ -124991,61 +140647,71 @@ "address": "0x1400062e8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400062ed", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x1400062f2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x1400062f7", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400062f8", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400062fc", "size": 3, "mnemonic": "mov", - "operands": "edi, dword ptr [rcx + 0xc]" + "operands": "edi, dword ptr [rcx + 0xc]", + "stack_offset": 0 }, { "address": "0x1400062ff", "size": 2, "mnemonic": "mov", - "operands": "esi, edx" + "operands": "esi, edx", + "stack_offset": 0 }, { "address": "0x140006301", "size": 3, "mnemonic": "mov", - "operands": "rbp, rcx" + "operands": "rbp, rcx", + "stack_offset": 0 }, { "address": "0x140006304", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x140006306", "size": 2, "mnemonic": "je", - "operands": "0x140006333" + "operands": "0x140006333", + "stack_offset": 0 } ], "successors": [ @@ -125063,43 +140729,50 @@ "address": "0x140006333", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140006335", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000633a", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000633f", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140006344", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140006348", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140006349", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -125115,127 +140788,148 @@ "address": "0x140006308", "size": 3, "mnemonic": "lea", - "operands": "ebx, [rdi - 1]" + "operands": "ebx, [rdi - 1]", + "stack_offset": 0 }, { "address": "0x14000630b", "size": 2, "mnemonic": "mov", - "operands": "edi, ebx" + "operands": "edi, ebx", + "stack_offset": 0 }, { "address": "0x14000630d", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140006312", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbx + rbx*4]" + "operands": "rdx, [rbx + rbx*4]", + "stack_offset": 0 }, { "address": "0x140006316", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x60]" + "operands": "rax, qword ptr [rax + 0x60]", + "stack_offset": 0 }, { "address": "0x14000631a", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rdx*4]" + "operands": "rcx, [rax + rdx*4]", + "stack_offset": 0 }, { "address": "0x14000631e", "size": 4, "mnemonic": "movsxd", - "operands": "rax, dword ptr [rbp + 0x10]" + "operands": "rax, dword ptr [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x140006322", "size": 3, "mnemonic": "add", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140006325", "size": 3, "mnemonic": "cmp", - "operands": "esi, dword ptr [rax + 4]" + "operands": "esi, dword ptr [rax + 4]", + "stack_offset": 0 }, { "address": "0x140006328", "size": 2, "mnemonic": "jle", - "operands": "0x14000632f" + "operands": "0x14000632f", + "stack_offset": 0 }, { "address": "0x14000632a", "size": 3, "mnemonic": "cmp", - "operands": "esi, dword ptr [rax + 8]" + "operands": "esi, dword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x14000632d", "size": 2, "mnemonic": "jle", - "operands": "0x140006335" + "operands": "0x140006335", + "stack_offset": 0 }, { "address": "0x14000632f", "size": 2, "mnemonic": "test", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140006331", "size": 2, "mnemonic": "jne", - "operands": "0x140006308" + "operands": "0x140006308", + "stack_offset": 0 }, { "address": "0x140006333", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140006335", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000633a", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000633f", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140006344", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140006348", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140006349", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -125257,235 +140951,274 @@ "address": "0x140006b2c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140006b31", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rdi" + "operands": "qword ptr [rsp + 0x10], rdi", + "stack_offset": 0 }, { "address": "0x140006b36", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rcx + 0x10]" + "operands": "r8, qword ptr [rcx + 0x10]", + "stack_offset": 0 }, { "address": "0x140006b3a", "size": 7, "mnemonic": "lea", - "operands": "rdi, [rip - 0x6b41]" + "operands": "rdi, [rip - 0x6b41]", + "stack_offset": 0 }, { "address": "0x140006b41", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 8], r8" + "operands": "qword ptr [rcx + 8], r8", + "stack_offset": 0 }, { "address": "0x140006b45", "size": 3, "mnemonic": "mov", - "operands": "r11, rcx" + "operands": "r11, rcx", + "stack_offset": 0 }, { "address": "0x140006b48", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r8]" + "operands": "ecx, byte ptr [r8]", + "stack_offset": 0 }, { "address": "0x140006b4c", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006b4f", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + rdi + 0x23d90]" + "operands": "rax, byte ptr [rcx + rdi + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006b58", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + rdi + 0x23da0]" + "operands": "cl, byte ptr [rcx + rdi + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006b5f", "size": 3, "mnemonic": "sub", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x140006b62", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r8 - 4]" + "operands": "eax, dword ptr [r8 - 4]", + "stack_offset": 0 }, { "address": "0x140006b66", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006b68", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x18], eax" + "operands": "dword ptr [r11 + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140006b6c", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], r8" + "operands": "qword ptr [r11 + 8], r8", + "stack_offset": 0 }, { "address": "0x140006b70", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r8]" + "operands": "ecx, byte ptr [r8]", + "stack_offset": 0 }, { "address": "0x140006b74", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006b77", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + rdi + 0x23d90]" + "operands": "rax, byte ptr [rcx + rdi + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006b80", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + rdi + 0x23da0]" + "operands": "cl, byte ptr [rcx + rdi + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006b87", "size": 3, "mnemonic": "sub", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x140006b8a", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r8 - 4]" + "operands": "eax, dword ptr [r8 - 4]", + "stack_offset": 0 }, { "address": "0x140006b8e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], r8" + "operands": "qword ptr [r11 + 8], r8", + "stack_offset": 0 }, { "address": "0x140006b92", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006b94", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x1c], eax" + "operands": "dword ptr [r11 + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x140006b98", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r8]" + "operands": "ecx, byte ptr [r8]", + "stack_offset": 0 }, { "address": "0x140006b9c", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006b9f", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + rdi + 0x23d90]" + "operands": "rax, byte ptr [rcx + rdi + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006ba8", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + rdi + 0x23da0]" + "operands": "cl, byte ptr [rcx + rdi + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006baf", "size": 3, "mnemonic": "sub", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x140006bb2", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r8 - 4]" + "operands": "eax, dword ptr [r8 - 4]", + "stack_offset": 0 }, { "address": "0x140006bb6", "size": 4, "mnemonic": "lea", - "operands": "r10, [r8 + 4]" + "operands": "r10, [r8 + 4]", + "stack_offset": 0 }, { "address": "0x140006bba", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], r8" + "operands": "qword ptr [r11 + 8], r8", + "stack_offset": 0 }, { "address": "0x140006bbe", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006bc0", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rdx + 8], 0" + "operands": "dword ptr [rdx + 8], 0", + "stack_offset": 0 }, { "address": "0x140006bc4", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x20], eax" + "operands": "dword ptr [r11 + 0x20], eax", + "stack_offset": 0 }, { "address": "0x140006bc8", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [r8]" + "operands": "eax, dword ptr [r8]", + "stack_offset": 0 }, { "address": "0x140006bcb", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], r10" + "operands": "qword ptr [r11 + 8], r10", + "stack_offset": 0 }, { "address": "0x140006bcf", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x24], eax" + "operands": "dword ptr [r11 + 0x24], eax", + "stack_offset": 0 }, { "address": "0x140006bd3", "size": 6, "mnemonic": "je", - "operands": "0x140006d0a" + "operands": "0x140006d0a", + "stack_offset": 0 } ], "successors": [ @@ -125503,19 +141236,22 @@ "address": "0x140006d0a", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 8]" + "operands": "rbx, qword ptr [rsp + 8]", + "stack_offset": 0 }, { "address": "0x140006d0f", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x10]" + "operands": "rdi, qword ptr [rsp + 0x10]", + "stack_offset": 0 }, { "address": "0x140006d14", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -125531,469 +141267,547 @@ "address": "0x140006bd9", "size": 3, "mnemonic": "mov", - "operands": "ebx, dword ptr [rdx + 8]" + "operands": "ebx, dword ptr [rdx + 8]", + "stack_offset": 0 }, { "address": "0x140006bdc", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r10]" + "operands": "ecx, byte ptr [r10]", + "stack_offset": 0 }, { "address": "0x140006be0", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140006be3", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006be6", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + rdi + 0x23d90]" + "operands": "r9, byte ptr [rcx + rdi + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006bef", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + rdi + 0x23da0]" + "operands": "cl, byte ptr [rcx + rdi + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006bf6", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140006bf9", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140006bfc", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], rdx" + "operands": "qword ptr [r11 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140006c00", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006c02", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x18], eax" + "operands": "dword ptr [r11 + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140006c06", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140006c09", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140006c0c", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006c0f", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + rdi + 0x23d90]" + "operands": "r8, byte ptr [rcx + rdi + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006c18", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + rdi + 0x23da0]" + "operands": "cl, byte ptr [rcx + rdi + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006c1f", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140006c22", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140006c25", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140006c28", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], rdx" + "operands": "qword ptr [r11 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140006c2c", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006c2e", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x1c], eax" + "operands": "dword ptr [r11 + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x140006c32", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140006c35", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006c38", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + rdi + 0x23d90]" + "operands": "rax, byte ptr [rcx + rdi + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006c41", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + rdi + 0x23da0]" + "operands": "cl, byte ptr [rcx + rdi + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006c48", "size": 3, "mnemonic": "sub", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x140006c4b", "size": 3, "mnemonic": "sub", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x140006c4e", "size": 3, "mnemonic": "sub", - "operands": "r10, r9" + "operands": "r10, r9", + "stack_offset": 0 }, { "address": "0x140006c51", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r10 - 4]" + "operands": "eax, dword ptr [r10 - 4]", + "stack_offset": 0 }, { "address": "0x140006c55", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], r10" + "operands": "qword ptr [r11 + 8], r10", + "stack_offset": 0 }, { "address": "0x140006c59", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006c5b", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x20], eax" + "operands": "dword ptr [r11 + 0x20], eax", + "stack_offset": 0 }, { "address": "0x140006c5f", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [r10]" + "operands": "eax, dword ptr [r10]", + "stack_offset": 0 }, { "address": "0x140006c62", "size": 4, "mnemonic": "add", - "operands": "r10, 4" + "operands": "r10, 4", + "stack_offset": 0 }, { "address": "0x140006c66", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], r10" + "operands": "qword ptr [r11 + 8], r10", + "stack_offset": 0 }, { "address": "0x140006c6a", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140006c6d", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x24], eax" + "operands": "dword ptr [r11 + 0x24], eax", + "stack_offset": 0 }, { "address": "0x140006c71", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r10]" + "operands": "ecx, byte ptr [r10]", + "stack_offset": 0 }, { "address": "0x140006c75", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006c78", "size": 9, "mnemonic": "movsx", - "operands": "r9, byte ptr [rcx + rdi + 0x23d90]" + "operands": "r9, byte ptr [rcx + rdi + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006c81", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + rdi + 0x23da0]" + "operands": "cl, byte ptr [rcx + rdi + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006c88", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140006c8b", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140006c8e", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], rdx" + "operands": "qword ptr [r11 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140006c92", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006c94", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x18], eax" + "operands": "dword ptr [r11 + 0x18], eax", + "stack_offset": 0 }, { "address": "0x140006c98", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140006c9b", "size": 3, "mnemonic": "mov", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140006c9e", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006ca1", "size": 9, "mnemonic": "movsx", - "operands": "r8, byte ptr [rcx + rdi + 0x23d90]" + "operands": "r8, byte ptr [rcx + rdi + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006caa", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + rdi + 0x23da0]" + "operands": "cl, byte ptr [rcx + rdi + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006cb1", "size": 3, "mnemonic": "sub", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x140006cb4", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x140006cb7", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140006cba", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006cbc", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], rdx" + "operands": "qword ptr [r11 + 8], rdx", + "stack_offset": 0 }, { "address": "0x140006cc0", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x1c], eax" + "operands": "dword ptr [r11 + 0x1c], eax", + "stack_offset": 0 }, { "address": "0x140006cc4", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140006cc7", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140006cca", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + rdi + 0x23d90]" + "operands": "rax, byte ptr [rcx + rdi + 0x23d90]", + "stack_offset": 0 }, { "address": "0x140006cd3", "size": 7, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + rdi + 0x23da0]" + "operands": "cl, byte ptr [rcx + rdi + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140006cda", "size": 3, "mnemonic": "sub", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x140006cdd", "size": 3, "mnemonic": "sub", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x140006ce0", "size": 3, "mnemonic": "sub", - "operands": "r10, r9" + "operands": "r10, r9", + "stack_offset": 0 }, { "address": "0x140006ce3", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r10 - 4]" + "operands": "eax, dword ptr [r10 - 4]", + "stack_offset": 0 }, { "address": "0x140006ce7", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x140006ce9", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], r10" + "operands": "qword ptr [r11 + 8], r10", + "stack_offset": 0 }, { "address": "0x140006ced", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x20], eax" + "operands": "dword ptr [r11 + 0x20], eax", + "stack_offset": 0 }, { "address": "0x140006cf1", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [r10]" + "operands": "eax, dword ptr [r10]", + "stack_offset": 0 }, { "address": "0x140006cf4", "size": 4, "mnemonic": "add", - "operands": "r10, 4" + "operands": "r10, 4", + "stack_offset": 0 }, { "address": "0x140006cf8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], r10" + "operands": "qword ptr [r11 + 8], r10", + "stack_offset": 0 }, { "address": "0x140006cfc", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [r11 + 0x24], eax" + "operands": "dword ptr [r11 + 0x24], eax", + "stack_offset": 0 }, { "address": "0x140006d00", "size": 4, "mnemonic": "sub", - "operands": "rbx, 1" + "operands": "rbx, 1", + "stack_offset": 0 }, { "address": "0x140006d04", "size": 6, "mnemonic": "jne", - "operands": "0x140006bdc" + "operands": "0x140006bdc", + "stack_offset": 0 }, { "address": "0x140006d0a", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 8]" + "operands": "rbx, qword ptr [rsp + 8]", + "stack_offset": 0 }, { "address": "0x140006d0f", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x10]" + "operands": "rdi, qword ptr [rsp + 0x10]", + "stack_offset": 0 }, { "address": "0x140006d14", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -126015,97 +141829,113 @@ "address": "0x14000ac30", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbx" + "operands": "qword ptr [rsp + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x14000ac35", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000ac3a", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000ac3b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000ac3f", "size": 3, "mnemonic": "mov", - "operands": "rsi, qword ptr [rcx]" + "operands": "rsi, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000ac42", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14000ac44", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000ac47", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x14000ac4a", "size": 2, "mnemonic": "jne", - "operands": "0x14000ac87" + "operands": "0x14000ac87", + "stack_offset": 0 }, { "address": "0x14000ac4c", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x154a6]" + "operands": "qword ptr [rip + 0x154a6]", + "stack_offset": 0 }, { "address": "0x14000ac52", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], eax" + "operands": "dword ptr [rsp + 0x30], eax", + "stack_offset": 0 }, { "address": "0x14000ac56", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbx + 0x10], dil" + "operands": "byte ptr [rbx + 0x10], dil", + "stack_offset": 0 }, { "address": "0x14000ac5a", "size": 2, "mnemonic": "jne", - "operands": "0x14000ac66" + "operands": "0x14000ac66", + "stack_offset": 0 }, { "address": "0x14000ac5c", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbx + 8], rdi" + "operands": "qword ptr [rbx + 8], rdi", + "stack_offset": 0 }, { "address": "0x14000ac60", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbx + 0x10], 1" + "operands": "byte ptr [rbx + 0x10], 1", + "stack_offset": 0 }, { "address": "0x14000ac64", "size": 2, "mnemonic": "jmp", - "operands": "0x14000ac6a" + "operands": "0x14000ac6a", + "stack_offset": 0 } ], "successors": [ @@ -126122,79 +141952,92 @@ "address": "0x14000ac6a", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x14000ac6d", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x30]" + "operands": "rcx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000ac72", "size": 5, "mnemonic": "call", - "operands": "0x1400119b4" + "operands": "0x1400119b4", + "stack_offset": 0 }, { "address": "0x14000ac77", "size": 4, "mnemonic": "mov", - "operands": "ecx, dword ptr [rsp + 0x30]" + "operands": "ecx, dword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000ac7b", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000ac7e", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x14000ac81", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x15479]" + "operands": "qword ptr [rip + 0x15479]", + "stack_offset": 0 }, { "address": "0x14000ac87", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x38]" + "operands": "rbx, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000ac8c", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x14000ac8f", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000ac94", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000ac98", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000ac99", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -126216,91 +142059,106 @@ "address": "0x14000ac9c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000aca1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000aca6", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000aca7", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000acab", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x14000acad", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x14000acb0", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x14000acb3", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rdx + 0x10], bl" + "operands": "byte ptr [rdx + 0x10], bl", + "stack_offset": 0 }, { "address": "0x14000acb6", "size": 2, "mnemonic": "jne", - "operands": "0x14000acd0" + "operands": "0x14000acd0", + "stack_offset": 0 }, { "address": "0x14000acb8", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1543a]" + "operands": "qword ptr [rip + 0x1543a]", + "stack_offset": 0 }, { "address": "0x14000acbe", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x14000acc0", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdi + 8], rbx" + "operands": "qword ptr [rdi + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000acc4", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdi + 0x10], 1" + "operands": "byte ptr [rdi + 0x10], 1", + "stack_offset": 0 }, { "address": "0x14000acc8", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x15432]" + "operands": "qword ptr [rip + 0x15432]", + "stack_offset": 0 }, { "address": "0x14000acce", "size": 2, "mnemonic": "jmp", - "operands": "0x14000acd4" + "operands": "0x14000acd4", + "stack_offset": 0 } ], "successors": [ @@ -126317,37 +142175,43 @@ "address": "0x14000acd4", "size": 4, "mnemonic": "lea", - "operands": "rax, [rsi + rbx*8]" + "operands": "rax, [rsi + rbx*8]", + "stack_offset": 0 }, { "address": "0x14000acd8", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000acdd", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000ace2", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000ace6", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000ace7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -126369,67 +142233,78 @@ "address": "0x1400119b4", "size": 2, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400119b6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x1400119ba", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0xfffffffffffffffe" + "operands": "qword ptr [rsp + 0x20], 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x1400119c3", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rbx" + "operands": "qword ptr [rsp + 0x40], rbx", + "stack_offset": 0 }, { "address": "0x1400119c8", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x1400119cb", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x1400119cd", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rip + 0x1f8ed]" + "operands": "ecx, dword ptr [rip + 0x1f8ed]", + "stack_offset": 0 }, { "address": "0x1400119d3", "size": 3, "mnemonic": "cmp", - "operands": "ecx, -1" + "operands": "ecx, -1", + "stack_offset": 0 }, { "address": "0x1400119d6", "size": 2, "mnemonic": "jne", - "operands": "0x1400119dc" + "operands": "0x1400119dc", + "stack_offset": 0 }, { "address": "0x1400119d8", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x1400119da", "size": 2, "mnemonic": "jmp", - "operands": "0x1400119e2" + "operands": "0x1400119e2", + "stack_offset": 0 } ], "successors": [ @@ -126446,13 +142321,15 @@ "address": "0x1400119e2", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x1400119e6", "size": 2, "mnemonic": "je", - "operands": "0x140011a01" + "operands": "0x140011a01", + "stack_offset": 0 } ], "successors": [ @@ -126470,31 +142347,36 @@ "address": "0x140011a01", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140011a04", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140011a09", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140011a0d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140011a0e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -126510,31 +142392,36 @@ "address": "0x1400119e8", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400119eb", "size": 2, "mnemonic": "jne", - "operands": "0x1400119f7" + "operands": "0x1400119f7", + "stack_offset": 0 }, { "address": "0x1400119ed", "size": 5, "mnemonic": "call", - "operands": "0x1400117a4" + "operands": "0x1400117a4", + "stack_offset": 0 }, { "address": "0x1400119f2", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400119f5", "size": 2, "mnemonic": "je", - "operands": "0x140011a01" + "operands": "0x140011a01", + "stack_offset": 0 } ], "successors": [ @@ -126552,43 +142439,50 @@ "address": "0x1400119f7", "size": 7, "mnemonic": "imul", - "operands": "rbx, rdi, 0x3c8" + "operands": "rbx, rdi, 0x3c8", + "stack_offset": 0 }, { "address": "0x1400119fe", "size": 3, "mnemonic": "add", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140011a01", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140011a04", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140011a09", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140011a0d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140011a0e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -126610,85 +142504,99 @@ "address": "0x14000b3cc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000b3d1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14000b3d6", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000b3d7", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000b3db", "size": 3, "mnemonic": "mov", - "operands": "rdi, r9" + "operands": "rdi, r9", + "stack_offset": 0 }, { "address": "0x14000b3de", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x14000b3e1", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdx]" + "operands": "rcx, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000b3e4", "size": 5, "mnemonic": "call", - "operands": "0x14000b1f8" + "operands": "0x14000b1f8", + "stack_offset": 0 }, { "address": "0x14000b3e9", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000b3ea", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rbx + 8]" + "operands": "rdx, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x14000b3ee", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000b3f1", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000b3f4", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000b3f7", "size": 2, "mnemonic": "je", - "operands": "0x14000b455" + "operands": "0x14000b455", + "stack_offset": 0 } ], "successors": [ @@ -126706,37 +142614,43 @@ "address": "0x14000b455", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi]" + "operands": "rcx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000b458", "size": 5, "mnemonic": "call", - "operands": "0x14000b204" + "operands": "0x14000b204", + "stack_offset": 0 }, { "address": "0x14000b45d", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000b462", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000b466", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000b467", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -126752,37 +142666,43 @@ "address": "0x14000b3f9", "size": 3, "mnemonic": "mov", - "operands": "ecx, dword ptr [rcx + 0x14]" + "operands": "ecx, dword ptr [rcx + 0x14]", + "stack_offset": 0 }, { "address": "0x14000b3fc", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000b3fd", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14000b3ff", "size": 3, "mnemonic": "shr", - "operands": "eax, 0xd" + "operands": "eax, 0xd", + "stack_offset": 0 }, { "address": "0x14000b402", "size": 2, "mnemonic": "test", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14000b404", "size": 2, "mnemonic": "je", - "operands": "0x14000b455" + "operands": "0x14000b455", + "stack_offset": 0 } ], "successors": [ @@ -126800,49 +142720,57 @@ "address": "0x14000b406", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14000b408", "size": 2, "mnemonic": "and", - "operands": "al, 3" + "operands": "al, 3", + "stack_offset": 0 }, { "address": "0x14000b40a", "size": 2, "mnemonic": "cmp", - "operands": "al, 2" + "operands": "al, 2", + "stack_offset": 0 }, { "address": "0x14000b40c", "size": 2, "mnemonic": "jne", - "operands": "0x14000b413" + "operands": "0x14000b413", + "stack_offset": 0 }, { "address": "0x14000b40e", "size": 3, "mnemonic": "test", - "operands": "cl, 0xc0" + "operands": "cl, 0xc0", + "stack_offset": 0 }, { "address": "0x14000b411", "size": 2, "mnemonic": "jne", - "operands": "0x14000b41d" + "operands": "0x14000b41d", + "stack_offset": 0 }, { "address": "0x14000b413", "size": 4, "mnemonic": "bt", - "operands": "ecx, 0xb" + "operands": "ecx, 0xb", + "stack_offset": 0 }, { "address": "0x14000b417", "size": 2, "mnemonic": "jb", - "operands": "0x14000b41d" + "operands": "0x14000b41d", + "stack_offset": 0 } ], "successors": [ @@ -126860,61 +142788,71 @@ "address": "0x14000b41d", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 0x10]" + "operands": "rax, qword ptr [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x14000b421", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rax], 0" + "operands": "byte ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x14000b424", "size": 2, "mnemonic": "jne", - "operands": "0x14000b436" + "operands": "0x14000b436", + "stack_offset": 0 }, { "address": "0x14000b426", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx]" + "operands": "rax, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000b429", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000b42c", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rcx + 0x14]" + "operands": "eax, dword ptr [rcx + 0x14]", + "stack_offset": 0 }, { "address": "0x14000b42f", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000b430", "size": 2, "mnemonic": "shr", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14000b432", "size": 2, "mnemonic": "test", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14000b434", "size": 2, "mnemonic": "je", - "operands": "0x14000b455" + "operands": "0x14000b455", + "stack_offset": 0 } ], "successors": [ @@ -126932,13 +142870,15 @@ "address": "0x14000b419", "size": 2, "mnemonic": "inc", - "operands": "dword ptr [rdx]" + "operands": "dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000b41b", "size": 2, "mnemonic": "jmp", - "operands": "0x14000b455" + "operands": "0x14000b455", + "stack_offset": 0 } ], "successors": [ @@ -126955,31 +142895,36 @@ "address": "0x14000b436", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx]" + "operands": "rcx, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x14000b439", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000b43c", "size": 5, "mnemonic": "call", - "operands": "0x14000b678" + "operands": "0x14000b678", + "stack_offset": 0 }, { "address": "0x14000b441", "size": 3, "mnemonic": "cmp", - "operands": "eax, -1" + "operands": "eax, -1", + "stack_offset": 0 }, { "address": "0x14000b444", "size": 2, "mnemonic": "je", - "operands": "0x14000b44e" + "operands": "0x14000b44e", + "stack_offset": 0 } ], "successors": [ @@ -126997,49 +142942,57 @@ "address": "0x14000b44e", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 0x18]" + "operands": "rax, qword ptr [rbx + 0x18]", + "stack_offset": 0 }, { "address": "0x14000b452", "size": 3, "mnemonic": "or", - "operands": "dword ptr [rax], 0xffffffff" + "operands": "dword ptr [rax], 0xffffffff", + "stack_offset": 0 }, { "address": "0x14000b455", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi]" + "operands": "rcx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14000b458", "size": 5, "mnemonic": "call", - "operands": "0x14000b204" + "operands": "0x14000b204", + "stack_offset": 0 }, { "address": "0x14000b45d", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000b462", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000b466", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000b467", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -127055,19 +143008,22 @@ "address": "0x14000b446", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 8]" + "operands": "rax, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x14000b44a", "size": 2, "mnemonic": "inc", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000b44c", "size": 2, "mnemonic": "jmp", - "operands": "0x14000b455" + "operands": "0x14000b455", + "stack_offset": 0 } ], "successors": [ @@ -127090,43 +143046,50 @@ "address": "0x140011924", "size": 2, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140011926", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001192a", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0xfffffffffffffffe" + "operands": "qword ptr [rsp + 0x20], 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x140011933", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x40], rbx" + "operands": "qword ptr [rsp + 0x40], rbx", + "stack_offset": 0 }, { "address": "0x140011938", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001193a", "size": 7, "mnemonic": "cmp", - "operands": "byte ptr [rip + 0x218ef], dil" + "operands": "byte ptr [rip + 0x218ef], dil", + "stack_offset": 0 }, { "address": "0x140011941", "size": 2, "mnemonic": "je", - "operands": "0x14001196d" + "operands": "0x14001196d", + "stack_offset": 0 } ], "successors": [ @@ -127144,43 +143107,50 @@ "address": "0x14001196d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe785]" + "operands": "qword ptr [rip + 0xe785]", + "stack_offset": 0 }, { "address": "0x140011973", "size": 2, "mnemonic": "mov", - "operands": "ebx, eax" + "operands": "ebx, eax", + "stack_offset": 0 }, { "address": "0x140011975", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rip + 0x1f945]" + "operands": "ecx, dword ptr [rip + 0x1f945]", + "stack_offset": 0 }, { "address": "0x14001197b", "size": 3, "mnemonic": "cmp", - "operands": "ecx, -1" + "operands": "ecx, -1", + "stack_offset": 0 }, { "address": "0x14001197e", "size": 2, "mnemonic": "jne", - "operands": "0x140011985" + "operands": "0x140011985", + "stack_offset": 0 }, { "address": "0x140011980", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x140011983", "size": 2, "mnemonic": "jmp", - "operands": "0x14001198b" + "operands": "0x14001198b", + "stack_offset": 0 } ], "successors": [ @@ -127197,31 +143167,36 @@ "address": "0x140011943", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rip + 0x1f977]" + "operands": "ecx, dword ptr [rip + 0x1f977]", + "stack_offset": 0 }, { "address": "0x140011949", "size": 3, "mnemonic": "cmp", - "operands": "ecx, -1" + "operands": "ecx, -1", + "stack_offset": 0 }, { "address": "0x14001194c", "size": 2, "mnemonic": "jne", - "operands": "0x140011952" + "operands": "0x140011952", + "stack_offset": 0 }, { "address": "0x14001194e", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140011950", "size": 2, "mnemonic": "jmp", - "operands": "0x140011958" + "operands": "0x140011958", + "stack_offset": 0 } ], "successors": [ @@ -127238,13 +143213,15 @@ "address": "0x14001198b", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x14001198f", "size": 2, "mnemonic": "je", - "operands": "0x14001199e" + "operands": "0x14001199e", + "stack_offset": 0 } ], "successors": [ @@ -127262,13 +143239,15 @@ "address": "0x140011958", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x14001195c", "size": 2, "mnemonic": "je", - "operands": "0x1400119a6" + "operands": "0x1400119a6", + "stack_offset": 0 } ], "successors": [ @@ -127286,43 +143265,50 @@ "address": "0x14001199e", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x1400119a0", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe75a]" + "operands": "qword ptr [rip + 0xe75a]", + "stack_offset": 0 }, { "address": "0x1400119a6", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x1400119a9", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400119ae", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x1400119b2", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400119b3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -127338,67 +143324,78 @@ "address": "0x140011991", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140011994", "size": 2, "mnemonic": "jne", - "operands": "0x14001199b" + "operands": "0x14001199b", + "stack_offset": 0 }, { "address": "0x140011996", "size": 5, "mnemonic": "call", - "operands": "0x1400117a4" + "operands": "0x1400117a4", + "stack_offset": 0 }, { "address": "0x14001199b", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14001199e", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x1400119a0", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe75a]" + "operands": "qword ptr [rip + 0xe75a]", + "stack_offset": 0 }, { "address": "0x1400119a6", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x1400119a9", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400119ae", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x1400119b2", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400119b3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -127414,31 +143411,36 @@ "address": "0x1400119a6", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x1400119a9", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x1400119ae", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x1400119b2", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400119b3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -127454,31 +143456,36 @@ "address": "0x14001195e", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140011961", "size": 2, "mnemonic": "jne", - "operands": "0x140011968" + "operands": "0x140011968", + "stack_offset": 0 }, { "address": "0x140011963", "size": 5, "mnemonic": "call", - "operands": "0x1400117a4" + "operands": "0x1400117a4", + "stack_offset": 0 }, { "address": "0x140011968", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14001196b", "size": 2, "mnemonic": "jmp", - "operands": "0x1400119a6" + "operands": "0x1400119a6", + "stack_offset": 0 } ], "successors": [ @@ -127501,151 +143508,176 @@ "address": "0x14000ae60", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000ae65", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000ae66", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000ae69", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x70" + "operands": "rsp, 0x70", + "stack_offset": 0 }, { "address": "0x14000ae6d", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000ae72", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x28377], 0" + "operands": "dword ptr [rip + 0x28377], 0", + "stack_offset": 0 }, { "address": "0x14000ae79", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000ae7d", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14000ae81", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000ae85", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000ae89", "size": 2, "mnemonic": "jne", - "operands": "0x14000ae9b" + "operands": "0x14000ae9b", + "stack_offset": 0 }, { "address": "0x14000ae8b", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x26596]" + "operands": "xmm0, xmmword ptr [rip + 0x26596]", + "stack_offset": 0 }, { "address": "0x14000ae92", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x14000ae96", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x14000ae9b", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp - 0x40]" + "operands": "rax, [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000ae9f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x14000aea4", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp + 0x30]" + "operands": "rax, qword ptr [rbp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000aea8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14000aead", "size": 5, "mnemonic": "call", - "operands": "0x14000aefc" + "operands": "0x14000aefc", + "stack_offset": 0 }, { "address": "0x14000aeb2", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x18], 2" + "operands": "byte ptr [rbp - 0x18], 2", + "stack_offset": 0 }, { "address": "0x14000aeb6", "size": 2, "mnemonic": "jne", - "operands": "0x14000aec3" + "operands": "0x14000aec3", + "stack_offset": 0 }, { "address": "0x14000aeb8", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbp - 0x40]" + "operands": "rax, qword ptr [rbp - 0x40]", + "stack_offset": 0 }, { "address": "0x14000aebc", "size": 7, "mnemonic": "and", - "operands": "dword ptr [rax + 0x3a8], 0xfffffffd" + "operands": "dword ptr [rax + 0x3a8], 0xfffffffd", + "stack_offset": 0 }, { "address": "0x14000aec3", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000aec7", "size": 2, "mnemonic": "je", - "operands": "0x14000aed8" + "operands": "0x14000aed8", + "stack_offset": 0 } ], "successors": [ @@ -127669,97 +143701,113 @@ "address": "0x140011c00", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140011c05", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x140011c0a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x140011c0f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140011c10", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140011c12", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140011c14", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140011c16", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140011c18", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011c1c", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x140011c20", "size": 3, "mnemonic": "mov", - "operands": "r12d, ecx" + "operands": "r12d, ecx", + "stack_offset": 0 }, { "address": "0x140011c23", "size": 3, "mnemonic": "mov", - "operands": "r14, r9" + "operands": "r14, r9", + "stack_offset": 0 }, { "address": "0x140011c26", "size": 3, "mnemonic": "mov", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x140011c29", "size": 3, "mnemonic": "mov", - "operands": "r15, rdx" + "operands": "r15, rdx", + "stack_offset": 0 }, { "address": "0x140011c2c", "size": 3, "mnemonic": "cmp", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x140011c2f", "size": 6, "mnemonic": "je", - "operands": "0x140011cf0" + "operands": "0x140011cf0", + "stack_offset": 0 } ], "successors": [ @@ -127777,85 +143825,99 @@ "address": "0x140011cf0", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140011cf2", "size": 5, "mnemonic": "mov", - "operands": "edi, 0xe" + "operands": "edi, 0xe", + "stack_offset": 0 }, { "address": "0x140011cf7", "size": 2, "mnemonic": "mov", - "operands": "ecx, edi" + "operands": "ecx, edi", + "stack_offset": 0 }, { "address": "0x140011cf9", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x140011cfe", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x60], 0" + "operands": "dword ptr [rsp + 0x60], 0", + "stack_offset": 0 }, { "address": "0x140011d03", "size": 7, "mnemonic": "lea", - "operands": "rsi, [rip + 0x242f6]" + "operands": "rsi, [rip + 0x242f6]", + "stack_offset": 0 }, { "address": "0x140011d0a", "size": 5, "mnemonic": "mov", - "operands": "ebp, 0x100" + "operands": "ebp, 0x100", + "stack_offset": 0 }, { "address": "0x140011d0f", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x60]" + "operands": "r9, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140011d14", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x140011d16", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rdi - 0xa]" + "operands": "r8d, [rdi - 0xa]", + "stack_offset": 0 }, { "address": "0x140011d1a", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140011d1d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe48d]" + "operands": "qword ptr [rip + 0xe48d]", + "stack_offset": 0 }, { "address": "0x140011d23", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011d25", "size": 6, "mnemonic": "je", - "operands": "0x140011dac" + "operands": "0x140011dac", + "stack_offset": 0 } ], "successors": [ @@ -127873,37 +143935,43 @@ "address": "0x140011c35", "size": 7, "mnemonic": "lea", - "operands": "r13, [rip - 0x11c3c]" + "operands": "r13, [rip - 0x11c3c]", + "stack_offset": 0 }, { "address": "0x140011c3c", "size": 2, "mnemonic": "mov", - "operands": "edi, dword ptr [rsi]" + "operands": "edi, dword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x140011c3e", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [r13 + rdi*8 + 0x33240]" + "operands": "rbx, qword ptr [r13 + rdi*8 + 0x33240]", + "stack_offset": 0 }, { "address": "0x140011c46", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140011c47", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140011c4a", "size": 2, "mnemonic": "je", - "operands": "0x140011c5a" + "operands": "0x140011c5a", + "stack_offset": 0 } ], "successors": [ @@ -127921,13 +143989,15 @@ "address": "0x140011dac", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140011db1", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -127943,73 +144013,85 @@ "address": "0x140011d2b", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140011d2e", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140011d31", "size": 7, "mnemonic": "mov", - "operands": "rcx, 0xffffffffffffffff" + "operands": "rcx, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x140011d38", "size": 4, "mnemonic": "cmove", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140011d3c", "size": 4, "mnemonic": "xchg", - "operands": "qword ptr [rsi + r12*8], rax" + "operands": "qword ptr [rsi + r12*8], rax", + "stack_offset": 0 }, { "address": "0x140011d40", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x60]" + "operands": "r9, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140011d45", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x140011d47", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rdi - 0xc]" + "operands": "r8d, [rdi - 0xc]", + "stack_offset": 0 }, { "address": "0x140011d4b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140011d4e", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe45c]" + "operands": "qword ptr [rip + 0xe45c]", + "stack_offset": 0 }, { "address": "0x140011d54", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011d56", "size": 2, "mnemonic": "je", - "operands": "0x140011dac" + "operands": "0x140011dac", + "stack_offset": 0 } ], "successors": [ @@ -128027,109 +144109,127 @@ "address": "0x140011c5a", "size": 8, "mnemonic": "mov", - "operands": "rbp, qword ptr [r13 + rdi*8 + 0x262a0]" + "operands": "rbp, qword ptr [r13 + rdi*8 + 0x262a0]", + "stack_offset": 0 }, { "address": "0x140011c62", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140011c64", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x140011c67", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x800" + "operands": "r8d, 0x800", + "stack_offset": 0 }, { "address": "0x140011c6d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe4cd]" + "operands": "qword ptr [rip + 0xe4cd]", + "stack_offset": 0 }, { "address": "0x140011c73", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140011c76", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140011c79", "size": 6, "mnemonic": "jne", - "operands": "0x140011d7f" + "operands": "0x140011d7f", + "stack_offset": 0 }, { "address": "0x140011c7f", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe473]" + "operands": "qword ptr [rip + 0xe473]", + "stack_offset": 0 }, { "address": "0x140011c85", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x57" + "operands": "eax, 0x57", + "stack_offset": 0 }, { "address": "0x140011c88", "size": 2, "mnemonic": "jne", - "operands": "0x140011cd3" + "operands": "0x140011cd3", + "stack_offset": 0 }, { "address": "0x140011c8a", "size": 3, "mnemonic": "lea", - "operands": "ebx, [rax - 0x50]" + "operands": "ebx, [rax - 0x50]", + "stack_offset": 0 }, { "address": "0x140011c8d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x140011c90", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebx" + "operands": "r8d, ebx", + "stack_offset": 0 }, { "address": "0x140011c93", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x13106]" + "operands": "rdx, [rip + 0x13106]", + "stack_offset": 0 }, { "address": "0x140011c9a", "size": 5, "mnemonic": "call", - "operands": "0x140011460" + "operands": "0x140011460", + "stack_offset": 0 }, { "address": "0x140011c9f", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011ca1", "size": 2, "mnemonic": "je", - "operands": "0x140011cd3" + "operands": "0x140011cd3", + "stack_offset": 0 } ], "successors": [ @@ -128147,19 +144247,22 @@ "address": "0x140011c4c", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140011c4f", "size": 6, "mnemonic": "jne", - "operands": "0x140011d98" + "operands": "0x140011d98", + "stack_offset": 0 }, { "address": "0x140011c55", "size": 5, "mnemonic": "jmp", - "operands": "0x140011ce3" + "operands": "0x140011ce3", + "stack_offset": 0 } ], "successors": [ @@ -128176,79 +144279,92 @@ "address": "0x140011d58", "size": 2, "mnemonic": "mov", - "operands": "ecx, edi" + "operands": "ecx, edi", + "stack_offset": 0 }, { "address": "0x140011d5a", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x140011d5f", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x58]" + "operands": "rbp, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x140011d64", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140011d67", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140011d6c", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x68]" + "operands": "rsi, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x140011d71", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011d75", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140011d77", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140011d79", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140011d7b", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140011d7d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140011d7e", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -128264,121 +144380,141 @@ "address": "0x140011cd3", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x140011cd7", "size": 8, "mnemonic": "xchg", - "operands": "qword ptr [r13 + rdi*8 + 0x33240], rax" + "operands": "qword ptr [r13 + rdi*8 + 0x33240], rax", + "stack_offset": 0 }, { "address": "0x140011cdf", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x140011ce3", "size": 4, "mnemonic": "add", - "operands": "rsi, 4" + "operands": "rsi, 4", + "stack_offset": 0 }, { "address": "0x140011ce7", "size": 3, "mnemonic": "cmp", - "operands": "rsi, r14" + "operands": "rsi, r14", + "stack_offset": 0 }, { "address": "0x140011cea", "size": 6, "mnemonic": "jne", - "operands": "0x140011c3c" + "operands": "0x140011c3c", + "stack_offset": 0 }, { "address": "0x140011cf0", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140011cf2", "size": 5, "mnemonic": "mov", - "operands": "edi, 0xe" + "operands": "edi, 0xe", + "stack_offset": 0 }, { "address": "0x140011cf7", "size": 2, "mnemonic": "mov", - "operands": "ecx, edi" + "operands": "ecx, edi", + "stack_offset": 0 }, { "address": "0x140011cf9", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x140011cfe", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x60], 0" + "operands": "dword ptr [rsp + 0x60], 0", + "stack_offset": 0 }, { "address": "0x140011d03", "size": 7, "mnemonic": "lea", - "operands": "rsi, [rip + 0x242f6]" + "operands": "rsi, [rip + 0x242f6]", + "stack_offset": 0 }, { "address": "0x140011d0a", "size": 5, "mnemonic": "mov", - "operands": "ebp, 0x100" + "operands": "ebp, 0x100", + "stack_offset": 0 }, { "address": "0x140011d0f", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x60]" + "operands": "r9, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140011d14", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x140011d16", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rdi - 0xa]" + "operands": "r8d, [rdi - 0xa]", + "stack_offset": 0 }, { "address": "0x140011d1a", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140011d1d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe48d]" + "operands": "qword ptr [rip + 0xe48d]", + "stack_offset": 0 }, { "address": "0x140011d23", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011d25", "size": 6, "mnemonic": "je", - "operands": "0x140011dac" + "operands": "0x140011dac", + "stack_offset": 0 } ], "successors": [ @@ -128396,37 +144532,43 @@ "address": "0x140011ca3", "size": 3, "mnemonic": "mov", - "operands": "r8d, ebx" + "operands": "r8d, ebx", + "stack_offset": 0 }, { "address": "0x140011ca6", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x14bcb]" + "operands": "rdx, [rip + 0x14bcb]", + "stack_offset": 0 }, { "address": "0x140011cad", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x140011cb0", "size": 5, "mnemonic": "call", - "operands": "0x140011460" + "operands": "0x140011460", + "stack_offset": 0 }, { "address": "0x140011cb5", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011cb7", "size": 2, "mnemonic": "je", - "operands": "0x140011cd3" + "operands": "0x140011cd3", + "stack_offset": 0 } ], "successors": [ @@ -128444,103 +144586,120 @@ "address": "0x140011ce3", "size": 4, "mnemonic": "add", - "operands": "rsi, 4" + "operands": "rsi, 4", + "stack_offset": 0 }, { "address": "0x140011ce7", "size": 3, "mnemonic": "cmp", - "operands": "rsi, r14" + "operands": "rsi, r14", + "stack_offset": 0 }, { "address": "0x140011cea", "size": 6, "mnemonic": "jne", - "operands": "0x140011c3c" + "operands": "0x140011c3c", + "stack_offset": 0 }, { "address": "0x140011cf0", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140011cf2", "size": 5, "mnemonic": "mov", - "operands": "edi, 0xe" + "operands": "edi, 0xe", + "stack_offset": 0 }, { "address": "0x140011cf7", "size": 2, "mnemonic": "mov", - "operands": "ecx, edi" + "operands": "ecx, edi", + "stack_offset": 0 }, { "address": "0x140011cf9", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x140011cfe", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x60], 0" + "operands": "dword ptr [rsp + 0x60], 0", + "stack_offset": 0 }, { "address": "0x140011d03", "size": 7, "mnemonic": "lea", - "operands": "rsi, [rip + 0x242f6]" + "operands": "rsi, [rip + 0x242f6]", + "stack_offset": 0 }, { "address": "0x140011d0a", "size": 5, "mnemonic": "mov", - "operands": "ebp, 0x100" + "operands": "ebp, 0x100", + "stack_offset": 0 }, { "address": "0x140011d0f", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x60]" + "operands": "r9, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140011d14", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x140011d16", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rdi - 0xa]" + "operands": "r8d, [rdi - 0xa]", + "stack_offset": 0 }, { "address": "0x140011d1a", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140011d1d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe48d]" + "operands": "qword ptr [rip + 0xe48d]", + "stack_offset": 0 }, { "address": "0x140011d23", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011d25", "size": 6, "mnemonic": "je", - "operands": "0x140011dac" + "operands": "0x140011dac", + "stack_offset": 0 } ], "successors": [ @@ -128558,163 +144717,190 @@ "address": "0x140011cb9", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x140011cbc", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140011cbe", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x140011cc1", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe479]" + "operands": "qword ptr [rip + 0xe479]", + "stack_offset": 0 }, { "address": "0x140011cc7", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140011cca", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140011ccd", "size": 6, "mnemonic": "jne", - "operands": "0x140011d7f" + "operands": "0x140011d7f", + "stack_offset": 0 }, { "address": "0x140011cd3", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x140011cd7", "size": 8, "mnemonic": "xchg", - "operands": "qword ptr [r13 + rdi*8 + 0x33240], rax" + "operands": "qword ptr [r13 + rdi*8 + 0x33240], rax", + "stack_offset": 0 }, { "address": "0x140011cdf", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x140011ce3", "size": 4, "mnemonic": "add", - "operands": "rsi, 4" + "operands": "rsi, 4", + "stack_offset": 0 }, { "address": "0x140011ce7", "size": 3, "mnemonic": "cmp", - "operands": "rsi, r14" + "operands": "rsi, r14", + "stack_offset": 0 }, { "address": "0x140011cea", "size": 6, "mnemonic": "jne", - "operands": "0x140011c3c" + "operands": "0x140011c3c", + "stack_offset": 0 }, { "address": "0x140011cf0", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140011cf2", "size": 5, "mnemonic": "mov", - "operands": "edi, 0xe" + "operands": "edi, 0xe", + "stack_offset": 0 }, { "address": "0x140011cf7", "size": 2, "mnemonic": "mov", - "operands": "ecx, edi" + "operands": "ecx, edi", + "stack_offset": 0 }, { "address": "0x140011cf9", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x140011cfe", "size": 5, "mnemonic": "and", - "operands": "dword ptr [rsp + 0x60], 0" + "operands": "dword ptr [rsp + 0x60], 0", + "stack_offset": 0 }, { "address": "0x140011d03", "size": 7, "mnemonic": "lea", - "operands": "rsi, [rip + 0x242f6]" + "operands": "rsi, [rip + 0x242f6]", + "stack_offset": 0 }, { "address": "0x140011d0a", "size": 5, "mnemonic": "mov", - "operands": "ebp, 0x100" + "operands": "ebp, 0x100", + "stack_offset": 0 }, { "address": "0x140011d0f", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x60]" + "operands": "r9, [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x140011d14", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x140011d16", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rdi - 0xa]" + "operands": "r8d, [rdi - 0xa]", + "stack_offset": 0 }, { "address": "0x140011d1a", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140011d1d", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe48d]" + "operands": "qword ptr [rip + 0xe48d]", + "stack_offset": 0 }, { "address": "0x140011d23", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011d25", "size": 6, "mnemonic": "je", - "operands": "0x140011dac" + "operands": "0x140011dac", + "stack_offset": 0 } ], "successors": [ @@ -128738,31 +144924,36 @@ "address": "0x140011bc8", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rip + 0x24439]" + "operands": "rcx, qword ptr [rip + 0x24439]", + "stack_offset": 0 }, { "address": "0x140011bcf", "size": 4, "mnemonic": "cmp", - "operands": "rcx, -1" + "operands": "rcx, -1", + "stack_offset": 0 }, { "address": "0x140011bd3", "size": 2, "mnemonic": "jne", - "operands": "0x140011bd8" + "operands": "0x140011bd8", + "stack_offset": 0 }, { "address": "0x140011bd5", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140011bd7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -128784,127 +144975,148 @@ "address": "0x14000cb08", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rbx" + "operands": "qword ptr [rsp + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x14000cb0d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rsi" + "operands": "qword ptr [rsp + 0x20], rsi", + "stack_offset": 0 }, { "address": "0x14000cb12", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000cb13", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000cb14", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000cb16", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000cb18", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000cb1a", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000cb1d", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000cb21", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 8]" + "operands": "rax, qword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x14000cb25", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000cb27", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000cb2a", "size": 3, "mnemonic": "mov", - "operands": "rsi, qword ptr [rax]" + "operands": "rsi, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000cb2d", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000cb30", "size": 3, "mnemonic": "mov", - "operands": "r14d, dword ptr [rax]" + "operands": "r14d, dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000cb33", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x14000cb36", "size": 2, "mnemonic": "jne", - "operands": "0x14000cb48" + "operands": "0x14000cb48", + "stack_offset": 0 }, { "address": "0x14000cb38", "size": 3, "mnemonic": "mov", - "operands": "ecx, r14d" + "operands": "ecx, r14d", + "stack_offset": 0 }, { "address": "0x14000cb3b", "size": 5, "mnemonic": "call", - "operands": "0x14000f858" + "operands": "0x14000f858", + "stack_offset": 0 }, { "address": "0x14000cb40", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x14000cb43", "size": 5, "mnemonic": "jmp", - "operands": "0x14000cbf5" + "operands": "0x14000cbf5", + "stack_offset": 0 } ], "successors": [ @@ -128927,61 +145139,71 @@ "address": "0x14001e2cc", "size": 4, "mnemonic": "movzx", - "operands": "r10d, dx" + "operands": "r10d, dx", + "stack_offset": 0 }, { "address": "0x14001e2d0", "size": 3, "mnemonic": "mov", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x14001e2d3", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14001e2d6", "size": 5, "mnemonic": "movd", - "operands": "xmm0, r10d" + "operands": "xmm0, r10d", + "stack_offset": 0 }, { "address": "0x14001e2db", "size": 5, "mnemonic": "pshuflw", - "operands": "xmm1, xmm0, 0" + "operands": "xmm1, xmm0, 0", + "stack_offset": 0 }, { "address": "0x14001e2e0", "size": 5, "mnemonic": "pshufd", - "operands": "xmm2, xmm1, 0" + "operands": "xmm2, xmm1, 0", + "stack_offset": 0 }, { "address": "0x14001e2e5", "size": 3, "mnemonic": "mov", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x14001e2e8", "size": 5, "mnemonic": "and", - "operands": "eax, 0xfff" + "operands": "eax, 0xfff", + "stack_offset": 0 }, { "address": "0x14001e2ed", "size": 6, "mnemonic": "cmp", - "operands": "rax, 0xff0" + "operands": "rax, 0xff0", + "stack_offset": 0 }, { "address": "0x14001e2f3", "size": 2, "mnemonic": "ja", - "operands": "0x14001e317" + "operands": "0x14001e317", + "stack_offset": 0 } ], "successors": [ @@ -128999,13 +145221,15 @@ "address": "0x14001e317", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [r8], dx" + "operands": "word ptr [r8], dx", + "stack_offset": 0 }, { "address": "0x14001e31b", "size": 2, "mnemonic": "je", - "operands": "0x14001e344" + "operands": "0x14001e344", + "stack_offset": 0 } ], "successors": [ @@ -129023,61 +145247,71 @@ "address": "0x14001e2f5", "size": 5, "mnemonic": "movdqu", - "operands": "xmm0, xmmword ptr [r8]" + "operands": "xmm0, xmmword ptr [r8]", + "stack_offset": 0 }, { "address": "0x14001e2fa", "size": 3, "mnemonic": "xorps", - "operands": "xmm1, xmm1" + "operands": "xmm1, xmm1", + "stack_offset": 0 }, { "address": "0x14001e2fd", "size": 4, "mnemonic": "pcmpeqw", - "operands": "xmm1, xmm0" + "operands": "xmm1, xmm0", + "stack_offset": 0 }, { "address": "0x14001e301", "size": 4, "mnemonic": "pcmpeqw", - "operands": "xmm0, xmm2" + "operands": "xmm0, xmm2", + "stack_offset": 0 }, { "address": "0x14001e305", "size": 3, "mnemonic": "orps", - "operands": "xmm1, xmm0" + "operands": "xmm1, xmm0", + "stack_offset": 0 }, { "address": "0x14001e308", "size": 4, "mnemonic": "pmovmskb", - "operands": "eax, xmm1" + "operands": "eax, xmm1", + "stack_offset": 0 }, { "address": "0x14001e30c", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001e30e", "size": 2, "mnemonic": "jne", - "operands": "0x14001e32d" + "operands": "0x14001e32d", + "stack_offset": 0 }, { "address": "0x14001e310", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x10" + "operands": "eax, 0x10", + "stack_offset": 0 }, { "address": "0x14001e315", "size": 2, "mnemonic": "jmp", - "operands": "0x14001e328" + "operands": "0x14001e328", + "stack_offset": 0 } ], "successors": [ @@ -129094,13 +145328,15 @@ "address": "0x14001e344", "size": 3, "mnemonic": "mov", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x14001e347", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -129116,13 +145352,15 @@ "address": "0x14001e31d", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [r8], r9w" + "operands": "word ptr [r8], r9w", + "stack_offset": 0 }, { "address": "0x14001e321", "size": 2, "mnemonic": "je", - "operands": "0x14001e341" + "operands": "0x14001e341", + "stack_offset": 0 } ], "successors": [ @@ -129140,13 +145378,15 @@ "address": "0x14001e328", "size": 3, "mnemonic": "add", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14001e32b", "size": 2, "mnemonic": "jmp", - "operands": "0x14001e2e5" + "operands": "0x14001e2e5", + "stack_offset": 0 } ], "successors": [ @@ -129163,13 +145403,15 @@ "address": "0x14001e341", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001e343", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -129185,19 +145427,22 @@ "address": "0x14001e323", "size": 5, "mnemonic": "mov", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x14001e328", "size": 3, "mnemonic": "add", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14001e32b", "size": 2, "mnemonic": "jmp", - "operands": "0x14001e2e5" + "operands": "0x14001e2e5", + "stack_offset": 0 } ], "successors": [ @@ -129214,25 +145459,29 @@ "address": "0x14001e2e5", "size": 3, "mnemonic": "mov", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x14001e2e8", "size": 5, "mnemonic": "and", - "operands": "eax, 0xfff" + "operands": "eax, 0xfff", + "stack_offset": 0 }, { "address": "0x14001e2ed", "size": 6, "mnemonic": "cmp", - "operands": "rax, 0xff0" + "operands": "rax, 0xff0", + "stack_offset": 0 }, { "address": "0x14001e2f3", "size": 2, "mnemonic": "ja", - "operands": "0x14001e317" + "operands": "0x14001e317", + "stack_offset": 0 } ], "successors": [ @@ -129256,61 +145505,71 @@ "address": "0x14001053c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140010541", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x140010546", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x14001054b", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001054d", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140010551", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x140010553", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140010556", "size": 3, "mnemonic": "mov", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140010559", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001055c", "size": 2, "mnemonic": "je", - "operands": "0x140010589" + "operands": "0x140010589", + "stack_offset": 0 } ], "successors": [ @@ -129328,43 +145587,50 @@ "address": "0x140010589", "size": 2, "mnemonic": "mov", - "operands": "al, 1" + "operands": "al, 1", + "stack_offset": 0 }, { "address": "0x14001058b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140010590", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140010595", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x48]" + "operands": "rdi, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001059a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001059e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400105a0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -129380,37 +145646,43 @@ "address": "0x14001055e", "size": 5, "mnemonic": "movzx", - "operands": "esi, word ptr [r14 + rbx*2]" + "operands": "esi, word ptr [r14 + rbx*2]", + "stack_offset": 0 }, { "address": "0x140010563", "size": 5, "mnemonic": "call", - "operands": "0x14000cdf4" + "operands": "0x14000cdf4", + "stack_offset": 0 }, { "address": "0x140010568", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14001056b", "size": 5, "mnemonic": "mov", - "operands": "eax, 0xff" + "operands": "eax, 0xff", + "stack_offset": 0 }, { "address": "0x140010570", "size": 3, "mnemonic": "cmp", - "operands": "si, ax" + "operands": "si, ax", + "stack_offset": 0 }, { "address": "0x140010573", "size": 2, "mnemonic": "ja", - "operands": "0x1400105a1" + "operands": "0x1400105a1", + "stack_offset": 0 } ], "successors": [ @@ -129428,13 +145700,15 @@ "address": "0x1400105a1", "size": 2, "mnemonic": "xor", - "operands": "al, al" + "operands": "al, al", + "stack_offset": 0 }, { "address": "0x1400105a3", "size": 2, "mnemonic": "jmp", - "operands": "0x14001058b" + "operands": "0x14001058b", + "stack_offset": 0 } ], "successors": [ @@ -129451,19 +145725,22 @@ "address": "0x140010575", "size": 4, "mnemonic": "movzx", - "operands": "ecx, word ptr [rdx + rsi*2]" + "operands": "ecx, word ptr [rdx + rsi*2]", + "stack_offset": 0 }, { "address": "0x140010579", "size": 6, "mnemonic": "test", - "operands": "ecx, 0x103" + "operands": "ecx, 0x103", + "stack_offset": 0 }, { "address": "0x14001057f", "size": 2, "mnemonic": "je", - "operands": "0x1400105a1" + "operands": "0x1400105a1", + "stack_offset": 0 } ], "successors": [ @@ -129481,37 +145758,43 @@ "address": "0x14001058b", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140010590", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140010595", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x48]" + "operands": "rdi, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001059a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001059e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x1400105a0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -129527,19 +145810,22 @@ "address": "0x140010581", "size": 3, "mnemonic": "inc", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140010584", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x140010587", "size": 2, "mnemonic": "jb", - "operands": "0x14001055e" + "operands": "0x14001055e", + "stack_offset": 0 } ], "successors": [ @@ -129563,103 +145849,120 @@ "address": "0x14001a3c0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001a3c5", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a3c6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a3ca", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x14001a3cd", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x14001a3d0", "size": 3, "mnemonic": "mov", - "operands": "r11, rcx" + "operands": "r11, rcx", + "stack_offset": 0 }, { "address": "0x14001a3d3", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x14001a3d6", "size": 2, "mnemonic": "jne", - "operands": "0x14001a3f0" + "operands": "0x14001a3f0", + "stack_offset": 0 }, { "address": "0x14001a3d8", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a3db", "size": 2, "mnemonic": "jne", - "operands": "0x14001a3f5" + "operands": "0x14001a3f5", + "stack_offset": 0 }, { "address": "0x14001a3dd", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001a3e0", "size": 2, "mnemonic": "jne", - "operands": "0x14001a40b" + "operands": "0x14001a40b", + "stack_offset": 0 }, { "address": "0x14001a3e2", "size": 3, "mnemonic": "mov", - "operands": "eax, r9d" + "operands": "eax, r9d", + "stack_offset": 0 }, { "address": "0x14001a3e5", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a3ea", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a3ee", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a3ef", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -129681,67 +145984,78 @@ "address": "0x14000cdf4", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000cdf8", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14000cdfd", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x30]" + "operands": "rdx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000ce02", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax + 0x90]" + "operands": "rcx, qword ptr [rax + 0x90]", + "stack_offset": 0 }, { "address": "0x14000ce09", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x14000ce0e", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000ce11", "size": 5, "mnemonic": "call", - "operands": "0x140015b2c" + "operands": "0x140015b2c", + "stack_offset": 0 }, { "address": "0x14000ce16", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x30]" + "operands": "rax, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000ce1b", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rax]" + "operands": "rax, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000ce1e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000ce22", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -129763,79 +146077,92 @@ "address": "0x14001066c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140010671", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x140010676", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14001067b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001067c", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001067e", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140010680", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140010684", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140010687", "size": 2, "mnemonic": "xor", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x140010689", "size": 3, "mnemonic": "mov", - "operands": "r15, rcx" + "operands": "r15, rcx", + "stack_offset": 0 }, { "address": "0x14001068c", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001068f", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140010692", "size": 6, "mnemonic": "je", - "operands": "0x1400107fe" + "operands": "0x1400107fe", + "stack_offset": 0 } ], "successors": [ @@ -129853,55 +146180,64 @@ "address": "0x1400107fe", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140010801", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140010806", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001080b", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140010810", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140010814", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140010816", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140010818", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010819", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -129917,151 +146253,176 @@ "address": "0x140010698", "size": 7, "mnemonic": "mov", - "operands": "r10, qword ptr [rip + 0x209a1]" + "operands": "r10, qword ptr [rip + 0x209a1]", + "stack_offset": 0 }, { "address": "0x14001069f", "size": 3, "mnemonic": "mov", - "operands": "ecx, r10d" + "operands": "ecx, r10d", + "stack_offset": 0 }, { "address": "0x1400106a2", "size": 3, "mnemonic": "mov", - "operands": "rsi, r10" + "operands": "rsi, r10", + "stack_offset": 0 }, { "address": "0x1400106a5", "size": 3, "mnemonic": "xor", - "operands": "rsi, qword ptr [rdx]" + "operands": "rsi, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x1400106a8", "size": 3, "mnemonic": "and", - "operands": "ecx, 0x3f" + "operands": "ecx, 0x3f", + "stack_offset": 0 }, { "address": "0x1400106ab", "size": 3, "mnemonic": "mov", - "operands": "r9, r10" + "operands": "r9, r10", + "stack_offset": 0 }, { "address": "0x1400106ae", "size": 3, "mnemonic": "ror", - "operands": "rsi, cl" + "operands": "rsi, cl", + "stack_offset": 0 }, { "address": "0x1400106b1", "size": 4, "mnemonic": "xor", - "operands": "r9, qword ptr [rdx + 8]" + "operands": "r9, qword ptr [rdx + 8]", + "stack_offset": 0 }, { "address": "0x1400106b5", "size": 3, "mnemonic": "mov", - "operands": "rbx, r10" + "operands": "rbx, r10", + "stack_offset": 0 }, { "address": "0x1400106b8", "size": 4, "mnemonic": "xor", - "operands": "rbx, qword ptr [rdx + 0x10]" + "operands": "rbx, qword ptr [rdx + 0x10]", + "stack_offset": 0 }, { "address": "0x1400106bc", "size": 3, "mnemonic": "ror", - "operands": "r9, cl" + "operands": "r9, cl", + "stack_offset": 0 }, { "address": "0x1400106bf", "size": 3, "mnemonic": "ror", - "operands": "rbx, cl" + "operands": "rbx, cl", + "stack_offset": 0 }, { "address": "0x1400106c2", "size": 3, "mnemonic": "cmp", - "operands": "r9, rbx" + "operands": "r9, rbx", + "stack_offset": 0 }, { "address": "0x1400106c5", "size": 6, "mnemonic": "jne", - "operands": "0x140010772" + "operands": "0x140010772", + "stack_offset": 0 }, { "address": "0x1400106cb", "size": 3, "mnemonic": "sub", - "operands": "rbx, rsi" + "operands": "rbx, rsi", + "stack_offset": 0 }, { "address": "0x1400106ce", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x200" + "operands": "eax, 0x200", + "stack_offset": 0 }, { "address": "0x1400106d3", "size": 4, "mnemonic": "sar", - "operands": "rbx, 3" + "operands": "rbx, 3", + "stack_offset": 0 }, { "address": "0x1400106d7", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400106da", "size": 3, "mnemonic": "mov", - "operands": "rdi, rbx" + "operands": "rdi, rbx", + "stack_offset": 0 }, { "address": "0x1400106dd", "size": 4, "mnemonic": "cmova", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x1400106e1", "size": 3, "mnemonic": "lea", - "operands": "eax, [rbp + 0x20]" + "operands": "eax, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400106e4", "size": 3, "mnemonic": "add", - "operands": "rdi, rbx" + "operands": "rdi, rbx", + "stack_offset": 0 }, { "address": "0x1400106e7", "size": 4, "mnemonic": "cmove", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x1400106eb", "size": 3, "mnemonic": "cmp", - "operands": "rdi, rbx" + "operands": "rdi, rbx", + "stack_offset": 0 }, { "address": "0x1400106ee", "size": 2, "mnemonic": "jb", - "operands": "0x14001070e" + "operands": "0x14001070e", + "stack_offset": 0 } ], "successors": [ @@ -130079,61 +146440,71 @@ "address": "0x14001070e", "size": 4, "mnemonic": "lea", - "operands": "rdi, [rbx + 4]" + "operands": "rdi, [rbx + 4]", + "stack_offset": 0 }, { "address": "0x140010712", "size": 6, "mnemonic": "mov", - "operands": "r8d, 8" + "operands": "r8d, 8", + "stack_offset": 0 }, { "address": "0x140010718", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x14001071b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14001071e", "size": 5, "mnemonic": "call", - "operands": "0x14001be60" + "operands": "0x14001be60", + "stack_offset": 0 }, { "address": "0x140010723", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140010725", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x140010728", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001072d", "size": 3, "mnemonic": "test", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x140010730", "size": 6, "mnemonic": "je", - "operands": "0x1400107fe" + "operands": "0x1400107fe", + "stack_offset": 0 } ], "successors": [ @@ -130151,115 +146522,134 @@ "address": "0x1400106f0", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rbp + 8]" + "operands": "r8d, [rbp + 8]", + "stack_offset": 0 }, { "address": "0x1400106f4", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x1400106f7", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x1400106fa", "size": 5, "mnemonic": "call", - "operands": "0x14001be60" + "operands": "0x14001be60", + "stack_offset": 0 }, { "address": "0x1400106ff", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140010701", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x140010704", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140010709", "size": 3, "mnemonic": "test", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x14001070c", "size": 2, "mnemonic": "jne", - "operands": "0x140010736" + "operands": "0x140010736", + "stack_offset": 0 }, { "address": "0x14001070e", "size": 4, "mnemonic": "lea", - "operands": "rdi, [rbx + 4]" + "operands": "rdi, [rbx + 4]", + "stack_offset": 0 }, { "address": "0x140010712", "size": 6, "mnemonic": "mov", - "operands": "r8d, 8" + "operands": "r8d, 8", + "stack_offset": 0 }, { "address": "0x140010718", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x14001071b", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14001071e", "size": 5, "mnemonic": "call", - "operands": "0x14001be60" + "operands": "0x14001be60", + "stack_offset": 0 }, { "address": "0x140010723", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140010725", "size": 3, "mnemonic": "mov", - "operands": "r14, rax" + "operands": "r14, rax", + "stack_offset": 0 }, { "address": "0x140010728", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001072d", "size": 3, "mnemonic": "test", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x140010730", "size": 6, "mnemonic": "je", - "operands": "0x1400107fe" + "operands": "0x1400107fe", + "stack_offset": 0 } ], "successors": [ @@ -130277,73 +146667,85 @@ "address": "0x140010736", "size": 7, "mnemonic": "mov", - "operands": "r10, qword ptr [rip + 0x20903]" + "operands": "r10, qword ptr [rip + 0x20903]", + "stack_offset": 0 }, { "address": "0x14001073d", "size": 4, "mnemonic": "lea", - "operands": "r9, [r14 + rbx*8]" + "operands": "r9, [r14 + rbx*8]", + "stack_offset": 0 }, { "address": "0x140010741", "size": 4, "mnemonic": "lea", - "operands": "rbx, [r14 + rdi*8]" + "operands": "rbx, [r14 + rdi*8]", + "stack_offset": 0 }, { "address": "0x140010745", "size": 3, "mnemonic": "mov", - "operands": "rsi, r14" + "operands": "rsi, r14", + "stack_offset": 0 }, { "address": "0x140010748", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001074b", "size": 3, "mnemonic": "sub", - "operands": "rcx, r9" + "operands": "rcx, r9", + "stack_offset": 0 }, { "address": "0x14001074e", "size": 4, "mnemonic": "add", - "operands": "rcx, 7" + "operands": "rcx, 7", + "stack_offset": 0 }, { "address": "0x140010752", "size": 4, "mnemonic": "shr", - "operands": "rcx, 3" + "operands": "rcx, 3", + "stack_offset": 0 }, { "address": "0x140010756", "size": 3, "mnemonic": "cmp", - "operands": "r9, rbx" + "operands": "r9, rbx", + "stack_offset": 0 }, { "address": "0x140010759", "size": 4, "mnemonic": "cmova", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14001075d", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140010760", "size": 2, "mnemonic": "je", - "operands": "0x140010772" + "operands": "0x140010772", + "stack_offset": 0 } ], "successors": [ @@ -130361,259 +146763,302 @@ "address": "0x140010772", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x40" + "operands": "r8d, 0x40", + "stack_offset": 0 }, { "address": "0x140010778", "size": 4, "mnemonic": "lea", - "operands": "rdi, [r9 + 8]" + "operands": "rdi, [r9 + 8]", + "stack_offset": 0 }, { "address": "0x14001077c", "size": 3, "mnemonic": "mov", - "operands": "ecx, r8d" + "operands": "ecx, r8d", + "stack_offset": 0 }, { "address": "0x14001077f", "size": 3, "mnemonic": "mov", - "operands": "eax, r10d" + "operands": "eax, r10d", + "stack_offset": 0 }, { "address": "0x140010782", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x140010785", "size": 2, "mnemonic": "sub", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x140010787", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r15 + 8]" + "operands": "rax, qword ptr [r15 + 8]", + "stack_offset": 0 }, { "address": "0x14001078b", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001078e", "size": 3, "mnemonic": "ror", - "operands": "rdx, cl" + "operands": "rdx, cl", + "stack_offset": 0 }, { "address": "0x140010791", "size": 3, "mnemonic": "mov", - "operands": "ecx, r8d" + "operands": "ecx, r8d", + "stack_offset": 0 }, { "address": "0x140010794", "size": 3, "mnemonic": "xor", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140010797", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r9], rdx" + "operands": "qword ptr [r9], rdx", + "stack_offset": 0 }, { "address": "0x14001079a", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0x2089f]" + "operands": "rdx, qword ptr [rip + 0x2089f]", + "stack_offset": 0 }, { "address": "0x1400107a1", "size": 2, "mnemonic": "mov", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x1400107a3", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x1400107a6", "size": 2, "mnemonic": "sub", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x1400107a8", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [r15]" + "operands": "rax, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x1400107ab", "size": 3, "mnemonic": "ror", - "operands": "rsi, cl" + "operands": "rsi, cl", + "stack_offset": 0 }, { "address": "0x1400107ae", "size": 3, "mnemonic": "xor", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x1400107b1", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400107b4", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rsi" + "operands": "qword ptr [rcx], rsi", + "stack_offset": 0 }, { "address": "0x1400107b7", "size": 3, "mnemonic": "mov", - "operands": "ecx, r8d" + "operands": "ecx, r8d", + "stack_offset": 0 }, { "address": "0x1400107ba", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0x2087f]" + "operands": "rdx, qword ptr [rip + 0x2087f]", + "stack_offset": 0 }, { "address": "0x1400107c1", "size": 2, "mnemonic": "mov", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x1400107c3", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x1400107c6", "size": 2, "mnemonic": "sub", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x1400107c8", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [r15]" + "operands": "rax, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x1400107cb", "size": 3, "mnemonic": "ror", - "operands": "rdi, cl" + "operands": "rdi, cl", + "stack_offset": 0 }, { "address": "0x1400107ce", "size": 3, "mnemonic": "xor", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x1400107d1", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400107d4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdx + 8], rdi" + "operands": "qword ptr [rdx + 8], rdi", + "stack_offset": 0 }, { "address": "0x1400107d8", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0x20861]" + "operands": "rdx, qword ptr [rip + 0x20861]", + "stack_offset": 0 }, { "address": "0x1400107df", "size": 2, "mnemonic": "mov", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x1400107e1", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x1400107e4", "size": 3, "mnemonic": "sub", - "operands": "r8d, eax" + "operands": "r8d, eax", + "stack_offset": 0 }, { "address": "0x1400107e7", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [r15]" + "operands": "rax, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x1400107ea", "size": 3, "mnemonic": "mov", - "operands": "cl, r8b" + "operands": "cl, r8b", + "stack_offset": 0 }, { "address": "0x1400107ed", "size": 3, "mnemonic": "ror", - "operands": "rbx, cl" + "operands": "rbx, cl", + "stack_offset": 0 }, { "address": "0x1400107f0", "size": 3, "mnemonic": "xor", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x1400107f3", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400107f6", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400107f8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x10], rbx" + "operands": "qword ptr [rcx + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x1400107fc", "size": 2, "mnemonic": "jmp", - "operands": "0x140010801" + "operands": "0x140010801", + "stack_offset": 0 } ], "successors": [ @@ -130630,283 +147075,330 @@ "address": "0x140010762", "size": 3, "mnemonic": "mov", - "operands": "rax, r10" + "operands": "rax, r10", + "stack_offset": 0 }, { "address": "0x140010765", "size": 3, "mnemonic": "mov", - "operands": "rdi, r9" + "operands": "rdi, r9", + "stack_offset": 0 }, { "address": "0x140010768", "size": 3, "mnemonic": "rep stosq", - "operands": "qword ptr [rdi], rax" + "operands": "qword ptr [rdi], rax", + "stack_offset": 0 }, { "address": "0x14001076b", "size": 7, "mnemonic": "mov", - "operands": "r10, qword ptr [rip + 0x208ce]" + "operands": "r10, qword ptr [rip + 0x208ce]", + "stack_offset": 0 }, { "address": "0x140010772", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x40" + "operands": "r8d, 0x40", + "stack_offset": 0 }, { "address": "0x140010778", "size": 4, "mnemonic": "lea", - "operands": "rdi, [r9 + 8]" + "operands": "rdi, [r9 + 8]", + "stack_offset": 0 }, { "address": "0x14001077c", "size": 3, "mnemonic": "mov", - "operands": "ecx, r8d" + "operands": "ecx, r8d", + "stack_offset": 0 }, { "address": "0x14001077f", "size": 3, "mnemonic": "mov", - "operands": "eax, r10d" + "operands": "eax, r10d", + "stack_offset": 0 }, { "address": "0x140010782", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x140010785", "size": 2, "mnemonic": "sub", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x140010787", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [r15 + 8]" + "operands": "rax, qword ptr [r15 + 8]", + "stack_offset": 0 }, { "address": "0x14001078b", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001078e", "size": 3, "mnemonic": "ror", - "operands": "rdx, cl" + "operands": "rdx, cl", + "stack_offset": 0 }, { "address": "0x140010791", "size": 3, "mnemonic": "mov", - "operands": "ecx, r8d" + "operands": "ecx, r8d", + "stack_offset": 0 }, { "address": "0x140010794", "size": 3, "mnemonic": "xor", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x140010797", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [r9], rdx" + "operands": "qword ptr [r9], rdx", + "stack_offset": 0 }, { "address": "0x14001079a", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0x2089f]" + "operands": "rdx, qword ptr [rip + 0x2089f]", + "stack_offset": 0 }, { "address": "0x1400107a1", "size": 2, "mnemonic": "mov", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x1400107a3", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x1400107a6", "size": 2, "mnemonic": "sub", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x1400107a8", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [r15]" + "operands": "rax, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x1400107ab", "size": 3, "mnemonic": "ror", - "operands": "rsi, cl" + "operands": "rsi, cl", + "stack_offset": 0 }, { "address": "0x1400107ae", "size": 3, "mnemonic": "xor", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x1400107b1", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400107b4", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rsi" + "operands": "qword ptr [rcx], rsi", + "stack_offset": 0 }, { "address": "0x1400107b7", "size": 3, "mnemonic": "mov", - "operands": "ecx, r8d" + "operands": "ecx, r8d", + "stack_offset": 0 }, { "address": "0x1400107ba", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0x2087f]" + "operands": "rdx, qword ptr [rip + 0x2087f]", + "stack_offset": 0 }, { "address": "0x1400107c1", "size": 2, "mnemonic": "mov", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x1400107c3", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x1400107c6", "size": 2, "mnemonic": "sub", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x1400107c8", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [r15]" + "operands": "rax, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x1400107cb", "size": 3, "mnemonic": "ror", - "operands": "rdi, cl" + "operands": "rdi, cl", + "stack_offset": 0 }, { "address": "0x1400107ce", "size": 3, "mnemonic": "xor", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x1400107d1", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400107d4", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rdx + 8], rdi" + "operands": "qword ptr [rdx + 8], rdi", + "stack_offset": 0 }, { "address": "0x1400107d8", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0x20861]" + "operands": "rdx, qword ptr [rip + 0x20861]", + "stack_offset": 0 }, { "address": "0x1400107df", "size": 2, "mnemonic": "mov", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x1400107e1", "size": 3, "mnemonic": "and", - "operands": "eax, 0x3f" + "operands": "eax, 0x3f", + "stack_offset": 0 }, { "address": "0x1400107e4", "size": 3, "mnemonic": "sub", - "operands": "r8d, eax" + "operands": "r8d, eax", + "stack_offset": 0 }, { "address": "0x1400107e7", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [r15]" + "operands": "rax, qword ptr [r15]", + "stack_offset": 0 }, { "address": "0x1400107ea", "size": 3, "mnemonic": "mov", - "operands": "cl, r8b" + "operands": "cl, r8b", + "stack_offset": 0 }, { "address": "0x1400107ed", "size": 3, "mnemonic": "ror", - "operands": "rbx, cl" + "operands": "rbx, cl", + "stack_offset": 0 }, { "address": "0x1400107f0", "size": 3, "mnemonic": "xor", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x1400107f3", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax]" + "operands": "rcx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x1400107f6", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400107f8", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x10], rbx" + "operands": "qword ptr [rcx + 0x10], rbx", + "stack_offset": 0 }, { "address": "0x1400107fc", "size": 2, "mnemonic": "jmp", - "operands": "0x140010801" + "operands": "0x140010801", + "stack_offset": 0 } ], "successors": [ @@ -130923,49 +147415,57 @@ "address": "0x140010801", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x140010806", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001080b", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140010810", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140010814", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140010816", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140010818", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010819", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -130987,49 +147487,57 @@ "address": "0x14001185c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140011861", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140011862", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011866", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140011869", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14001186c", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x90]" + "operands": "rcx, qword ptr [rcx + 0x90]", + "stack_offset": 0 }, { "address": "0x140011873", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140011876", "size": 2, "mnemonic": "je", - "operands": "0x1400118a4" + "operands": "0x1400118a4", + "stack_offset": 0 } ], "successors": [ @@ -131047,19 +147555,22 @@ "address": "0x1400118a4", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x90], rbx" + "operands": "qword ptr [rdi + 0x90], rbx", + "stack_offset": 0 }, { "address": "0x1400118ab", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400118ae", "size": 2, "mnemonic": "je", - "operands": "0x1400118b8" + "operands": "0x1400118b8", + "stack_offset": 0 } ], "successors": [ @@ -131077,25 +147588,29 @@ "address": "0x140011878", "size": 5, "mnemonic": "call", - "operands": "0x14001a844" + "operands": "0x14001a844", + "stack_offset": 0 }, { "address": "0x14001187d", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + 0x90]" + "operands": "rcx, qword ptr [rdi + 0x90]", + "stack_offset": 0 }, { "address": "0x140011884", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x219ad]" + "operands": "rcx, qword ptr [rip + 0x219ad]", + "stack_offset": 0 }, { "address": "0x14001188b", "size": 2, "mnemonic": "je", - "operands": "0x1400118a4" + "operands": "0x1400118a4", + "stack_offset": 0 } ], "successors": [ @@ -131113,25 +147628,29 @@ "address": "0x1400118b8", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400118bd", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400118c1", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400118c2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -131147,37 +147666,43 @@ "address": "0x1400118b0", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400118b3", "size": 5, "mnemonic": "call", - "operands": "0x14001a5b8" + "operands": "0x14001a5b8", + "stack_offset": 0 }, { "address": "0x1400118b8", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400118bd", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400118c1", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400118c2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -131193,19 +147718,22 @@ "address": "0x14001188d", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1fa3c]" + "operands": "rax, [rip + 0x1fa3c]", + "stack_offset": 0 }, { "address": "0x140011894", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140011897", "size": 2, "mnemonic": "je", - "operands": "0x1400118a4" + "operands": "0x1400118a4", + "stack_offset": 0 } ], "successors": [ @@ -131223,37 +147751,43 @@ "address": "0x140011899", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rcx + 0x10], 0" + "operands": "dword ptr [rcx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x14001189d", "size": 2, "mnemonic": "jne", - "operands": "0x1400118a4" + "operands": "0x1400118a4", + "stack_offset": 0 }, { "address": "0x14001189f", "size": 5, "mnemonic": "call", - "operands": "0x14001a644" + "operands": "0x14001a644", + "stack_offset": 0 }, { "address": "0x1400118a4", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x90], rbx" + "operands": "qword ptr [rdi + 0x90], rbx", + "stack_offset": 0 }, { "address": "0x1400118ab", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400118ae", "size": 2, "mnemonic": "je", - "operands": "0x1400118b8" + "operands": "0x1400118b8", + "stack_offset": 0 } ], "successors": [ @@ -131277,43 +147811,50 @@ "address": "0x140015b60", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015b62", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140015b66", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1d6cb]" + "operands": "rax, [rip + 0x1d6cb]", + "stack_offset": 0 }, { "address": "0x140015b6d", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x140015b70", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + r8*8]" + "operands": "rax, qword ptr [rax + r8*8]", + "stack_offset": 0 }, { "address": "0x140015b74", "size": 3, "mnemonic": "cmp", - "operands": "qword ptr [rdx], rax" + "operands": "qword ptr [rdx], rax", + "stack_offset": 0 }, { "address": "0x140015b77", "size": 2, "mnemonic": "je", - "operands": "0x140015b8f" + "operands": "0x140015b8f", + "stack_offset": 0 } ], "successors": [ @@ -131331,19 +147872,22 @@ "address": "0x140015b8f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140015b93", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015b94", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -131359,49 +147903,57 @@ "address": "0x140015b79", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rcx + 0x3a8]" + "operands": "eax, dword ptr [rcx + 0x3a8]", + "stack_offset": 0 }, { "address": "0x140015b7f", "size": 6, "mnemonic": "test", - "operands": "dword ptr [rip + 0x1ba0b], eax" + "operands": "dword ptr [rip + 0x1ba0b], eax", + "stack_offset": 0 }, { "address": "0x140015b85", "size": 2, "mnemonic": "jne", - "operands": "0x140015b8f" + "operands": "0x140015b8f", + "stack_offset": 0 }, { "address": "0x140015b87", "size": 5, "mnemonic": "call", - "operands": "0x14001a8ec" + "operands": "0x14001a8ec", + "stack_offset": 0 }, { "address": "0x140015b8c", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x140015b8f", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140015b93", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015b94", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -131423,43 +147975,50 @@ "address": "0x140015bcc", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015bce", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140015bd2", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1dc67]" + "operands": "rax, [rip + 0x1dc67]", + "stack_offset": 0 }, { "address": "0x140015bd9", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x140015bdc", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + r8*8]" + "operands": "rax, qword ptr [rax + r8*8]", + "stack_offset": 0 }, { "address": "0x140015be0", "size": 3, "mnemonic": "cmp", - "operands": "qword ptr [rdx], rax" + "operands": "qword ptr [rdx], rax", + "stack_offset": 0 }, { "address": "0x140015be3", "size": 2, "mnemonic": "je", - "operands": "0x140015bfb" + "operands": "0x140015bfb", + "stack_offset": 0 } ], "successors": [ @@ -131477,19 +148036,22 @@ "address": "0x140015bfb", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140015bff", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015c00", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -131505,49 +148067,57 @@ "address": "0x140015be5", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rcx + 0x3a8]" + "operands": "eax, dword ptr [rcx + 0x3a8]", + "stack_offset": 0 }, { "address": "0x140015beb", "size": 6, "mnemonic": "test", - "operands": "dword ptr [rip + 0x1b99f], eax" + "operands": "dword ptr [rip + 0x1b99f], eax", + "stack_offset": 0 }, { "address": "0x140015bf1", "size": 2, "mnemonic": "jne", - "operands": "0x140015bfb" + "operands": "0x140015bfb", + "stack_offset": 0 }, { "address": "0x140015bf3", "size": 5, "mnemonic": "call", - "operands": "0x1400188c8" + "operands": "0x1400188c8", + "stack_offset": 0 }, { "address": "0x140015bf8", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x140015bfb", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140015bff", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140015c00", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -131569,181 +148139,211 @@ "address": "0x140016bc8", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140016bca", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140016bcb", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140016bcc", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140016bcd", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140016bcf", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140016bd1", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140016bd3", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x140016bd7", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1a462]" + "operands": "rax, qword ptr [rip + 0x1a462]", + "stack_offset": 0 }, { "address": "0x140016bde", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140016be1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rax" + "operands": "qword ptr [rsp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x140016be6", "size": 8, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0xa0]" + "operands": "rsi, qword ptr [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x140016bee", "size": 7, "mnemonic": "lea", - "operands": "rbx, [rip + 0x1cb4b]" + "operands": "rbx, [rip + 0x1cb4b]", + "stack_offset": 0 }, { "address": "0x140016bf5", "size": 3, "mnemonic": "xor", - "operands": "r12d, r12d" + "operands": "r12d, r12d", + "stack_offset": 0 }, { "address": "0x140016bf8", "size": 7, "mnemonic": "lea", - "operands": "rdi, [rip + 0xa881]" + "operands": "rdi, [rip + 0xa881]", + "stack_offset": 0 }, { "address": "0x140016bff", "size": 3, "mnemonic": "test", - "operands": "r9, r9" + "operands": "r9, r9", + "stack_offset": 0 }, { "address": "0x140016c02", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x140016c05", "size": 3, "mnemonic": "mov", - "operands": "r15, rdx" + "operands": "r15, rdx", + "stack_offset": 0 }, { "address": "0x140016c08", "size": 4, "mnemonic": "cmovne", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x140016c0c", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140016c0f", "size": 5, "mnemonic": "lea", - "operands": "ebp, [r12 + 1]" + "operands": "ebp, [r12 + 1]", + "stack_offset": 0 }, { "address": "0x140016c14", "size": 4, "mnemonic": "cmovne", - "operands": "rbp, r8" + "operands": "rbp, r8", + "stack_offset": 0 }, { "address": "0x140016c18", "size": 4, "mnemonic": "cmovne", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x140016c1c", "size": 3, "mnemonic": "neg", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x140016c1f", "size": 3, "mnemonic": "sbb", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x140016c22", "size": 3, "mnemonic": "and", - "operands": "r14, rcx" + "operands": "r14, rcx", + "stack_offset": 0 }, { "address": "0x140016c25", "size": 3, "mnemonic": "test", - "operands": "rbp, rbp" + "operands": "rbp, rbp", + "stack_offset": 0 }, { "address": "0x140016c28", "size": 2, "mnemonic": "jne", - "operands": "0x140016c36" + "operands": "0x140016c36", + "stack_offset": 0 }, { "address": "0x140016c2a", "size": 7, "mnemonic": "mov", - "operands": "rax, 0xfffffffffffffffe" + "operands": "rax, 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x140016c31", "size": 5, "mnemonic": "jmp", - "operands": "0x140016d69" + "operands": "0x140016d69", + "stack_offset": 0 } ], "successors": [ @@ -131766,49 +148366,57 @@ "address": "0x14001949c", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400194a0", "size": 3, "mnemonic": "cmp", - "operands": "ecx, -2" + "operands": "ecx, -2", + "stack_offset": 0 }, { "address": "0x1400194a3", "size": 2, "mnemonic": "jne", - "operands": "0x1400194ba" + "operands": "0x1400194ba", + "stack_offset": 0 }, { "address": "0x1400194a5", "size": 5, "mnemonic": "call", - "operands": "0x14000d854" + "operands": "0x14000d854", + "stack_offset": 0 }, { "address": "0x1400194aa", "size": 3, "mnemonic": "and", - "operands": "dword ptr [rax], 0" + "operands": "dword ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x1400194ad", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x1400194b2", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 9" + "operands": "dword ptr [rax], 9", + "stack_offset": 0 }, { "address": "0x1400194b8", "size": 2, "mnemonic": "jmp", - "operands": "0x140019508" + "operands": "0x140019508", + "stack_offset": 0 } ], "successors": [ @@ -131825,19 +148433,22 @@ "address": "0x140019508", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001950c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140019510", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -131859,49 +148470,57 @@ "address": "0x1400122e0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400122e5", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400122e6", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400122ea", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x23daf]" + "operands": "rax, qword ptr [rip + 0x23daf]", + "stack_offset": 0 }, { "address": "0x1400122f1", "size": 2, "mnemonic": "mov", - "operands": "edi, edx" + "operands": "edi, edx", + "stack_offset": 0 }, { "address": "0x1400122f3", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x1400122f6", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x1400122fa", "size": 2, "mnemonic": "je", - "operands": "0x14001232f" + "operands": "0x14001232f", + "stack_offset": 0 } ], "successors": [ @@ -131919,37 +148538,43 @@ "address": "0x14001232f", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140012332", "size": 5, "mnemonic": "call", - "operands": "0x14001c11c" + "operands": "0x14001c11c", + "stack_offset": 0 }, { "address": "0x140012337", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001233c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140012340", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140012341", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -131965,55 +148590,64 @@ "address": "0x1400122fc", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400122ff", "size": 2, "mnemonic": "jne", - "operands": "0x140012323" + "operands": "0x140012323", + "stack_offset": 0 }, { "address": "0x140012301", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x146b8]" + "operands": "r9, [rip + 0x146b8]", + "stack_offset": 0 }, { "address": "0x140012308", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x146a9]" + "operands": "r8, [rip + 0x146a9]", + "stack_offset": 0 }, { "address": "0x14001230f", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x146aa]" + "operands": "rdx, [rip + 0x146aa]", + "stack_offset": 0 }, { "address": "0x140012316", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax + 0x14]" + "operands": "ecx, [rax + 0x14]", + "stack_offset": 0 }, { "address": "0x140012319", "size": 5, "mnemonic": "call", - "operands": "0x140011c00" + "operands": "0x140011c00", + "stack_offset": 0 }, { "address": "0x14001231e", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140012321", "size": 2, "mnemonic": "je", - "operands": "0x14001232f" + "operands": "0x14001232f", + "stack_offset": 0 } ], "successors": [ @@ -132031,25 +148665,29 @@ "address": "0x140012323", "size": 2, "mnemonic": "mov", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x140012325", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140012328", "size": 5, "mnemonic": "call", - "operands": "0x14001e3a0" + "operands": "0x14001e3a0", + "stack_offset": 0 }, { "address": "0x14001232d", "size": 2, "mnemonic": "jmp", - "operands": "0x140012337" + "operands": "0x140012337", + "stack_offset": 0 } ], "successors": [ @@ -132066,25 +148704,29 @@ "address": "0x140012337", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001233c", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140012340", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140012341", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -132106,43 +148748,50 @@ "address": "0x1400118e0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x1400118e4", "size": 9, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], 0xfffffffffffffffe" + "operands": "qword ptr [rsp + 0x20], 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x1400118ed", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rip + 0x1f9cd]" + "operands": "ecx, dword ptr [rip + 0x1f9cd]", + "stack_offset": 0 }, { "address": "0x1400118f3", "size": 3, "mnemonic": "cmp", - "operands": "ecx, -1" + "operands": "ecx, -1", + "stack_offset": 0 }, { "address": "0x1400118f6", "size": 2, "mnemonic": "jne", - "operands": "0x1400118fc" + "operands": "0x1400118fc", + "stack_offset": 0 }, { "address": "0x1400118f8", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400118fa", "size": 2, "mnemonic": "jmp", - "operands": "0x140011902" + "operands": "0x140011902", + "stack_offset": 0 } ], "successors": [ @@ -132159,13 +148808,15 @@ "address": "0x140011902", "size": 4, "mnemonic": "cmp", - "operands": "rax, -1" + "operands": "rax, -1", + "stack_offset": 0 }, { "address": "0x140011906", "size": 2, "mnemonic": "je", - "operands": "0x14001191c" + "operands": "0x14001191c", + "stack_offset": 0 } ], "successors": [ @@ -132183,13 +148834,15 @@ "address": "0x14001191c", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140011921", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -132205,31 +148858,36 @@ "address": "0x140011908", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001190b", "size": 2, "mnemonic": "jne", - "operands": "0x140011917" + "operands": "0x140011917", + "stack_offset": 0 }, { "address": "0x14001190d", "size": 5, "mnemonic": "call", - "operands": "0x1400117a4" + "operands": "0x1400117a4", + "stack_offset": 0 }, { "address": "0x140011912", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140011915", "size": 2, "mnemonic": "je", - "operands": "0x14001191c" + "operands": "0x14001191c", + "stack_offset": 0 } ], "successors": [ @@ -132247,13 +148905,15 @@ "address": "0x140011917", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x14001191b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -132275,145 +148935,169 @@ "address": "0x140018540", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140018543", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rbx" + "operands": "qword ptr [rax + 8], rbx", + "stack_offset": 0 }, { "address": "0x140018547", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rsi" + "operands": "qword ptr [rax + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14001854b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], r9" + "operands": "qword ptr [rax + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14001854f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], r8" + "operands": "qword ptr [rax + 0x18], r8", + "stack_offset": 0 }, { "address": "0x140018553", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x140018554", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140018555", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140018557", "size": 7, "mnemonic": "lea", - "operands": "rbp, [rax - 0x188]" + "operands": "rbp, [rax - 0x188]", + "stack_offset": 0 }, { "address": "0x14001855e", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x270" + "operands": "rsp, 0x270", + "stack_offset": 0 }, { "address": "0x140018565", "size": 3, "mnemonic": "mov", - "operands": "r14b, dl" + "operands": "r14b, dl", + "stack_offset": 0 }, { "address": "0x140018568", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14001856a", "size": 3, "mnemonic": "mov", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14001856d", "size": 3, "mnemonic": "mov", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x140018570", "size": 5, "mnemonic": "call", - "operands": "0x1400187b0" + "operands": "0x1400187b0", + "stack_offset": 0 }, { "address": "0x140018575", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x140018577", "size": 5, "mnemonic": "call", - "operands": "0x140018230" + "operands": "0x140018230", + "stack_offset": 0 }, { "address": "0x14001857c", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbp + 0x1a0]" + "operands": "rcx, qword ptr [rbp + 0x1a0]", + "stack_offset": 0 }, { "address": "0x140018583", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140018585", "size": 7, "mnemonic": "mov", - "operands": "r8, qword ptr [rcx + 0x88]" + "operands": "r8, qword ptr [rcx + 0x88]", + "stack_offset": 0 }, { "address": "0x14001858c", "size": 4, "mnemonic": "cmp", - "operands": "eax, dword ptr [r8 + 4]" + "operands": "eax, dword ptr [r8 + 4]", + "stack_offset": 0 }, { "address": "0x140018590", "size": 2, "mnemonic": "jne", - "operands": "0x140018599" + "operands": "0x140018599", + "stack_offset": 0 }, { "address": "0x140018592", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140018594", "size": 5, "mnemonic": "jmp", - "operands": "0x140018797" + "operands": "0x140018797", + "stack_offset": 0 } ], "successors": [ @@ -132436,31 +149120,36 @@ "address": "0x14000dca0", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rip + 0x233f2]" + "operands": "eax, dword ptr [rip + 0x233f2]", + "stack_offset": 0 }, { "address": "0x14000dca6", "size": 3, "mnemonic": "mov", - "operands": "r11, rdx" + "operands": "r11, rdx", + "stack_offset": 0 }, { "address": "0x14000dca9", "size": 3, "mnemonic": "mov", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14000dcac", "size": 3, "mnemonic": "cmp", - "operands": "eax, 5" + "operands": "eax, 5", + "stack_offset": 0 }, { "address": "0x14000dcaf", "size": 6, "mnemonic": "jl", - "operands": "0x14000dd94" + "operands": "0x14000dd94", + "stack_offset": 0 } ], "successors": [ @@ -132478,13 +149167,15 @@ "address": "0x14000dd94", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14000dd97", "size": 6, "mnemonic": "jl", - "operands": "0x14000de7d" + "operands": "0x14000de7d", + "stack_offset": 0 } ], "successors": [ @@ -132502,13 +149193,15 @@ "address": "0x14000dcb5", "size": 4, "mnemonic": "test", - "operands": "r9b, 1" + "operands": "r9b, 1", + "stack_offset": 0 }, { "address": "0x14000dcb9", "size": 2, "mnemonic": "je", - "operands": "0x14000dced" + "operands": "0x14000dced", + "stack_offset": 0 } ], "successors": [ @@ -132526,25 +149219,29 @@ "address": "0x14000de7d", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rcx + rdx*2]" + "operands": "rcx, [rcx + rdx*2]", + "stack_offset": 0 }, { "address": "0x14000de81", "size": 3, "mnemonic": "mov", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000de84", "size": 3, "mnemonic": "cmp", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14000de87", "size": 2, "mnemonic": "je", - "operands": "0x14000de9f" + "operands": "0x14000de9f", + "stack_offset": 0 } ], "successors": [ @@ -132562,13 +149259,15 @@ "address": "0x14000dd9d", "size": 4, "mnemonic": "test", - "operands": "r9b, 1" + "operands": "r9b, 1", + "stack_offset": 0 }, { "address": "0x14000dda1", "size": 2, "mnemonic": "je", - "operands": "0x14000ddcd" + "operands": "0x14000ddcd", + "stack_offset": 0 } ], "successors": [ @@ -132586,79 +149285,92 @@ "address": "0x14000dced", "size": 3, "mnemonic": "xor", - "operands": "r10d, r10d" + "operands": "r10d, r10d", + "stack_offset": 0 }, { "address": "0x14000dcf0", "size": 3, "mnemonic": "and", - "operands": "ecx, 0x1f" + "operands": "ecx, 0x1f", + "stack_offset": 0 }, { "address": "0x14000dcf3", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x20" + "operands": "eax, 0x20", + "stack_offset": 0 }, { "address": "0x14000dcf8", "size": 3, "mnemonic": "mov", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000dcfb", "size": 3, "mnemonic": "sub", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000dcfe", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000dd01", "size": 4, "mnemonic": "cmovne", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14000dd05", "size": 3, "mnemonic": "shr", - "operands": "r10, 1" + "operands": "r10, 1", + "stack_offset": 0 }, { "address": "0x14000dd08", "size": 3, "mnemonic": "cmp", - "operands": "r11, r10" + "operands": "r11, r10", + "stack_offset": 0 }, { "address": "0x14000dd0b", "size": 4, "mnemonic": "cmovb", - "operands": "r10, r11" + "operands": "r10, r11", + "stack_offset": 0 }, { "address": "0x14000dd0f", "size": 4, "mnemonic": "lea", - "operands": "rax, [r9 + r10*2]" + "operands": "rax, [r9 + r10*2]", + "stack_offset": 0 }, { "address": "0x14000dd13", "size": 3, "mnemonic": "cmp", - "operands": "r9, rax" + "operands": "r9, rax", + "stack_offset": 0 }, { "address": "0x14000dd16", "size": 2, "mnemonic": "je", - "operands": "0x14000dd27" + "operands": "0x14000dd27", + "stack_offset": 0 } ], "successors": [ @@ -132676,25 +149388,29 @@ "address": "0x14000dcbb", "size": 4, "mnemonic": "lea", - "operands": "rax, [rcx + rdx*2]" + "operands": "rax, [rcx + rdx*2]", + "stack_offset": 0 }, { "address": "0x14000dcbf", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14000dcc2", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000dcc5", "size": 6, "mnemonic": "je", - "operands": "0x14000dd8a" + "operands": "0x14000dd8a", + "stack_offset": 0 } ], "successors": [ @@ -132712,19 +149428,22 @@ "address": "0x14000de9f", "size": 3, "mnemonic": "sub", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000dea2", "size": 3, "mnemonic": "sar", - "operands": "rax, 1" + "operands": "rax, 1", + "stack_offset": 0 }, { "address": "0x14000dea5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -132740,19 +149459,22 @@ "address": "0x14000de89", "size": 7, "mnemonic": "nop", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14000de90", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rax], 0" + "operands": "word ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x14000de94", "size": 2, "mnemonic": "je", - "operands": "0x14000de9f" + "operands": "0x14000de9f", + "stack_offset": 0 } ], "successors": [ @@ -132770,79 +149492,92 @@ "address": "0x14000ddcd", "size": 3, "mnemonic": "xor", - "operands": "r10d, r10d" + "operands": "r10d, r10d", + "stack_offset": 0 }, { "address": "0x14000ddd0", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000ddd3", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x10" + "operands": "eax, 0x10", + "stack_offset": 0 }, { "address": "0x14000ddd8", "size": 3, "mnemonic": "sub", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000dddb", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000ddde", "size": 4, "mnemonic": "cmovne", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14000dde2", "size": 3, "mnemonic": "mov", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000dde5", "size": 3, "mnemonic": "shr", - "operands": "r10, 1" + "operands": "r10, 1", + "stack_offset": 0 }, { "address": "0x14000dde8", "size": 3, "mnemonic": "cmp", - "operands": "r11, r10" + "operands": "r11, r10", + "stack_offset": 0 }, { "address": "0x14000ddeb", "size": 4, "mnemonic": "cmovb", - "operands": "r10, r11" + "operands": "r10, r11", + "stack_offset": 0 }, { "address": "0x14000ddef", "size": 4, "mnemonic": "lea", - "operands": "rcx, [r9 + r10*2]" + "operands": "rcx, [r9 + r10*2]", + "stack_offset": 0 }, { "address": "0x14000ddf3", "size": 3, "mnemonic": "cmp", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14000ddf6", "size": 2, "mnemonic": "je", - "operands": "0x14000de07" + "operands": "0x14000de07", + "stack_offset": 0 } ], "successors": [ @@ -132860,25 +149595,29 @@ "address": "0x14000dda3", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rcx + rdx*2]" + "operands": "rcx, [rcx + rdx*2]", + "stack_offset": 0 }, { "address": "0x14000dda7", "size": 3, "mnemonic": "mov", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000ddaa", "size": 3, "mnemonic": "cmp", - "operands": "r9, rcx" + "operands": "r9, rcx", + "stack_offset": 0 }, { "address": "0x14000ddad", "size": 6, "mnemonic": "je", - "operands": "0x14000de9f" + "operands": "0x14000de9f", + "stack_offset": 0 } ], "successors": [ @@ -132896,85 +149635,99 @@ "address": "0x14000dd27", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000dd2a", "size": 3, "mnemonic": "sar", - "operands": "rdx, 1" + "operands": "rdx, 1", + "stack_offset": 0 }, { "address": "0x14000dd2d", "size": 3, "mnemonic": "cmp", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000dd30", "size": 2, "mnemonic": "jne", - "operands": "0x14000dd90" + "operands": "0x14000dd90", + "stack_offset": 0 }, { "address": "0x14000dd32", "size": 4, "mnemonic": "lea", - "operands": "r8, [r9 + rdx*2]" + "operands": "r8, [r9 + rdx*2]", + "stack_offset": 0 }, { "address": "0x14000dd36", "size": 3, "mnemonic": "mov", - "operands": "rcx, r11" + "operands": "rcx, r11", + "stack_offset": 0 }, { "address": "0x14000dd39", "size": 3, "mnemonic": "sub", - "operands": "rcx, r10" + "operands": "rcx, r10", + "stack_offset": 0 }, { "address": "0x14000dd3c", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000dd3f", "size": 3, "mnemonic": "and", - "operands": "eax, 0x1f" + "operands": "eax, 0x1f", + "stack_offset": 0 }, { "address": "0x14000dd42", "size": 3, "mnemonic": "sub", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000dd45", "size": 3, "mnemonic": "add", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x14000dd48", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r9 + rcx*2]" + "operands": "rdx, [r9 + rcx*2]", + "stack_offset": 0 }, { "address": "0x14000dd4c", "size": 3, "mnemonic": "cmp", - "operands": "r8, rdx" + "operands": "r8, rdx", + "stack_offset": 0 }, { "address": "0x14000dd4f", "size": 2, "mnemonic": "je", - "operands": "0x14000dd6e" + "operands": "0x14000dd6e", + "stack_offset": 0 } ], "successors": [ @@ -132992,13 +149745,15 @@ "address": "0x14000dd18", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rdx], 0" + "operands": "word ptr [rdx], 0", + "stack_offset": 0 }, { "address": "0x14000dd1c", "size": 2, "mnemonic": "je", - "operands": "0x14000dd27" + "operands": "0x14000dd27", + "stack_offset": 0 } ], "successors": [ @@ -133016,25 +149771,29 @@ "address": "0x14000dd8a", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000dd8d", "size": 3, "mnemonic": "sar", - "operands": "rdx, 1" + "operands": "rdx, 1", + "stack_offset": 0 }, { "address": "0x14000dd90", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000dd93", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -133050,19 +149809,22 @@ "address": "0x14000dccb", "size": 5, "mnemonic": "nop", - "operands": "dword ptr [rax + rax]" + "operands": "dword ptr [rax + rax]", + "stack_offset": 0 }, { "address": "0x14000dcd0", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rdx], 0" + "operands": "word ptr [rdx], 0", + "stack_offset": 0 }, { "address": "0x14000dcd4", "size": 6, "mnemonic": "je", - "operands": "0x14000dd8a" + "operands": "0x14000dd8a", + "stack_offset": 0 } ], "successors": [ @@ -133080,37 +149842,43 @@ "address": "0x14000de96", "size": 4, "mnemonic": "add", - "operands": "rax, 2" + "operands": "rax, 2", + "stack_offset": 0 }, { "address": "0x14000de9a", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000de9d", "size": 2, "mnemonic": "jne", - "operands": "0x14000de90" + "operands": "0x14000de90", + "stack_offset": 0 }, { "address": "0x14000de9f", "size": 3, "mnemonic": "sub", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000dea2", "size": 3, "mnemonic": "sar", - "operands": "rax, 1" + "operands": "rax, 1", + "stack_offset": 0 }, { "address": "0x14000dea5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -133126,85 +149894,99 @@ "address": "0x14000de07", "size": 3, "mnemonic": "sub", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000de0a", "size": 3, "mnemonic": "sar", - "operands": "rax, 1" + "operands": "rax, 1", + "stack_offset": 0 }, { "address": "0x14000de0d", "size": 3, "mnemonic": "cmp", - "operands": "rax, r10" + "operands": "rax, r10", + "stack_offset": 0 }, { "address": "0x14000de10", "size": 6, "mnemonic": "jne", - "operands": "0x14000dea5" + "operands": "0x14000dea5", + "stack_offset": 0 }, { "address": "0x14000de16", "size": 3, "mnemonic": "sub", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000de19", "size": 4, "mnemonic": "lea", - "operands": "r8, [r9 + rax*2]" + "operands": "r8, [r9 + rax*2]", + "stack_offset": 0 }, { "address": "0x14000de1d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x14000de20", "size": 3, "mnemonic": "xorps", - "operands": "xmm1, xmm1" + "operands": "xmm1, xmm1", + "stack_offset": 0 }, { "address": "0x14000de23", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000de26", "size": 3, "mnemonic": "sub", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14000de29", "size": 3, "mnemonic": "add", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000de2c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [r9 + rdx*2]" + "operands": "rcx, [r9 + rdx*2]", + "stack_offset": 0 }, { "address": "0x14000de30", "size": 3, "mnemonic": "cmp", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x14000de33", "size": 2, "mnemonic": "je", - "operands": "0x14000de5a" + "operands": "0x14000de5a", + "stack_offset": 0 } ], "successors": [ @@ -133222,13 +150004,15 @@ "address": "0x14000ddf8", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rax], 0" + "operands": "word ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x14000ddfc", "size": 2, "mnemonic": "je", - "operands": "0x14000de07" + "operands": "0x14000de07", + "stack_offset": 0 } ], "successors": [ @@ -133246,13 +150030,15 @@ "address": "0x14000ddb3", "size": 4, "mnemonic": "cmp", - "operands": "word ptr [rax], 0" + "operands": "word ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x14000ddb7", "size": 6, "mnemonic": "je", - "operands": "0x14000de9f" + "operands": "0x14000de9f", + "stack_offset": 0 } ], "successors": [ @@ -133270,19 +150056,22 @@ "address": "0x14000dd6e", "size": 4, "mnemonic": "lea", - "operands": "rax, [r9 + r11*2]" + "operands": "rax, [r9 + r11*2]", + "stack_offset": 0 }, { "address": "0x14000dd72", "size": 3, "mnemonic": "cmp", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14000dd75", "size": 2, "mnemonic": "je", - "operands": "0x14000dd87" + "operands": "0x14000dd87", + "stack_offset": 0 } ], "successors": [ @@ -133300,73 +150089,85 @@ "address": "0x14000dd51", "size": 4, "mnemonic": "vpxor", - "operands": "xmm1, xmm1, xmm1" + "operands": "xmm1, xmm1, xmm1", + "stack_offset": 0 }, { "address": "0x14000dd55", "size": 5, "mnemonic": "vpcmpeqw", - "operands": "ymm1, ymm1, ymmword ptr [r8]" + "operands": "ymm1, ymm1, ymmword ptr [r8]", + "stack_offset": 0 }, { "address": "0x14000dd5a", "size": 4, "mnemonic": "vpmovmskb", - "operands": "eax, ymm1" + "operands": "eax, ymm1", + "stack_offset": 0 }, { "address": "0x14000dd5e", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000dd60", "size": 3, "mnemonic": "vzeroupper", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000dd63", "size": 2, "mnemonic": "jne", - "operands": "0x14000dd6e" + "operands": "0x14000dd6e", + "stack_offset": 0 }, { "address": "0x14000dd65", "size": 4, "mnemonic": "add", - "operands": "r8, 0x20" + "operands": "r8, 0x20", + "stack_offset": 0 }, { "address": "0x14000dd69", "size": 3, "mnemonic": "cmp", - "operands": "r8, rdx" + "operands": "r8, rdx", + "stack_offset": 0 }, { "address": "0x14000dd6c", "size": 2, "mnemonic": "jne", - "operands": "0x14000dd51" + "operands": "0x14000dd51", + "stack_offset": 0 }, { "address": "0x14000dd6e", "size": 4, "mnemonic": "lea", - "operands": "rax, [r9 + r11*2]" + "operands": "rax, [r9 + r11*2]", + "stack_offset": 0 }, { "address": "0x14000dd72", "size": 3, "mnemonic": "cmp", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14000dd75", "size": 2, "mnemonic": "je", - "operands": "0x14000dd87" + "operands": "0x14000dd87", + "stack_offset": 0 } ], "successors": [ @@ -133384,103 +150185,120 @@ "address": "0x14000dd1e", "size": 4, "mnemonic": "add", - "operands": "rdx, 2" + "operands": "rdx, 2", + "stack_offset": 0 }, { "address": "0x14000dd22", "size": 3, "mnemonic": "cmp", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000dd25", "size": 2, "mnemonic": "jne", - "operands": "0x14000dd18" + "operands": "0x14000dd18", + "stack_offset": 0 }, { "address": "0x14000dd27", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000dd2a", "size": 3, "mnemonic": "sar", - "operands": "rdx, 1" + "operands": "rdx, 1", + "stack_offset": 0 }, { "address": "0x14000dd2d", "size": 3, "mnemonic": "cmp", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000dd30", "size": 2, "mnemonic": "jne", - "operands": "0x14000dd90" + "operands": "0x14000dd90", + "stack_offset": 0 }, { "address": "0x14000dd32", "size": 4, "mnemonic": "lea", - "operands": "r8, [r9 + rdx*2]" + "operands": "r8, [r9 + rdx*2]", + "stack_offset": 0 }, { "address": "0x14000dd36", "size": 3, "mnemonic": "mov", - "operands": "rcx, r11" + "operands": "rcx, r11", + "stack_offset": 0 }, { "address": "0x14000dd39", "size": 3, "mnemonic": "sub", - "operands": "rcx, r10" + "operands": "rcx, r10", + "stack_offset": 0 }, { "address": "0x14000dd3c", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000dd3f", "size": 3, "mnemonic": "and", - "operands": "eax, 0x1f" + "operands": "eax, 0x1f", + "stack_offset": 0 }, { "address": "0x14000dd42", "size": 3, "mnemonic": "sub", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000dd45", "size": 3, "mnemonic": "add", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x14000dd48", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r9 + rcx*2]" + "operands": "rdx, [r9 + rcx*2]", + "stack_offset": 0 }, { "address": "0x14000dd4c", "size": 3, "mnemonic": "cmp", - "operands": "r8, rdx" + "operands": "r8, rdx", + "stack_offset": 0 }, { "address": "0x14000dd4f", "size": 2, "mnemonic": "je", - "operands": "0x14000dd6e" + "operands": "0x14000dd6e", + "stack_offset": 0 } ], "successors": [ @@ -133498,43 +150316,50 @@ "address": "0x14000dcda", "size": 4, "mnemonic": "add", - "operands": "rdx, 2" + "operands": "rdx, 2", + "stack_offset": 0 }, { "address": "0x14000dcde", "size": 3, "mnemonic": "cmp", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000dce1", "size": 2, "mnemonic": "jne", - "operands": "0x14000dcd0" + "operands": "0x14000dcd0", + "stack_offset": 0 }, { "address": "0x14000dce3", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000dce6", "size": 3, "mnemonic": "sar", - "operands": "rdx, 1" + "operands": "rdx, 1", + "stack_offset": 0 }, { "address": "0x14000dce9", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000dcec", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -133550,19 +150375,22 @@ "address": "0x14000de5a", "size": 4, "mnemonic": "lea", - "operands": "rax, [r9 + r11*2]" + "operands": "rax, [r9 + r11*2]", + "stack_offset": 0 }, { "address": "0x14000de5e", "size": 3, "mnemonic": "cmp", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14000de61", "size": 2, "mnemonic": "je", - "operands": "0x14000de73" + "operands": "0x14000de73", + "stack_offset": 0 } ], "successors": [ @@ -133580,73 +150408,85 @@ "address": "0x14000de35", "size": 11, "mnemonic": "nop", - "operands": "word ptr [rax + rax]" + "operands": "word ptr [rax + rax]", + "stack_offset": 0 }, { "address": "0x14000de40", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm1" + "operands": "xmm0, xmm1", + "stack_offset": 0 }, { "address": "0x14000de44", "size": 5, "mnemonic": "pcmpeqw", - "operands": "xmm0, xmmword ptr [r8]" + "operands": "xmm0, xmmword ptr [r8]", + "stack_offset": 0 }, { "address": "0x14000de49", "size": 4, "mnemonic": "pmovmskb", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x14000de4d", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000de4f", "size": 2, "mnemonic": "jne", - "operands": "0x14000de5a" + "operands": "0x14000de5a", + "stack_offset": 0 }, { "address": "0x14000de51", "size": 4, "mnemonic": "add", - "operands": "r8, 0x10" + "operands": "r8, 0x10", + "stack_offset": 0 }, { "address": "0x14000de55", "size": 3, "mnemonic": "cmp", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x14000de58", "size": 2, "mnemonic": "jne", - "operands": "0x14000de40" + "operands": "0x14000de40", + "stack_offset": 0 }, { "address": "0x14000de5a", "size": 4, "mnemonic": "lea", - "operands": "rax, [r9 + r11*2]" + "operands": "rax, [r9 + r11*2]", + "stack_offset": 0 }, { "address": "0x14000de5e", "size": 3, "mnemonic": "cmp", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14000de61", "size": 2, "mnemonic": "je", - "operands": "0x14000de73" + "operands": "0x14000de73", + "stack_offset": 0 } ], "successors": [ @@ -133664,103 +150504,120 @@ "address": "0x14000ddfe", "size": 4, "mnemonic": "add", - "operands": "rax, 2" + "operands": "rax, 2", + "stack_offset": 0 }, { "address": "0x14000de02", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000de05", "size": 2, "mnemonic": "jne", - "operands": "0x14000ddf8" + "operands": "0x14000ddf8", + "stack_offset": 0 }, { "address": "0x14000de07", "size": 3, "mnemonic": "sub", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000de0a", "size": 3, "mnemonic": "sar", - "operands": "rax, 1" + "operands": "rax, 1", + "stack_offset": 0 }, { "address": "0x14000de0d", "size": 3, "mnemonic": "cmp", - "operands": "rax, r10" + "operands": "rax, r10", + "stack_offset": 0 }, { "address": "0x14000de10", "size": 6, "mnemonic": "jne", - "operands": "0x14000dea5" + "operands": "0x14000dea5", + "stack_offset": 0 }, { "address": "0x14000de16", "size": 3, "mnemonic": "sub", - "operands": "rdx, r10" + "operands": "rdx, r10", + "stack_offset": 0 }, { "address": "0x14000de19", "size": 4, "mnemonic": "lea", - "operands": "r8, [r9 + rax*2]" + "operands": "r8, [r9 + rax*2]", + "stack_offset": 0 }, { "address": "0x14000de1d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x14000de20", "size": 3, "mnemonic": "xorps", - "operands": "xmm1, xmm1" + "operands": "xmm1, xmm1", + "stack_offset": 0 }, { "address": "0x14000de23", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000de26", "size": 3, "mnemonic": "sub", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14000de29", "size": 3, "mnemonic": "add", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000de2c", "size": 4, "mnemonic": "lea", - "operands": "rcx, [r9 + rdx*2]" + "operands": "rcx, [r9 + rdx*2]", + "stack_offset": 0 }, { "address": "0x14000de30", "size": 3, "mnemonic": "cmp", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x14000de33", "size": 2, "mnemonic": "je", - "operands": "0x14000de5a" + "operands": "0x14000de5a", + "stack_offset": 0 } ], "successors": [ @@ -133778,37 +150635,43 @@ "address": "0x14000ddbd", "size": 4, "mnemonic": "add", - "operands": "rax, 2" + "operands": "rax, 2", + "stack_offset": 0 }, { "address": "0x14000ddc1", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000ddc4", "size": 2, "mnemonic": "jne", - "operands": "0x14000ddb3" + "operands": "0x14000ddb3", + "stack_offset": 0 }, { "address": "0x14000ddc6", "size": 3, "mnemonic": "sub", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000ddc9", "size": 3, "mnemonic": "sar", - "operands": "rax, 1" + "operands": "rax, 1", + "stack_offset": 0 }, { "address": "0x14000ddcc", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -133824,31 +150687,36 @@ "address": "0x14000dd87", "size": 3, "mnemonic": "mov", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x14000dd8a", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000dd8d", "size": 3, "mnemonic": "sar", - "operands": "rdx, 1" + "operands": "rdx, 1", + "stack_offset": 0 }, { "address": "0x14000dd90", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000dd93", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -133864,13 +150732,15 @@ "address": "0x14000dd77", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [r8], 0" + "operands": "word ptr [r8], 0", + "stack_offset": 0 }, { "address": "0x14000dd7c", "size": 2, "mnemonic": "je", - "operands": "0x14000dd87" + "operands": "0x14000dd87", + "stack_offset": 0 } ], "successors": [ @@ -133888,25 +150758,29 @@ "address": "0x14000de73", "size": 3, "mnemonic": "mov", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x14000de76", "size": 3, "mnemonic": "sub", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000de79", "size": 3, "mnemonic": "sar", - "operands": "rax, 1" + "operands": "rax, 1", + "stack_offset": 0 }, { "address": "0x14000de7c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -133922,13 +150796,15 @@ "address": "0x14000de63", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [r8], 0" + "operands": "word ptr [r8], 0", + "stack_offset": 0 }, { "address": "0x14000de68", "size": 2, "mnemonic": "je", - "operands": "0x14000de73" + "operands": "0x14000de73", + "stack_offset": 0 } ], "successors": [ @@ -133946,49 +150822,57 @@ "address": "0x14000dd7e", "size": 4, "mnemonic": "add", - "operands": "r8, 2" + "operands": "r8, 2", + "stack_offset": 0 }, { "address": "0x14000dd82", "size": 3, "mnemonic": "cmp", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14000dd85", "size": 2, "mnemonic": "jne", - "operands": "0x14000dd77" + "operands": "0x14000dd77", + "stack_offset": 0 }, { "address": "0x14000dd87", "size": 3, "mnemonic": "mov", - "operands": "rdx, r8" + "operands": "rdx, r8", + "stack_offset": 0 }, { "address": "0x14000dd8a", "size": 3, "mnemonic": "sub", - "operands": "rdx, r9" + "operands": "rdx, r9", + "stack_offset": 0 }, { "address": "0x14000dd8d", "size": 3, "mnemonic": "sar", - "operands": "rdx, 1" + "operands": "rdx, 1", + "stack_offset": 0 }, { "address": "0x14000dd90", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000dd93", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -134004,43 +150888,50 @@ "address": "0x14000de6a", "size": 4, "mnemonic": "add", - "operands": "r8, 2" + "operands": "r8, 2", + "stack_offset": 0 }, { "address": "0x14000de6e", "size": 3, "mnemonic": "cmp", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x14000de71", "size": 2, "mnemonic": "jne", - "operands": "0x14000de63" + "operands": "0x14000de63", + "stack_offset": 0 }, { "address": "0x14000de73", "size": 3, "mnemonic": "mov", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x14000de76", "size": 3, "mnemonic": "sub", - "operands": "rax, r9" + "operands": "rax, r9", + "stack_offset": 0 }, { "address": "0x14000de79", "size": 3, "mnemonic": "sar", - "operands": "rax, 1" + "operands": "rax, 1", + "stack_offset": 0 }, { "address": "0x14000de7c", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -134062,25 +150953,29 @@ "address": "0x140017230", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x1bfb9], 0" + "operands": "dword ptr [rip + 0x1bfb9], 0", + "stack_offset": 0 }, { "address": "0x140017237", "size": 2, "mnemonic": "jne", - "operands": "0x14001724c" + "operands": "0x14001724c", + "stack_offset": 0 }, { "address": "0x140017239", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001723c", "size": 2, "mnemonic": "je", - "operands": "0x140017247" + "operands": "0x140017247", + "stack_offset": 0 } ], "successors": [ @@ -134098,7 +150993,8 @@ "address": "0x140017247", "size": 5, "mnemonic": "jmp", - "operands": "0x1400171a0" + "operands": "0x1400171a0", + "stack_offset": 0 } ], "successors": [ @@ -134115,19 +151011,22 @@ "address": "0x14001723e", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140017241", "size": 6, "mnemonic": "jne", - "operands": "0x1400171d0" + "operands": "0x1400171d0", + "stack_offset": 0 }, { "address": "0x140017247", "size": 5, "mnemonic": "jmp", - "operands": "0x1400171a0" + "operands": "0x1400171a0", + "stack_offset": 0 } ], "successors": [ @@ -134144,19 +151043,22 @@ "address": "0x1400171a0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400171a4", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x1400171a7", "size": 2, "mnemonic": "je", - "operands": "0x1400171ae" + "operands": "0x1400171ae", + "stack_offset": 0 } ], "successors": [ @@ -134174,37 +151076,43 @@ "address": "0x1400171ae", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x1400171b3", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x1400171b9", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x1400171be", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x7fffffff" + "operands": "eax, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x1400171c3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400171c7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -134220,49 +151128,57 @@ "address": "0x1400171a9", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x1400171ac", "size": 2, "mnemonic": "jne", - "operands": "0x1400171be" + "operands": "0x1400171be", + "stack_offset": 0 }, { "address": "0x1400171ae", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x1400171b3", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x1400171b9", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x1400171be", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x7fffffff" + "operands": "eax, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x1400171c3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400171c7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -134284,49 +151200,57 @@ "address": "0x14001d690", "size": 3, "mnemonic": "mov", - "operands": "r8, rcx" + "operands": "r8, rcx", + "stack_offset": 0 }, { "address": "0x14001d693", "size": 3, "mnemonic": "movzx", - "operands": "ecx, word ptr [rdx]" + "operands": "ecx, word ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001d696", "size": 4, "mnemonic": "movzx", - "operands": "eax, word ptr [r8]" + "operands": "eax, word ptr [r8]", + "stack_offset": 0 }, { "address": "0x14001d69a", "size": 2, "mnemonic": "sub", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14001d69c", "size": 2, "mnemonic": "jne", - "operands": "0x14001d6b7" + "operands": "0x14001d6b7", + "stack_offset": 0 }, { "address": "0x14001d69e", "size": 3, "mnemonic": "sub", - "operands": "r8, rdx" + "operands": "r8, rdx", + "stack_offset": 0 }, { "address": "0x14001d6a1", "size": 3, "mnemonic": "test", - "operands": "cx, cx" + "operands": "cx, cx", + "stack_offset": 0 }, { "address": "0x14001d6a4", "size": 2, "mnemonic": "je", - "operands": "0x14001d6b7" + "operands": "0x14001d6b7", + "stack_offset": 0 } ], "successors": [ @@ -134344,43 +151268,50 @@ "address": "0x14001d6b7", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x14001d6b9", "size": 3, "mnemonic": "shr", - "operands": "eax, 0x1f" + "operands": "eax, 0x1f", + "stack_offset": 0 }, { "address": "0x14001d6bc", "size": 2, "mnemonic": "neg", - "operands": "ecx" + "operands": "ecx", + "stack_offset": 0 }, { "address": "0x14001d6be", "size": 3, "mnemonic": "shr", - "operands": "ecx, 0x1f" + "operands": "ecx, 0x1f", + "stack_offset": 0 }, { "address": "0x14001d6c1", "size": 2, "mnemonic": "sub", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x14001d6c3", "size": 2, "mnemonic": "mov", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14001d6c5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -134396,31 +151327,36 @@ "address": "0x14001d6a6", "size": 4, "mnemonic": "movzx", - "operands": "ecx, word ptr [rdx + 2]" + "operands": "ecx, word ptr [rdx + 2]", + "stack_offset": 0 }, { "address": "0x14001d6aa", "size": 4, "mnemonic": "add", - "operands": "rdx, 2" + "operands": "rdx, 2", + "stack_offset": 0 }, { "address": "0x14001d6ae", "size": 5, "mnemonic": "movzx", - "operands": "eax, word ptr [r8 + rdx]" + "operands": "eax, word ptr [r8 + rdx]", + "stack_offset": 0 }, { "address": "0x14001d6b3", "size": 2, "mnemonic": "sub", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14001d6b5", "size": 2, "mnemonic": "je", - "operands": "0x14001d6a1" + "operands": "0x14001d6a1", + "stack_offset": 0 } ], "successors": [ @@ -134438,13 +151374,15 @@ "address": "0x14001d6a1", "size": 3, "mnemonic": "test", - "operands": "cx, cx" + "operands": "cx, cx", + "stack_offset": 0 }, { "address": "0x14001d6a4", "size": 2, "mnemonic": "je", - "operands": "0x14001d6b7" + "operands": "0x14001d6b7", + "stack_offset": 0 } ], "successors": [ @@ -134468,97 +151406,113 @@ "address": "0x14001c034", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001c039", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14001c03e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14001c043", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c044", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001c048", "size": 3, "mnemonic": "movsxd", - "operands": "rdi, r8d" + "operands": "rdi, r8d", + "stack_offset": 0 }, { "address": "0x14001c04b", "size": 3, "mnemonic": "mov", - "operands": "r8d, ecx" + "operands": "r8d, ecx", + "stack_offset": 0 }, { "address": "0x14001c04e", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x14001c051", "size": 6, "mnemonic": "test", - "operands": "ecx, 0xfffff3ff" + "operands": "ecx, 0xfffff3ff", + "stack_offset": 0 }, { "address": "0x14001c057", "size": 2, "mnemonic": "jne", - "operands": "0x14001c061" + "operands": "0x14001c061", + "stack_offset": 0 }, { "address": "0x14001c059", "size": 6, "mnemonic": "cmp", - "operands": "ecx, 0xc00" + "operands": "ecx, 0xc00", + "stack_offset": 0 }, { "address": "0x14001c05f", "size": 2, "mnemonic": "jne", - "operands": "0x14001c0af" + "operands": "0x14001c0af", + "stack_offset": 0 }, { "address": "0x14001c061", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x14001c064", "size": 2, "mnemonic": "jne", - "operands": "0x14001c06a" + "operands": "0x14001c06a", + "stack_offset": 0 }, { "address": "0x14001c066", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001c068", "size": 2, "mnemonic": "jg", - "operands": "0x14001c0af" + "operands": "0x14001c0af", + "stack_offset": 0 } ], "successors": [ @@ -134576,43 +151530,50 @@ "address": "0x14001c0af", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001c0b1", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001c0b6", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001c0bb", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001c0c0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001c0c4", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c0c5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -134628,13 +151589,15 @@ "address": "0x14001c06a", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001c06c", "size": 2, "mnemonic": "js", - "operands": "0x14001c0af" + "operands": "0x14001c0af", + "stack_offset": 0 } ], "successors": [ @@ -134652,73 +151615,85 @@ "address": "0x14001c06e", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14001c071", "size": 7, "mnemonic": "lea", - "operands": "rbp, [rip + 0xba28]" + "operands": "rbp, [rip + 0xba28]", + "stack_offset": 0 }, { "address": "0x14001c078", "size": 6, "mnemonic": "mov", - "operands": "r10d, 0xe3" + "operands": "r10d, 0xe3", + "stack_offset": 0 }, { "address": "0x14001c07e", "size": 4, "mnemonic": "lea", - "operands": "eax, [r10 + r9]" + "operands": "eax, [r10 + r9]", + "stack_offset": 0 }, { "address": "0x14001c082", "size": 1, "mnemonic": "cdq", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001c083", "size": 2, "mnemonic": "sub", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x14001c085", "size": 3, "mnemonic": "mov", - "operands": "edx, r8d" + "operands": "edx, r8d", + "stack_offset": 0 }, { "address": "0x14001c088", "size": 2, "mnemonic": "sar", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001c08a", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, eax" + "operands": "rcx, eax", + "stack_offset": 0 }, { "address": "0x14001c08d", "size": 4, "mnemonic": "shl", - "operands": "rcx, 4" + "operands": "rcx, 4", + "stack_offset": 0 }, { "address": "0x14001c091", "size": 3, "mnemonic": "sub", - "operands": "edx, dword ptr [rcx + rbp]" + "operands": "edx, dword ptr [rcx + rbp]", + "stack_offset": 0 }, { "address": "0x14001c094", "size": 2, "mnemonic": "je", - "operands": "0x14001c0c6" + "operands": "0x14001c0c6", + "stack_offset": 0 } ], "successors": [ @@ -134736,13 +151711,15 @@ "address": "0x14001c0c6", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001c0c8", "size": 2, "mnemonic": "js", - "operands": "0x14001c0af" + "operands": "0x14001c0af", + "stack_offset": 0 } ], "successors": [ @@ -134760,97 +151737,113 @@ "address": "0x14001c096", "size": 2, "mnemonic": "test", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001c098", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rax - 1]" + "operands": "ecx, [rax - 1]", + "stack_offset": 0 }, { "address": "0x14001c09b", "size": 4, "mnemonic": "cmovns", - "operands": "ecx, r10d" + "operands": "ecx, r10d", + "stack_offset": 0 }, { "address": "0x14001c09f", "size": 2, "mnemonic": "inc", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x14001c0a1", "size": 2, "mnemonic": "test", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001c0a3", "size": 3, "mnemonic": "mov", - "operands": "r10d, ecx" + "operands": "r10d, ecx", + "stack_offset": 0 }, { "address": "0x14001c0a6", "size": 4, "mnemonic": "cmovns", - "operands": "r9d, eax" + "operands": "r9d, eax", + "stack_offset": 0 }, { "address": "0x14001c0aa", "size": 3, "mnemonic": "cmp", - "operands": "r9d, ecx" + "operands": "r9d, ecx", + "stack_offset": 0 }, { "address": "0x14001c0ad", "size": 2, "mnemonic": "jle", - "operands": "0x14001c07e" + "operands": "0x14001c07e", + "stack_offset": 0 }, { "address": "0x14001c0af", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001c0b1", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001c0b6", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001c0bb", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001c0c0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001c0c4", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c0c5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -134866,115 +151859,134 @@ "address": "0x14001c0ca", "size": 2, "mnemonic": "cdqe", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001c0cc", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x55" + "operands": "edx, 0x55", + "stack_offset": 0 }, { "address": "0x14001c0d1", "size": 3, "mnemonic": "add", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001c0d4", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rbp + rax*8 + 8]" + "operands": "rbp, qword ptr [rbp + rax*8 + 8]", + "stack_offset": 0 }, { "address": "0x14001c0d9", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbp" + "operands": "rcx, rbp", + "stack_offset": 0 }, { "address": "0x14001c0dc", "size": 5, "mnemonic": "call", - "operands": "0x14000dca0" + "operands": "0x14000dca0", + "stack_offset": 0 }, { "address": "0x14001c0e1", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14001c0e4", "size": 2, "mnemonic": "test", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001c0e6", "size": 2, "mnemonic": "jle", - "operands": "0x14001c0fe" + "operands": "0x14001c0fe", + "stack_offset": 0 }, { "address": "0x14001c0e8", "size": 2, "mnemonic": "cmp", - "operands": "ebx, edi" + "operands": "ebx, edi", + "stack_offset": 0 }, { "address": "0x14001c0ea", "size": 2, "mnemonic": "jge", - "operands": "0x14001c0af" + "operands": "0x14001c0af", + "stack_offset": 0 }, { "address": "0x14001c0ec", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x14001c0ef", "size": 3, "mnemonic": "mov", - "operands": "r8, rbp" + "operands": "r8, rbp", + "stack_offset": 0 }, { "address": "0x14001c0f2", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14001c0f5", "size": 5, "mnemonic": "call", - "operands": "0x1400165b0" + "operands": "0x1400165b0", + "stack_offset": 0 }, { "address": "0x14001c0fa", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001c0fc", "size": 2, "mnemonic": "jne", - "operands": "0x14001c103" + "operands": "0x14001c103", + "stack_offset": 0 }, { "address": "0x14001c0fe", "size": 3, "mnemonic": "lea", - "operands": "eax, [rbx + 1]" + "operands": "eax, [rbx + 1]", + "stack_offset": 0 }, { "address": "0x14001c101", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c0b1" + "operands": "0x14001c0b1", + "stack_offset": 0 } ], "successors": [ @@ -134991,37 +152003,43 @@ "address": "0x14001c0b1", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001c0b6", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001c0bb", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001c0c0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001c0c4", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c0c5", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -135043,85 +152061,99 @@ "address": "0x14001d378", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001d37a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001d37e", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001d380", "size": 3, "mnemonic": "mov", - "operands": "r10d, ecx" + "operands": "r10d, ecx", + "stack_offset": 0 }, { "address": "0x14001d383", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001d386", "size": 2, "mnemonic": "jne", - "operands": "0x14001d3a1" + "operands": "0x14001d3a1", + "stack_offset": 0 }, { "address": "0x14001d388", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14001d38d", "size": 5, "mnemonic": "mov", - "operands": "ebx, 0x16" + "operands": "ebx, 0x16", + "stack_offset": 0 }, { "address": "0x14001d392", "size": 2, "mnemonic": "mov", - "operands": "dword ptr [rax], ebx" + "operands": "dword ptr [rax], ebx", + "stack_offset": 0 }, { "address": "0x14001d394", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14001d399", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x14001d39b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14001d39f", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001d3a0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -135143,31 +152175,36 @@ "address": "0x14001c5a0", "size": 4, "mnemonic": "and", - "operands": "qword ptr [rcx], 0" + "operands": "qword ptr [rcx], 0", + "stack_offset": 0 }, { "address": "0x14001c5a4", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001c5a8", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rdx + 0x30], 1" + "operands": "byte ptr [rdx + 0x30], 1", + "stack_offset": 0 }, { "address": "0x14001c5ac", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rdx + 0x2c], 0x2a" + "operands": "dword ptr [rdx + 0x2c], 0x2a", + "stack_offset": 0 }, { "address": "0x14001c5b3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -135189,37 +152226,43 @@ "address": "0x140004cbc", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140004cbe", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140004cc2", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 8]" + "operands": "rax, qword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x140004cc6", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140004cc9", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140004ccc", "size": 2, "mnemonic": "je", - "operands": "0x140004cde" + "operands": "0x140004cde", + "stack_offset": 0 } ], "successors": [ @@ -135237,31 +152280,36 @@ "address": "0x140004cde", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140004ce1", "size": 5, "mnemonic": "call", - "operands": "0x140004d34" + "operands": "0x140004d34", + "stack_offset": 0 }, { "address": "0x140004ce6", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rbx + 0x40]" + "operands": "rbx, qword ptr [rbx + 0x40]", + "stack_offset": 0 }, { "address": "0x140004cea", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004ced", "size": 2, "mnemonic": "je", - "operands": "0x140004d2b" + "operands": "0x140004d2b", + "stack_offset": 0 } ], "successors": [ @@ -135279,25 +152327,29 @@ "address": "0x140004cce", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x2d85b]" + "operands": "rcx, [rip + 0x2d85b]", + "stack_offset": 0 }, { "address": "0x140004cd5", "size": 3, "mnemonic": "dec", - "operands": "byte ptr [rax + rcx]" + "operands": "byte ptr [rax + rcx]", + "stack_offset": 0 }, { "address": "0x140004cd8", "size": 4, "mnemonic": "cmp", - "operands": "byte ptr [rax + rcx], 0" + "operands": "byte ptr [rax + rcx], 0", + "stack_offset": 0 }, { "address": "0x140004cdc", "size": 2, "mnemonic": "jg", - "operands": "0x140004d2b" + "operands": "0x140004d2b", + "stack_offset": 0 } ], "successors": [ @@ -135315,19 +152367,22 @@ "address": "0x140004d2b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140004d2f", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140004d30", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -135343,19 +152398,22 @@ "address": "0x140004cef", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 8]" + "operands": "rcx, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140004cf3", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140004cf6", "size": 2, "mnemonic": "je", - "operands": "0x140004d1e" + "operands": "0x140004d1e", + "stack_offset": 0 } ], "successors": [ @@ -135373,37 +152431,43 @@ "address": "0x140004d1e", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x10" + "operands": "edx, 0x10", + "stack_offset": 0 }, { "address": "0x140004d23", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140004d26", "size": 5, "mnemonic": "call", - "operands": "0x140005170" + "operands": "0x140005170", + "stack_offset": 0 }, { "address": "0x140004d2b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140004d2f", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140004d30", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -135419,37 +152483,43 @@ "address": "0x140004cf8", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140004cfb", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rax + 0x10]" + "operands": "rax, qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x140004cff", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1b5bb]" + "operands": "qword ptr [rip + 0x1b5bb]", + "stack_offset": 0 }, { "address": "0x140004d05", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140004d08", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140004d0b", "size": 2, "mnemonic": "je", - "operands": "0x140004d1e" + "operands": "0x140004d1e", + "stack_offset": 0 } ], "successors": [ @@ -135467,61 +152537,71 @@ "address": "0x140004d0d", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x140004d10", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rdx]" + "operands": "rax, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140004d13", "size": 5, "mnemonic": "mov", - "operands": "edx, 1" + "operands": "edx, 1", + "stack_offset": 0 }, { "address": "0x140004d18", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1b5a2]" + "operands": "qword ptr [rip + 0x1b5a2]", + "stack_offset": 0 }, { "address": "0x140004d1e", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x10" + "operands": "edx, 0x10", + "stack_offset": 0 }, { "address": "0x140004d23", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140004d26", "size": 5, "mnemonic": "call", - "operands": "0x140005170" + "operands": "0x140005170", + "stack_offset": 0 }, { "address": "0x140004d2b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140004d2f", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140004d30", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -135543,25 +152623,29 @@ "address": "0x14000a704", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x15ba5]" + "operands": "rax, qword ptr [rip + 0x15ba5]", + "stack_offset": 0 }, { "address": "0x14000a70b", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip - 0x728a]" + "operands": "rdx, [rip - 0x728a]", + "stack_offset": 0 }, { "address": "0x14000a712", "size": 3, "mnemonic": "cmp", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000a715", "size": 2, "mnemonic": "je", - "operands": "0x14000a73a" + "operands": "0x14000a73a", + "stack_offset": 0 } ], "successors": [ @@ -135579,7 +152663,8 @@ "address": "0x14000a73a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -135595,25 +152680,29 @@ "address": "0x14000a717", "size": 9, "mnemonic": "mov", - "operands": "rax, qword ptr gs:[0x30]" + "operands": "rax, qword ptr gs:[0x30]", + "stack_offset": 0 }, { "address": "0x14000a720", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x98]" + "operands": "rcx, qword ptr [rcx + 0x98]", + "stack_offset": 0 }, { "address": "0x14000a727", "size": 4, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rax + 0x10]" + "operands": "rcx, qword ptr [rax + 0x10]", + "stack_offset": 0 }, { "address": "0x14000a72b", "size": 2, "mnemonic": "jb", - "operands": "0x14000a733" + "operands": "0x14000a733", + "stack_offset": 0 } ], "successors": [ @@ -135631,19 +152720,22 @@ "address": "0x14000a733", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xd" + "operands": "ecx, 0xd", + "stack_offset": 0 }, { "address": "0x14000a738", "size": 2, "mnemonic": "int", - "operands": "0x29" + "operands": "0x29", + "stack_offset": 0 }, { "address": "0x14000a73a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -135659,31 +152751,36 @@ "address": "0x14000a72d", "size": 4, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rax + 8]" + "operands": "rcx, qword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x14000a731", "size": 2, "mnemonic": "jbe", - "operands": "0x14000a73a" + "operands": "0x14000a73a", + "stack_offset": 0 }, { "address": "0x14000a733", "size": 5, "mnemonic": "mov", - "operands": "ecx, 0xd" + "operands": "ecx, 0xd", + "stack_offset": 0 }, { "address": "0x14000a738", "size": 2, "mnemonic": "int", - "operands": "0x29" + "operands": "0x29", + "stack_offset": 0 }, { "address": "0x14000a73a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -135705,115 +152802,134 @@ "address": "0x1400064ac", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400064b1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x1400064b6", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400064b7", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400064bb", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x48]" + "operands": "r9, [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x1400064c0", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x1400064c3", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x1400064c6", "size": 5, "mnemonic": "call", - "operands": "0x140006544" + "operands": "0x140006544", + "stack_offset": 0 }, { "address": "0x1400064cb", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x1400064ce", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400064d1", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x1400064d4", "size": 5, "mnemonic": "call", - "operands": "0x1400075d8" + "operands": "0x1400075d8", + "stack_offset": 0 }, { "address": "0x1400064d9", "size": 2, "mnemonic": "mov", - "operands": "edx, eax" + "operands": "edx, eax", + "stack_offset": 0 }, { "address": "0x1400064db", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400064de", "size": 5, "mnemonic": "call", - "operands": "0x1400062e8" + "operands": "0x1400062e8", + "stack_offset": 0 }, { "address": "0x1400064e3", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x1400064e6", "size": 2, "mnemonic": "jne", - "operands": "0x1400064ee" + "operands": "0x1400064ee", + "stack_offset": 0 }, { "address": "0x1400064e8", "size": 4, "mnemonic": "or", - "operands": "r9d, 0xffffffff" + "operands": "r9d, 0xffffffff", + "stack_offset": 0 }, { "address": "0x1400064ec", "size": 2, "mnemonic": "jmp", - "operands": "0x1400064f2" + "operands": "0x1400064f2", + "stack_offset": 0 } ], "successors": [ @@ -135830,55 +152946,64 @@ "address": "0x1400064f2", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x1400064f5", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x1400064f8", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x1400064fb", "size": 5, "mnemonic": "call", - "operands": "0x140009dc4" + "operands": "0x140009dc4", + "stack_offset": 0 }, { "address": "0x140006500", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140006505", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000650a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000650e", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000650f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -135906,163 +153031,190 @@ "address": "0x140009dc4", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], r9d" + "operands": "dword ptr [rsp + 0x20], r9d", + "stack_offset": 0 }, { "address": "0x140009dc9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], r8" + "operands": "qword ptr [rsp + 0x18], r8", + "stack_offset": 0 }, { "address": "0x140009dce", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rcx" + "operands": "qword ptr [rsp + 8], rcx", + "stack_offset": 0 }, { "address": "0x140009dd3", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140009dd4", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140009dd5", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140009dd6", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140009dd8", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140009dda", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009ddc", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140009dde", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140009de2", "size": 3, "mnemonic": "mov", - "operands": "r12d, r9d" + "operands": "r12d, r9d", + "stack_offset": 0 }, { "address": "0x140009de5", "size": 3, "mnemonic": "mov", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x140009de8", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x140009deb", "size": 3, "mnemonic": "mov", - "operands": "r15, rcx" + "operands": "r15, rcx", + "stack_offset": 0 }, { "address": "0x140009dee", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140009df3", "size": 3, "mnemonic": "mov", - "operands": "r13, rax" + "operands": "r13, rax", + "stack_offset": 0 }, { "address": "0x140009df6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x28], rax" + "operands": "qword ptr [rsp + 0x28], rax", + "stack_offset": 0 }, { "address": "0x140009dfb", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140009dfe", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140009e01", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x140009e04", "size": 5, "mnemonic": "call", - "operands": "0x14000753c" + "operands": "0x14000753c", + "stack_offset": 0 }, { "address": "0x140009e09", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140009e0b", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009e10", "size": 3, "mnemonic": "inc", - "operands": "dword ptr [rax + 0x30]" + "operands": "dword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x140009e13", "size": 3, "mnemonic": "cmp", - "operands": "edi, -1" + "operands": "edi, -1", + "stack_offset": 0 }, { "address": "0x140009e16", "size": 6, "mnemonic": "je", - "operands": "0x140009f06" + "operands": "0x140009f06", + "stack_offset": 0 } ], "successors": [ @@ -136080,43 +153232,50 @@ "address": "0x140009f06", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009f0b", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x30], 0" + "operands": "dword ptr [rax + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140009f0f", "size": 2, "mnemonic": "jle", - "operands": "0x140009f19" + "operands": "0x140009f19", + "stack_offset": 0 }, { "address": "0x140009f11", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009f16", "size": 3, "mnemonic": "dec", - "operands": "dword ptr [rax + 0x30]" + "operands": "dword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x140009f19", "size": 3, "mnemonic": "cmp", - "operands": "edi, -1" + "operands": "edi, -1", + "stack_offset": 0 }, { "address": "0x140009f1c", "size": 2, "mnemonic": "je", - "operands": "0x140009f23" + "operands": "0x140009f23", + "stack_offset": 0 } ], "successors": [ @@ -136134,109 +153293,127 @@ "address": "0x140009e1c", "size": 3, "mnemonic": "cmp", - "operands": "edi, r12d" + "operands": "edi, r12d", + "stack_offset": 0 }, { "address": "0x140009e1f", "size": 6, "mnemonic": "jle", - "operands": "0x140009f06" + "operands": "0x140009f06", + "stack_offset": 0 }, { "address": "0x140009e25", "size": 3, "mnemonic": "cmp", - "operands": "edi, -1" + "operands": "edi, -1", + "stack_offset": 0 }, { "address": "0x140009e28", "size": 6, "mnemonic": "jle", - "operands": "0x140009f41" + "operands": "0x140009f41", + "stack_offset": 0 }, { "address": "0x140009e2e", "size": 3, "mnemonic": "cmp", - "operands": "edi, dword ptr [rsi + 4]" + "operands": "edi, dword ptr [rsi + 4]", + "stack_offset": 0 }, { "address": "0x140009e31", "size": 6, "mnemonic": "jge", - "operands": "0x140009f41" + "operands": "0x140009f41", + "stack_offset": 0 }, { "address": "0x140009e37", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140009e3c", "size": 3, "mnemonic": "movsxd", - "operands": "r14, edi" + "operands": "r14, edi", + "stack_offset": 0 }, { "address": "0x140009e3f", "size": 4, "mnemonic": "shl", - "operands": "r14, 3" + "operands": "r14, 3", + "stack_offset": 0 }, { "address": "0x140009e43", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rsi + 8]" + "operands": "rcx, dword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140009e47", "size": 3, "mnemonic": "add", - "operands": "rcx, r14" + "operands": "rcx, r14", + "stack_offset": 0 }, { "address": "0x140009e4a", "size": 3, "mnemonic": "mov", - "operands": "edi, dword ptr [rcx + rax]" + "operands": "edi, dword ptr [rcx + rax]", + "stack_offset": 0 }, { "address": "0x140009e4d", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x20], edi" + "operands": "dword ptr [rsp + 0x20], edi", + "stack_offset": 0 }, { "address": "0x140009e51", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rsi + 8]" + "operands": "rbx, dword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140009e55", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140009e5a", "size": 3, "mnemonic": "add", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x140009e5d", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [rax + rbx + 4], 0" + "operands": "dword ptr [rax + rbx + 4], 0", + "stack_offset": 0 }, { "address": "0x140009e62", "size": 2, "mnemonic": "je", - "operands": "0x140009e7f" + "operands": "0x140009e7f", + "stack_offset": 0 } ], "successors": [ @@ -136254,79 +153431,92 @@ "address": "0x140009f23", "size": 3, "mnemonic": "mov", - "operands": "r8d, edi" + "operands": "r8d, edi", + "stack_offset": 0 }, { "address": "0x140009f26", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x140009f29", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x140009f2c", "size": 5, "mnemonic": "call", - "operands": "0x140007590" + "operands": "0x140007590", + "stack_offset": 0 }, { "address": "0x140009f31", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140009f35", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140009f37", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009f39", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140009f3b", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140009f3d", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140009f3e", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140009f3f", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140009f40", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -136342,13 +153532,15 @@ "address": "0x140009f1e", "size": 3, "mnemonic": "cmp", - "operands": "edi, r12d" + "operands": "edi, r12d", + "stack_offset": 0 }, { "address": "0x140009f21", "size": 2, "mnemonic": "jg", - "operands": "0x140009f47" + "operands": "0x140009f47", + "stack_offset": 0 } ], "successors": [ @@ -136366,19 +153558,22 @@ "address": "0x140009e7f", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140009e81", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140009e84", "size": 2, "mnemonic": "je", - "operands": "0x140009edd" + "operands": "0x140009edd", + "stack_offset": 0 } ], "successors": [ @@ -136396,43 +153591,50 @@ "address": "0x140009e64", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rsi + 8]" + "operands": "rbx, dword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140009e68", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140009e6d", "size": 3, "mnemonic": "add", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x140009e70", "size": 5, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rax + rbx + 4]" + "operands": "rbx, dword ptr [rax + rbx + 4]", + "stack_offset": 0 }, { "address": "0x140009e75", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140009e7a", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140009e7d", "size": 2, "mnemonic": "jmp", - "operands": "0x140009e81" + "operands": "0x140009e81", + "stack_offset": 0 } ], "successors": [ @@ -136449,19 +153651,22 @@ "address": "0x140009f47", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140009f4c", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140009f4d", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -136477,7 +153682,8 @@ "address": "0x140009edd", "size": 2, "mnemonic": "jmp", - "operands": "0x140009efd" + "operands": "0x140009efd", + "stack_offset": 0 } ], "successors": [ @@ -136494,55 +153700,64 @@ "address": "0x140009e86", "size": 3, "mnemonic": "mov", - "operands": "r8d, edi" + "operands": "r8d, edi", + "stack_offset": 0 }, { "address": "0x140009e89", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x140009e8c", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x140009e8f", "size": 5, "mnemonic": "call", - "operands": "0x140007590" + "operands": "0x140007590", + "stack_offset": 0 }, { "address": "0x140009e94", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rsi + 8]" + "operands": "rbx, dword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140009e98", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140009e9d", "size": 3, "mnemonic": "add", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x140009ea0", "size": 5, "mnemonic": "cmp", - "operands": "dword ptr [rax + rbx + 4], 0" + "operands": "dword ptr [rax + rbx + 4], 0", + "stack_offset": 0 }, { "address": "0x140009ea5", "size": 2, "mnemonic": "je", - "operands": "0x140009ec2" + "operands": "0x140009ec2", + "stack_offset": 0 } ], "successors": [ @@ -136560,13 +153775,15 @@ "address": "0x140009e81", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140009e84", "size": 2, "mnemonic": "je", - "operands": "0x140009edd" + "operands": "0x140009edd", + "stack_offset": 0 } ], "successors": [ @@ -136584,13 +153801,15 @@ "address": "0x140009efd", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x24], edi" + "operands": "dword ptr [rsp + 0x24], edi", + "stack_offset": 0 }, { "address": "0x140009f01", "size": 5, "mnemonic": "jmp", - "operands": "0x140009e13" + "operands": "0x140009e13", + "stack_offset": 0 } ], "successors": [ @@ -136607,49 +153826,57 @@ "address": "0x140009ec2", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x140009ec4", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x103" + "operands": "r8d, 0x103", + "stack_offset": 0 }, { "address": "0x140009eca", "size": 3, "mnemonic": "mov", - "operands": "rdx, r15" + "operands": "rdx, r15", + "stack_offset": 0 }, { "address": "0x140009ecd", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140009ed0", "size": 5, "mnemonic": "call", - "operands": "0x14000aae0" + "operands": "0x14000aae0", + "stack_offset": 0 }, { "address": "0x140009ed5", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140009ed8", "size": 5, "mnemonic": "call", - "operands": "0x140006dd0" + "operands": "0x140006dd0", + "stack_offset": 0 }, { "address": "0x140009edd", "size": 2, "mnemonic": "jmp", - "operands": "0x140009efd" + "operands": "0x140009efd", + "stack_offset": 0 } ], "successors": [ @@ -136666,43 +153893,50 @@ "address": "0x140009ea7", "size": 4, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rsi + 8]" + "operands": "rbx, dword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140009eab", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140009eb0", "size": 3, "mnemonic": "add", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x140009eb3", "size": 5, "mnemonic": "movsxd", - "operands": "rbx, dword ptr [rax + rbx + 4]" + "operands": "rbx, dword ptr [rax + rbx + 4]", + "stack_offset": 0 }, { "address": "0x140009eb8", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140009ebd", "size": 3, "mnemonic": "add", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140009ec0", "size": 2, "mnemonic": "jmp", - "operands": "0x140009ec4" + "operands": "0x140009ec4", + "stack_offset": 0 } ], "successors": [ @@ -136719,13 +153953,15 @@ "address": "0x140009e13", "size": 3, "mnemonic": "cmp", - "operands": "edi, -1" + "operands": "edi, -1", + "stack_offset": 0 }, { "address": "0x140009e16", "size": 6, "mnemonic": "je", - "operands": "0x140009f06" + "operands": "0x140009f06", + "stack_offset": 0 } ], "successors": [ @@ -136743,43 +153979,50 @@ "address": "0x140009ec4", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x103" + "operands": "r8d, 0x103", + "stack_offset": 0 }, { "address": "0x140009eca", "size": 3, "mnemonic": "mov", - "operands": "rdx, r15" + "operands": "rdx, r15", + "stack_offset": 0 }, { "address": "0x140009ecd", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x140009ed0", "size": 5, "mnemonic": "call", - "operands": "0x14000aae0" + "operands": "0x14000aae0", + "stack_offset": 0 }, { "address": "0x140009ed5", "size": 3, "mnemonic": "mov", - "operands": "rcx, r13" + "operands": "rcx, r13", + "stack_offset": 0 }, { "address": "0x140009ed8", "size": 5, "mnemonic": "call", - "operands": "0x140006dd0" + "operands": "0x140006dd0", + "stack_offset": 0 }, { "address": "0x140009edd", "size": 2, "mnemonic": "jmp", - "operands": "0x140009efd" + "operands": "0x140009efd", + "stack_offset": 0 } ], "successors": [ @@ -136802,151 +154045,176 @@ "address": "0x140009284", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140009287", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 8], rbx" + "operands": "qword ptr [rax + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000928b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x10], rbp" + "operands": "qword ptr [rax + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000928f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x18], rsi" + "operands": "qword ptr [rax + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x140009293", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x20], rdi" + "operands": "qword ptr [rax + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x140009297", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140009299", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000929b", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000929d", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x80" + "operands": "rsp, 0x80", + "stack_offset": 0 }, { "address": "0x1400092a4", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x1400092a7", "size": 3, "mnemonic": "mov", - "operands": "rsi, r9" + "operands": "rsi, r9", + "stack_offset": 0 }, { "address": "0x1400092aa", "size": 3, "mnemonic": "mov", - "operands": "rcx, r8" + "operands": "rcx, r8", + "stack_offset": 0 }, { "address": "0x1400092ad", "size": 3, "mnemonic": "mov", - "operands": "r12, r8" + "operands": "r12, r8", + "stack_offset": 0 }, { "address": "0x1400092b0", "size": 3, "mnemonic": "mov", - "operands": "r15, rdx" + "operands": "r15, rdx", + "stack_offset": 0 }, { "address": "0x1400092b3", "size": 5, "mnemonic": "call", - "operands": "0x14000a704" + "operands": "0x14000a704", + "stack_offset": 0 }, { "address": "0x1400092b8", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x1400092bd", "size": 8, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0xc0]" + "operands": "rdi, qword ptr [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x1400092c5", "size": 2, "mnemonic": "xor", - "operands": "ebp, ebp" + "operands": "ebp, ebp", + "stack_offset": 0 }, { "address": "0x1400092c7", "size": 6, "mnemonic": "mov", - "operands": "r14d, 0xe06d7363" + "operands": "r14d, 0xe06d7363", + "stack_offset": 0 }, { "address": "0x1400092cd", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x80000029" + "operands": "r8d, 0x80000029", + "stack_offset": 0 }, { "address": "0x1400092d3", "size": 6, "mnemonic": "mov", - "operands": "r9d, 0x80000026" + "operands": "r9d, 0x80000026", + "stack_offset": 0 }, { "address": "0x1400092d9", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x40], ebp" + "operands": "dword ptr [rax + 0x40], ebp", + "stack_offset": 0 }, { "address": "0x1400092dc", "size": 2, "mnemonic": "jne", - "operands": "0x140009306" + "operands": "0x140009306", + "stack_offset": 0 }, { "address": "0x1400092de", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx], r14d" + "operands": "dword ptr [rbx], r14d", + "stack_offset": 0 }, { "address": "0x1400092e1", "size": 2, "mnemonic": "je", - "operands": "0x140009306" + "operands": "0x140009306", + "stack_offset": 0 } ], "successors": [ @@ -136964,13 +154232,15 @@ "address": "0x140009306", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbx + 4], 0x66" + "operands": "byte ptr [rbx + 4], 0x66", + "stack_offset": 0 }, { "address": "0x14000930a", "size": 6, "mnemonic": "je", - "operands": "0x140009435" + "operands": "0x140009435", + "stack_offset": 0 } ], "successors": [ @@ -136988,37 +154258,43 @@ "address": "0x1400092e3", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx], r8d" + "operands": "dword ptr [rbx], r8d", + "stack_offset": 0 }, { "address": "0x1400092e6", "size": 2, "mnemonic": "jne", - "operands": "0x1400092f8" + "operands": "0x1400092f8", + "stack_offset": 0 }, { "address": "0x1400092e8", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x18], 0xf" + "operands": "dword ptr [rbx + 0x18], 0xf", + "stack_offset": 0 }, { "address": "0x1400092ec", "size": 2, "mnemonic": "jne", - "operands": "0x1400092fd" + "operands": "0x1400092fd", + "stack_offset": 0 }, { "address": "0x1400092ee", "size": 8, "mnemonic": "cmp", - "operands": "qword ptr [rbx + 0x60], 0x19930520" + "operands": "qword ptr [rbx + 0x60], 0x19930520", + "stack_offset": 0 }, { "address": "0x1400092f6", "size": 2, "mnemonic": "je", - "operands": "0x140009306" + "operands": "0x140009306", + "stack_offset": 0 } ], "successors": [ @@ -137036,49 +154312,57 @@ "address": "0x140009435", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rsi + 8]" + "operands": "r8, qword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140009439", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x50]" + "operands": "rcx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000943e", "size": 3, "mnemonic": "mov", - "operands": "rdx, rdi" + "operands": "rdx, rdi", + "stack_offset": 0 }, { "address": "0x140009441", "size": 5, "mnemonic": "call", - "operands": "0x140009604" + "operands": "0x140009604", + "stack_offset": 0 }, { "address": "0x140009446", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rsp + 0x50], ebp" + "operands": "dword ptr [rsp + 0x50], ebp", + "stack_offset": 0 }, { "address": "0x14000944a", "size": 2, "mnemonic": "jne", - "operands": "0x140009455" + "operands": "0x140009455", + "stack_offset": 0 }, { "address": "0x14000944c", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rdi], 0x40" + "operands": "byte ptr [rdi], 0x40", + "stack_offset": 0 }, { "address": "0x14000944f", "size": 6, "mnemonic": "je", - "operands": "0x1400094fc" + "operands": "0x1400094fc", + "stack_offset": 0 } ], "successors": [ @@ -137096,13 +154380,15 @@ "address": "0x140009310", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 8], ebp" + "operands": "dword ptr [rdi + 8], ebp", + "stack_offset": 0 }, { "address": "0x140009313", "size": 6, "mnemonic": "je", - "operands": "0x1400094fc" + "operands": "0x1400094fc", + "stack_offset": 0 } ], "successors": [ @@ -137120,13 +154406,15 @@ "address": "0x1400092f8", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx], r9d" + "operands": "dword ptr [rbx], r9d", + "stack_offset": 0 }, { "address": "0x1400092fb", "size": 2, "mnemonic": "je", - "operands": "0x140009306" + "operands": "0x140009306", + "stack_offset": 0 } ], "successors": [ @@ -137144,67 +154432,78 @@ "address": "0x1400094fc", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140009501", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x80]" + "operands": "r11, [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140009509", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000950d", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x28]" + "operands": "rbp, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x140009511", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x140009515", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x38]" + "operands": "rdi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x140009519", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000951c", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000951e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009520", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140009522", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -137220,25 +154519,29 @@ "address": "0x140009455", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx], r14d" + "operands": "dword ptr [rbx], r14d", + "stack_offset": 0 }, { "address": "0x140009458", "size": 2, "mnemonic": "jne", - "operands": "0x1400094c3" + "operands": "0x1400094c3", + "stack_offset": 0 }, { "address": "0x14000945a", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x18], 3" + "operands": "dword ptr [rbx + 0x18], 3", + "stack_offset": 0 }, { "address": "0x14000945e", "size": 2, "mnemonic": "jb", - "operands": "0x1400094c3" + "operands": "0x1400094c3", + "stack_offset": 0 } ], "successors": [ @@ -137256,79 +154559,92 @@ "address": "0x140009319", "size": 4, "mnemonic": "movsxd", - "operands": "rcx, dword ptr [rdi + 8]" + "operands": "rcx, dword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x14000931d", "size": 7, "mnemonic": "lea", - "operands": "r14, [rip - 0x9324]" + "operands": "r14, [rip - 0x9324]", + "stack_offset": 0 }, { "address": "0x140009324", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsi + 8]" + "operands": "rdx, qword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140009328", "size": 3, "mnemonic": "add", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14000932b", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000932e", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x140009331", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r14 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r14 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x14000933a", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r14 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r14 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x140009342", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x140009345", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x140009348", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000934a", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000934c", "size": 6, "mnemonic": "je", - "operands": "0x1400094fc" + "operands": "0x1400094fc", + "stack_offset": 0 } ], "successors": [ @@ -137346,25 +154662,29 @@ "address": "0x1400092fd", "size": 3, "mnemonic": "test", - "operands": "byte ptr [rdi], 0x20" + "operands": "byte ptr [rdi], 0x20", + "stack_offset": 0 }, { "address": "0x140009300", "size": 6, "mnemonic": "jne", - "operands": "0x1400094fc" + "operands": "0x1400094fc", + "stack_offset": 0 }, { "address": "0x140009306", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbx + 4], 0x66" + "operands": "byte ptr [rbx + 4], 0x66", + "stack_offset": 0 }, { "address": "0x14000930a", "size": 6, "mnemonic": "je", - "operands": "0x140009435" + "operands": "0x140009435", + "stack_offset": 0 } ], "successors": [ @@ -137382,139 +154702,162 @@ "address": "0x1400094c3", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0xd0]" + "operands": "rax, qword ptr [rsp + 0xd0]", + "stack_offset": 0 }, { "address": "0x1400094cb", "size": 3, "mnemonic": "mov", - "operands": "r9, rsi" + "operands": "r9, rsi", + "stack_offset": 0 }, { "address": "0x1400094ce", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rax" + "operands": "qword ptr [rsp + 0x38], rax", + "stack_offset": 0 }, { "address": "0x1400094d3", "size": 3, "mnemonic": "mov", - "operands": "r8, r12" + "operands": "r8, r12", + "stack_offset": 0 }, { "address": "0x1400094d6", "size": 7, "mnemonic": "mov", - "operands": "eax, dword ptr [rsp + 0xc8]" + "operands": "eax, dword ptr [rsp + 0xc8]", + "stack_offset": 0 }, { "address": "0x1400094dd", "size": 3, "mnemonic": "mov", - "operands": "rdx, r15" + "operands": "rdx, r15", + "stack_offset": 0 }, { "address": "0x1400094e0", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x30], eax" + "operands": "dword ptr [rsp + 0x30], eax", + "stack_offset": 0 }, { "address": "0x1400094e4", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400094e7", "size": 7, "mnemonic": "mov", - "operands": "al, byte ptr [rsp + 0xd8]" + "operands": "al, byte ptr [rsp + 0xd8]", + "stack_offset": 0 }, { "address": "0x1400094ee", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x28], al" + "operands": "byte ptr [rsp + 0x28], al", + "stack_offset": 0 }, { "address": "0x1400094f2", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x1400094f7", "size": 5, "mnemonic": "call", - "operands": "0x140008350" + "operands": "0x140008350", + "stack_offset": 0 }, { "address": "0x1400094fc", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x140009501", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x80]" + "operands": "r11, [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140009509", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000950d", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x28]" + "operands": "rbp, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x140009511", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x140009515", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x38]" + "operands": "rdi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x140009519", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000951c", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000951e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009520", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140009522", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -137530,37 +154873,43 @@ "address": "0x140009460", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 0x20], 0x19930522" + "operands": "dword ptr [rbx + 0x20], 0x19930522", + "stack_offset": 0 }, { "address": "0x140009467", "size": 2, "mnemonic": "jbe", - "operands": "0x1400094c3" + "operands": "0x1400094c3", + "stack_offset": 0 }, { "address": "0x140009469", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 0x30]" + "operands": "rax, qword ptr [rbx + 0x30]", + "stack_offset": 0 }, { "address": "0x14000946d", "size": 4, "mnemonic": "movsxd", - "operands": "r14, dword ptr [rax + 8]" + "operands": "r14, dword ptr [rax + 8]", + "stack_offset": 0 }, { "address": "0x140009471", "size": 3, "mnemonic": "test", - "operands": "r14d, r14d" + "operands": "r14d, r14d", + "stack_offset": 0 }, { "address": "0x140009474", "size": 2, "mnemonic": "je", - "operands": "0x1400094c3" + "operands": "0x1400094c3", + "stack_offset": 0 } ], "successors": [ @@ -137578,25 +154927,29 @@ "address": "0x140009352", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rsp + 0xc8], ebp" + "operands": "dword ptr [rsp + 0xc8], ebp", + "stack_offset": 0 }, { "address": "0x140009359", "size": 6, "mnemonic": "jne", - "operands": "0x1400094fc" + "operands": "0x1400094fc", + "stack_offset": 0 }, { "address": "0x14000935f", "size": 4, "mnemonic": "test", - "operands": "byte ptr [rbx + 4], 0x20" + "operands": "byte ptr [rbx + 4], 0x20", + "stack_offset": 0 }, { "address": "0x140009363", "size": 6, "mnemonic": "je", - "operands": "0x140009422" + "operands": "0x140009422", + "stack_offset": 0 } ], "successors": [ @@ -137614,25 +154967,29 @@ "address": "0x140009476", "size": 5, "mnemonic": "call", - "operands": "0x140006dbc" + "operands": "0x140006dbc", + "stack_offset": 0 }, { "address": "0x14000947b", "size": 3, "mnemonic": "mov", - "operands": "r10, rax" + "operands": "r10, rax", + "stack_offset": 0 }, { "address": "0x14000947e", "size": 3, "mnemonic": "add", - "operands": "r10, r14" + "operands": "r10, r14", + "stack_offset": 0 }, { "address": "0x140009481", "size": 2, "mnemonic": "je", - "operands": "0x1400094c3" + "operands": "0x1400094c3", + "stack_offset": 0 } ], "successors": [ @@ -137650,31 +155007,36 @@ "address": "0x140009422", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x140009425", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x140009428", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x14000942b", "size": 5, "mnemonic": "call", - "operands": "0x140006510" + "operands": "0x140006510", + "stack_offset": 0 }, { "address": "0x140009430", "size": 5, "mnemonic": "jmp", - "operands": "0x1400094fc" + "operands": "0x1400094fc", + "stack_offset": 0 } ], "successors": [ @@ -137691,55 +155053,64 @@ "address": "0x140009369", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx], r9d" + "operands": "dword ptr [rbx], r9d", + "stack_offset": 0 }, { "address": "0x14000936c", "size": 2, "mnemonic": "jne", - "operands": "0x1400093d6" + "operands": "0x1400093d6", + "stack_offset": 0 }, { "address": "0x14000936e", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rsi + 0x20]" + "operands": "r8, qword ptr [rsi + 0x20]", + "stack_offset": 0 }, { "address": "0x140009372", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x140009375", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140009378", "size": 5, "mnemonic": "call", - "operands": "0x140007650" + "operands": "0x140007650", + "stack_offset": 0 }, { "address": "0x14000937d", "size": 3, "mnemonic": "mov", - "operands": "r9d, eax" + "operands": "r9d, eax", + "stack_offset": 0 }, { "address": "0x140009380", "size": 3, "mnemonic": "cmp", - "operands": "eax, -1" + "operands": "eax, -1", + "stack_offset": 0 }, { "address": "0x140009383", "size": 6, "mnemonic": "jl", - "operands": "0x140009523" + "operands": "0x140009523", + "stack_offset": 0 } ], "successors": [ @@ -137757,85 +155128,99 @@ "address": "0x140009483", "size": 8, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rsp + 0xd8]" + "operands": "ecx, byte ptr [rsp + 0xd8]", + "stack_offset": 0 }, { "address": "0x14000948b", "size": 3, "mnemonic": "mov", - "operands": "r9, rsi" + "operands": "r9, rsi", + "stack_offset": 0 }, { "address": "0x14000948e", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x38], ecx" + "operands": "dword ptr [rsp + 0x38], ecx", + "stack_offset": 0 }, { "address": "0x140009492", "size": 3, "mnemonic": "mov", - "operands": "r8, r12" + "operands": "r8, r12", + "stack_offset": 0 }, { "address": "0x140009495", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xd0]" + "operands": "rcx, qword ptr [rsp + 0xd0]", + "stack_offset": 0 }, { "address": "0x14000949d", "size": 3, "mnemonic": "mov", - "operands": "rdx, r15" + "operands": "rdx, r15", + "stack_offset": 0 }, { "address": "0x1400094a0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x1400094a5", "size": 3, "mnemonic": "mov", - "operands": "rax, r10" + "operands": "rax, r10", + "stack_offset": 0 }, { "address": "0x1400094a8", "size": 7, "mnemonic": "mov", - "operands": "ecx, dword ptr [rsp + 0xc8]" + "operands": "ecx, dword ptr [rsp + 0xc8]", + "stack_offset": 0 }, { "address": "0x1400094af", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x28], ecx" + "operands": "dword ptr [rsp + 0x28], ecx", + "stack_offset": 0 }, { "address": "0x1400094b3", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x1400094b6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rdi" + "operands": "qword ptr [rsp + 0x20], rdi", + "stack_offset": 0 }, { "address": "0x1400094bb", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x16dff]" + "operands": "qword ptr [rip + 0x16dff]", + "stack_offset": 0 }, { "address": "0x1400094c1", "size": 2, "mnemonic": "jmp", - "operands": "0x140009501" + "operands": "0x140009501", + "stack_offset": 0 } ], "successors": [ @@ -137852,13 +155237,15 @@ "address": "0x140009523", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x140009528", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -137874,13 +155261,15 @@ "address": "0x140009389", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rdi + 8], ebp" + "operands": "dword ptr [rdi + 8], ebp", + "stack_offset": 0 }, { "address": "0x14000938c", "size": 2, "mnemonic": "je", - "operands": "0x1400093ba" + "operands": "0x1400093ba", + "stack_offset": 0 } ], "successors": [ @@ -137898,61 +155287,71 @@ "address": "0x140009501", "size": 8, "mnemonic": "lea", - "operands": "r11, [rsp + 0x80]" + "operands": "r11, [rsp + 0x80]", + "stack_offset": 0 }, { "address": "0x140009509", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [r11 + 0x20]" + "operands": "rbx, qword ptr [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x14000950d", "size": 4, "mnemonic": "mov", - "operands": "rbp, qword ptr [r11 + 0x28]" + "operands": "rbp, qword ptr [r11 + 0x28]", + "stack_offset": 0 }, { "address": "0x140009511", "size": 4, "mnemonic": "mov", - "operands": "rsi, qword ptr [r11 + 0x30]" + "operands": "rsi, qword ptr [r11 + 0x30]", + "stack_offset": 0 }, { "address": "0x140009515", "size": 4, "mnemonic": "mov", - "operands": "rdi, qword ptr [r11 + 0x38]" + "operands": "rdi, qword ptr [r11 + 0x38]", + "stack_offset": 0 }, { "address": "0x140009519", "size": 3, "mnemonic": "mov", - "operands": "rsp, r11" + "operands": "rsp, r11", + "stack_offset": 0 }, { "address": "0x14000951c", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000951e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009520", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140009522", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -137968,43 +155367,50 @@ "address": "0x1400093ba", "size": 3, "mnemonic": "cmp", - "operands": "r9d, ebp" + "operands": "r9d, ebp", + "stack_offset": 0 }, { "address": "0x1400093bd", "size": 6, "mnemonic": "jge", - "operands": "0x140009523" + "operands": "0x140009523", + "stack_offset": 0 }, { "address": "0x1400093c3", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x1400093c6", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x1400093c9", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x1400093cc", "size": 5, "mnemonic": "call", - "operands": "0x140009f50" + "operands": "0x140009f50", + "stack_offset": 0 }, { "address": "0x1400093d1", "size": 5, "mnemonic": "jmp", - "operands": "0x1400094fc" + "operands": "0x1400094fc", + "stack_offset": 0 } ], "successors": [ @@ -138021,103 +155427,120 @@ "address": "0x14000938e", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rdi + 8]" + "operands": "rdx, dword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x140009392", "size": 4, "mnemonic": "mov", - "operands": "r8, qword ptr [rsi + 8]" + "operands": "r8, qword ptr [rsi + 8]", + "stack_offset": 0 }, { "address": "0x140009396", "size": 3, "mnemonic": "add", - "operands": "r8, rdx" + "operands": "r8, rdx", + "stack_offset": 0 }, { "address": "0x140009399", "size": 4, "mnemonic": "movzx", - "operands": "ecx, byte ptr [r8]" + "operands": "ecx, byte ptr [r8]", + "stack_offset": 0 }, { "address": "0x14000939d", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x1400093a0", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r14 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r14 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x1400093a9", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r14 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r14 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x1400093b1", "size": 3, "mnemonic": "sub", - "operands": "r8, rax" + "operands": "r8, rax", + "stack_offset": 0 }, { "address": "0x1400093b4", "size": 4, "mnemonic": "mov", - "operands": "ebp, dword ptr [r8 - 4]" + "operands": "ebp, dword ptr [r8 - 4]", + "stack_offset": 0 }, { "address": "0x1400093b8", "size": 2, "mnemonic": "shr", - "operands": "ebp, cl" + "operands": "ebp, cl", + "stack_offset": 0 }, { "address": "0x1400093ba", "size": 3, "mnemonic": "cmp", - "operands": "r9d, ebp" + "operands": "r9d, ebp", + "stack_offset": 0 }, { "address": "0x1400093bd", "size": 6, "mnemonic": "jge", - "operands": "0x140009523" + "operands": "0x140009523", + "stack_offset": 0 }, { "address": "0x1400093c3", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x1400093c6", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x1400093c9", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x1400093cc", "size": 5, "mnemonic": "call", - "operands": "0x140009f50" + "operands": "0x140009f50", + "stack_offset": 0 }, { "address": "0x1400093d1", "size": 5, "mnemonic": "jmp", - "operands": "0x1400094fc" + "operands": "0x1400094fc", + "stack_offset": 0 } ], "successors": [ @@ -138140,97 +155563,113 @@ "address": "0x14000aa38", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000aa3d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000aa42", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000aa43", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000aa47", "size": 3, "mnemonic": "mov", - "operands": "esi, r8d" + "operands": "esi, r8d", + "stack_offset": 0 }, { "address": "0x14000aa4a", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x1a3bf]" + "operands": "r9, [rip + 0x1a3bf]", + "stack_offset": 0 }, { "address": "0x14000aa51", "size": 2, "mnemonic": "mov", - "operands": "ebx, edx" + "operands": "ebx, edx", + "stack_offset": 0 }, { "address": "0x14000aa53", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x1a3ae]" + "operands": "r8, [rip + 0x1a3ae]", + "stack_offset": 0 }, { "address": "0x14000aa5a", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000aa5d", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1a3ac]" + "operands": "rdx, [rip + 0x1a3ac]", + "stack_offset": 0 }, { "address": "0x14000aa64", "size": 5, "mnemonic": "mov", - "operands": "ecx, 4" + "operands": "ecx, 4", + "stack_offset": 0 }, { "address": "0x14000aa69", "size": 5, "mnemonic": "call", - "operands": "0x14000a7bc" + "operands": "0x14000a7bc", + "stack_offset": 0 }, { "address": "0x14000aa6e", "size": 2, "mnemonic": "mov", - "operands": "edx, ebx" + "operands": "edx, ebx", + "stack_offset": 0 }, { "address": "0x14000aa70", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14000aa73", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000aa76", "size": 2, "mnemonic": "je", - "operands": "0x14000aa83" + "operands": "0x14000aa83", + "stack_offset": 0 } ], "successors": [ @@ -138248,37 +155687,43 @@ "address": "0x14000aa83", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1567f]" + "operands": "qword ptr [rip + 0x1567f]", + "stack_offset": 0 }, { "address": "0x14000aa89", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000aa8e", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000aa93", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000aa97", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000aa98", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -138294,19 +155739,22 @@ "address": "0x14000aa78", "size": 3, "mnemonic": "mov", - "operands": "r8d, esi" + "operands": "r8d, esi", + "stack_offset": 0 }, { "address": "0x14000aa7b", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x1583f]" + "operands": "qword ptr [rip + 0x1583f]", + "stack_offset": 0 }, { "address": "0x14000aa81", "size": 2, "mnemonic": "jmp", - "operands": "0x14000aa89" + "operands": "0x14000aa89", + "stack_offset": 0 } ], "successors": [ @@ -138323,31 +155771,36 @@ "address": "0x14000aa89", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000aa8e", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000aa93", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000aa97", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000aa98", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -138369,67 +155822,78 @@ "address": "0x14000a954", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000a956", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a95a", "size": 2, "mnemonic": "mov", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14000a95c", "size": 7, "mnemonic": "lea", - "operands": "r9, [rip + 0x1a46d]" + "operands": "r9, [rip + 0x1a46d]", + "stack_offset": 0 }, { "address": "0x14000a963", "size": 5, "mnemonic": "mov", - "operands": "ecx, 1" + "operands": "ecx, 1", + "stack_offset": 0 }, { "address": "0x14000a968", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip + 0x1a459]" + "operands": "r8, [rip + 0x1a459]", + "stack_offset": 0 }, { "address": "0x14000a96f", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1a45a]" + "operands": "rdx, [rip + 0x1a45a]", + "stack_offset": 0 }, { "address": "0x14000a976", "size": 5, "mnemonic": "call", - "operands": "0x14000a7bc" + "operands": "0x14000a7bc", + "stack_offset": 0 }, { "address": "0x14000a97b", "size": 2, "mnemonic": "mov", - "operands": "ecx, ebx" + "operands": "ecx, ebx", + "stack_offset": 0 }, { "address": "0x14000a97d", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000a980", "size": 2, "mnemonic": "je", - "operands": "0x14000a98e" + "operands": "0x14000a98e", + "stack_offset": 0 } ], "successors": [ @@ -138447,19 +155911,22 @@ "address": "0x14000a98e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a992", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000a993", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x1578e]" + "operands": "qword ptr [rip + 0x1578e]", + "stack_offset": 0 } ], "successors": [ @@ -138476,19 +155943,22 @@ "address": "0x14000a982", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a986", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000a987", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x15932]" + "operands": "qword ptr [rip + 0x15932]", + "stack_offset": 0 } ], "successors": [ @@ -138521,103 +155991,120 @@ "address": "0x140010944", "size": 3, "mnemonic": "mov", - "operands": "r11, rsp" + "operands": "r11, rsp", + "stack_offset": 0 }, { "address": "0x140010947", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], rcx" + "operands": "qword ptr [r11 + 8], rcx", + "stack_offset": 0 }, { "address": "0x14001094b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x14001094f", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [r11 - 0x10], 0xfffffffffffffffe" + "operands": "qword ptr [r11 - 0x10], 0xfffffffffffffffe", + "stack_offset": 0 }, { "address": "0x140010957", "size": 4, "mnemonic": "lea", - "operands": "rax, [r11 + 8]" + "operands": "rax, [r11 + 8]", + "stack_offset": 0 }, { "address": "0x14001095b", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 - 0x18], rax" + "operands": "qword ptr [r11 - 0x18], rax", + "stack_offset": 0 }, { "address": "0x14001095f", "size": 5, "mnemonic": "mov", - "operands": "eax, 2" + "operands": "eax, 2", + "stack_offset": 0 }, { "address": "0x140010964", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x50], eax" + "operands": "dword ptr [rsp + 0x50], eax", + "stack_offset": 0 }, { "address": "0x140010968", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x58], eax" + "operands": "dword ptr [rsp + 0x58], eax", + "stack_offset": 0 }, { "address": "0x14001096c", "size": 4, "mnemonic": "lea", - "operands": "r9, [r11 + 0x18]" + "operands": "r9, [r11 + 0x18]", + "stack_offset": 0 }, { "address": "0x140010970", "size": 4, "mnemonic": "lea", - "operands": "r8, [r11 - 0x18]" + "operands": "r8, [r11 - 0x18]", + "stack_offset": 0 }, { "address": "0x140010974", "size": 4, "mnemonic": "lea", - "operands": "rdx, [r11 + 0x20]" + "operands": "rdx, [r11 + 0x20]", + "stack_offset": 0 }, { "address": "0x140010978", "size": 4, "mnemonic": "lea", - "operands": "rcx, [r11 + 0x10]" + "operands": "rcx, [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x14001097c", "size": 5, "mnemonic": "call", - "operands": "0x140010630" + "operands": "0x140010630", + "stack_offset": 0 }, { "address": "0x140010981", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x140010982", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x38" + "operands": "rsp, 0x38", + "stack_offset": 0 }, { "address": "0x140010986", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -138639,115 +156126,134 @@ "address": "0x1400022c0", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x1400022c2", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x1400022c6", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x1400022c9", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x28], 1" + "operands": "byte ptr [rsp + 0x28], 1", + "stack_offset": 0 }, { "address": "0x1400022ce", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x1400022d1", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x1e110]" + "operands": "rcx, [rip + 0x1e110]", + "stack_offset": 0 }, { "address": "0x1400022d8", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x1400022db", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x1400022e0", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rcx" + "operands": "qword ptr [rbx], rcx", + "stack_offset": 0 }, { "address": "0x1400022e3", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbx + 8]" + "operands": "rdx, [rbx + 8]", + "stack_offset": 0 }, { "address": "0x1400022e7", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400022ec", "size": 3, "mnemonic": "movups", - "operands": "xmmword ptr [rdx], xmm0" + "operands": "xmmword ptr [rdx], xmm0", + "stack_offset": 0 }, { "address": "0x1400022ef", "size": 5, "mnemonic": "call", - "operands": "0x1400060f0" + "operands": "0x1400060f0", + "stack_offset": 0 }, { "address": "0x1400022f4", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e2bd]" + "operands": "rax, [rip + 0x1e2bd]", + "stack_offset": 0 }, { "address": "0x1400022fb", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x1400022fe", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140002301", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140002305", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140002306", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -138769,43 +156275,50 @@ "address": "0x140001dd0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x140001dd4", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140001dd9", "size": 5, "mnemonic": "call", - "operands": "0x1400018b0" + "operands": "0x1400018b0", + "stack_offset": 0 }, { "address": "0x140001dde", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x2deab]" + "operands": "rdx, [rip + 0x2deab]", + "stack_offset": 0 }, { "address": "0x140001de5", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140001dea", "size": 5, "mnemonic": "call", - "operands": "0x140006198" + "operands": "0x140006198", + "stack_offset": 0 }, { "address": "0x140001def", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -138827,25 +156340,29 @@ "address": "0x1400047dc", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400047e0", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rcx + 0x48]" + "operands": "rdx, qword ptr [rcx + 0x48]", + "stack_offset": 0 }, { "address": "0x1400047e4", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x1400047e7", "size": 2, "mnemonic": "je", - "operands": "0x1400047f0" + "operands": "0x1400047f0", + "stack_offset": 0 } ], "successors": [ @@ -138863,13 +156380,15 @@ "address": "0x1400047f0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400047f4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -138885,25 +156404,29 @@ "address": "0x1400047e9", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400047eb", "size": 5, "mnemonic": "call", - "operands": "0x14000cda8" + "operands": "0x14000cda8", + "stack_offset": 0 }, { "address": "0x1400047f0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400047f4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -138925,49 +156448,57 @@ "address": "0x1400023d0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x48" + "operands": "rsp, 0x48", + "stack_offset": 0 }, { "address": "0x1400023d4", "size": 3, "mnemonic": "mov", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x1400023d7", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400023dc", "size": 5, "mnemonic": "call", - "operands": "0x140002344" + "operands": "0x140002344", + "stack_offset": 0 }, { "address": "0x1400023e1", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x2daf0]" + "operands": "rdx, [rip + 0x2daf0]", + "stack_offset": 0 }, { "address": "0x1400023e8", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x1400023ed", "size": 5, "mnemonic": "call", - "operands": "0x140006198" + "operands": "0x140006198", + "stack_offset": 0 }, { "address": "0x1400023f2", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -138989,97 +156520,113 @@ "address": "0x140004770", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140004775", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140004776", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000477a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14000477d", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140004780", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x140004782", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x140004784", "size": 5, "mnemonic": "call", - "operands": "0x14000cda8" + "operands": "0x14000cda8", + "stack_offset": 0 }, { "address": "0x140004789", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000478c", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x1cced]" + "operands": "rcx, [rip + 0x1cced]", + "stack_offset": 0 }, { "address": "0x140004793", "size": 4, "mnemonic": "cmove", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140004797", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdi + 0x48]" + "operands": "rcx, [rdi + 0x48]", + "stack_offset": 0 }, { "address": "0x14000479b", "size": 3, "mnemonic": "mov", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000479e", "size": 5, "mnemonic": "call", - "operands": "0x140004538" + "operands": "0x140004538", + "stack_offset": 0 }, { "address": "0x1400047a3", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400047a6", "size": 2, "mnemonic": "je", - "operands": "0x1400047b5" + "operands": "0x1400047b5", + "stack_offset": 0 } ], "successors": [ @@ -139097,55 +156644,64 @@ "address": "0x1400047b5", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400047b8", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1cff1]" + "operands": "rax, [rip + 0x1cff1]", + "stack_offset": 0 }, { "address": "0x1400047bf", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdi + 0x58]" + "operands": "rcx, [rdi + 0x58]", + "stack_offset": 0 }, { "address": "0x1400047c3", "size": 4, "mnemonic": "cmove", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400047c7", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x1400047ca", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400047cf", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400047d3", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400047d4", "size": 5, "mnemonic": "jmp", - "operands": "0x140004538" + "operands": "0x140004538", + "stack_offset": 0 } ], "successors": [ @@ -139162,79 +156718,92 @@ "address": "0x1400047a8", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x1400047ab", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x1400047ad", "size": 5, "mnemonic": "call", - "operands": "0x14000cda8" + "operands": "0x14000cda8", + "stack_offset": 0 }, { "address": "0x1400047b2", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400047b5", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x1400047b8", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1cff1]" + "operands": "rax, [rip + 0x1cff1]", + "stack_offset": 0 }, { "address": "0x1400047bf", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rdi + 0x58]" + "operands": "rcx, [rdi + 0x58]", + "stack_offset": 0 }, { "address": "0x1400047c3", "size": 4, "mnemonic": "cmove", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x1400047c7", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x1400047ca", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400047cf", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400047d3", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400047d4", "size": 5, "mnemonic": "jmp", - "operands": "0x140004538" + "operands": "0x140004538", + "stack_offset": 0 } ], "successors": [ @@ -139251,55 +156820,64 @@ "address": "0x140004538", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000453d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x140004542", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140004543", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140004547", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000454a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14000454d", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140004550", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x140004553", "size": 2, "mnemonic": "je", - "operands": "0x1400045a0" + "operands": "0x1400045a0", + "stack_offset": 0 } ], "successors": [ @@ -139317,37 +156895,43 @@ "address": "0x1400045a0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400045a5", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x1400045a8", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x1400045ad", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400045b1", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400045b2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -139363,13 +156947,15 @@ "address": "0x140004555", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140004558", "size": 2, "mnemonic": "je", - "operands": "0x14000455f" + "operands": "0x14000455f", + "stack_offset": 0 } ], "successors": [ @@ -139387,19 +156973,22 @@ "address": "0x14000455f", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rdi], 0" + "operands": "qword ptr [rdi], 0", + "stack_offset": 0 }, { "address": "0x140004566", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004569", "size": 2, "mnemonic": "je", - "operands": "0x1400045a0" + "operands": "0x1400045a0", + "stack_offset": 0 } ], "successors": [ @@ -139417,25 +157006,29 @@ "address": "0x14000455a", "size": 5, "mnemonic": "call", - "operands": "0x14000c9d0" + "operands": "0x14000c9d0", + "stack_offset": 0 }, { "address": "0x14000455f", "size": 7, "mnemonic": "mov", - "operands": "qword ptr [rdi], 0" + "operands": "qword ptr [rdi], 0", + "stack_offset": 0 }, { "address": "0x140004566", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004569", "size": 2, "mnemonic": "je", - "operands": "0x1400045a0" + "operands": "0x1400045a0", + "stack_offset": 0 } ], "successors": [ @@ -139453,19 +157046,22 @@ "address": "0x14000456b", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rbx], 0" + "operands": "byte ptr [rbx], 0", + "stack_offset": 0 }, { "address": "0x14000456e", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140004571", "size": 2, "mnemonic": "je", - "operands": "0x14000457b" + "operands": "0x14000457b", + "stack_offset": 0 } ], "successors": [ @@ -139483,43 +157079,50 @@ "address": "0x14000457b", "size": 3, "mnemonic": "sub", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14000457e", "size": 4, "mnemonic": "lea", - "operands": "rsi, [rax + 1]" + "operands": "rsi, [rax + 1]", + "stack_offset": 0 }, { "address": "0x140004582", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140004585", "size": 5, "mnemonic": "call", - "operands": "0x14000cac0" + "operands": "0x14000cac0", + "stack_offset": 0 }, { "address": "0x14000458a", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdi], rax" + "operands": "qword ptr [rdi], rax", + "stack_offset": 0 }, { "address": "0x14000458d", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140004590", "size": 2, "mnemonic": "je", - "operands": "0x1400045a0" + "operands": "0x1400045a0", + "stack_offset": 0 } ], "successors": [ @@ -139537,61 +157140,71 @@ "address": "0x140004573", "size": 3, "mnemonic": "inc", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x140004576", "size": 3, "mnemonic": "cmp", - "operands": "byte ptr [rax], 0" + "operands": "byte ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x140004579", "size": 2, "mnemonic": "jne", - "operands": "0x140004573" + "operands": "0x140004573", + "stack_offset": 0 }, { "address": "0x14000457b", "size": 3, "mnemonic": "sub", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14000457e", "size": 4, "mnemonic": "lea", - "operands": "rsi, [rax + 1]" + "operands": "rsi, [rax + 1]", + "stack_offset": 0 }, { "address": "0x140004582", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x140004585", "size": 5, "mnemonic": "call", - "operands": "0x14000cac0" + "operands": "0x14000cac0", + "stack_offset": 0 }, { "address": "0x14000458a", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rdi], rax" + "operands": "qword ptr [rdi], rax", + "stack_offset": 0 }, { "address": "0x14000458d", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x140004590", "size": 2, "mnemonic": "je", - "operands": "0x1400045a0" + "operands": "0x1400045a0", + "stack_offset": 0 } ], "successors": [ @@ -139609,61 +157222,71 @@ "address": "0x140004592", "size": 3, "mnemonic": "mov", - "operands": "r8, rsi" + "operands": "r8, rsi", + "stack_offset": 0 }, { "address": "0x140004595", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x140004598", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000459b", "size": 5, "mnemonic": "call", - "operands": "0x14001e3e0" + "operands": "0x14001e3e0", + "stack_offset": 0 }, { "address": "0x1400045a0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x1400045a5", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x1400045a8", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x1400045ad", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400045b1", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400045b2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -139685,43 +157308,50 @@ "address": "0x140002260", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e321]" + "operands": "rax, [rip + 0x1e321]", + "stack_offset": 0 }, { "address": "0x140002267", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x10], 0" + "operands": "qword ptr [rcx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000226f", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 8], rax" + "operands": "qword ptr [rcx + 8], rax", + "stack_offset": 0 }, { "address": "0x140002273", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e19e]" + "operands": "rax, [rip + 0x1e19e]", + "stack_offset": 0 }, { "address": "0x14000227a", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rax" + "operands": "qword ptr [rcx], rax", + "stack_offset": 0 }, { "address": "0x14000227d", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x140002280", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -139743,7 +157373,8 @@ "address": "0x14000d630", "size": 5, "mnemonic": "jmp", - "operands": "0x140011a80" + "operands": "0x140011a80", + "stack_offset": 0 } ], "successors": [ @@ -139766,43 +157397,50 @@ "address": "0x14000d640", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000d645", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000d64a", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000d64b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000d64f", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14000d652", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14000d655", "size": 2, "mnemonic": "je", - "operands": "0x14000d6a3" + "operands": "0x14000d6a3", + "stack_offset": 0 } ], "successors": [ @@ -139820,37 +157458,43 @@ "address": "0x14000d6a3", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000d6a8", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000d6aa", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x48]" + "operands": "rsi, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000d6af", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000d6b3", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000d6b4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -139866,67 +157510,78 @@ "address": "0x14000d657", "size": 7, "mnemonic": "mov", - "operands": "rbx, 0xffffffffffffffff" + "operands": "rbx, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14000d65e", "size": 2, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000d660", "size": 3, "mnemonic": "inc", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000d663", "size": 5, "mnemonic": "cmp", - "operands": "word ptr [rcx + rbx*2], 0" + "operands": "word ptr [rcx + rbx*2], 0", + "stack_offset": 0 }, { "address": "0x14000d668", "size": 2, "mnemonic": "jne", - "operands": "0x14000d660" + "operands": "0x14000d660", + "stack_offset": 0 }, { "address": "0x14000d66a", "size": 3, "mnemonic": "inc", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000d66d", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + rbx]" + "operands": "rcx, [rbx + rbx]", + "stack_offset": 0 }, { "address": "0x14000d671", "size": 5, "mnemonic": "call", - "operands": "0x14000cac0" + "operands": "0x14000cac0", + "stack_offset": 0 }, { "address": "0x14000d676", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000d679", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000d67c", "size": 2, "mnemonic": "je", - "operands": "0x14000d6a3" + "operands": "0x14000d6a3", + "stack_offset": 0 } ], "successors": [ @@ -139944,73 +157599,85 @@ "address": "0x14000d67e", "size": 3, "mnemonic": "mov", - "operands": "r8, rdi" + "operands": "r8, rdi", + "stack_offset": 0 }, { "address": "0x14000d681", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x14000d684", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000d687", "size": 5, "mnemonic": "call", - "operands": "0x1400165b0" + "operands": "0x1400165b0", + "stack_offset": 0 }, { "address": "0x14000d68c", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000d68e", "size": 2, "mnemonic": "jne", - "operands": "0x14000d6b5" + "operands": "0x14000d6b5", + "stack_offset": 0 }, { "address": "0x14000d690", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x14000d693", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000d698", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x48]" + "operands": "rsi, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000d69d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000d6a1", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000d6a2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -140032,55 +157699,64 @@ "address": "0x14001a8ec", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001a8f1", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a8f2", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a8f6", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x14001a8fb", "size": 7, "mnemonic": "lea", - "operands": "rdi, [rax + 0x90]" + "operands": "rdi, [rax + 0x90]", + "stack_offset": 0 }, { "address": "0x14001a902", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rax + 0x3a8]" + "operands": "ecx, dword ptr [rax + 0x3a8]", + "stack_offset": 0 }, { "address": "0x14001a908", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rip + 0x16c82]" + "operands": "eax, dword ptr [rip + 0x16c82]", + "stack_offset": 0 }, { "address": "0x14001a90e", "size": 2, "mnemonic": "test", - "operands": "eax, ecx" + "operands": "eax, ecx", + "stack_offset": 0 }, { "address": "0x14001a910", "size": 2, "mnemonic": "je", - "operands": "0x14001a91a" + "operands": "0x14001a91a", + "stack_offset": 0 } ], "successors": [ @@ -140098,67 +157774,78 @@ "address": "0x14001a91a", "size": 5, "mnemonic": "mov", - "operands": "ecx, 4" + "operands": "ecx, 4", + "stack_offset": 0 }, { "address": "0x14001a91f", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x14001a924", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001a925", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0x1890c]" + "operands": "rdx, qword ptr [rip + 0x1890c]", + "stack_offset": 0 }, { "address": "0x14001a92c", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14001a92f", "size": 5, "mnemonic": "call", - "operands": "0x14001a95c" + "operands": "0x14001a95c", + "stack_offset": 0 }, { "address": "0x14001a934", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14001a937", "size": 5, "mnemonic": "mov", - "operands": "ecx, 4" + "operands": "ecx, 4", + "stack_offset": 0 }, { "address": "0x14001a93c", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14001a941", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14001a944", "size": 2, "mnemonic": "je", - "operands": "0x14001a954" + "operands": "0x14001a954", + "stack_offset": 0 } ], "successors": [ @@ -140176,85 +157863,99 @@ "address": "0x14001a912", "size": 3, "mnemonic": "mov", - "operands": "rbx, qword ptr [rdi]" + "operands": "rbx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14001a915", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14001a918", "size": 2, "mnemonic": "jne", - "operands": "0x14001a946" + "operands": "0x14001a946", + "stack_offset": 0 }, { "address": "0x14001a91a", "size": 5, "mnemonic": "mov", - "operands": "ecx, 4" + "operands": "ecx, 4", + "stack_offset": 0 }, { "address": "0x14001a91f", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x14001a924", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001a925", "size": 7, "mnemonic": "mov", - "operands": "rdx, qword ptr [rip + 0x1890c]" + "operands": "rdx, qword ptr [rip + 0x1890c]", + "stack_offset": 0 }, { "address": "0x14001a92c", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14001a92f", "size": 5, "mnemonic": "call", - "operands": "0x14001a95c" + "operands": "0x14001a95c", + "stack_offset": 0 }, { "address": "0x14001a934", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14001a937", "size": 5, "mnemonic": "mov", - "operands": "ecx, 4" + "operands": "ecx, 4", + "stack_offset": 0 }, { "address": "0x14001a93c", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14001a941", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14001a944", "size": 2, "mnemonic": "je", - "operands": "0x14001a954" + "operands": "0x14001a954", + "stack_offset": 0 } ], "successors": [ @@ -140272,19 +157973,22 @@ "address": "0x14001a954", "size": 5, "mnemonic": "call", - "operands": "0x14000d6d0" + "operands": "0x14000d6d0", + "stack_offset": 0 }, { "address": "0x14001a959", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001a95a", "size": 1, "mnemonic": "int3", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -140300,31 +158004,36 @@ "address": "0x14001a946", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14001a949", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a94e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a952", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a953", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -140346,103 +158055,120 @@ "address": "0x14000df00", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000df02", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000df06", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000df08", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x14000df0d", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000df0e", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x2312b]" + "operands": "rax, qword ptr [rip + 0x2312b]", + "stack_offset": 0 }, { "address": "0x14000df15", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x14000df17", "size": 3, "mnemonic": "and", - "operands": "ecx, 0x3f" + "operands": "ecx, 0x3f", + "stack_offset": 0 }, { "address": "0x14000df1a", "size": 7, "mnemonic": "mov", - "operands": "rbx, qword ptr [rip + 0x25147]" + "operands": "rbx, qword ptr [rip + 0x25147]", + "stack_offset": 0 }, { "address": "0x14000df21", "size": 3, "mnemonic": "xor", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14000df24", "size": 3, "mnemonic": "ror", - "operands": "rbx, cl" + "operands": "rbx, cl", + "stack_offset": 0 }, { "address": "0x14000df27", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000df29", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14000df2e", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x14000df31", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000df35", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000df36", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -140464,127 +158190,148 @@ "address": "0x140016634", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140016639", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14001663e", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001663f", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140016643", "size": 3, "mnemonic": "mov", - "operands": "rdi, r9" + "operands": "rdi, r9", + "stack_offset": 0 }, { "address": "0x140016646", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140016648", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x14001664d", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001664e", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x1a9eb]" + "operands": "rax, qword ptr [rip + 0x1a9eb]", + "stack_offset": 0 }, { "address": "0x140016655", "size": 2, "mnemonic": "mov", - "operands": "ecx, eax" + "operands": "ecx, eax", + "stack_offset": 0 }, { "address": "0x140016657", "size": 3, "mnemonic": "and", - "operands": "ecx, 0x3f" + "operands": "ecx, 0x3f", + "stack_offset": 0 }, { "address": "0x14001665a", "size": 7, "mnemonic": "mov", - "operands": "rbx, qword ptr [rip + 0x1d0c7]" + "operands": "rbx, qword ptr [rip + 0x1d0c7]", + "stack_offset": 0 }, { "address": "0x140016661", "size": 3, "mnemonic": "xor", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x140016664", "size": 3, "mnemonic": "ror", - "operands": "rbx, cl" + "operands": "rbx, cl", + "stack_offset": 0 }, { "address": "0x140016667", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdi]" + "operands": "ecx, dword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x140016669", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14001666e", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140016671", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140016676", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001667a", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001667b", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -140606,97 +158353,113 @@ "address": "0x1400117a4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x1400117a9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x1400117ae", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x1400117af", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x1400117b3", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe93f]" + "operands": "qword ptr [rip + 0xe93f]", + "stack_offset": 0 }, { "address": "0x1400117b9", "size": 6, "mnemonic": "mov", - "operands": "ecx, dword ptr [rip + 0x1fb01]" + "operands": "ecx, dword ptr [rip + 0x1fb01]", + "stack_offset": 0 }, { "address": "0x1400117bf", "size": 4, "mnemonic": "or", - "operands": "rdx, 0xffffffffffffffff" + "operands": "rdx, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x1400117c3", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x1400117c5", "size": 5, "mnemonic": "call", - "operands": "0x140011fe8" + "operands": "0x140011fe8", + "stack_offset": 0 }, { "address": "0x1400117ca", "size": 2, "mnemonic": "xor", - "operands": "esi, esi" + "operands": "esi, esi", + "stack_offset": 0 }, { "address": "0x1400117cc", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400117ce", "size": 2, "mnemonic": "jne", - "operands": "0x1400117dc" + "operands": "0x1400117dc", + "stack_offset": 0 }, { "address": "0x1400117d0", "size": 2, "mnemonic": "mov", - "operands": "ecx, edi" + "operands": "ecx, edi", + "stack_offset": 0 }, { "address": "0x1400117d2", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0xe928]" + "operands": "qword ptr [rip + 0xe928]", + "stack_offset": 0 }, { "address": "0x1400117d8", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x1400117da", "size": 2, "mnemonic": "jmp", - "operands": "0x140011849" + "operands": "0x140011849", + "stack_offset": 0 } ], "successors": [ @@ -140713,31 +158476,36 @@ "address": "0x140011849", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001184e", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x38]" + "operands": "rsi, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x140011853", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140011857", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140011858", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -140759,13 +158527,15 @@ "address": "0x14000b1f8", "size": 4, "mnemonic": "add", - "operands": "rcx, 0x30" + "operands": "rcx, 0x30", + "stack_offset": 0 }, { "address": "0x14000b1fc", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0x14e0d]" + "operands": "qword ptr [rip + 0x14e0d]", + "stack_offset": 0 } ], "successors": [ @@ -140788,133 +158558,155 @@ "address": "0x14000b678", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000b67d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rdi" + "operands": "qword ptr [rsp + 0x10], rdi", + "stack_offset": 0 }, { "address": "0x14000b682", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000b683", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000b686", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x60" + "operands": "rsp, 0x60", + "stack_offset": 0 }, { "address": "0x14000b68a", "size": 5, "mnemonic": "and", - "operands": "qword ptr [rbp - 0x40], 0" + "operands": "qword ptr [rbp - 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000b68f", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000b692", "size": 7, "mnemonic": "cmp", - "operands": "dword ptr [rip + 0x27b57], 0" + "operands": "dword ptr [rip + 0x27b57], 0", + "stack_offset": 0 }, { "address": "0x14000b699", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x30], 0" + "operands": "byte ptr [rbp - 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000b69d", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 0" + "operands": "byte ptr [rbp - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14000b6a1", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x10], 0" + "operands": "byte ptr [rbp - 0x10], 0", + "stack_offset": 0 }, { "address": "0x14000b6a5", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 8], 0" + "operands": "byte ptr [rbp - 8], 0", + "stack_offset": 0 }, { "address": "0x14000b6a9", "size": 2, "mnemonic": "jne", - "operands": "0x14000b6bb" + "operands": "0x14000b6bb", + "stack_offset": 0 }, { "address": "0x14000b6ab", "size": 7, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [rip + 0x25d76]" + "operands": "xmm0, xmmword ptr [rip + 0x25d76]", + "stack_offset": 0 }, { "address": "0x14000b6b2", "size": 4, "mnemonic": "mov", - "operands": "byte ptr [rbp - 0x18], 1" + "operands": "byte ptr [rbp - 0x18], 1", + "stack_offset": 0 }, { "address": "0x14000b6b6", "size": 5, "mnemonic": "movdqu", - "operands": "xmmword ptr [rbp - 0x28], xmm0" + "operands": "xmmword ptr [rbp - 0x28], xmm0", + "stack_offset": 0 }, { "address": "0x14000b6bb", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14000b6be", "size": 2, "mnemonic": "jne", - "operands": "0x14000b6cb" + "operands": "0x14000b6cb", + "stack_offset": 0 }, { "address": "0x14000b6c0", "size": 2, "mnemonic": "xor", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000b6c2", "size": 5, "mnemonic": "call", - "operands": "0x14000b58c" + "operands": "0x14000b58c", + "stack_offset": 0 }, { "address": "0x14000b6c7", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x14000b6c9", "size": 2, "mnemonic": "jmp", - "operands": "0x14000b6fd" + "operands": "0x14000b6fd", + "stack_offset": 0 } ], "successors": [ @@ -140937,61 +158729,71 @@ "address": "0x14001be60", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001be65", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14001be6a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14001be6f", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001be70", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001be74", "size": 3, "mnemonic": "mov", - "operands": "rbp, r8" + "operands": "rbp, r8", + "stack_offset": 0 }, { "address": "0x14001be77", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14001be7a", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x14001be7d", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001be80", "size": 2, "mnemonic": "je", - "operands": "0x14001be9f" + "operands": "0x14001be9f", + "stack_offset": 0 } ], "successors": [ @@ -141009,13 +158811,15 @@ "address": "0x14001be9f", "size": 3, "mnemonic": "test", - "operands": "rsi, rsi" + "operands": "rsi, rsi", + "stack_offset": 0 }, { "address": "0x14001bea2", "size": 2, "mnemonic": "je", - "operands": "0x14001beae" + "operands": "0x14001beae", + "stack_offset": 0 } ], "successors": [ @@ -141033,55 +158837,64 @@ "address": "0x14001be82", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001be84", "size": 4, "mnemonic": "lea", - "operands": "rax, [rdx - 0x20]" + "operands": "rax, [rdx - 0x20]", + "stack_offset": 0 }, { "address": "0x14001be88", "size": 3, "mnemonic": "div", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001be8b", "size": 3, "mnemonic": "cmp", - "operands": "rax, r8" + "operands": "rax, r8", + "stack_offset": 0 }, { "address": "0x14001be8e", "size": 2, "mnemonic": "jae", - "operands": "0x14001be9f" + "operands": "0x14001be9f", + "stack_offset": 0 }, { "address": "0x14001be90", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14001be95", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0xc" + "operands": "dword ptr [rax], 0xc", + "stack_offset": 0 }, { "address": "0x14001be9b", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001be9d", "size": 2, "mnemonic": "jmp", - "operands": "0x14001bee0" + "operands": "0x14001bee0", + "stack_offset": 0 } ], "successors": [ @@ -141098,49 +158911,57 @@ "address": "0x14001beae", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14001beb0", "size": 4, "mnemonic": "imul", - "operands": "rbx, rbp" + "operands": "rbx, rbp", + "stack_offset": 0 }, { "address": "0x14001beb4", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14001beb7", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x14001beba", "size": 5, "mnemonic": "call", - "operands": "0x140016930" + "operands": "0x140016930", + "stack_offset": 0 }, { "address": "0x14001bebf", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14001bec2", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001bec5", "size": 2, "mnemonic": "je", - "operands": "0x14001bedd" + "operands": "0x14001bedd", + "stack_offset": 0 } ], "successors": [ @@ -141158,19 +158979,22 @@ "address": "0x14001bea4", "size": 5, "mnemonic": "call", - "operands": "0x14001d6d0" + "operands": "0x14001d6d0", + "stack_offset": 0 }, { "address": "0x14001bea9", "size": 3, "mnemonic": "mov", - "operands": "rdi, rax" + "operands": "rdi, rax", + "stack_offset": 0 }, { "address": "0x14001beac", "size": 2, "mnemonic": "jmp", - "operands": "0x14001beb0" + "operands": "0x14001beb0", + "stack_offset": 0 } ], "successors": [ @@ -141187,37 +159011,43 @@ "address": "0x14001bee0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001bee5", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001beea", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001beef", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001bef3", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001bef4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -141233,43 +159063,50 @@ "address": "0x14001bedd", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x14001bee0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001bee5", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001beea", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001beef", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001bef3", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001bef4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -141285,85 +159122,99 @@ "address": "0x14001bec7", "size": 3, "mnemonic": "cmp", - "operands": "rdi, rbx" + "operands": "rdi, rbx", + "stack_offset": 0 }, { "address": "0x14001beca", "size": 2, "mnemonic": "jae", - "operands": "0x14001bedd" + "operands": "0x14001bedd", + "stack_offset": 0 }, { "address": "0x14001becc", "size": 3, "mnemonic": "sub", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x14001becf", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rax + rdi]" + "operands": "rcx, [rax + rdi]", + "stack_offset": 0 }, { "address": "0x14001bed3", "size": 3, "mnemonic": "mov", - "operands": "r8, rbx" + "operands": "r8, rbx", + "stack_offset": 0 }, { "address": "0x14001bed6", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14001bed8", "size": 5, "mnemonic": "call", - "operands": "0x14001ea80" + "operands": "0x14001ea80", + "stack_offset": 0 }, { "address": "0x14001bedd", "size": 3, "mnemonic": "mov", - "operands": "rax, rsi" + "operands": "rax, rsi", + "stack_offset": 0 }, { "address": "0x14001bee0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001bee5", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001beea", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001beef", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001bef3", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001bef4", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -141379,43 +159230,50 @@ "address": "0x14001beb0", "size": 4, "mnemonic": "imul", - "operands": "rbx, rbp" + "operands": "rbx, rbp", + "stack_offset": 0 }, { "address": "0x14001beb4", "size": 3, "mnemonic": "mov", - "operands": "rcx, rsi" + "operands": "rcx, rsi", + "stack_offset": 0 }, { "address": "0x14001beb7", "size": 3, "mnemonic": "mov", - "operands": "rdx, rbx" + "operands": "rdx, rbx", + "stack_offset": 0 }, { "address": "0x14001beba", "size": 5, "mnemonic": "call", - "operands": "0x140016930" + "operands": "0x140016930", + "stack_offset": 0 }, { "address": "0x14001bebf", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14001bec2", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001bec5", "size": 2, "mnemonic": "je", - "operands": "0x14001bedd" + "operands": "0x14001bedd", + "stack_offset": 0 } ], "successors": [ @@ -141439,19 +159297,22 @@ "address": "0x14001a844", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001a848", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a84b", "size": 6, "mnemonic": "je", - "operands": "0x14001a8e7" + "operands": "0x14001a8e7", + "stack_offset": 0 } ], "successors": [ @@ -141469,13 +159330,15 @@ "address": "0x14001a8e7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001a8eb", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -141491,31 +159354,36 @@ "address": "0x14001a851", "size": 4, "mnemonic": "or", - "operands": "r9d, 0xffffffff" + "operands": "r9d, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14001a855", "size": 5, "mnemonic": "lock add", - "operands": "dword ptr [rcx + 0x10], r9d" + "operands": "dword ptr [rcx + 0x10], r9d", + "stack_offset": 0 }, { "address": "0x14001a85a", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xe0]" + "operands": "rax, qword ptr [rcx + 0xe0]", + "stack_offset": 0 }, { "address": "0x14001a861", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a864", "size": 2, "mnemonic": "je", - "operands": "0x14001a86a" + "operands": "0x14001a86a", + "stack_offset": 0 } ], "successors": [ @@ -141533,19 +159401,22 @@ "address": "0x14001a86a", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xf0]" + "operands": "rax, qword ptr [rcx + 0xf0]", + "stack_offset": 0 }, { "address": "0x14001a871", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a874", "size": 2, "mnemonic": "je", - "operands": "0x14001a87a" + "operands": "0x14001a87a", + "stack_offset": 0 } ], "successors": [ @@ -141563,25 +159434,29 @@ "address": "0x14001a866", "size": 4, "mnemonic": "lock add", - "operands": "dword ptr [rax], r9d" + "operands": "dword ptr [rax], r9d", + "stack_offset": 0 }, { "address": "0x14001a86a", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xf0]" + "operands": "rax, qword ptr [rcx + 0xf0]", + "stack_offset": 0 }, { "address": "0x14001a871", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a874", "size": 2, "mnemonic": "je", - "operands": "0x14001a87a" + "operands": "0x14001a87a", + "stack_offset": 0 } ], "successors": [ @@ -141599,19 +159474,22 @@ "address": "0x14001a87a", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xe8]" + "operands": "rax, qword ptr [rcx + 0xe8]", + "stack_offset": 0 }, { "address": "0x14001a881", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a884", "size": 2, "mnemonic": "je", - "operands": "0x14001a88a" + "operands": "0x14001a88a", + "stack_offset": 0 } ], "successors": [ @@ -141629,25 +159507,29 @@ "address": "0x14001a876", "size": 4, "mnemonic": "lock add", - "operands": "dword ptr [rax], r9d" + "operands": "dword ptr [rax], r9d", + "stack_offset": 0 }, { "address": "0x14001a87a", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xe8]" + "operands": "rax, qword ptr [rcx + 0xe8]", + "stack_offset": 0 }, { "address": "0x14001a881", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a884", "size": 2, "mnemonic": "je", - "operands": "0x14001a88a" + "operands": "0x14001a88a", + "stack_offset": 0 } ], "successors": [ @@ -141665,19 +159547,22 @@ "address": "0x14001a88a", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x100]" + "operands": "rax, qword ptr [rcx + 0x100]", + "stack_offset": 0 }, { "address": "0x14001a891", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a894", "size": 2, "mnemonic": "je", - "operands": "0x14001a89a" + "operands": "0x14001a89a", + "stack_offset": 0 } ], "successors": [ @@ -141695,25 +159580,29 @@ "address": "0x14001a886", "size": 4, "mnemonic": "lock add", - "operands": "dword ptr [rax], r9d" + "operands": "dword ptr [rax], r9d", + "stack_offset": 0 }, { "address": "0x14001a88a", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x100]" + "operands": "rax, qword ptr [rcx + 0x100]", + "stack_offset": 0 }, { "address": "0x14001a891", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a894", "size": 2, "mnemonic": "je", - "operands": "0x14001a89a" + "operands": "0x14001a89a", + "stack_offset": 0 } ], "successors": [ @@ -141731,31 +159620,36 @@ "address": "0x14001a89a", "size": 4, "mnemonic": "lea", - "operands": "rax, [rcx + 0x38]" + "operands": "rax, [rcx + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a89e", "size": 6, "mnemonic": "mov", - "operands": "r8d, 6" + "operands": "r8d, 6", + "stack_offset": 0 }, { "address": "0x14001a8a4", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x16b8d]" + "operands": "rdx, [rip + 0x16b8d]", + "stack_offset": 0 }, { "address": "0x14001a8ab", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax - 0x10], rdx" + "operands": "qword ptr [rax - 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14001a8af", "size": 2, "mnemonic": "je", - "operands": "0x14001a8bd" + "operands": "0x14001a8bd", + "stack_offset": 0 } ], "successors": [ @@ -141773,37 +159667,43 @@ "address": "0x14001a896", "size": 4, "mnemonic": "lock add", - "operands": "dword ptr [rax], r9d" + "operands": "dword ptr [rax], r9d", + "stack_offset": 0 }, { "address": "0x14001a89a", "size": 4, "mnemonic": "lea", - "operands": "rax, [rcx + 0x38]" + "operands": "rax, [rcx + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a89e", "size": 6, "mnemonic": "mov", - "operands": "r8d, 6" + "operands": "r8d, 6", + "stack_offset": 0 }, { "address": "0x14001a8a4", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x16b8d]" + "operands": "rdx, [rip + 0x16b8d]", + "stack_offset": 0 }, { "address": "0x14001a8ab", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax - 0x10], rdx" + "operands": "qword ptr [rax - 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14001a8af", "size": 2, "mnemonic": "je", - "operands": "0x14001a8bd" + "operands": "0x14001a8bd", + "stack_offset": 0 } ], "successors": [ @@ -141821,13 +159721,15 @@ "address": "0x14001a8bd", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax - 0x18], 0" + "operands": "qword ptr [rax - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14001a8c2", "size": 2, "mnemonic": "je", - "operands": "0x14001a8d1" + "operands": "0x14001a8d1", + "stack_offset": 0 } ], "successors": [ @@ -141845,19 +159747,22 @@ "address": "0x14001a8b1", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001a8b4", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001a8b7", "size": 2, "mnemonic": "je", - "operands": "0x14001a8bd" + "operands": "0x14001a8bd", + "stack_offset": 0 } ], "successors": [ @@ -141875,43 +159780,50 @@ "address": "0x14001a8d1", "size": 4, "mnemonic": "add", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x14001a8d5", "size": 4, "mnemonic": "sub", - "operands": "r8, 1" + "operands": "r8, 1", + "stack_offset": 0 }, { "address": "0x14001a8d9", "size": 2, "mnemonic": "jne", - "operands": "0x14001a8a4" + "operands": "0x14001a8a4", + "stack_offset": 0 }, { "address": "0x14001a8db", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x120]" + "operands": "rcx, qword ptr [rcx + 0x120]", + "stack_offset": 0 }, { "address": "0x14001a8e2", "size": 5, "mnemonic": "call", - "operands": "0x14001a81c" + "operands": "0x14001a81c", + "stack_offset": 0 }, { "address": "0x14001a8e7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001a8eb", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -141927,19 +159839,22 @@ "address": "0x14001a8c4", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax - 8]" + "operands": "rdx, qword ptr [rax - 8]", + "stack_offset": 0 }, { "address": "0x14001a8c8", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001a8cb", "size": 2, "mnemonic": "je", - "operands": "0x14001a8d1" + "operands": "0x14001a8d1", + "stack_offset": 0 } ], "successors": [ @@ -141957,19 +159872,22 @@ "address": "0x14001a8b9", "size": 4, "mnemonic": "lock add", - "operands": "dword ptr [rdx], r9d" + "operands": "dword ptr [rdx], r9d", + "stack_offset": 0 }, { "address": "0x14001a8bd", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax - 0x18], 0" + "operands": "qword ptr [rax - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14001a8c2", "size": 2, "mnemonic": "je", - "operands": "0x14001a8d1" + "operands": "0x14001a8d1", + "stack_offset": 0 } ], "successors": [ @@ -141987,49 +159905,57 @@ "address": "0x14001a8cd", "size": 4, "mnemonic": "lock add", - "operands": "dword ptr [rdx], r9d" + "operands": "dword ptr [rdx], r9d", + "stack_offset": 0 }, { "address": "0x14001a8d1", "size": 4, "mnemonic": "add", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x14001a8d5", "size": 4, "mnemonic": "sub", - "operands": "r8, 1" + "operands": "r8, 1", + "stack_offset": 0 }, { "address": "0x14001a8d9", "size": 2, "mnemonic": "jne", - "operands": "0x14001a8a4" + "operands": "0x14001a8a4", + "stack_offset": 0 }, { "address": "0x14001a8db", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x120]" + "operands": "rcx, qword ptr [rcx + 0x120]", + "stack_offset": 0 }, { "address": "0x14001a8e2", "size": 5, "mnemonic": "call", - "operands": "0x14001a81c" + "operands": "0x14001a81c", + "stack_offset": 0 }, { "address": "0x14001a8e7", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001a8eb", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -142051,25 +159977,29 @@ "address": "0x14001a5b8", "size": 4, "mnemonic": "lock inc", - "operands": "dword ptr [rcx + 0x10]" + "operands": "dword ptr [rcx + 0x10]", + "stack_offset": 0 }, { "address": "0x14001a5bc", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xe0]" + "operands": "rax, qword ptr [rcx + 0xe0]", + "stack_offset": 0 }, { "address": "0x14001a5c3", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a5c6", "size": 2, "mnemonic": "je", - "operands": "0x14001a5cb" + "operands": "0x14001a5cb", + "stack_offset": 0 } ], "successors": [ @@ -142087,19 +160017,22 @@ "address": "0x14001a5cb", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xf0]" + "operands": "rax, qword ptr [rcx + 0xf0]", + "stack_offset": 0 }, { "address": "0x14001a5d2", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a5d5", "size": 2, "mnemonic": "je", - "operands": "0x14001a5da" + "operands": "0x14001a5da", + "stack_offset": 0 } ], "successors": [ @@ -142117,25 +160050,29 @@ "address": "0x14001a5c8", "size": 3, "mnemonic": "lock inc", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001a5cb", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xf0]" + "operands": "rax, qword ptr [rcx + 0xf0]", + "stack_offset": 0 }, { "address": "0x14001a5d2", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a5d5", "size": 2, "mnemonic": "je", - "operands": "0x14001a5da" + "operands": "0x14001a5da", + "stack_offset": 0 } ], "successors": [ @@ -142153,19 +160090,22 @@ "address": "0x14001a5da", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xe8]" + "operands": "rax, qword ptr [rcx + 0xe8]", + "stack_offset": 0 }, { "address": "0x14001a5e1", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a5e4", "size": 2, "mnemonic": "je", - "operands": "0x14001a5e9" + "operands": "0x14001a5e9", + "stack_offset": 0 } ], "successors": [ @@ -142183,25 +160123,29 @@ "address": "0x14001a5d7", "size": 3, "mnemonic": "lock inc", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001a5da", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xe8]" + "operands": "rax, qword ptr [rcx + 0xe8]", + "stack_offset": 0 }, { "address": "0x14001a5e1", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a5e4", "size": 2, "mnemonic": "je", - "operands": "0x14001a5e9" + "operands": "0x14001a5e9", + "stack_offset": 0 } ], "successors": [ @@ -142219,19 +160163,22 @@ "address": "0x14001a5e9", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x100]" + "operands": "rax, qword ptr [rcx + 0x100]", + "stack_offset": 0 }, { "address": "0x14001a5f0", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a5f3", "size": 2, "mnemonic": "je", - "operands": "0x14001a5f8" + "operands": "0x14001a5f8", + "stack_offset": 0 } ], "successors": [ @@ -142249,25 +160196,29 @@ "address": "0x14001a5e6", "size": 3, "mnemonic": "lock inc", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001a5e9", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0x100]" + "operands": "rax, qword ptr [rcx + 0x100]", + "stack_offset": 0 }, { "address": "0x14001a5f0", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a5f3", "size": 2, "mnemonic": "je", - "operands": "0x14001a5f8" + "operands": "0x14001a5f8", + "stack_offset": 0 } ], "successors": [ @@ -142285,31 +160236,36 @@ "address": "0x14001a5f8", "size": 4, "mnemonic": "lea", - "operands": "rax, [rcx + 0x38]" + "operands": "rax, [rcx + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a5fc", "size": 6, "mnemonic": "mov", - "operands": "r8d, 6" + "operands": "r8d, 6", + "stack_offset": 0 }, { "address": "0x14001a602", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x16e2f]" + "operands": "rdx, [rip + 0x16e2f]", + "stack_offset": 0 }, { "address": "0x14001a609", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax - 0x10], rdx" + "operands": "qword ptr [rax - 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14001a60d", "size": 2, "mnemonic": "je", - "operands": "0x14001a61a" + "operands": "0x14001a61a", + "stack_offset": 0 } ], "successors": [ @@ -142327,37 +160283,43 @@ "address": "0x14001a5f5", "size": 3, "mnemonic": "lock inc", - "operands": "dword ptr [rax]" + "operands": "dword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001a5f8", "size": 4, "mnemonic": "lea", - "operands": "rax, [rcx + 0x38]" + "operands": "rax, [rcx + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a5fc", "size": 6, "mnemonic": "mov", - "operands": "r8d, 6" + "operands": "r8d, 6", + "stack_offset": 0 }, { "address": "0x14001a602", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x16e2f]" + "operands": "rdx, [rip + 0x16e2f]", + "stack_offset": 0 }, { "address": "0x14001a609", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rax - 0x10], rdx" + "operands": "qword ptr [rax - 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14001a60d", "size": 2, "mnemonic": "je", - "operands": "0x14001a61a" + "operands": "0x14001a61a", + "stack_offset": 0 } ], "successors": [ @@ -142375,13 +160337,15 @@ "address": "0x14001a61a", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax - 0x18], 0" + "operands": "qword ptr [rax - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14001a61f", "size": 2, "mnemonic": "je", - "operands": "0x14001a62d" + "operands": "0x14001a62d", + "stack_offset": 0 } ], "successors": [ @@ -142399,19 +160363,22 @@ "address": "0x14001a60f", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001a612", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001a615", "size": 2, "mnemonic": "je", - "operands": "0x14001a61a" + "operands": "0x14001a61a", + "stack_offset": 0 } ], "successors": [ @@ -142429,31 +160396,36 @@ "address": "0x14001a62d", "size": 4, "mnemonic": "add", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x14001a631", "size": 4, "mnemonic": "sub", - "operands": "r8, 1" + "operands": "r8, 1", + "stack_offset": 0 }, { "address": "0x14001a635", "size": 2, "mnemonic": "jne", - "operands": "0x14001a602" + "operands": "0x14001a602", + "stack_offset": 0 }, { "address": "0x14001a637", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x120]" + "operands": "rcx, qword ptr [rcx + 0x120]", + "stack_offset": 0 }, { "address": "0x14001a63e", "size": 5, "mnemonic": "jmp", - "operands": "0x14001a7bc" + "operands": "0x14001a7bc", + "stack_offset": 0 } ], "successors": [ @@ -142470,19 +160442,22 @@ "address": "0x14001a621", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax - 8]" + "operands": "rdx, qword ptr [rax - 8]", + "stack_offset": 0 }, { "address": "0x14001a625", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001a628", "size": 2, "mnemonic": "je", - "operands": "0x14001a62d" + "operands": "0x14001a62d", + "stack_offset": 0 } ], "successors": [ @@ -142500,19 +160475,22 @@ "address": "0x14001a617", "size": 3, "mnemonic": "lock inc", - "operands": "dword ptr [rdx]" + "operands": "dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001a61a", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rax - 0x18], 0" + "operands": "qword ptr [rax - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14001a61f", "size": 2, "mnemonic": "je", - "operands": "0x14001a62d" + "operands": "0x14001a62d", + "stack_offset": 0 } ], "successors": [ @@ -142530,13 +160508,15 @@ "address": "0x14001a7bc", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a7bf", "size": 2, "mnemonic": "je", - "operands": "0x14001a7dd" + "operands": "0x14001a7dd", + "stack_offset": 0 } ], "successors": [ @@ -142554,37 +160534,43 @@ "address": "0x14001a62a", "size": 3, "mnemonic": "lock inc", - "operands": "dword ptr [rdx]" + "operands": "dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14001a62d", "size": 4, "mnemonic": "add", - "operands": "rax, 0x20" + "operands": "rax, 0x20", + "stack_offset": 0 }, { "address": "0x14001a631", "size": 4, "mnemonic": "sub", - "operands": "r8, 1" + "operands": "r8, 1", + "stack_offset": 0 }, { "address": "0x14001a635", "size": 2, "mnemonic": "jne", - "operands": "0x14001a602" + "operands": "0x14001a602", + "stack_offset": 0 }, { "address": "0x14001a637", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x120]" + "operands": "rcx, qword ptr [rcx + 0x120]", + "stack_offset": 0 }, { "address": "0x14001a63e", "size": 5, "mnemonic": "jmp", - "operands": "0x14001a7bc" + "operands": "0x14001a7bc", + "stack_offset": 0 } ], "successors": [ @@ -142601,13 +160587,15 @@ "address": "0x14001a7dd", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x7fffffff" + "operands": "eax, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x14001a7e2", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -142623,19 +160611,22 @@ "address": "0x14001a7c1", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0xb458]" + "operands": "rax, [rip + 0xb458]", + "stack_offset": 0 }, { "address": "0x14001a7c8", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14001a7cb", "size": 2, "mnemonic": "je", - "operands": "0x14001a7dd" + "operands": "0x14001a7dd", + "stack_offset": 0 } ], "successors": [ @@ -142653,25 +160644,29 @@ "address": "0x14001a7cd", "size": 5, "mnemonic": "mov", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001a7d2", "size": 8, "mnemonic": "lock xadd", - "operands": "dword ptr [rcx + 0x15c], eax" + "operands": "dword ptr [rcx + 0x15c], eax", + "stack_offset": 0 }, { "address": "0x14001a7da", "size": 2, "mnemonic": "inc", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x14001a7dc", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -142693,55 +160688,64 @@ "address": "0x14001a644", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001a649", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14001a64e", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14001a653", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a654", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a658", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 0xf8]" + "operands": "rax, qword ptr [rcx + 0xf8]", + "stack_offset": 0 }, { "address": "0x14001a65f", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001a662", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a665", "size": 2, "mnemonic": "je", - "operands": "0x14001a6e0" + "operands": "0x14001a6e0", + "stack_offset": 0 } ], "successors": [ @@ -142759,19 +160763,22 @@ "address": "0x14001a6e0", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 0x100]" + "operands": "rax, qword ptr [rbx + 0x100]", + "stack_offset": 0 }, { "address": "0x14001a6e7", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a6ea", "size": 2, "mnemonic": "je", - "operands": "0x14001a733" + "operands": "0x14001a733", + "stack_offset": 0 } ], "successors": [ @@ -142789,19 +160796,22 @@ "address": "0x14001a667", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x16b92]" + "operands": "rcx, [rip + 0x16b92]", + "stack_offset": 0 }, { "address": "0x14001a66e", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14001a671", "size": 2, "mnemonic": "je", - "operands": "0x14001a6e0" + "operands": "0x14001a6e0", + "stack_offset": 0 } ], "successors": [ @@ -142819,49 +160829,57 @@ "address": "0x14001a733", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x120]" + "operands": "rcx, qword ptr [rbx + 0x120]", + "stack_offset": 0 }, { "address": "0x14001a73a", "size": 5, "mnemonic": "call", - "operands": "0x14001a7e4" + "operands": "0x14001a7e4", + "stack_offset": 0 }, { "address": "0x14001a73f", "size": 7, "mnemonic": "lea", - "operands": "rsi, [rbx + 0x128]" + "operands": "rsi, [rbx + 0x128]", + "stack_offset": 0 }, { "address": "0x14001a746", "size": 5, "mnemonic": "mov", - "operands": "ebp, 6" + "operands": "ebp, 6", + "stack_offset": 0 }, { "address": "0x14001a74b", "size": 4, "mnemonic": "lea", - "operands": "rdi, [rbx + 0x38]" + "operands": "rdi, [rbx + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a74f", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x16ce2]" + "operands": "rax, [rip + 0x16ce2]", + "stack_offset": 0 }, { "address": "0x14001a756", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rdi - 0x10], rax" + "operands": "qword ptr [rdi - 0x10], rax", + "stack_offset": 0 }, { "address": "0x14001a75a", "size": 2, "mnemonic": "je", - "operands": "0x14001a776" + "operands": "0x14001a776", + "stack_offset": 0 } ], "successors": [ @@ -142879,133 +160897,155 @@ "address": "0x14001a6ec", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rax], 0" + "operands": "dword ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x14001a6ef", "size": 2, "mnemonic": "jne", - "operands": "0x14001a733" + "operands": "0x14001a733", + "stack_offset": 0 }, { "address": "0x14001a6f1", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x108]" + "operands": "rcx, qword ptr [rbx + 0x108]", + "stack_offset": 0 }, { "address": "0x14001a6f8", "size": 7, "mnemonic": "sub", - "operands": "rcx, 0xfe" + "operands": "rcx, 0xfe", + "stack_offset": 0 }, { "address": "0x14001a6ff", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a704", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x110]" + "operands": "rcx, qword ptr [rbx + 0x110]", + "stack_offset": 0 }, { "address": "0x14001a70b", "size": 5, "mnemonic": "mov", - "operands": "edi, 0x80" + "operands": "edi, 0x80", + "stack_offset": 0 }, { "address": "0x14001a710", "size": 3, "mnemonic": "sub", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14001a713", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a718", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x118]" + "operands": "rcx, qword ptr [rbx + 0x118]", + "stack_offset": 0 }, { "address": "0x14001a71f", "size": 3, "mnemonic": "sub", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14001a722", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a727", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x100]" + "operands": "rcx, qword ptr [rbx + 0x100]", + "stack_offset": 0 }, { "address": "0x14001a72e", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a733", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x120]" + "operands": "rcx, qword ptr [rbx + 0x120]", + "stack_offset": 0 }, { "address": "0x14001a73a", "size": 5, "mnemonic": "call", - "operands": "0x14001a7e4" + "operands": "0x14001a7e4", + "stack_offset": 0 }, { "address": "0x14001a73f", "size": 7, "mnemonic": "lea", - "operands": "rsi, [rbx + 0x128]" + "operands": "rsi, [rbx + 0x128]", + "stack_offset": 0 }, { "address": "0x14001a746", "size": 5, "mnemonic": "mov", - "operands": "ebp, 6" + "operands": "ebp, 6", + "stack_offset": 0 }, { "address": "0x14001a74b", "size": 4, "mnemonic": "lea", - "operands": "rdi, [rbx + 0x38]" + "operands": "rdi, [rbx + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a74f", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x16ce2]" + "operands": "rax, [rip + 0x16ce2]", + "stack_offset": 0 }, { "address": "0x14001a756", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rdi - 0x10], rax" + "operands": "qword ptr [rdi - 0x10], rax", + "stack_offset": 0 }, { "address": "0x14001a75a", "size": 2, "mnemonic": "je", - "operands": "0x14001a776" + "operands": "0x14001a776", + "stack_offset": 0 } ], "successors": [ @@ -143023,19 +161063,22 @@ "address": "0x14001a673", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 0xe0]" + "operands": "rax, qword ptr [rbx + 0xe0]", + "stack_offset": 0 }, { "address": "0x14001a67a", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a67d", "size": 2, "mnemonic": "je", - "operands": "0x14001a6e0" + "operands": "0x14001a6e0", + "stack_offset": 0 } ], "successors": [ @@ -143053,13 +161096,15 @@ "address": "0x14001a776", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rdi - 0x18], 0" + "operands": "qword ptr [rdi - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14001a77b", "size": 2, "mnemonic": "je", - "operands": "0x14001a790" + "operands": "0x14001a790", + "stack_offset": 0 } ], "successors": [ @@ -143077,19 +161122,22 @@ "address": "0x14001a75c", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi]" + "operands": "rcx, qword ptr [rdi]", + "stack_offset": 0 }, { "address": "0x14001a75f", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a762", "size": 2, "mnemonic": "je", - "operands": "0x14001a776" + "operands": "0x14001a776", + "stack_offset": 0 } ], "successors": [ @@ -143107,31 +161155,36 @@ "address": "0x14001a67f", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rax], 0" + "operands": "dword ptr [rax], 0", + "stack_offset": 0 }, { "address": "0x14001a682", "size": 2, "mnemonic": "jne", - "operands": "0x14001a6e0" + "operands": "0x14001a6e0", + "stack_offset": 0 }, { "address": "0x14001a684", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0xf0]" + "operands": "rcx, qword ptr [rbx + 0xf0]", + "stack_offset": 0 }, { "address": "0x14001a68b", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a68e", "size": 2, "mnemonic": "je", - "operands": "0x14001a6a6" + "operands": "0x14001a6a6", + "stack_offset": 0 } ], "successors": [ @@ -143149,67 +161202,78 @@ "address": "0x14001a790", "size": 4, "mnemonic": "add", - "operands": "rsi, 8" + "operands": "rsi, 8", + "stack_offset": 0 }, { "address": "0x14001a794", "size": 4, "mnemonic": "add", - "operands": "rdi, 0x20" + "operands": "rdi, 0x20", + "stack_offset": 0 }, { "address": "0x14001a798", "size": 4, "mnemonic": "sub", - "operands": "rbp, 1" + "operands": "rbp, 1", + "stack_offset": 0 }, { "address": "0x14001a79c", "size": 2, "mnemonic": "jne", - "operands": "0x14001a74f" + "operands": "0x14001a74f", + "stack_offset": 0 }, { "address": "0x14001a79e", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001a7a1", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a7a6", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a7ab", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001a7b0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a7b4", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a7b5", "size": 5, "mnemonic": "jmp", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 } ], "successors": [ @@ -143226,19 +161290,22 @@ "address": "0x14001a77d", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi - 8]" + "operands": "rcx, qword ptr [rdi - 8]", + "stack_offset": 0 }, { "address": "0x14001a781", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a784", "size": 2, "mnemonic": "je", - "operands": "0x14001a790" + "operands": "0x14001a790", + "stack_offset": 0 } ], "successors": [ @@ -143256,43 +161323,50 @@ "address": "0x14001a764", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0" + "operands": "dword ptr [rcx], 0", + "stack_offset": 0 }, { "address": "0x14001a767", "size": 2, "mnemonic": "jne", - "operands": "0x14001a776" + "operands": "0x14001a776", + "stack_offset": 0 }, { "address": "0x14001a769", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a76e", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsi]" + "operands": "rcx, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x14001a771", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a776", "size": 5, "mnemonic": "cmp", - "operands": "qword ptr [rdi - 0x18], 0" + "operands": "qword ptr [rdi - 0x18], 0", + "stack_offset": 0 }, { "address": "0x14001a77b", "size": 2, "mnemonic": "je", - "operands": "0x14001a790" + "operands": "0x14001a790", + "stack_offset": 0 } ], "successors": [ @@ -143310,19 +161384,22 @@ "address": "0x14001a6a6", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0xe8]" + "operands": "rcx, qword ptr [rbx + 0xe8]", + "stack_offset": 0 }, { "address": "0x14001a6ad", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a6b0", "size": 2, "mnemonic": "je", - "operands": "0x14001a6c8" + "operands": "0x14001a6c8", + "stack_offset": 0 } ], "successors": [ @@ -143340,49 +161417,57 @@ "address": "0x14001a690", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0" + "operands": "dword ptr [rcx], 0", + "stack_offset": 0 }, { "address": "0x14001a693", "size": 2, "mnemonic": "jne", - "operands": "0x14001a6a6" + "operands": "0x14001a6a6", + "stack_offset": 0 }, { "address": "0x14001a695", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a69a", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0xf8]" + "operands": "rcx, qword ptr [rbx + 0xf8]", + "stack_offset": 0 }, { "address": "0x14001a6a1", "size": 5, "mnemonic": "call", - "operands": "0x14001952c" + "operands": "0x14001952c", + "stack_offset": 0 }, { "address": "0x14001a6a6", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0xe8]" + "operands": "rcx, qword ptr [rbx + 0xe8]", + "stack_offset": 0 }, { "address": "0x14001a6ad", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a6b0", "size": 2, "mnemonic": "je", - "operands": "0x14001a6c8" + "operands": "0x14001a6c8", + "stack_offset": 0 } ], "successors": [ @@ -143400,85 +161485,99 @@ "address": "0x14001a786", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0" + "operands": "dword ptr [rcx], 0", + "stack_offset": 0 }, { "address": "0x14001a789", "size": 2, "mnemonic": "jne", - "operands": "0x14001a790" + "operands": "0x14001a790", + "stack_offset": 0 }, { "address": "0x14001a78b", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a790", "size": 4, "mnemonic": "add", - "operands": "rsi, 8" + "operands": "rsi, 8", + "stack_offset": 0 }, { "address": "0x14001a794", "size": 4, "mnemonic": "add", - "operands": "rdi, 0x20" + "operands": "rdi, 0x20", + "stack_offset": 0 }, { "address": "0x14001a798", "size": 4, "mnemonic": "sub", - "operands": "rbp, 1" + "operands": "rbp, 1", + "stack_offset": 0 }, { "address": "0x14001a79c", "size": 2, "mnemonic": "jne", - "operands": "0x14001a74f" + "operands": "0x14001a74f", + "stack_offset": 0 }, { "address": "0x14001a79e", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001a7a1", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a7a6", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a7ab", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x40]" + "operands": "rsi, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001a7b0", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a7b4", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a7b5", "size": 5, "mnemonic": "jmp", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 } ], "successors": [ @@ -143495,43 +161594,50 @@ "address": "0x14001a6c8", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0xe0]" + "operands": "rcx, qword ptr [rbx + 0xe0]", + "stack_offset": 0 }, { "address": "0x14001a6cf", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a6d4", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0xf8]" + "operands": "rcx, qword ptr [rbx + 0xf8]", + "stack_offset": 0 }, { "address": "0x14001a6db", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a6e0", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 0x100]" + "operands": "rax, qword ptr [rbx + 0x100]", + "stack_offset": 0 }, { "address": "0x14001a6e7", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a6ea", "size": 2, "mnemonic": "je", - "operands": "0x14001a733" + "operands": "0x14001a733", + "stack_offset": 0 } ], "successors": [ @@ -143549,73 +161655,85 @@ "address": "0x14001a6b2", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rcx], 0" + "operands": "dword ptr [rcx], 0", + "stack_offset": 0 }, { "address": "0x14001a6b5", "size": 2, "mnemonic": "jne", - "operands": "0x14001a6c8" + "operands": "0x14001a6c8", + "stack_offset": 0 }, { "address": "0x14001a6b7", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a6bc", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0xf8]" + "operands": "rcx, qword ptr [rbx + 0xf8]", + "stack_offset": 0 }, { "address": "0x14001a6c3", "size": 5, "mnemonic": "call", - "operands": "0x140019b54" + "operands": "0x140019b54", + "stack_offset": 0 }, { "address": "0x14001a6c8", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0xe0]" + "operands": "rcx, qword ptr [rbx + 0xe0]", + "stack_offset": 0 }, { "address": "0x14001a6cf", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a6d4", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0xf8]" + "operands": "rcx, qword ptr [rbx + 0xf8]", + "stack_offset": 0 }, { "address": "0x14001a6db", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a6e0", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rbx + 0x100]" + "operands": "rax, qword ptr [rbx + 0x100]", + "stack_offset": 0 }, { "address": "0x14001a6e7", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001a6ea", "size": 2, "mnemonic": "je", - "operands": "0x14001a733" + "operands": "0x14001a733", + "stack_offset": 0 } ], "successors": [ @@ -143639,37 +161757,43 @@ "address": "0x1400188c8", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400188cc", "size": 5, "mnemonic": "call", - "operands": "0x1400118c4" + "operands": "0x1400118c4", + "stack_offset": 0 }, { "address": "0x1400188d1", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1af68]" + "operands": "rdx, [rip + 0x1af68]", + "stack_offset": 0 }, { "address": "0x1400188d8", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x1400188db", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x1400188df", "size": 5, "mnemonic": "jmp", - "operands": "0x1400187b0" + "operands": "0x1400187b0", + "stack_offset": 0 } ], "successors": [ @@ -143692,61 +161816,71 @@ "address": "0x14001c11c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001c121", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14001c126", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14001c12b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c12c", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001c12e", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001c130", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001c134", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x14001c137", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001c13a", "size": 2, "mnemonic": "je", - "operands": "0x14001c187" + "operands": "0x14001c187", + "stack_offset": 0 } ], "successors": [ @@ -143764,55 +161898,64 @@ "address": "0x14001c187", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001c189", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001c18e", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001c193", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001c198", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001c19c", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001c19e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001c1a0", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c1a1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -143828,97 +161971,113 @@ "address": "0x14001c13c", "size": 2, "mnemonic": "xor", - "operands": "ebx, ebx" + "operands": "ebx, ebx", + "stack_offset": 0 }, { "address": "0x14001c13e", "size": 7, "mnemonic": "lea", - "operands": "r15, [rip - 0x1c145]" + "operands": "r15, [rip - 0x1c145]", + "stack_offset": 0 }, { "address": "0x14001c145", "size": 5, "mnemonic": "mov", - "operands": "esi, 0xe3" + "operands": "esi, 0xe3", + "stack_offset": 0 }, { "address": "0x14001c14a", "size": 3, "mnemonic": "lea", - "operands": "eax, [rsi + rbx]" + "operands": "eax, [rsi + rbx]", + "stack_offset": 0 }, { "address": "0x14001c14d", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x55" + "operands": "r8d, 0x55", + "stack_offset": 0 }, { "address": "0x14001c153", "size": 1, "mnemonic": "cdq", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001c154", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x14001c157", "size": 2, "mnemonic": "sub", - "operands": "eax, edx" + "operands": "eax, edx", + "stack_offset": 0 }, { "address": "0x14001c159", "size": 2, "mnemonic": "sar", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14001c15b", "size": 3, "mnemonic": "movsxd", - "operands": "rbp, eax" + "operands": "rbp, eax", + "stack_offset": 0 }, { "address": "0x14001c15e", "size": 3, "mnemonic": "mov", - "operands": "r14, rbp" + "operands": "r14, rbp", + "stack_offset": 0 }, { "address": "0x14001c161", "size": 3, "mnemonic": "add", - "operands": "r14, r14" + "operands": "r14, r14", + "stack_offset": 0 }, { "address": "0x14001c164", "size": 8, "mnemonic": "mov", - "operands": "rdx, qword ptr [r15 + r14*8 + 0x294f0]" + "operands": "rdx, qword ptr [r15 + r14*8 + 0x294f0]", + "stack_offset": 0 }, { "address": "0x14001c16c", "size": 5, "mnemonic": "call", - "operands": "0x14001d410" + "operands": "0x14001d410", + "stack_offset": 0 }, { "address": "0x14001c171", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001c173", "size": 2, "mnemonic": "je", - "operands": "0x14001c1a2" + "operands": "0x14001c1a2", + "stack_offset": 0 } ], "successors": [ @@ -143936,19 +162095,22 @@ "address": "0x14001c1a2", "size": 8, "mnemonic": "movsxd", - "operands": "rax, dword ptr [r15 + r14*8 + 0x294f8]" + "operands": "rax, dword ptr [r15 + r14*8 + 0x294f8]", + "stack_offset": 0 }, { "address": "0x14001c1aa", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001c1ac", "size": 2, "mnemonic": "js", - "operands": "0x14001c187" + "operands": "0x14001c187", + "stack_offset": 0 } ], "successors": [ @@ -143966,97 +162128,113 @@ "address": "0x14001c175", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rbp - 1]" + "operands": "ecx, [rbp - 1]", + "stack_offset": 0 }, { "address": "0x14001c178", "size": 3, "mnemonic": "cmovns", - "operands": "ecx, esi" + "operands": "ecx, esi", + "stack_offset": 0 }, { "address": "0x14001c17b", "size": 2, "mnemonic": "mov", - "operands": "esi, ecx" + "operands": "esi, ecx", + "stack_offset": 0 }, { "address": "0x14001c17d", "size": 3, "mnemonic": "lea", - "operands": "ecx, [rbp + 1]" + "operands": "ecx, [rbp + 1]", + "stack_offset": 0 }, { "address": "0x14001c180", "size": 3, "mnemonic": "cmovns", - "operands": "ebx, ecx" + "operands": "ebx, ecx", + "stack_offset": 0 }, { "address": "0x14001c183", "size": 2, "mnemonic": "cmp", - "operands": "ebx, esi" + "operands": "ebx, esi", + "stack_offset": 0 }, { "address": "0x14001c185", "size": 2, "mnemonic": "jle", - "operands": "0x14001c14a" + "operands": "0x14001c14a", + "stack_offset": 0 }, { "address": "0x14001c187", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001c189", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001c18e", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001c193", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001c198", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001c19c", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001c19e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001c1a0", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c1a1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -144072,31 +162250,36 @@ "address": "0x14001c1ae", "size": 6, "mnemonic": "cmp", - "operands": "rax, 0xe4" + "operands": "rax, 0xe4", + "stack_offset": 0 }, { "address": "0x14001c1b4", "size": 2, "mnemonic": "jae", - "operands": "0x14001c187" + "operands": "0x14001c187", + "stack_offset": 0 }, { "address": "0x14001c1b6", "size": 3, "mnemonic": "add", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14001c1b9", "size": 8, "mnemonic": "mov", - "operands": "eax, dword ptr [r15 + rax*8 + 0x27aa0]" + "operands": "eax, dword ptr [r15 + rax*8 + 0x27aa0]", + "stack_offset": 0 }, { "address": "0x14001c1c1", "size": 2, "mnemonic": "jmp", - "operands": "0x14001c189" + "operands": "0x14001c189", + "stack_offset": 0 } ], "successors": [ @@ -144113,49 +162296,57 @@ "address": "0x14001c189", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001c18e", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14001c193", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14001c198", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001c19c", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001c19e", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001c1a0", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001c1a1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -144177,37 +162368,43 @@ "address": "0x140004d34", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140004d39", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140004d3a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140004d3e", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140004d41", "size": 4, "mnemonic": "mov", - "operands": "rbx, qword ptr [rcx + 0x38]" + "operands": "rbx, qword ptr [rcx + 0x38]", + "stack_offset": 0 }, { "address": "0x140004d45", "size": 2, "mnemonic": "jmp", - "operands": "0x140004d5d" + "operands": "0x140004d5d", + "stack_offset": 0 } ], "successors": [ @@ -144224,31 +162421,36 @@ "address": "0x140004d5d", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004d60", "size": 2, "mnemonic": "jne", - "operands": "0x140004d47" + "operands": "0x140004d47", + "stack_offset": 0 }, { "address": "0x140004d62", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + 0x30]" + "operands": "rcx, qword ptr [rdi + 0x30]", + "stack_offset": 0 }, { "address": "0x140004d66", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140004d69", "size": 2, "mnemonic": "je", - "operands": "0x140004d80" + "operands": "0x140004d80", + "stack_offset": 0 } ], "successors": [ @@ -144266,25 +162468,29 @@ "address": "0x140004d80", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x30], 0" + "operands": "qword ptr [rdi + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140004d88", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + 0x38]" + "operands": "rcx, qword ptr [rdi + 0x38]", + "stack_offset": 0 }, { "address": "0x140004d8c", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140004d8f", "size": 2, "mnemonic": "je", - "operands": "0x140004da6" + "operands": "0x140004da6", + "stack_offset": 0 } ], "successors": [ @@ -144302,61 +162508,71 @@ "address": "0x140004d6b", "size": 3, "mnemonic": "mov", - "operands": "rbx, qword ptr [rcx]" + "operands": "rbx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140004d6e", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x18" + "operands": "edx, 0x18", + "stack_offset": 0 }, { "address": "0x140004d73", "size": 5, "mnemonic": "call", - "operands": "0x140005170" + "operands": "0x140005170", + "stack_offset": 0 }, { "address": "0x140004d78", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140004d7b", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004d7e", "size": 2, "mnemonic": "jne", - "operands": "0x140004d6b" + "operands": "0x140004d6b", + "stack_offset": 0 }, { "address": "0x140004d80", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x30], 0" + "operands": "qword ptr [rdi + 0x30], 0", + "stack_offset": 0 }, { "address": "0x140004d88", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rdi + 0x38]" + "operands": "rcx, qword ptr [rdi + 0x38]", + "stack_offset": 0 }, { "address": "0x140004d8c", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140004d8f", "size": 2, "mnemonic": "je", - "operands": "0x140004da6" + "operands": "0x140004da6", + "stack_offset": 0 } ], "successors": [ @@ -144374,31 +162590,36 @@ "address": "0x140004da6", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x38], 0" + "operands": "qword ptr [rdi + 0x38], 0", + "stack_offset": 0 }, { "address": "0x140004dae", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140004db3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140004db7", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140004db8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -144414,67 +162635,78 @@ "address": "0x140004d91", "size": 3, "mnemonic": "mov", - "operands": "rbx, qword ptr [rcx]" + "operands": "rbx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140004d94", "size": 5, "mnemonic": "mov", - "operands": "edx, 0x18" + "operands": "edx, 0x18", + "stack_offset": 0 }, { "address": "0x140004d99", "size": 5, "mnemonic": "call", - "operands": "0x140005170" + "operands": "0x140005170", + "stack_offset": 0 }, { "address": "0x140004d9e", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140004da1", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x140004da4", "size": 2, "mnemonic": "jne", - "operands": "0x140004d91" + "operands": "0x140004d91", + "stack_offset": 0 }, { "address": "0x140004da6", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rdi + 0x38], 0" + "operands": "qword ptr [rdi + 0x38], 0", + "stack_offset": 0 }, { "address": "0x140004dae", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140004db3", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140004db7", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140004db8", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -144496,73 +162728,85 @@ "address": "0x14000753c", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140007540", "size": 4, "mnemonic": "movsxd", - "operands": "r9, dword ptr [r8 + 0x1c]" + "operands": "r9, dword ptr [r8 + 0x1c]", + "stack_offset": 0 }, { "address": "0x140007544", "size": 3, "mnemonic": "mov", - "operands": "r10, r8" + "operands": "r10, r8", + "stack_offset": 0 }, { "address": "0x140007547", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000754a", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r9 + rax]" + "operands": "eax, dword ptr [r9 + rax]", + "stack_offset": 0 }, { "address": "0x14000754e", "size": 3, "mnemonic": "cmp", - "operands": "eax, -2" + "operands": "eax, -2", + "stack_offset": 0 }, { "address": "0x140007551", "size": 2, "mnemonic": "jne", - "operands": "0x14000755e" + "operands": "0x14000755e", + "stack_offset": 0 }, { "address": "0x140007553", "size": 3, "mnemonic": "mov", - "operands": "r8, qword ptr [rdx]" + "operands": "r8, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140007556", "size": 3, "mnemonic": "mov", - "operands": "rcx, r10" + "operands": "rcx, r10", + "stack_offset": 0 }, { "address": "0x140007559", "size": 5, "mnemonic": "call", - "operands": "0x1400075e8" + "operands": "0x1400075e8", + "stack_offset": 0 }, { "address": "0x14000755e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140007562", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -144584,97 +162828,113 @@ "address": "0x14000aae0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000aae4", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x14000aae9", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rdx" + "operands": "qword ptr [rsp + 0x38], rdx", + "stack_offset": 0 }, { "address": "0x14000aaee", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], r8d" + "operands": "dword ptr [rsp + 0x40], r8d", + "stack_offset": 0 }, { "address": "0x14000aaf3", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rdx]" + "operands": "rdx, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000aaf6", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000aaf9", "size": 5, "mnemonic": "call", - "operands": "0x14000a6d0" + "operands": "0x14000a6d0", + "stack_offset": 0 }, { "address": "0x14000aafe", "size": 2, "mnemonic": "call", - "operands": "rax" + "operands": "rax", + "stack_offset": 0 }, { "address": "0x14000ab00", "size": 5, "mnemonic": "call", - "operands": "0x14000a700" + "operands": "0x14000a700", + "stack_offset": 0 }, { "address": "0x14000ab05", "size": 3, "mnemonic": "mov", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14000ab08", "size": 5, "mnemonic": "mov", - "operands": "rdx, qword ptr [rsp + 0x38]" + "operands": "rdx, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000ab0d", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rdx]" + "operands": "rdx, qword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000ab10", "size": 6, "mnemonic": "mov", - "operands": "r8d, 2" + "operands": "r8d, 2", + "stack_offset": 0 }, { "address": "0x14000ab16", "size": 5, "mnemonic": "call", - "operands": "0x14000a6d0" + "operands": "0x14000a6d0", + "stack_offset": 0 }, { "address": "0x14000ab1b", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14000ab1f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -144696,49 +162956,57 @@ "address": "0x140006dd0", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140006dd2", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140006dd6", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140006dd9", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140006dde", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rax + 0x60], rbx" + "operands": "qword ptr [rax + 0x60], rbx", + "stack_offset": 0 }, { "address": "0x140006de2", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140006de6", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140006de7", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -144760,31 +163028,36 @@ "address": "0x140006510", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140006514", "size": 4, "mnemonic": "test", - "operands": "byte ptr [r8], 1" + "operands": "byte ptr [r8], 1", + "stack_offset": 0 }, { "address": "0x140006518", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14000651b", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x140006520", "size": 2, "mnemonic": "je", - "operands": "0x14000652f" + "operands": "0x14000652f", + "stack_offset": 0 } ], "successors": [ @@ -144802,31 +163075,36 @@ "address": "0x14000652f", "size": 4, "mnemonic": "or", - "operands": "r9d, 0xffffffff" + "operands": "r9d, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140006533", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x30]" + "operands": "rcx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140006538", "size": 5, "mnemonic": "call", - "operands": "0x140009f50" + "operands": "0x140009f50", + "stack_offset": 0 }, { "address": "0x14000653d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140006541", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -144842,49 +163120,57 @@ "address": "0x140006522", "size": 4, "mnemonic": "mov", - "operands": "eax, dword ptr [r8 + 0x14]" + "operands": "eax, dword ptr [r8 + 0x14]", + "stack_offset": 0 }, { "address": "0x140006526", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rax + rcx]" + "operands": "rcx, qword ptr [rax + rcx]", + "stack_offset": 0 }, { "address": "0x14000652a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rcx" + "operands": "qword ptr [rsp + 0x30], rcx", + "stack_offset": 0 }, { "address": "0x14000652f", "size": 4, "mnemonic": "or", - "operands": "r9d, 0xffffffff" + "operands": "r9d, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140006533", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x30]" + "operands": "rcx, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140006538", "size": 5, "mnemonic": "call", - "operands": "0x140009f50" + "operands": "0x140009f50", + "stack_offset": 0 }, { "address": "0x14000653d", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x140006541", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -144912,181 +163198,211 @@ "address": "0x140009f50", "size": 3, "mnemonic": "mov", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140009f53", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140009f54", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x140009f55", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140009f56", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x140009f58", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x140009f5a", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x140009f5c", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140009f5e", "size": 7, "mnemonic": "sub", - "operands": "rsp, 0x100" + "operands": "rsp, 0x100", + "stack_offset": 0 }, { "address": "0x140009f65", "size": 4, "mnemonic": "movaps", - "operands": "xmmword ptr [rax - 0x48], xmm6" + "operands": "xmmword ptr [rax - 0x48], xmm6", + "stack_offset": 0 }, { "address": "0x140009f69", "size": 7, "mnemonic": "mov", - "operands": "rax, qword ptr [rip + 0x270d0]" + "operands": "rax, qword ptr [rip + 0x270d0]", + "stack_offset": 0 }, { "address": "0x140009f70", "size": 3, "mnemonic": "xor", - "operands": "rax, rsp" + "operands": "rax, rsp", + "stack_offset": 0 }, { "address": "0x140009f73", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0xe0], rax" + "operands": "qword ptr [rsp + 0xe0], rax", + "stack_offset": 0 }, { "address": "0x140009f7b", "size": 3, "mnemonic": "mov", - "operands": "r13d, r9d" + "operands": "r13d, r9d", + "stack_offset": 0 }, { "address": "0x140009f7e", "size": 3, "mnemonic": "mov", - "operands": "rbx, r8" + "operands": "rbx, r8", + "stack_offset": 0 }, { "address": "0x140009f81", "size": 3, "mnemonic": "mov", - "operands": "rsi, rdx" + "operands": "rsi, rdx", + "stack_offset": 0 }, { "address": "0x140009f84", "size": 3, "mnemonic": "mov", - "operands": "r12, rcx" + "operands": "r12, rcx", + "stack_offset": 0 }, { "address": "0x140009f87", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x78], rcx" + "operands": "qword ptr [rsp + 0x78], rcx", + "stack_offset": 0 }, { "address": "0x140009f8c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x60], rcx" + "operands": "qword ptr [rsp + 0x60], rcx", + "stack_offset": 0 }, { "address": "0x140009f91", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x48], r9d" + "operands": "dword ptr [rsp + 0x48], r9d", + "stack_offset": 0 }, { "address": "0x140009f96", "size": 5, "mnemonic": "call", - "operands": "0x140006da8" + "operands": "0x140006da8", + "stack_offset": 0 }, { "address": "0x140009f9b", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x68], rax" + "operands": "qword ptr [rsp + 0x68], rax", + "stack_offset": 0 }, { "address": "0x140009fa0", "size": 3, "mnemonic": "mov", - "operands": "rdx, rsi" + "operands": "rdx, rsi", + "stack_offset": 0 }, { "address": "0x140009fa3", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x140009fa6", "size": 5, "mnemonic": "call", - "operands": "0x1400075e0" + "operands": "0x1400075e0", + "stack_offset": 0 }, { "address": "0x140009fab", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140009fad", "size": 4, "mnemonic": "lea", - "operands": "r14, [rsi + 0x48]" + "operands": "r14, [rsi + 0x48]", + "stack_offset": 0 }, { "address": "0x140009fb1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x70], r14" + "operands": "qword ptr [rsp + 0x70], r14", + "stack_offset": 0 }, { "address": "0x140009fb6", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [r14], 0" + "operands": "dword ptr [r14], 0", + "stack_offset": 0 }, { "address": "0x140009fba", "size": 2, "mnemonic": "je", - "operands": "0x140009fd3" + "operands": "0x140009fd3", + "stack_offset": 0 } ], "successors": [ @@ -145104,19 +163420,22 @@ "address": "0x140009fd3", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009fd8", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x78], -2" + "operands": "dword ptr [rax + 0x78], -2", + "stack_offset": 0 }, { "address": "0x140009fdc", "size": 2, "mnemonic": "je", - "operands": "0x140009ff2" + "operands": "0x140009ff2", + "stack_offset": 0 } ], "successors": [ @@ -145134,37 +163453,43 @@ "address": "0x140009fbc", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009fc1", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x78], -2" + "operands": "dword ptr [rax + 0x78], -2", + "stack_offset": 0 }, { "address": "0x140009fc5", "size": 6, "mnemonic": "jne", - "operands": "0x14000a256" + "operands": "0x14000a256", + "stack_offset": 0 }, { "address": "0x140009fcb", "size": 3, "mnemonic": "mov", - "operands": "edi, dword ptr [r14]" + "operands": "edi, dword ptr [r14]", + "stack_offset": 0 }, { "address": "0x140009fce", "size": 3, "mnemonic": "sub", - "operands": "edi, 2" + "operands": "edi, 2", + "stack_offset": 0 }, { "address": "0x140009fd1", "size": 2, "mnemonic": "jmp", - "operands": "0x140009ff2" + "operands": "0x140009ff2", + "stack_offset": 0 } ], "successors": [ @@ -145181,67 +163506,78 @@ "address": "0x140009ff2", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009ff7", "size": 3, "mnemonic": "inc", - "operands": "dword ptr [rax + 0x30]" + "operands": "dword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x140009ffa", "size": 4, "mnemonic": "add", - "operands": "rsi, 8" + "operands": "rsi, 8", + "stack_offset": 0 }, { "address": "0x140009ffe", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x80], rsi" + "operands": "qword ptr [rsp + 0x80], rsi", + "stack_offset": 0 }, { "address": "0x14000a006", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsi]" + "operands": "rcx, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x14000a009", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000a00b", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0xc8], rdx" + "operands": "qword ptr [rsp + 0xc8], rdx", + "stack_offset": 0 }, { "address": "0x14000a013", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x14000a016", "size": 8, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0xd0], xmm0" + "operands": "xmmword ptr [rsp + 0xd0], xmm0", + "stack_offset": 0 }, { "address": "0x14000a01e", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 8], edx" + "operands": "dword ptr [rbx + 8], edx", + "stack_offset": 0 }, { "address": "0x14000a021", "size": 2, "mnemonic": "je", - "operands": "0x14000a061" + "operands": "0x14000a061", + "stack_offset": 0 } ], "successors": [ @@ -145259,91 +163595,106 @@ "address": "0x140009fde", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009fe3", "size": 3, "mnemonic": "mov", - "operands": "edi, dword ptr [rax + 0x78]" + "operands": "edi, dword ptr [rax + 0x78]", + "stack_offset": 0 }, { "address": "0x140009fe6", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009feb", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rax + 0x78], 0xfffffffe" + "operands": "dword ptr [rax + 0x78], 0xfffffffe", + "stack_offset": 0 }, { "address": "0x140009ff2", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x140009ff7", "size": 3, "mnemonic": "inc", - "operands": "dword ptr [rax + 0x30]" + "operands": "dword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x140009ffa", "size": 4, "mnemonic": "add", - "operands": "rsi, 8" + "operands": "rsi, 8", + "stack_offset": 0 }, { "address": "0x140009ffe", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x80], rsi" + "operands": "qword ptr [rsp + 0x80], rsi", + "stack_offset": 0 }, { "address": "0x14000a006", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsi]" + "operands": "rcx, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x14000a009", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000a00b", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0xc8], rdx" + "operands": "qword ptr [rsp + 0xc8], rdx", + "stack_offset": 0 }, { "address": "0x14000a013", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x14000a016", "size": 8, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0xd0], xmm0" + "operands": "xmmword ptr [rsp + 0xd0], xmm0", + "stack_offset": 0 }, { "address": "0x14000a01e", "size": 3, "mnemonic": "cmp", - "operands": "dword ptr [rbx + 8], edx" + "operands": "dword ptr [rbx + 8], edx", + "stack_offset": 0 }, { "address": "0x14000a021", "size": 2, "mnemonic": "je", - "operands": "0x14000a061" + "operands": "0x14000a061", + "stack_offset": 0 } ], "successors": [ @@ -145361,133 +163712,155 @@ "address": "0x14000a061", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0xc0], edx" + "operands": "dword ptr [rsp + 0xc0], edx", + "stack_offset": 0 }, { "address": "0x14000a068", "size": 8, "mnemonic": "lea", - "operands": "rax, [rsp + 0xc0]" + "operands": "rax, [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14000a070", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rax" + "operands": "qword ptr [rsp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x14000a075", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rdx" + "operands": "qword ptr [rsp + 0x38], rdx", + "stack_offset": 0 }, { "address": "0x14000a07a", "size": 8, "mnemonic": "lea", - "operands": "rax, [rsp + 0xc0]" + "operands": "rax, [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14000a082", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x50], rax" + "operands": "qword ptr [rsp + 0x50], rax", + "stack_offset": 0 }, { "address": "0x14000a087", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x58], rdx" + "operands": "qword ptr [rsp + 0x58], rdx", + "stack_offset": 0 }, { "address": "0x14000a08c", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x50]" + "operands": "rax, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000a091", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14000a096", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x30]" + "operands": "r9, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a09b", "size": 3, "mnemonic": "mov", - "operands": "r8d, r13d" + "operands": "r8d, r13d", + "stack_offset": 0 }, { "address": "0x14000a09e", "size": 2, "mnemonic": "mov", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x14000a0a0", "size": 8, "mnemonic": "lea", - "operands": "rcx, [rsp + 0xc0]" + "operands": "rcx, [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14000a0a8", "size": 5, "mnemonic": "call", - "operands": "0x14000a520" + "operands": "0x14000a520", + "stack_offset": 0 }, { "address": "0x14000a0ad", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000a0ae", "size": 8, "mnemonic": "lea", - "operands": "rax, [rsp + 0xc0]" + "operands": "rax, [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14000a0b6", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x88], rax" + "operands": "qword ptr [rsp + 0x88], rax", + "stack_offset": 0 }, { "address": "0x14000a0be", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0xc8]" + "operands": "rax, qword ptr [rsp + 0xc8]", + "stack_offset": 0 }, { "address": "0x14000a0c6", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x90], rax" + "operands": "qword ptr [rsp + 0x90], rax", + "stack_offset": 0 }, { "address": "0x14000a0ce", "size": 5, "mnemonic": "mov", - "operands": "r15, qword ptr [rsp + 0x38]" + "operands": "r15, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000a0d3", "size": 3, "mnemonic": "cmp", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x14000a0d6", "size": 6, "mnemonic": "jb", - "operands": "0x14000a218" + "operands": "0x14000a218", + "stack_offset": 0 } ], "successors": [ @@ -145505,79 +163878,92 @@ "address": "0x14000a023", "size": 4, "mnemonic": "movsxd", - "operands": "rdx, dword ptr [rbx + 8]" + "operands": "rdx, dword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x14000a027", "size": 3, "mnemonic": "add", - "operands": "rdx, rcx" + "operands": "rdx, rcx", + "stack_offset": 0 }, { "address": "0x14000a02a", "size": 3, "mnemonic": "movzx", - "operands": "ecx, byte ptr [rdx]" + "operands": "ecx, byte ptr [rdx]", + "stack_offset": 0 }, { "address": "0x14000a02d", "size": 3, "mnemonic": "and", - "operands": "ecx, 0xf" + "operands": "ecx, 0xf", + "stack_offset": 0 }, { "address": "0x14000a030", "size": 7, "mnemonic": "lea", - "operands": "r8, [rip - 0xa037]" + "operands": "r8, [rip - 0xa037]", + "stack_offset": 0 }, { "address": "0x14000a037", "size": 9, "mnemonic": "movsx", - "operands": "rax, byte ptr [rcx + r8 + 0x23d90]" + "operands": "rax, byte ptr [rcx + r8 + 0x23d90]", + "stack_offset": 0 }, { "address": "0x14000a040", "size": 3, "mnemonic": "sub", - "operands": "rdx, rax" + "operands": "rdx, rax", + "stack_offset": 0 }, { "address": "0x14000a043", "size": 8, "mnemonic": "mov", - "operands": "cl, byte ptr [rcx + r8 + 0x23da0]" + "operands": "cl, byte ptr [rcx + r8 + 0x23da0]", + "stack_offset": 0 }, { "address": "0x14000a04b", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rdx - 4]" + "operands": "eax, dword ptr [rdx - 4]", + "stack_offset": 0 }, { "address": "0x14000a04e", "size": 2, "mnemonic": "shr", - "operands": "eax, cl" + "operands": "eax, cl", + "stack_offset": 0 }, { "address": "0x14000a050", "size": 7, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0xc0], eax" + "operands": "dword ptr [rsp + 0xc0], eax", + "stack_offset": 0 }, { "address": "0x14000a057", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0xc8], rdx" + "operands": "qword ptr [rsp + 0xc8], rdx", + "stack_offset": 0 }, { "address": "0x14000a05f", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a068" + "operands": "0x14000a068", + "stack_offset": 0 } ], "successors": [ @@ -145594,109 +163980,127 @@ "address": "0x14000a218", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14000a21d", "size": 4, "mnemonic": "cmp", - "operands": "dword ptr [rax + 0x30], 0" + "operands": "dword ptr [rax + 0x30], 0", + "stack_offset": 0 }, { "address": "0x14000a221", "size": 2, "mnemonic": "jle", - "operands": "0x14000a22b" + "operands": "0x14000a22b", + "stack_offset": 0 }, { "address": "0x14000a223", "size": 5, "mnemonic": "call", - "operands": "0x140007394" + "operands": "0x140007394", + "stack_offset": 0 }, { "address": "0x14000a228", "size": 3, "mnemonic": "dec", - "operands": "dword ptr [rax + 0x30]" + "operands": "dword ptr [rax + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a22b", "size": 8, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0xe0]" + "operands": "rcx, qword ptr [rsp + 0xe0]", + "stack_offset": 0 }, { "address": "0x14000a233", "size": 3, "mnemonic": "xor", - "operands": "rcx, rsp" + "operands": "rcx, rsp", + "stack_offset": 0 }, { "address": "0x14000a236", "size": 5, "mnemonic": "call", - "operands": "0x140005210" + "operands": "0x140005210", + "stack_offset": 0 }, { "address": "0x14000a23b", "size": 8, "mnemonic": "movaps", - "operands": "xmm6, xmmword ptr [rsp + 0xf0]" + "operands": "xmm6, xmmword ptr [rsp + 0xf0]", + "stack_offset": 0 }, { "address": "0x14000a243", "size": 7, "mnemonic": "add", - "operands": "rsp, 0x100" + "operands": "rsp, 0x100", + "stack_offset": 0 }, { "address": "0x14000a24a", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a24c", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a24e", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a250", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a252", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a253", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000a254", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000a255", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -145712,235 +164116,274 @@ "address": "0x14000a0dc", "size": 5, "mnemonic": "cmp", - "operands": "r15, qword ptr [rsp + 0x58]" + "operands": "r15, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000a0e1", "size": 6, "mnemonic": "jbe", - "operands": "0x14000a218" + "operands": "0x14000a218", + "stack_offset": 0 }, { "address": "0x14000a0e7", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x38]" + "operands": "rdx, [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000a0ec", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x30]" + "operands": "rcx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a0f1", "size": 5, "mnemonic": "call", - "operands": "0x14000a464" + "operands": "0x14000a464", + "stack_offset": 0 }, { "address": "0x14000a0f6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], r15" + "operands": "qword ptr [rsp + 0x38], r15", + "stack_offset": 0 }, { "address": "0x14000a0fb", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a100", "size": 4, "mnemonic": "movups", - "operands": "xmm6, xmmword ptr [rbx + 0x10]" + "operands": "xmm6, xmmword ptr [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x14000a104", "size": 8, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0xb0], xmm6" + "operands": "xmmword ptr [rsp + 0xb0], xmm6", + "stack_offset": 0 }, { "address": "0x14000a10c", "size": 5, "mnemonic": "movaps", - "operands": "xmm0, xmmword ptr [rsp + 0x30]" + "operands": "xmm0, xmmword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a111", "size": 9, "mnemonic": "movdqa", - "operands": "xmmword ptr [rsp + 0xa0], xmm0" + "operands": "xmmword ptr [rsp + 0xa0], xmm0", + "stack_offset": 0 }, { "address": "0x14000a11a", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x38]" + "operands": "rdx, [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000a11f", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14000a122", "size": 5, "mnemonic": "call", - "operands": "0x14000a464" + "operands": "0x14000a464", + "stack_offset": 0 }, { "address": "0x14000a127", "size": 3, "mnemonic": "mov", - "operands": "eax, dword ptr [rbx + 0x10]" + "operands": "eax, dword ptr [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x14000a12a", "size": 3, "mnemonic": "sub", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x14000a12d", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], r15" + "operands": "qword ptr [rsp + 0x38], r15", + "stack_offset": 0 }, { "address": "0x14000a132", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x30]" + "operands": "rax, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a137", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14000a13c", "size": 3, "mnemonic": "mov", - "operands": "r9d, edi" + "operands": "r9d, edi", + "stack_offset": 0 }, { "address": "0x14000a13f", "size": 8, "mnemonic": "lea", - "operands": "r8, [rsp + 0xa0]" + "operands": "r8, [rsp + 0xa0]", + "stack_offset": 0 }, { "address": "0x14000a147", "size": 3, "mnemonic": "mov", - "operands": "edx, r13d" + "operands": "edx, r13d", + "stack_offset": 0 }, { "address": "0x14000a14a", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x50]" + "operands": "rcx, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000a14f", "size": 5, "mnemonic": "call", - "operands": "0x14000a5f0" + "operands": "0x14000a5f0", + "stack_offset": 0 }, { "address": "0x14000a154", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x14000a156", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x44], eax" + "operands": "dword ptr [rsp + 0x44], eax", + "stack_offset": 0 }, { "address": "0x14000a15a", "size": 8, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], 0" + "operands": "dword ptr [rsp + 0x40], 0", + "stack_offset": 0 }, { "address": "0x14000a162", "size": 3, "mnemonic": "xor", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000a165", "size": 4, "mnemonic": "movdqa", - "operands": "xmm0, xmm6" + "operands": "xmm0, xmm6", + "stack_offset": 0 }, { "address": "0x14000a169", "size": 5, "mnemonic": "psrldq", - "operands": "xmm0, 8" + "operands": "xmm0, 8", + "stack_offset": 0 }, { "address": "0x14000a16e", "size": 4, "mnemonic": "movd", - "operands": "eax, xmm0" + "operands": "eax, xmm0", + "stack_offset": 0 }, { "address": "0x14000a172", "size": 4, "mnemonic": "movdqa", - "operands": "xmm1, xmm6" + "operands": "xmm1, xmm6", + "stack_offset": 0 }, { "address": "0x14000a176", "size": 5, "mnemonic": "psrldq", - "operands": "xmm1, 4" + "operands": "xmm1, 4", + "stack_offset": 0 }, { "address": "0x14000a17b", "size": 4, "mnemonic": "movd", - "operands": "ecx, xmm1" + "operands": "ecx, xmm1", + "stack_offset": 0 }, { "address": "0x14000a17f", "size": 2, "mnemonic": "test", - "operands": "ecx, ecx" + "operands": "ecx, ecx", + "stack_offset": 0 }, { "address": "0x14000a181", "size": 4, "mnemonic": "cmovne", - "operands": "r9d, eax" + "operands": "r9d, eax", + "stack_offset": 0 }, { "address": "0x14000a185", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x40], r9d" + "operands": "dword ptr [rsp + 0x40], r9d", + "stack_offset": 0 }, { "address": "0x14000a18a", "size": 3, "mnemonic": "test", - "operands": "r9d, r9d" + "operands": "r9d, r9d", + "stack_offset": 0 }, { "address": "0x14000a18d", "size": 6, "mnemonic": "je", - "operands": "0x14000a213" + "operands": "0x14000a213", + "stack_offset": 0 } ], "successors": [ @@ -145958,127 +164401,148 @@ "address": "0x14000a068", "size": 8, "mnemonic": "lea", - "operands": "rax, [rsp + 0xc0]" + "operands": "rax, [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14000a070", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x30], rax" + "operands": "qword ptr [rsp + 0x30], rax", + "stack_offset": 0 }, { "address": "0x14000a075", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x38], rdx" + "operands": "qword ptr [rsp + 0x38], rdx", + "stack_offset": 0 }, { "address": "0x14000a07a", "size": 8, "mnemonic": "lea", - "operands": "rax, [rsp + 0xc0]" + "operands": "rax, [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14000a082", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x50], rax" + "operands": "qword ptr [rsp + 0x50], rax", + "stack_offset": 0 }, { "address": "0x14000a087", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x58], rdx" + "operands": "qword ptr [rsp + 0x58], rdx", + "stack_offset": 0 }, { "address": "0x14000a08c", "size": 5, "mnemonic": "lea", - "operands": "rax, [rsp + 0x50]" + "operands": "rax, [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000a091", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x14000a096", "size": 5, "mnemonic": "lea", - "operands": "r9, [rsp + 0x30]" + "operands": "r9, [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14000a09b", "size": 3, "mnemonic": "mov", - "operands": "r8d, r13d" + "operands": "r8d, r13d", + "stack_offset": 0 }, { "address": "0x14000a09e", "size": 2, "mnemonic": "mov", - "operands": "edx, edi" + "operands": "edx, edi", + "stack_offset": 0 }, { "address": "0x14000a0a0", "size": 8, "mnemonic": "lea", - "operands": "rcx, [rsp + 0xc0]" + "operands": "rcx, [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14000a0a8", "size": 5, "mnemonic": "call", - "operands": "0x14000a520" + "operands": "0x14000a520", + "stack_offset": 0 }, { "address": "0x14000a0ad", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000a0ae", "size": 8, "mnemonic": "lea", - "operands": "rax, [rsp + 0xc0]" + "operands": "rax, [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14000a0b6", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x88], rax" + "operands": "qword ptr [rsp + 0x88], rax", + "stack_offset": 0 }, { "address": "0x14000a0be", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0xc8]" + "operands": "rax, qword ptr [rsp + 0xc8]", + "stack_offset": 0 }, { "address": "0x14000a0c6", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x90], rax" + "operands": "qword ptr [rsp + 0x90], rax", + "stack_offset": 0 }, { "address": "0x14000a0ce", "size": 5, "mnemonic": "mov", - "operands": "r15, qword ptr [rsp + 0x38]" + "operands": "r15, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000a0d3", "size": 3, "mnemonic": "cmp", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x14000a0d6", "size": 6, "mnemonic": "jb", - "operands": "0x14000a218" + "operands": "0x14000a218", + "stack_offset": 0 } ], "successors": [ @@ -146096,7 +164560,8 @@ "address": "0x14000a213", "size": 5, "mnemonic": "jmp", - "operands": "0x14000a0ae" + "operands": "0x14000a0ae", + "stack_offset": 0 } ], "successors": [ @@ -146113,67 +164578,78 @@ "address": "0x14000a193", "size": 3, "mnemonic": "lea", - "operands": "eax, [rdi + 2]" + "operands": "eax, [rdi + 2]", + "stack_offset": 0 }, { "address": "0x14000a196", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [r14], eax" + "operands": "dword ptr [r14], eax", + "stack_offset": 0 }, { "address": "0x14000a199", "size": 3, "mnemonic": "lea", - "operands": "eax, [rcx - 1]" + "operands": "eax, [rcx - 1]", + "stack_offset": 0 }, { "address": "0x14000a19c", "size": 3, "mnemonic": "cmp", - "operands": "eax, 1" + "operands": "eax, 1", + "stack_offset": 0 }, { "address": "0x14000a19f", "size": 2, "mnemonic": "jbe", - "operands": "0x14000a1b7" + "operands": "0x14000a1b7", + "stack_offset": 0 }, { "address": "0x14000a1a1", "size": 3, "mnemonic": "movsxd", - "operands": "rcx, r9d" + "operands": "rcx, r9d", + "stack_offset": 0 }, { "address": "0x14000a1a4", "size": 3, "mnemonic": "add", - "operands": "rcx, qword ptr [rsi]" + "operands": "rcx, qword ptr [rsi]", + "stack_offset": 0 }, { "address": "0x14000a1a7", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x103" + "operands": "r8d, 0x103", + "stack_offset": 0 }, { "address": "0x14000a1ad", "size": 3, "mnemonic": "mov", - "operands": "rdx, r12" + "operands": "rdx, r12", + "stack_offset": 0 }, { "address": "0x14000a1b0", "size": 5, "mnemonic": "call", - "operands": "0x14000aae0" + "operands": "0x14000aae0", + "stack_offset": 0 }, { "address": "0x14000a1b5", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a1ec" + "operands": "0x14000a1ec", + "stack_offset": 0 } ], "successors": [ @@ -146190,43 +164666,50 @@ "address": "0x14000a0ae", "size": 8, "mnemonic": "lea", - "operands": "rax, [rsp + 0xc0]" + "operands": "rax, [rsp + 0xc0]", + "stack_offset": 0 }, { "address": "0x14000a0b6", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x88], rax" + "operands": "qword ptr [rsp + 0x88], rax", + "stack_offset": 0 }, { "address": "0x14000a0be", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0xc8]" + "operands": "rax, qword ptr [rsp + 0xc8]", + "stack_offset": 0 }, { "address": "0x14000a0c6", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x90], rax" + "operands": "qword ptr [rsp + 0x90], rax", + "stack_offset": 0 }, { "address": "0x14000a0ce", "size": 5, "mnemonic": "mov", - "operands": "r15, qword ptr [rsp + 0x38]" + "operands": "r15, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14000a0d3", "size": 3, "mnemonic": "cmp", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x14000a0d6", "size": 6, "mnemonic": "jb", - "operands": "0x14000a218" + "operands": "0x14000a218", + "stack_offset": 0 } ], "successors": [ @@ -146244,19 +164727,22 @@ "address": "0x14000a1ec", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x68]" + "operands": "rcx, qword ptr [rsp + 0x68]", + "stack_offset": 0 }, { "address": "0x14000a1f1", "size": 5, "mnemonic": "call", - "operands": "0x140006dd0" + "operands": "0x140006dd0", + "stack_offset": 0 }, { "address": "0x14000a1f6", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a213" + "operands": "0x14000a213", + "stack_offset": 0 } ], "successors": [ @@ -146279,115 +164765,134 @@ "address": "0x14000a7bc", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000a7c1", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14000a7c6", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14000a7cb", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a7cc", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a7ce", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a7d0", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a7d2", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a7d4", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a7d8", "size": 2, "mnemonic": "mov", - "operands": "edi, ecx" + "operands": "edi, ecx", + "stack_offset": 0 }, { "address": "0x14000a7da", "size": 7, "mnemonic": "lea", - "operands": "r15, [rip - 0xa7e1]" + "operands": "r15, [rip - 0xa7e1]", + "stack_offset": 0 }, { "address": "0x14000a7e1", "size": 4, "mnemonic": "or", - "operands": "r14, 0xffffffffffffffff" + "operands": "r14, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14000a7e5", "size": 3, "mnemonic": "mov", - "operands": "r12, r9" + "operands": "r12, r9", + "stack_offset": 0 }, { "address": "0x14000a7e8", "size": 3, "mnemonic": "mov", - "operands": "rbp, r8" + "operands": "rbp, r8", + "stack_offset": 0 }, { "address": "0x14000a7eb", "size": 3, "mnemonic": "mov", - "operands": "r13, rdx" + "operands": "r13, rdx", + "stack_offset": 0 }, { "address": "0x14000a7ee", "size": 8, "mnemonic": "mov", - "operands": "rax, qword ptr [r15 + rdi*8 + 0x32db0]" + "operands": "rax, qword ptr [r15 + rdi*8 + 0x32db0]", + "stack_offset": 0 }, { "address": "0x14000a7f6", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000a7f7", "size": 3, "mnemonic": "cmp", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x14000a7fa", "size": 6, "mnemonic": "je", - "operands": "0x14000a8ae" + "operands": "0x14000a8ae", + "stack_offset": 0 } ], "successors": [ @@ -146405,67 +164910,78 @@ "address": "0x14000a8ae", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a8b0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000a8b5", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x58]" + "operands": "rbp, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000a8ba", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x60]" + "operands": "rsi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a8bf", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a8c3", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a8c5", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a8c7", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a8c9", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a8cb", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a8cc", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -146481,25 +164997,29 @@ "address": "0x14000a800", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000a803", "size": 6, "mnemonic": "jne", - "operands": "0x14000a8b0" + "operands": "0x14000a8b0", + "stack_offset": 0 }, { "address": "0x14000a809", "size": 3, "mnemonic": "cmp", - "operands": "r8, r9" + "operands": "r8, r9", + "stack_offset": 0 }, { "address": "0x14000a80c", "size": 6, "mnemonic": "je", - "operands": "0x14000a8a6" + "operands": "0x14000a8a6", + "stack_offset": 0 } ], "successors": [ @@ -146517,73 +165037,85 @@ "address": "0x14000a8a6", "size": 8, "mnemonic": "xchg", - "operands": "qword ptr [r15 + rdi*8 + 0x32db0], r14" + "operands": "qword ptr [r15 + rdi*8 + 0x32db0], r14", + "stack_offset": 0 }, { "address": "0x14000a8ae", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a8b0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000a8b5", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x58]" + "operands": "rbp, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000a8ba", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x60]" + "operands": "rsi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a8bf", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a8c3", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a8c5", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a8c7", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a8c9", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a8cb", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a8cc", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -146599,31 +165131,36 @@ "address": "0x14000a812", "size": 3, "mnemonic": "mov", - "operands": "esi, dword ptr [rbp]" + "operands": "esi, dword ptr [rbp]", + "stack_offset": 0 }, { "address": "0x14000a815", "size": 8, "mnemonic": "mov", - "operands": "rbx, qword ptr [r15 + rsi*8 + 0x32d98]" + "operands": "rbx, qword ptr [r15 + rsi*8 + 0x32d98]", + "stack_offset": 0 }, { "address": "0x14000a81d", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14000a81e", "size": 3, "mnemonic": "test", - "operands": "rbx, rbx" + "operands": "rbx, rbx", + "stack_offset": 0 }, { "address": "0x14000a821", "size": 2, "mnemonic": "je", - "operands": "0x14000a82e" + "operands": "0x14000a82e", + "stack_offset": 0 } ], "successors": [ @@ -146641,103 +165178,120 @@ "address": "0x14000a82e", "size": 8, "mnemonic": "mov", - "operands": "r15, qword ptr [r15 + rsi*8 + 0x24cf0]" + "operands": "r15, qword ptr [r15 + rsi*8 + 0x24cf0]", + "stack_offset": 0 }, { "address": "0x14000a836", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000a838", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x14000a83b", "size": 6, "mnemonic": "mov", - "operands": "r8d, 0x800" + "operands": "r8d, 0x800", + "stack_offset": 0 }, { "address": "0x14000a841", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x158f9]" + "operands": "qword ptr [rip + 0x158f9]", + "stack_offset": 0 }, { "address": "0x14000a847", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14000a84a", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000a84d", "size": 2, "mnemonic": "jne", - "operands": "0x14000a8cd" + "operands": "0x14000a8cd", + "stack_offset": 0 }, { "address": "0x14000a84f", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x158a3]" + "operands": "qword ptr [rip + 0x158a3]", + "stack_offset": 0 }, { "address": "0x14000a855", "size": 3, "mnemonic": "cmp", - "operands": "eax, 0x57" + "operands": "eax, 0x57", + "stack_offset": 0 }, { "address": "0x14000a858", "size": 2, "mnemonic": "jne", - "operands": "0x14000a887" + "operands": "0x14000a887", + "stack_offset": 0 }, { "address": "0x14000a85a", "size": 4, "mnemonic": "lea", - "operands": "r8d, [rbx + 7]" + "operands": "r8d, [rbx + 7]", + "stack_offset": 0 }, { "address": "0x14000a85e", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x14000a861", "size": 7, "mnemonic": "lea", - "operands": "rdx, [rip + 0x1a538]" + "operands": "rdx, [rip + 0x1a538]", + "stack_offset": 0 }, { "address": "0x14000a868", "size": 5, "mnemonic": "call", - "operands": "0x140011460" + "operands": "0x140011460", + "stack_offset": 0 }, { "address": "0x14000a86d", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a86f", "size": 2, "mnemonic": "je", - "operands": "0x14000a887" + "operands": "0x14000a887", + "stack_offset": 0 } ], "successors": [ @@ -146755,19 +165309,22 @@ "address": "0x14000a823", "size": 3, "mnemonic": "cmp", - "operands": "rbx, r14" + "operands": "rbx, r14", + "stack_offset": 0 }, { "address": "0x14000a826", "size": 6, "mnemonic": "jne", - "operands": "0x14000a8ed" + "operands": "0x14000a8ed", + "stack_offset": 0 }, { "address": "0x14000a82c", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a899" + "operands": "0x14000a899", + "stack_offset": 0 } ], "successors": [ @@ -146784,109 +165341,127 @@ "address": "0x14000a887", "size": 3, "mnemonic": "mov", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x14000a88a", "size": 7, "mnemonic": "lea", - "operands": "r15, [rip - 0xa891]" + "operands": "r15, [rip - 0xa891]", + "stack_offset": 0 }, { "address": "0x14000a891", "size": 8, "mnemonic": "xchg", - "operands": "qword ptr [r15 + rsi*8 + 0x32d98], rax" + "operands": "qword ptr [r15 + rsi*8 + 0x32d98], rax", + "stack_offset": 0 }, { "address": "0x14000a899", "size": 4, "mnemonic": "add", - "operands": "rbp, 4" + "operands": "rbp, 4", + "stack_offset": 0 }, { "address": "0x14000a89d", "size": 3, "mnemonic": "cmp", - "operands": "rbp, r12" + "operands": "rbp, r12", + "stack_offset": 0 }, { "address": "0x14000a8a0", "size": 6, "mnemonic": "jne", - "operands": "0x14000a812" + "operands": "0x14000a812", + "stack_offset": 0 }, { "address": "0x14000a8a6", "size": 8, "mnemonic": "xchg", - "operands": "qword ptr [r15 + rdi*8 + 0x32db0], r14" + "operands": "qword ptr [r15 + rdi*8 + 0x32db0], r14", + "stack_offset": 0 }, { "address": "0x14000a8ae", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a8b0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000a8b5", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x58]" + "operands": "rbp, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000a8ba", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x60]" + "operands": "rsi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a8bf", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a8c3", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a8c5", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a8c7", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a8c9", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a8cb", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a8cc", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -146902,151 +165477,176 @@ "address": "0x14000a871", "size": 3, "mnemonic": "xor", - "operands": "r8d, r8d" + "operands": "r8d, r8d", + "stack_offset": 0 }, { "address": "0x14000a874", "size": 2, "mnemonic": "xor", - "operands": "edx, edx" + "operands": "edx, edx", + "stack_offset": 0 }, { "address": "0x14000a876", "size": 3, "mnemonic": "mov", - "operands": "rcx, r15" + "operands": "rcx, r15", + "stack_offset": 0 }, { "address": "0x14000a879", "size": 6, "mnemonic": "call", - "operands": "qword ptr [rip + 0x158c1]" + "operands": "qword ptr [rip + 0x158c1]", + "stack_offset": 0 }, { "address": "0x14000a87f", "size": 3, "mnemonic": "mov", - "operands": "rbx, rax" + "operands": "rbx, rax", + "stack_offset": 0 }, { "address": "0x14000a882", "size": 3, "mnemonic": "test", - "operands": "rax, rax" + "operands": "rax, rax", + "stack_offset": 0 }, { "address": "0x14000a885", "size": 2, "mnemonic": "jne", - "operands": "0x14000a8cd" + "operands": "0x14000a8cd", + "stack_offset": 0 }, { "address": "0x14000a887", "size": 3, "mnemonic": "mov", - "operands": "rax, r14" + "operands": "rax, r14", + "stack_offset": 0 }, { "address": "0x14000a88a", "size": 7, "mnemonic": "lea", - "operands": "r15, [rip - 0xa891]" + "operands": "r15, [rip - 0xa891]", + "stack_offset": 0 }, { "address": "0x14000a891", "size": 8, "mnemonic": "xchg", - "operands": "qword ptr [r15 + rsi*8 + 0x32d98], rax" + "operands": "qword ptr [r15 + rsi*8 + 0x32d98], rax", + "stack_offset": 0 }, { "address": "0x14000a899", "size": 4, "mnemonic": "add", - "operands": "rbp, 4" + "operands": "rbp, 4", + "stack_offset": 0 }, { "address": "0x14000a89d", "size": 3, "mnemonic": "cmp", - "operands": "rbp, r12" + "operands": "rbp, r12", + "stack_offset": 0 }, { "address": "0x14000a8a0", "size": 6, "mnemonic": "jne", - "operands": "0x14000a812" + "operands": "0x14000a812", + "stack_offset": 0 }, { "address": "0x14000a8a6", "size": 8, "mnemonic": "xchg", - "operands": "qword ptr [r15 + rdi*8 + 0x32db0], r14" + "operands": "qword ptr [r15 + rdi*8 + 0x32db0], r14", + "stack_offset": 0 }, { "address": "0x14000a8ae", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a8b0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000a8b5", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x58]" + "operands": "rbp, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000a8ba", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x60]" + "operands": "rsi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a8bf", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a8c3", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a8c5", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a8c7", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a8c9", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a8cb", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a8cc", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -147062,91 +165662,106 @@ "address": "0x14000a899", "size": 4, "mnemonic": "add", - "operands": "rbp, 4" + "operands": "rbp, 4", + "stack_offset": 0 }, { "address": "0x14000a89d", "size": 3, "mnemonic": "cmp", - "operands": "rbp, r12" + "operands": "rbp, r12", + "stack_offset": 0 }, { "address": "0x14000a8a0", "size": 6, "mnemonic": "jne", - "operands": "0x14000a812" + "operands": "0x14000a812", + "stack_offset": 0 }, { "address": "0x14000a8a6", "size": 8, "mnemonic": "xchg", - "operands": "qword ptr [r15 + rdi*8 + 0x32db0], r14" + "operands": "qword ptr [r15 + rdi*8 + 0x32db0], r14", + "stack_offset": 0 }, { "address": "0x14000a8ae", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14000a8b0", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x50]" + "operands": "rbx, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x14000a8b5", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x58]" + "operands": "rbp, qword ptr [rsp + 0x58]", + "stack_offset": 0 }, { "address": "0x14000a8ba", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x60]" + "operands": "rsi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a8bf", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a8c3", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a8c5", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a8c7", "size": 2, "mnemonic": "pop", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a8c9", "size": 2, "mnemonic": "pop", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a8cb", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a8cc", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -147168,115 +165783,134 @@ "address": "0x140010630", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140010635", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], r9" + "operands": "qword ptr [rsp + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14001063a", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001063b", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001063f", "size": 3, "mnemonic": "mov", - "operands": "rbx, r9" + "operands": "rbx, r9", + "stack_offset": 0 }, { "address": "0x140010642", "size": 3, "mnemonic": "mov", - "operands": "rdi, r8" + "operands": "rdi, r8", + "stack_offset": 0 }, { "address": "0x140010645", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rdx]" + "operands": "ecx, dword ptr [rdx]", + "stack_offset": 0 }, { "address": "0x140010647", "size": 5, "mnemonic": "call", - "operands": "0x14000ca20" + "operands": "0x14000ca20", + "stack_offset": 0 }, { "address": "0x14001064c", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001064d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140010650", "size": 5, "mnemonic": "call", - "operands": "0x14001081c" + "operands": "0x14001081c", + "stack_offset": 0 }, { "address": "0x140010655", "size": 2, "mnemonic": "mov", - "operands": "edi, eax" + "operands": "edi, eax", + "stack_offset": 0 }, { "address": "0x140010657", "size": 2, "mnemonic": "mov", - "operands": "ecx, dword ptr [rbx]" + "operands": "ecx, dword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140010659", "size": 5, "mnemonic": "call", - "operands": "0x14000ca74" + "operands": "0x14000ca74", + "stack_offset": 0 }, { "address": "0x14001065e", "size": 2, "mnemonic": "mov", - "operands": "eax, edi" + "operands": "eax, edi", + "stack_offset": 0 }, { "address": "0x140010660", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140010665", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140010669", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001066a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -147298,43 +165932,50 @@ "address": "0x1400018b0", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1eb89]" + "operands": "rax, [rip + 0x1eb89]", + "stack_offset": 0 }, { "address": "0x1400018b7", "size": 8, "mnemonic": "mov", - "operands": "qword ptr [rcx + 0x10], 0" + "operands": "qword ptr [rcx + 0x10], 0", + "stack_offset": 0 }, { "address": "0x1400018bf", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rcx + 8], rax" + "operands": "qword ptr [rcx + 8], rax", + "stack_offset": 0 }, { "address": "0x1400018c3", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1eb66]" + "operands": "rax, [rip + 0x1eb66]", + "stack_offset": 0 }, { "address": "0x1400018ca", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rcx], rax" + "operands": "qword ptr [rcx], rax", + "stack_offset": 0 }, { "address": "0x1400018cd", "size": 3, "mnemonic": "mov", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x1400018d0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -147356,127 +165997,148 @@ "address": "0x14000cda8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rdx" + "operands": "qword ptr [rsp + 0x10], rdx", + "stack_offset": 0 }, { "address": "0x14000cdad", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 8], ecx" + "operands": "dword ptr [rsp + 8], ecx", + "stack_offset": 0 }, { "address": "0x14000cdb1", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000cdb2", "size": 3, "mnemonic": "mov", - "operands": "rbp, rsp" + "operands": "rbp, rsp", + "stack_offset": 0 }, { "address": "0x14000cdb5", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000cdb9", "size": 5, "mnemonic": "call", - "operands": "0x140012358" + "operands": "0x140012358", + "stack_offset": 0 }, { "address": "0x14000cdbe", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x10]" + "operands": "rax, [rbp + 0x10]", + "stack_offset": 0 }, { "address": "0x14000cdc2", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x18], rax" + "operands": "qword ptr [rbp - 0x18], rax", + "stack_offset": 0 }, { "address": "0x14000cdc6", "size": 4, "mnemonic": "lea", - "operands": "r9, [rbp + 0x28]" + "operands": "r9, [rbp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000cdca", "size": 4, "mnemonic": "lea", - "operands": "rax, [rbp + 0x18]" + "operands": "rax, [rbp + 0x18]", + "stack_offset": 0 }, { "address": "0x14000cdce", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [rbp - 0x10], rax" + "operands": "qword ptr [rbp - 0x10], rax", + "stack_offset": 0 }, { "address": "0x14000cdd2", "size": 4, "mnemonic": "lea", - "operands": "r8, [rbp - 0x18]" + "operands": "r8, [rbp - 0x18]", + "stack_offset": 0 }, { "address": "0x14000cdd6", "size": 5, "mnemonic": "mov", - "operands": "eax, 4" + "operands": "eax, 4", + "stack_offset": 0 }, { "address": "0x14000cddb", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbp - 0x20]" + "operands": "rdx, [rbp - 0x20]", + "stack_offset": 0 }, { "address": "0x14000cddf", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbp + 0x20]" + "operands": "rcx, [rbp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000cde3", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp + 0x28], eax" + "operands": "dword ptr [rbp + 0x28], eax", + "stack_offset": 0 }, { "address": "0x14000cde6", "size": 3, "mnemonic": "mov", - "operands": "dword ptr [rbp - 0x20], eax" + "operands": "dword ptr [rbp - 0x20], eax", + "stack_offset": 0 }, { "address": "0x14000cde9", "size": 5, "mnemonic": "call", - "operands": "0x14000cac8" + "operands": "0x14000cac8", + "stack_offset": 0 }, { "address": "0x14000cdee", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x40" + "operands": "rsp, 0x40", + "stack_offset": 0 }, { "address": "0x14000cdf2", "size": 1, "mnemonic": "pop", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000cdf3", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -147498,115 +166160,134 @@ "address": "0x140002344", "size": 2, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140002346", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000234a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000234d", "size": 5, "mnemonic": "mov", - "operands": "byte ptr [rsp + 0x28], 1" + "operands": "byte ptr [rsp + 0x28], 1", + "stack_offset": 0 }, { "address": "0x140002352", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x140002355", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rip + 0x1e08c]" + "operands": "rcx, [rip + 0x1e08c]", + "stack_offset": 0 }, { "address": "0x14000235c", "size": 3, "mnemonic": "xorps", - "operands": "xmm0, xmm0" + "operands": "xmm0, xmm0", + "stack_offset": 0 }, { "address": "0x14000235f", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x20], rax" + "operands": "qword ptr [rsp + 0x20], rax", + "stack_offset": 0 }, { "address": "0x140002364", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rcx" + "operands": "qword ptr [rbx], rcx", + "stack_offset": 0 }, { "address": "0x140002367", "size": 4, "mnemonic": "lea", - "operands": "rdx, [rbx + 8]" + "operands": "rdx, [rbx + 8]", + "stack_offset": 0 }, { "address": "0x14000236b", "size": 5, "mnemonic": "lea", - "operands": "rcx, [rsp + 0x20]" + "operands": "rcx, [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x140002370", "size": 3, "mnemonic": "movups", - "operands": "xmmword ptr [rdx], xmm0" + "operands": "xmmword ptr [rdx], xmm0", + "stack_offset": 0 }, { "address": "0x140002373", "size": 5, "mnemonic": "call", - "operands": "0x1400060f0" + "operands": "0x1400060f0", + "stack_offset": 0 }, { "address": "0x140002378", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0x1e0f1]" + "operands": "rax, [rip + 0x1e0f1]", + "stack_offset": 0 }, { "address": "0x14000237f", "size": 3, "mnemonic": "mov", - "operands": "qword ptr [rbx], rax" + "operands": "qword ptr [rbx], rax", + "stack_offset": 0 }, { "address": "0x140002382", "size": 3, "mnemonic": "mov", - "operands": "rax, rbx" + "operands": "rax, rbx", + "stack_offset": 0 }, { "address": "0x140002385", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x140002389", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14000238a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -147634,37 +166315,43 @@ "address": "0x14001a95c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001a961", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a962", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a966", "size": 3, "mnemonic": "mov", - "operands": "rdi, rdx" + "operands": "rdi, rdx", + "stack_offset": 0 }, { "address": "0x14001a969", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x14001a96c", "size": 2, "mnemonic": "je", - "operands": "0x14001a9b4" + "operands": "0x14001a9b4", + "stack_offset": 0 } ], "successors": [ @@ -147682,31 +166369,36 @@ "address": "0x14001a9b4", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001a9b6", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a9bb", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a9bf", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a9c0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -147722,13 +166414,15 @@ "address": "0x14001a96e", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a971", "size": 2, "mnemonic": "je", - "operands": "0x14001a9b4" + "operands": "0x14001a9b4", + "stack_offset": 0 } ], "successors": [ @@ -147746,31 +166440,36 @@ "address": "0x14001a973", "size": 3, "mnemonic": "mov", - "operands": "rbx, qword ptr [rcx]" + "operands": "rbx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x14001a976", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14001a979", "size": 2, "mnemonic": "jne", - "operands": "0x14001a980" + "operands": "0x14001a980", + "stack_offset": 0 }, { "address": "0x14001a97b", "size": 3, "mnemonic": "mov", - "operands": "rax, rdi" + "operands": "rax, rdi", + "stack_offset": 0 }, { "address": "0x14001a97e", "size": 2, "mnemonic": "jmp", - "operands": "0x14001a9b6" + "operands": "0x14001a9b6", + "stack_offset": 0 } ], "successors": [ @@ -147787,25 +166486,29 @@ "address": "0x14001a9b6", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a9bb", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a9bf", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001a9c0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -147827,7 +166530,8 @@ "address": "0x140011fe8", "size": 7, "mnemonic": "jmp", - "operands": "qword ptr [rip + 0xe1b1]" + "operands": "qword ptr [rip + 0xe1b1]", + "stack_offset": 0 } ], "successors": [ @@ -147860,61 +166564,71 @@ "address": "0x140016930", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140016935", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140016936", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001693a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rdx" + "operands": "rbx, rdx", + "stack_offset": 0 }, { "address": "0x14001693d", "size": 3, "mnemonic": "mov", - "operands": "rdi, rcx" + "operands": "rdi, rcx", + "stack_offset": 0 }, { "address": "0x140016940", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140016943", "size": 2, "mnemonic": "jne", - "operands": "0x14001694f" + "operands": "0x14001694f", + "stack_offset": 0 }, { "address": "0x140016945", "size": 3, "mnemonic": "mov", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x140016948", "size": 5, "mnemonic": "call", - "operands": "0x140015200" + "operands": "0x140015200", + "stack_offset": 0 }, { "address": "0x14001694d", "size": 2, "mnemonic": "jmp", - "operands": "0x14001696e" + "operands": "0x14001696e", + "stack_offset": 0 } ], "successors": [ @@ -147931,25 +166645,29 @@ "address": "0x14001696e", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140016973", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140016977", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140016978", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -147971,55 +166689,64 @@ "address": "0x14001d6d0", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001d6d4", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001d6d7", "size": 2, "mnemonic": "jne", - "operands": "0x14001d6f2" + "operands": "0x14001d6f2", + "stack_offset": 0 }, { "address": "0x14001d6d9", "size": 5, "mnemonic": "call", - "operands": "0x14000d878" + "operands": "0x14000d878", + "stack_offset": 0 }, { "address": "0x14001d6de", "size": 6, "mnemonic": "mov", - "operands": "dword ptr [rax], 0x16" + "operands": "dword ptr [rax], 0x16", + "stack_offset": 0 }, { "address": "0x14001d6e4", "size": 5, "mnemonic": "call", - "operands": "0x14000afb4" + "operands": "0x14000afb4", + "stack_offset": 0 }, { "address": "0x14001d6e9", "size": 4, "mnemonic": "or", - "operands": "rax, 0xffffffffffffffff" + "operands": "rax, 0xffffffffffffffff", + "stack_offset": 0 }, { "address": "0x14001d6ed", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x28" + "operands": "rsp, 0x28", + "stack_offset": 0 }, { "address": "0x14001d6f1", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -148041,13 +166768,15 @@ "address": "0x14001a81c", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a81f", "size": 2, "mnemonic": "je", - "operands": "0x14001a83b" + "operands": "0x14001a83b", + "stack_offset": 0 } ], "successors": [ @@ -148065,13 +166794,15 @@ "address": "0x14001a83b", "size": 5, "mnemonic": "mov", - "operands": "eax, 0x7fffffff" + "operands": "eax, 0x7fffffff", + "stack_offset": 0 }, { "address": "0x14001a840", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -148087,19 +166818,22 @@ "address": "0x14001a821", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0xb3f8]" + "operands": "rax, [rip + 0xb3f8]", + "stack_offset": 0 }, { "address": "0x14001a828", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14001a82b", "size": 2, "mnemonic": "je", - "operands": "0x14001a83b" + "operands": "0x14001a83b", + "stack_offset": 0 } ], "successors": [ @@ -148117,25 +166851,29 @@ "address": "0x14001a82d", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14001a830", "size": 8, "mnemonic": "lock xadd", - "operands": "dword ptr [rcx + 0x15c], eax" + "operands": "dword ptr [rcx + 0x15c], eax", + "stack_offset": 0 }, { "address": "0x14001a838", "size": 2, "mnemonic": "dec", - "operands": "eax" + "operands": "eax", + "stack_offset": 0 }, { "address": "0x14001a83a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -148157,13 +166895,15 @@ "address": "0x14001a7e4", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a7e7", "size": 2, "mnemonic": "je", - "operands": "0x14001a81a" + "operands": "0x14001a81a", + "stack_offset": 0 } ], "successors": [ @@ -148181,7 +166921,8 @@ "address": "0x14001a81a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -148197,37 +166938,43 @@ "address": "0x14001a7e9", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001a7ea", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a7ee", "size": 7, "mnemonic": "lea", - "operands": "rax, [rip + 0xb42b]" + "operands": "rax, [rip + 0xb42b]", + "stack_offset": 0 }, { "address": "0x14001a7f5", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001a7f8", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rax" + "operands": "rcx, rax", + "stack_offset": 0 }, { "address": "0x14001a7fb", "size": 2, "mnemonic": "je", - "operands": "0x14001a815" + "operands": "0x14001a815", + "stack_offset": 0 } ], "successors": [ @@ -148245,19 +166992,22 @@ "address": "0x14001a815", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a819", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001a81a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -148273,61 +167023,71 @@ "address": "0x14001a7fd", "size": 6, "mnemonic": "mov", - "operands": "eax, dword ptr [rcx + 0x15c]" + "operands": "eax, dword ptr [rcx + 0x15c]", + "stack_offset": 0 }, { "address": "0x14001a803", "size": 1, "mnemonic": "nop", - "operands": "" + "operands": "", + "stack_offset": 0 }, { "address": "0x14001a804", "size": 2, "mnemonic": "test", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001a806", "size": 2, "mnemonic": "jne", - "operands": "0x14001a815" + "operands": "0x14001a815", + "stack_offset": 0 }, { "address": "0x14001a808", "size": 5, "mnemonic": "call", - "operands": "0x14001a21c" + "operands": "0x14001a21c", + "stack_offset": 0 }, { "address": "0x14001a80d", "size": 3, "mnemonic": "mov", - "operands": "rcx, rbx" + "operands": "rcx, rbx", + "stack_offset": 0 }, { "address": "0x14001a810", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a815", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a819", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x14001a81a", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -148349,13 +167109,15 @@ "address": "0x14001952c", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001952f", "size": 6, "mnemonic": "je", - "operands": "0x140019635" + "operands": "0x140019635", + "stack_offset": 0 } ], "successors": [ @@ -148373,7 +167135,8 @@ "address": "0x140019635", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -148389,37 +167152,43 @@ "address": "0x140019535", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140019536", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001953a", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001953d", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx + 0x18]" + "operands": "rcx, qword ptr [rcx + 0x18]", + "stack_offset": 0 }, { "address": "0x140019541", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17cd0]" + "operands": "rcx, qword ptr [rip + 0x17cd0]", + "stack_offset": 0 }, { "address": "0x140019548", "size": 2, "mnemonic": "je", - "operands": "0x14001954f" + "operands": "0x14001954f", + "stack_offset": 0 } ], "successors": [ @@ -148437,19 +167206,22 @@ "address": "0x14001954f", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x20]" + "operands": "rcx, qword ptr [rbx + 0x20]", + "stack_offset": 0 }, { "address": "0x140019553", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17cc6]" + "operands": "rcx, qword ptr [rip + 0x17cc6]", + "stack_offset": 0 }, { "address": "0x14001955a", "size": 2, "mnemonic": "je", - "operands": "0x140019561" + "operands": "0x140019561", + "stack_offset": 0 } ], "successors": [ @@ -148467,25 +167239,29 @@ "address": "0x14001954a", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001954f", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x20]" + "operands": "rcx, qword ptr [rbx + 0x20]", + "stack_offset": 0 }, { "address": "0x140019553", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17cc6]" + "operands": "rcx, qword ptr [rip + 0x17cc6]", + "stack_offset": 0 }, { "address": "0x14001955a", "size": 2, "mnemonic": "je", - "operands": "0x140019561" + "operands": "0x140019561", + "stack_offset": 0 } ], "successors": [ @@ -148503,19 +167279,22 @@ "address": "0x140019561", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x28]" + "operands": "rcx, qword ptr [rbx + 0x28]", + "stack_offset": 0 }, { "address": "0x140019565", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17cbc]" + "operands": "rcx, qword ptr [rip + 0x17cbc]", + "stack_offset": 0 }, { "address": "0x14001956c", "size": 2, "mnemonic": "je", - "operands": "0x140019573" + "operands": "0x140019573", + "stack_offset": 0 } ], "successors": [ @@ -148533,25 +167312,29 @@ "address": "0x14001955c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019561", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x28]" + "operands": "rcx, qword ptr [rbx + 0x28]", + "stack_offset": 0 }, { "address": "0x140019565", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17cbc]" + "operands": "rcx, qword ptr [rip + 0x17cbc]", + "stack_offset": 0 }, { "address": "0x14001956c", "size": 2, "mnemonic": "je", - "operands": "0x140019573" + "operands": "0x140019573", + "stack_offset": 0 } ], "successors": [ @@ -148569,19 +167352,22 @@ "address": "0x140019573", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x30]" + "operands": "rcx, qword ptr [rbx + 0x30]", + "stack_offset": 0 }, { "address": "0x140019577", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17cb2]" + "operands": "rcx, qword ptr [rip + 0x17cb2]", + "stack_offset": 0 }, { "address": "0x14001957e", "size": 2, "mnemonic": "je", - "operands": "0x140019585" + "operands": "0x140019585", + "stack_offset": 0 } ], "successors": [ @@ -148599,25 +167385,29 @@ "address": "0x14001956e", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019573", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x30]" + "operands": "rcx, qword ptr [rbx + 0x30]", + "stack_offset": 0 }, { "address": "0x140019577", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17cb2]" + "operands": "rcx, qword ptr [rip + 0x17cb2]", + "stack_offset": 0 }, { "address": "0x14001957e", "size": 2, "mnemonic": "je", - "operands": "0x140019585" + "operands": "0x140019585", + "stack_offset": 0 } ], "successors": [ @@ -148635,19 +167425,22 @@ "address": "0x140019585", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x38]" + "operands": "rcx, qword ptr [rbx + 0x38]", + "stack_offset": 0 }, { "address": "0x140019589", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17ca8]" + "operands": "rcx, qword ptr [rip + 0x17ca8]", + "stack_offset": 0 }, { "address": "0x140019590", "size": 2, "mnemonic": "je", - "operands": "0x140019597" + "operands": "0x140019597", + "stack_offset": 0 } ], "successors": [ @@ -148665,25 +167458,29 @@ "address": "0x140019580", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019585", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x38]" + "operands": "rcx, qword ptr [rbx + 0x38]", + "stack_offset": 0 }, { "address": "0x140019589", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17ca8]" + "operands": "rcx, qword ptr [rip + 0x17ca8]", + "stack_offset": 0 }, { "address": "0x140019590", "size": 2, "mnemonic": "je", - "operands": "0x140019597" + "operands": "0x140019597", + "stack_offset": 0 } ], "successors": [ @@ -148701,19 +167498,22 @@ "address": "0x140019597", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x40]" + "operands": "rcx, qword ptr [rbx + 0x40]", + "stack_offset": 0 }, { "address": "0x14001959b", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c9e]" + "operands": "rcx, qword ptr [rip + 0x17c9e]", + "stack_offset": 0 }, { "address": "0x1400195a2", "size": 2, "mnemonic": "je", - "operands": "0x1400195a9" + "operands": "0x1400195a9", + "stack_offset": 0 } ], "successors": [ @@ -148731,25 +167531,29 @@ "address": "0x140019592", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019597", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x40]" + "operands": "rcx, qword ptr [rbx + 0x40]", + "stack_offset": 0 }, { "address": "0x14001959b", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c9e]" + "operands": "rcx, qword ptr [rip + 0x17c9e]", + "stack_offset": 0 }, { "address": "0x1400195a2", "size": 2, "mnemonic": "je", - "operands": "0x1400195a9" + "operands": "0x1400195a9", + "stack_offset": 0 } ], "successors": [ @@ -148767,19 +167571,22 @@ "address": "0x1400195a9", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x48]" + "operands": "rcx, qword ptr [rbx + 0x48]", + "stack_offset": 0 }, { "address": "0x1400195ad", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c94]" + "operands": "rcx, qword ptr [rip + 0x17c94]", + "stack_offset": 0 }, { "address": "0x1400195b4", "size": 2, "mnemonic": "je", - "operands": "0x1400195bb" + "operands": "0x1400195bb", + "stack_offset": 0 } ], "successors": [ @@ -148797,25 +167604,29 @@ "address": "0x1400195a4", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x1400195a9", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x48]" + "operands": "rcx, qword ptr [rbx + 0x48]", + "stack_offset": 0 }, { "address": "0x1400195ad", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c94]" + "operands": "rcx, qword ptr [rip + 0x17c94]", + "stack_offset": 0 }, { "address": "0x1400195b4", "size": 2, "mnemonic": "je", - "operands": "0x1400195bb" + "operands": "0x1400195bb", + "stack_offset": 0 } ], "successors": [ @@ -148833,19 +167644,22 @@ "address": "0x1400195bb", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x68]" + "operands": "rcx, qword ptr [rbx + 0x68]", + "stack_offset": 0 }, { "address": "0x1400195bf", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17ca2]" + "operands": "rcx, qword ptr [rip + 0x17ca2]", + "stack_offset": 0 }, { "address": "0x1400195c6", "size": 2, "mnemonic": "je", - "operands": "0x1400195cd" + "operands": "0x1400195cd", + "stack_offset": 0 } ], "successors": [ @@ -148863,25 +167677,29 @@ "address": "0x1400195b6", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x1400195bb", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x68]" + "operands": "rcx, qword ptr [rbx + 0x68]", + "stack_offset": 0 }, { "address": "0x1400195bf", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17ca2]" + "operands": "rcx, qword ptr [rip + 0x17ca2]", + "stack_offset": 0 }, { "address": "0x1400195c6", "size": 2, "mnemonic": "je", - "operands": "0x1400195cd" + "operands": "0x1400195cd", + "stack_offset": 0 } ], "successors": [ @@ -148899,19 +167717,22 @@ "address": "0x1400195cd", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x70]" + "operands": "rcx, qword ptr [rbx + 0x70]", + "stack_offset": 0 }, { "address": "0x1400195d1", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c98]" + "operands": "rcx, qword ptr [rip + 0x17c98]", + "stack_offset": 0 }, { "address": "0x1400195d8", "size": 2, "mnemonic": "je", - "operands": "0x1400195df" + "operands": "0x1400195df", + "stack_offset": 0 } ], "successors": [ @@ -148929,25 +167750,29 @@ "address": "0x1400195c8", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x1400195cd", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x70]" + "operands": "rcx, qword ptr [rbx + 0x70]", + "stack_offset": 0 }, { "address": "0x1400195d1", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c98]" + "operands": "rcx, qword ptr [rip + 0x17c98]", + "stack_offset": 0 }, { "address": "0x1400195d8", "size": 2, "mnemonic": "je", - "operands": "0x1400195df" + "operands": "0x1400195df", + "stack_offset": 0 } ], "successors": [ @@ -148965,19 +167790,22 @@ "address": "0x1400195df", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x78]" + "operands": "rcx, qword ptr [rbx + 0x78]", + "stack_offset": 0 }, { "address": "0x1400195e3", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c8e]" + "operands": "rcx, qword ptr [rip + 0x17c8e]", + "stack_offset": 0 }, { "address": "0x1400195ea", "size": 2, "mnemonic": "je", - "operands": "0x1400195f1" + "operands": "0x1400195f1", + "stack_offset": 0 } ], "successors": [ @@ -148995,25 +167823,29 @@ "address": "0x1400195da", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x1400195df", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x78]" + "operands": "rcx, qword ptr [rbx + 0x78]", + "stack_offset": 0 }, { "address": "0x1400195e3", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c8e]" + "operands": "rcx, qword ptr [rip + 0x17c8e]", + "stack_offset": 0 }, { "address": "0x1400195ea", "size": 2, "mnemonic": "je", - "operands": "0x1400195f1" + "operands": "0x1400195f1", + "stack_offset": 0 } ], "successors": [ @@ -149031,19 +167863,22 @@ "address": "0x1400195f1", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x80]" + "operands": "rcx, qword ptr [rbx + 0x80]", + "stack_offset": 0 }, { "address": "0x1400195f8", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c81]" + "operands": "rcx, qword ptr [rip + 0x17c81]", + "stack_offset": 0 }, { "address": "0x1400195ff", "size": 2, "mnemonic": "je", - "operands": "0x140019606" + "operands": "0x140019606", + "stack_offset": 0 } ], "successors": [ @@ -149061,25 +167896,29 @@ "address": "0x1400195ec", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x1400195f1", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x80]" + "operands": "rcx, qword ptr [rbx + 0x80]", + "stack_offset": 0 }, { "address": "0x1400195f8", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c81]" + "operands": "rcx, qword ptr [rip + 0x17c81]", + "stack_offset": 0 }, { "address": "0x1400195ff", "size": 2, "mnemonic": "je", - "operands": "0x140019606" + "operands": "0x140019606", + "stack_offset": 0 } ], "successors": [ @@ -149097,19 +167936,22 @@ "address": "0x140019606", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x88]" + "operands": "rcx, qword ptr [rbx + 0x88]", + "stack_offset": 0 }, { "address": "0x14001960d", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c74]" + "operands": "rcx, qword ptr [rip + 0x17c74]", + "stack_offset": 0 }, { "address": "0x140019614", "size": 2, "mnemonic": "je", - "operands": "0x14001961b" + "operands": "0x14001961b", + "stack_offset": 0 } ], "successors": [ @@ -149127,25 +167969,29 @@ "address": "0x140019601", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019606", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x88]" + "operands": "rcx, qword ptr [rbx + 0x88]", + "stack_offset": 0 }, { "address": "0x14001960d", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c74]" + "operands": "rcx, qword ptr [rip + 0x17c74]", + "stack_offset": 0 }, { "address": "0x140019614", "size": 2, "mnemonic": "je", - "operands": "0x14001961b" + "operands": "0x14001961b", + "stack_offset": 0 } ], "successors": [ @@ -149163,19 +168009,22 @@ "address": "0x14001961b", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x90]" + "operands": "rcx, qword ptr [rbx + 0x90]", + "stack_offset": 0 }, { "address": "0x140019622", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c67]" + "operands": "rcx, qword ptr [rip + 0x17c67]", + "stack_offset": 0 }, { "address": "0x140019629", "size": 2, "mnemonic": "je", - "operands": "0x140019630" + "operands": "0x140019630", + "stack_offset": 0 } ], "successors": [ @@ -149193,25 +168042,29 @@ "address": "0x140019616", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001961b", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x90]" + "operands": "rcx, qword ptr [rbx + 0x90]", + "stack_offset": 0 }, { "address": "0x140019622", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17c67]" + "operands": "rcx, qword ptr [rip + 0x17c67]", + "stack_offset": 0 }, { "address": "0x140019629", "size": 2, "mnemonic": "je", - "operands": "0x140019630" + "operands": "0x140019630", + "stack_offset": 0 } ], "successors": [ @@ -149229,19 +168082,22 @@ "address": "0x140019630", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140019634", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140019635", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -149257,25 +168113,29 @@ "address": "0x14001962b", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019630", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140019634", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140019635", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -149297,13 +168157,15 @@ "address": "0x140019b54", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x140019b57", "size": 2, "mnemonic": "je", - "operands": "0x140019bbf" + "operands": "0x140019bbf", + "stack_offset": 0 } ], "successors": [ @@ -149321,7 +168183,8 @@ "address": "0x140019bbf", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -149337,37 +168200,43 @@ "address": "0x140019b59", "size": 1, "mnemonic": "push", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140019b5a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140019b5e", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140019b61", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rcx]" + "operands": "rcx, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140019b64", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17695]" + "operands": "rcx, qword ptr [rip + 0x17695]", + "stack_offset": 0 }, { "address": "0x140019b6b", "size": 2, "mnemonic": "je", - "operands": "0x140019b72" + "operands": "0x140019b72", + "stack_offset": 0 } ], "successors": [ @@ -149385,19 +168254,22 @@ "address": "0x140019b72", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 8]" + "operands": "rcx, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140019b76", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x1768b]" + "operands": "rcx, qword ptr [rip + 0x1768b]", + "stack_offset": 0 }, { "address": "0x140019b7d", "size": 2, "mnemonic": "je", - "operands": "0x140019b84" + "operands": "0x140019b84", + "stack_offset": 0 } ], "successors": [ @@ -149415,25 +168287,29 @@ "address": "0x140019b6d", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019b72", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 8]" + "operands": "rcx, qword ptr [rbx + 8]", + "stack_offset": 0 }, { "address": "0x140019b76", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x1768b]" + "operands": "rcx, qword ptr [rip + 0x1768b]", + "stack_offset": 0 }, { "address": "0x140019b7d", "size": 2, "mnemonic": "je", - "operands": "0x140019b84" + "operands": "0x140019b84", + "stack_offset": 0 } ], "successors": [ @@ -149451,19 +168327,22 @@ "address": "0x140019b84", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x10]" + "operands": "rcx, qword ptr [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x140019b88", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17681]" + "operands": "rcx, qword ptr [rip + 0x17681]", + "stack_offset": 0 }, { "address": "0x140019b8f", "size": 2, "mnemonic": "je", - "operands": "0x140019b96" + "operands": "0x140019b96", + "stack_offset": 0 } ], "successors": [ @@ -149481,25 +168360,29 @@ "address": "0x140019b7f", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019b84", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x10]" + "operands": "rcx, qword ptr [rbx + 0x10]", + "stack_offset": 0 }, { "address": "0x140019b88", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x17681]" + "operands": "rcx, qword ptr [rip + 0x17681]", + "stack_offset": 0 }, { "address": "0x140019b8f", "size": 2, "mnemonic": "je", - "operands": "0x140019b96" + "operands": "0x140019b96", + "stack_offset": 0 } ], "successors": [ @@ -149517,19 +168400,22 @@ "address": "0x140019b96", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x58]" + "operands": "rcx, qword ptr [rbx + 0x58]", + "stack_offset": 0 }, { "address": "0x140019b9a", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x176b7]" + "operands": "rcx, qword ptr [rip + 0x176b7]", + "stack_offset": 0 }, { "address": "0x140019ba1", "size": 2, "mnemonic": "je", - "operands": "0x140019ba8" + "operands": "0x140019ba8", + "stack_offset": 0 } ], "successors": [ @@ -149547,25 +168433,29 @@ "address": "0x140019b91", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019b96", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x58]" + "operands": "rcx, qword ptr [rbx + 0x58]", + "stack_offset": 0 }, { "address": "0x140019b9a", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x176b7]" + "operands": "rcx, qword ptr [rip + 0x176b7]", + "stack_offset": 0 }, { "address": "0x140019ba1", "size": 2, "mnemonic": "je", - "operands": "0x140019ba8" + "operands": "0x140019ba8", + "stack_offset": 0 } ], "successors": [ @@ -149583,19 +168473,22 @@ "address": "0x140019ba8", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x60]" + "operands": "rcx, qword ptr [rbx + 0x60]", + "stack_offset": 0 }, { "address": "0x140019bac", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x176ad]" + "operands": "rcx, qword ptr [rip + 0x176ad]", + "stack_offset": 0 }, { "address": "0x140019bb3", "size": 2, "mnemonic": "je", - "operands": "0x140019bba" + "operands": "0x140019bba", + "stack_offset": 0 } ], "successors": [ @@ -149613,25 +168506,29 @@ "address": "0x140019ba3", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019ba8", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x60]" + "operands": "rcx, qword ptr [rbx + 0x60]", + "stack_offset": 0 }, { "address": "0x140019bac", "size": 7, "mnemonic": "cmp", - "operands": "rcx, qword ptr [rip + 0x176ad]" + "operands": "rcx, qword ptr [rip + 0x176ad]", + "stack_offset": 0 }, { "address": "0x140019bb3", "size": 2, "mnemonic": "je", - "operands": "0x140019bba" + "operands": "0x140019bba", + "stack_offset": 0 } ], "successors": [ @@ -149649,19 +168546,22 @@ "address": "0x140019bba", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140019bbe", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140019bbf", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -149677,25 +168577,29 @@ "address": "0x140019bb5", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019bba", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140019bbe", "size": 1, "mnemonic": "pop", - "operands": "rbx" + "operands": "rbx", + "stack_offset": 0 }, { "address": "0x140019bbf", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -149717,43 +168621,50 @@ "address": "0x14001d410", "size": 3, "mnemonic": "mov", - "operands": "r9, r8" + "operands": "r9, r8", + "stack_offset": 0 }, { "address": "0x14001d413", "size": 3, "mnemonic": "mov", - "operands": "r11, rdx" + "operands": "r11, rdx", + "stack_offset": 0 }, { "address": "0x14001d416", "size": 3, "mnemonic": "mov", - "operands": "r10, rcx" + "operands": "r10, rcx", + "stack_offset": 0 }, { "address": "0x14001d419", "size": 3, "mnemonic": "test", - "operands": "r8, r8" + "operands": "r8, r8", + "stack_offset": 0 }, { "address": "0x14001d41c", "size": 2, "mnemonic": "jne", - "operands": "0x14001d430" + "operands": "0x14001d430", + "stack_offset": 0 }, { "address": "0x14001d41e", "size": 2, "mnemonic": "xor", - "operands": "eax, eax" + "operands": "eax, eax", + "stack_offset": 0 }, { "address": "0x14001d420", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -149775,31 +168686,36 @@ "address": "0x14000a6d0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rcx" + "operands": "qword ptr [rsp + 8], rcx", + "stack_offset": 0 }, { "address": "0x14000a6d5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rdx" + "operands": "qword ptr [rsp + 0x18], rdx", + "stack_offset": 0 }, { "address": "0x14000a6da", "size": 5, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x10], r8d" + "operands": "dword ptr [rsp + 0x10], r8d", + "stack_offset": 0 }, { "address": "0x14000a6df", "size": 7, "mnemonic": "mov", - "operands": "r9, 0x19930520" + "operands": "r9, 0x19930520", + "stack_offset": 0 }, { "address": "0x14000a6e6", "size": 5, "mnemonic": "jmp", - "operands": "0x14000a6f0" + "operands": "0x14000a6f0", + "stack_offset": 0 } ], "successors": [ @@ -149816,7 +168732,8 @@ "address": "0x14000a6f0", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -149838,7 +168755,8 @@ "address": "0x14000a700", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -149860,211 +168778,246 @@ "address": "0x14000a520", "size": 3, "mnemonic": "mov", - "operands": "r11, rsp" + "operands": "r11, rsp", + "stack_offset": 0 }, { "address": "0x14000a523", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 0x18], rbx" + "operands": "qword ptr [r11 + 0x18], rbx", + "stack_offset": 0 }, { "address": "0x14000a527", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 0x20], r9" + "operands": "qword ptr [r11 + 0x20], r9", + "stack_offset": 0 }, { "address": "0x14000a52b", "size": 4, "mnemonic": "mov", - "operands": "dword ptr [rsp + 0x10], edx" + "operands": "dword ptr [rsp + 0x10], edx", + "stack_offset": 0 }, { "address": "0x14000a52f", "size": 1, "mnemonic": "push", - "operands": "rbp" + "operands": "rbp", + "stack_offset": 0 }, { "address": "0x14000a530", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14000a531", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a532", "size": 2, "mnemonic": "push", - "operands": "r12" + "operands": "r12", + "stack_offset": 0 }, { "address": "0x14000a534", "size": 2, "mnemonic": "push", - "operands": "r13" + "operands": "r13", + "stack_offset": 0 }, { "address": "0x14000a536", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14000a538", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14000a53a", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14000a53e", "size": 4, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx + 8]" + "operands": "rax, qword ptr [rcx + 8]", + "stack_offset": 0 }, { "address": "0x14000a542", "size": 3, "mnemonic": "xor", - "operands": "bpl, bpl" + "operands": "bpl, bpl", + "stack_offset": 0 }, { "address": "0x14000a545", "size": 3, "mnemonic": "xor", - "operands": "r14b, r14b" + "operands": "r14b, r14b", + "stack_offset": 0 }, { "address": "0x14000a548", "size": 4, "mnemonic": "mov", - "operands": "qword ptr [r11 + 8], rax" + "operands": "qword ptr [r11 + 8], rax", + "stack_offset": 0 }, { "address": "0x14000a54c", "size": 2, "mnemonic": "xor", - "operands": "edi, edi" + "operands": "edi, edi", + "stack_offset": 0 }, { "address": "0x14000a54e", "size": 3, "mnemonic": "mov", - "operands": "r12, r9" + "operands": "r12, r9", + "stack_offset": 0 }, { "address": "0x14000a551", "size": 3, "mnemonic": "mov", - "operands": "r13d, r8d" + "operands": "r13d, r8d", + "stack_offset": 0 }, { "address": "0x14000a554", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14000a557", "size": 4, "mnemonic": "lea", - "operands": "rsi, [rax - 1]" + "operands": "rsi, [rax - 1]", + "stack_offset": 0 }, { "address": "0x14000a55b", "size": 3, "mnemonic": "mov", - "operands": "r15, rsi" + "operands": "r15, rsi", + "stack_offset": 0 }, { "address": "0x14000a55e", "size": 2, "mnemonic": "cmp", - "operands": "dword ptr [rcx], edi" + "operands": "dword ptr [rcx], edi", + "stack_offset": 0 }, { "address": "0x14000a560", "size": 2, "mnemonic": "jle", - "operands": "0x14000a5a5" + "operands": "0x14000a5a5", + "stack_offset": 0 }, { "address": "0x14000a562", "size": 4, "mnemonic": "mov", - "operands": "r12d, dword ptr [r11 + 0x10]" + "operands": "r12d, dword ptr [r11 + 0x10]", + "stack_offset": 0 }, { "address": "0x14000a566", "size": 3, "mnemonic": "cmp", - "operands": "edi, r12d" + "operands": "edi, r12d", + "stack_offset": 0 }, { "address": "0x14000a569", "size": 2, "mnemonic": "jne", - "operands": "0x14000a571" + "operands": "0x14000a571", + "stack_offset": 0 }, { "address": "0x14000a56b", "size": 3, "mnemonic": "mov", - "operands": "rsi, rax" + "operands": "rsi, rax", + "stack_offset": 0 }, { "address": "0x14000a56e", "size": 3, "mnemonic": "mov", - "operands": "bpl, 1" + "operands": "bpl, 1", + "stack_offset": 0 }, { "address": "0x14000a571", "size": 3, "mnemonic": "cmp", - "operands": "edi, r13d" + "operands": "edi, r13d", + "stack_offset": 0 }, { "address": "0x14000a574", "size": 2, "mnemonic": "jne", - "operands": "0x14000a57c" + "operands": "0x14000a57c", + "stack_offset": 0 }, { "address": "0x14000a576", "size": 3, "mnemonic": "mov", - "operands": "r15, rax" + "operands": "r15, rax", + "stack_offset": 0 }, { "address": "0x14000a579", "size": 3, "mnemonic": "mov", - "operands": "r14b, 1" + "operands": "r14b, 1", + "stack_offset": 0 }, { "address": "0x14000a57c", "size": 3, "mnemonic": "test", - "operands": "bpl, bpl" + "operands": "bpl, bpl", + "stack_offset": 0 }, { "address": "0x14000a57f", "size": 2, "mnemonic": "je", - "operands": "0x14000a586" + "operands": "0x14000a586", + "stack_offset": 0 } ], "successors": [ @@ -150088,67 +169041,78 @@ "address": "0x14000a5f0", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14000a5f5", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rsi" + "operands": "qword ptr [rsp + 0x10], rsi", + "stack_offset": 0 }, { "address": "0x14000a5fa", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a5fb", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000a5ff", "size": 5, "mnemonic": "mov", - "operands": "rdi, qword ptr [rsp + 0x60]" + "operands": "rdi, qword ptr [rsp + 0x60]", + "stack_offset": 0 }, { "address": "0x14000a604", "size": 2, "mnemonic": "mov", - "operands": "ebx, edx" + "operands": "ebx, edx", + "stack_offset": 0 }, { "address": "0x14000a606", "size": 3, "mnemonic": "mov", - "operands": "rsi, r8" + "operands": "rsi, r8", + "stack_offset": 0 }, { "address": "0x14000a609", "size": 3, "mnemonic": "mov", - "operands": "r10, rcx" + "operands": "r10, rcx", + "stack_offset": 0 }, { "address": "0x14000a60c", "size": 4, "mnemonic": "mov", - "operands": "rdx, qword ptr [rdi + 8]" + "operands": "rdx, qword ptr [rdi + 8]", + "stack_offset": 0 }, { "address": "0x14000a610", "size": 4, "mnemonic": "cmp", - "operands": "rdx, qword ptr [r8 + 8]" + "operands": "rdx, qword ptr [r8 + 8]", + "stack_offset": 0 }, { "address": "0x14000a614", "size": 2, "mnemonic": "ja", - "operands": "0x14000a68d" + "operands": "0x14000a68d", + "stack_offset": 0 } ], "successors": [ @@ -150166,37 +169130,43 @@ "address": "0x14000a68d", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x14000a690", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000a695", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x48]" + "operands": "rsi, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000a69a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000a69e", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a69f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -150212,13 +169182,15 @@ "address": "0x14000a616", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rcx + 8], rdx" + "operands": "qword ptr [rcx + 8], rdx", + "stack_offset": 0 }, { "address": "0x14000a61a", "size": 2, "mnemonic": "ja", - "operands": "0x14000a68d" + "operands": "0x14000a68d", + "stack_offset": 0 } ], "successors": [ @@ -150236,103 +169208,120 @@ "address": "0x14000a61c", "size": 4, "mnemonic": "mov", - "operands": "rcx, qword ptr [r8 + 8]" + "operands": "rcx, qword ptr [r8 + 8]", + "stack_offset": 0 }, { "address": "0x14000a620", "size": 3, "mnemonic": "mov", - "operands": "rax, rdx" + "operands": "rax, rdx", + "stack_offset": 0 }, { "address": "0x14000a623", "size": 4, "mnemonic": "sub", - "operands": "rax, qword ptr [r10 + 8]" + "operands": "rax, qword ptr [r10 + 8]", + "stack_offset": 0 }, { "address": "0x14000a627", "size": 3, "mnemonic": "sub", - "operands": "rcx, rdx" + "operands": "rcx, rdx", + "stack_offset": 0 }, { "address": "0x14000a62a", "size": 3, "mnemonic": "cmp", - "operands": "rax, rcx" + "operands": "rax, rcx", + "stack_offset": 0 }, { "address": "0x14000a62d", "size": 2, "mnemonic": "jge", - "operands": "0x14000a65c" + "operands": "0x14000a65c", + "stack_offset": 0 }, { "address": "0x14000a62f", "size": 4, "mnemonic": "movups", - "operands": "xmm0, xmmword ptr [r10]" + "operands": "xmm0, xmmword ptr [r10]", + "stack_offset": 0 }, { "address": "0x14000a633", "size": 5, "mnemonic": "movups", - "operands": "xmmword ptr [rsp + 0x20], xmm0" + "operands": "xmmword ptr [rsp + 0x20], xmm0", + "stack_offset": 0 }, { "address": "0x14000a638", "size": 4, "mnemonic": "cmp", - "operands": "rdx, qword ptr [r10 + 8]" + "operands": "rdx, qword ptr [r10 + 8]", + "stack_offset": 0 }, { "address": "0x14000a63c", "size": 2, "mnemonic": "jbe", - "operands": "0x14000a689" + "operands": "0x14000a689", + "stack_offset": 0 }, { "address": "0x14000a63e", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x20]" + "operands": "rcx, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000a643", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x28]" + "operands": "rdx, [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000a648", "size": 5, "mnemonic": "call", - "operands": "0x14000a464" + "operands": "0x14000a464", + "stack_offset": 0 }, { "address": "0x14000a64d", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x28]" + "operands": "rax, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000a652", "size": 2, "mnemonic": "inc", - "operands": "ebx" + "operands": "ebx", + "stack_offset": 0 }, { "address": "0x14000a654", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rdi + 8], rax" + "operands": "qword ptr [rdi + 8], rax", + "stack_offset": 0 }, { "address": "0x14000a658", "size": 2, "mnemonic": "ja", - "operands": "0x14000a63e" + "operands": "0x14000a63e", + "stack_offset": 0 } ], "successors": [ @@ -150350,43 +169339,50 @@ "address": "0x14000a63e", "size": 5, "mnemonic": "mov", - "operands": "rcx, qword ptr [rsp + 0x20]" + "operands": "rcx, qword ptr [rsp + 0x20]", + "stack_offset": 0 }, { "address": "0x14000a643", "size": 5, "mnemonic": "lea", - "operands": "rdx, [rsp + 0x28]" + "operands": "rdx, [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000a648", "size": 5, "mnemonic": "call", - "operands": "0x14000a464" + "operands": "0x14000a464", + "stack_offset": 0 }, { "address": "0x14000a64d", "size": 5, "mnemonic": "mov", - "operands": "rax, qword ptr [rsp + 0x28]" + "operands": "rax, qword ptr [rsp + 0x28]", + "stack_offset": 0 }, { "address": "0x14000a652", "size": 2, "mnemonic": "inc", - "operands": "ebx" + "operands": "ebx", + "stack_offset": 0 }, { "address": "0x14000a654", "size": 4, "mnemonic": "cmp", - "operands": "qword ptr [rdi + 8], rax" + "operands": "qword ptr [rdi + 8], rax", + "stack_offset": 0 }, { "address": "0x14000a658", "size": 2, "mnemonic": "ja", - "operands": "0x14000a63e" + "operands": "0x14000a63e", + "stack_offset": 0 } ], "successors": [ @@ -150404,7 +169400,8 @@ "address": "0x14000a65a", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a689" + "operands": "0x14000a689", + "stack_offset": 0 } ], "successors": [ @@ -150421,13 +169418,15 @@ "address": "0x14000a689", "size": 2, "mnemonic": "mov", - "operands": "eax, ebx" + "operands": "eax, ebx", + "stack_offset": 0 }, { "address": "0x14000a68b", "size": 2, "mnemonic": "jmp", - "operands": "0x14000a690" + "operands": "0x14000a690", + "stack_offset": 0 } ], "successors": [ @@ -150444,31 +169443,36 @@ "address": "0x14000a690", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14000a695", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x48]" + "operands": "rsi, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x14000a69a", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x30" + "operands": "rsp, 0x30", + "stack_offset": 0 }, { "address": "0x14000a69e", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14000a69f", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -150490,85 +169494,99 @@ "address": "0x14001081c", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140010821", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x140010826", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x18], rsi" + "operands": "qword ptr [rsp + 0x18], rsi", + "stack_offset": 0 }, { "address": "0x14001082b", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x14001082c", "size": 2, "mnemonic": "push", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001082e", "size": 2, "mnemonic": "push", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x140010830", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140010834", "size": 3, "mnemonic": "mov", - "operands": "rax, qword ptr [rcx]" + "operands": "rax, qword ptr [rcx]", + "stack_offset": 0 }, { "address": "0x140010837", "size": 3, "mnemonic": "mov", - "operands": "rsi, rcx" + "operands": "rsi, rcx", + "stack_offset": 0 }, { "address": "0x14001083a", "size": 3, "mnemonic": "mov", - "operands": "rdx, qword ptr [rax]" + "operands": "rdx, qword ptr [rax]", + "stack_offset": 0 }, { "address": "0x14001083d", "size": 3, "mnemonic": "test", - "operands": "rdx, rdx" + "operands": "rdx, rdx", + "stack_offset": 0 }, { "address": "0x140010840", "size": 2, "mnemonic": "jne", - "operands": "0x14001084a" + "operands": "0x14001084a", + "stack_offset": 0 }, { "address": "0x140010842", "size": 3, "mnemonic": "or", - "operands": "eax, 0xffffffff" + "operands": "eax, 0xffffffff", + "stack_offset": 0 }, { "address": "0x140010845", "size": 5, "mnemonic": "jmp", - "operands": "0x140010918" + "operands": "0x140010918", + "stack_offset": 0 } ], "successors": [ @@ -150585,49 +169603,57 @@ "address": "0x140010918", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x40]" + "operands": "rbx, qword ptr [rsp + 0x40]", + "stack_offset": 0 }, { "address": "0x14001091d", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x48]" + "operands": "rbp, qword ptr [rsp + 0x48]", + "stack_offset": 0 }, { "address": "0x140010922", "size": 5, "mnemonic": "mov", - "operands": "rsi, qword ptr [rsp + 0x50]" + "operands": "rsi, qword ptr [rsp + 0x50]", + "stack_offset": 0 }, { "address": "0x140010927", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001092b", "size": 2, "mnemonic": "pop", - "operands": "r15" + "operands": "r15", + "stack_offset": 0 }, { "address": "0x14001092d", "size": 2, "mnemonic": "pop", - "operands": "r14" + "operands": "r14", + "stack_offset": 0 }, { "address": "0x14001092f", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140010930", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -150649,13 +169675,15 @@ "address": "0x14001a21c", "size": 3, "mnemonic": "test", - "operands": "rcx, rcx" + "operands": "rcx, rcx", + "stack_offset": 0 }, { "address": "0x14001a21f", "size": 6, "mnemonic": "je", - "operands": "0x14001a323" + "operands": "0x14001a323", + "stack_offset": 0 } ], "successors": [ @@ -150673,7 +169701,8 @@ "address": "0x14001a323", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -150689,331 +169718,386 @@ "address": "0x14001a225", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x14001a22a", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 0x10], rbp" + "operands": "qword ptr [rsp + 0x10], rbp", + "stack_offset": 0 }, { "address": "0x14001a22f", "size": 1, "mnemonic": "push", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001a230", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a234", "size": 5, "mnemonic": "mov", - "operands": "ebp, 7" + "operands": "ebp, 7", + "stack_offset": 0 }, { "address": "0x14001a239", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x14001a23c", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x14001a23e", "size": 5, "mnemonic": "call", - "operands": "0x140019ea8" + "operands": "0x140019ea8", + "stack_offset": 0 }, { "address": "0x14001a243", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + 0x38]" + "operands": "rcx, [rbx + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a247", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x14001a249", "size": 5, "mnemonic": "call", - "operands": "0x140019ea8" + "operands": "0x140019ea8", + "stack_offset": 0 }, { "address": "0x14001a24e", "size": 3, "mnemonic": "lea", - "operands": "esi, [rbp + 5]" + "operands": "esi, [rbp + 5]", + "stack_offset": 0 }, { "address": "0x14001a251", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x14001a253", "size": 4, "mnemonic": "lea", - "operands": "rcx, [rbx + 0x70]" + "operands": "rcx, [rbx + 0x70]", + "stack_offset": 0 }, { "address": "0x14001a257", "size": 5, "mnemonic": "call", - "operands": "0x140019ea8" + "operands": "0x140019ea8", + "stack_offset": 0 }, { "address": "0x14001a25c", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbx + 0xd0]" + "operands": "rcx, [rbx + 0xd0]", + "stack_offset": 0 }, { "address": "0x14001a263", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x14001a265", "size": 5, "mnemonic": "call", - "operands": "0x140019ea8" + "operands": "0x140019ea8", + "stack_offset": 0 }, { "address": "0x14001a26a", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbx + 0x130]" + "operands": "rcx, [rbx + 0x130]", + "stack_offset": 0 }, { "address": "0x14001a271", "size": 3, "mnemonic": "lea", - "operands": "edx, [rbp - 5]" + "operands": "edx, [rbp - 5]", + "stack_offset": 0 }, { "address": "0x14001a274", "size": 5, "mnemonic": "call", - "operands": "0x140019ea8" + "operands": "0x140019ea8", + "stack_offset": 0 }, { "address": "0x14001a279", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x140]" + "operands": "rcx, qword ptr [rbx + 0x140]", + "stack_offset": 0 }, { "address": "0x14001a280", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a285", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x148]" + "operands": "rcx, qword ptr [rbx + 0x148]", + "stack_offset": 0 }, { "address": "0x14001a28c", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a291", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x150]" + "operands": "rcx, qword ptr [rbx + 0x150]", + "stack_offset": 0 }, { "address": "0x14001a298", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a29d", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbx + 0x160]" + "operands": "rcx, [rbx + 0x160]", + "stack_offset": 0 }, { "address": "0x14001a2a4", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x14001a2a6", "size": 5, "mnemonic": "call", - "operands": "0x140019ea8" + "operands": "0x140019ea8", + "stack_offset": 0 }, { "address": "0x14001a2ab", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbx + 0x198]" + "operands": "rcx, [rbx + 0x198]", + "stack_offset": 0 }, { "address": "0x14001a2b2", "size": 2, "mnemonic": "mov", - "operands": "edx, ebp" + "operands": "edx, ebp", + "stack_offset": 0 }, { "address": "0x14001a2b4", "size": 5, "mnemonic": "call", - "operands": "0x140019ea8" + "operands": "0x140019ea8", + "stack_offset": 0 }, { "address": "0x14001a2b9", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbx + 0x1d0]" + "operands": "rcx, [rbx + 0x1d0]", + "stack_offset": 0 }, { "address": "0x14001a2c0", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x14001a2c2", "size": 5, "mnemonic": "call", - "operands": "0x140019ea8" + "operands": "0x140019ea8", + "stack_offset": 0 }, { "address": "0x14001a2c7", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbx + 0x230]" + "operands": "rcx, [rbx + 0x230]", + "stack_offset": 0 }, { "address": "0x14001a2ce", "size": 2, "mnemonic": "mov", - "operands": "edx, esi" + "operands": "edx, esi", + "stack_offset": 0 }, { "address": "0x14001a2d0", "size": 5, "mnemonic": "call", - "operands": "0x140019ea8" + "operands": "0x140019ea8", + "stack_offset": 0 }, { "address": "0x14001a2d5", "size": 7, "mnemonic": "lea", - "operands": "rcx, [rbx + 0x290]" + "operands": "rcx, [rbx + 0x290]", + "stack_offset": 0 }, { "address": "0x14001a2dc", "size": 3, "mnemonic": "lea", - "operands": "edx, [rbp - 5]" + "operands": "edx, [rbp - 5]", + "stack_offset": 0 }, { "address": "0x14001a2df", "size": 5, "mnemonic": "call", - "operands": "0x140019ea8" + "operands": "0x140019ea8", + "stack_offset": 0 }, { "address": "0x14001a2e4", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x2a0]" + "operands": "rcx, qword ptr [rbx + 0x2a0]", + "stack_offset": 0 }, { "address": "0x14001a2eb", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a2f0", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x2a8]" + "operands": "rcx, qword ptr [rbx + 0x2a8]", + "stack_offset": 0 }, { "address": "0x14001a2f7", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a2fc", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x2b0]" + "operands": "rcx, qword ptr [rbx + 0x2b0]", + "stack_offset": 0 }, { "address": "0x14001a303", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a308", "size": 7, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx + 0x2b8]" + "operands": "rcx, qword ptr [rbx + 0x2b8]", + "stack_offset": 0 }, { "address": "0x14001a30f", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x14001a314", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x14001a319", "size": 5, "mnemonic": "mov", - "operands": "rbp, qword ptr [rsp + 0x38]" + "operands": "rbp, qword ptr [rsp + 0x38]", + "stack_offset": 0 }, { "address": "0x14001a31e", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x14001a322", "size": 1, "mnemonic": "pop", - "operands": "rsi" + "operands": "rsi", + "stack_offset": 0 }, { "address": "0x14001a323", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -151035,43 +170119,50 @@ "address": "0x140019ea8", "size": 5, "mnemonic": "mov", - "operands": "qword ptr [rsp + 8], rbx" + "operands": "qword ptr [rsp + 8], rbx", + "stack_offset": 0 }, { "address": "0x140019ead", "size": 1, "mnemonic": "push", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140019eae", "size": 4, "mnemonic": "sub", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140019eb2", "size": 4, "mnemonic": "lea", - "operands": "rdi, [rcx + rdx*8]" + "operands": "rdi, [rcx + rdx*8]", + "stack_offset": 0 }, { "address": "0x140019eb6", "size": 3, "mnemonic": "mov", - "operands": "rbx, rcx" + "operands": "rbx, rcx", + "stack_offset": 0 }, { "address": "0x140019eb9", "size": 3, "mnemonic": "cmp", - "operands": "rcx, rdi" + "operands": "rcx, rdi", + "stack_offset": 0 }, { "address": "0x140019ebc", "size": 2, "mnemonic": "je", - "operands": "0x140019ecf" + "operands": "0x140019ecf", + "stack_offset": 0 } ], "successors": [ @@ -151089,25 +170180,29 @@ "address": "0x140019ecf", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140019ed4", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140019ed8", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140019ed9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ @@ -151123,55 +170218,64 @@ "address": "0x140019ebe", "size": 3, "mnemonic": "mov", - "operands": "rcx, qword ptr [rbx]" + "operands": "rcx, qword ptr [rbx]", + "stack_offset": 0 }, { "address": "0x140019ec1", "size": 5, "mnemonic": "call", - "operands": "0x140011b00" + "operands": "0x140011b00", + "stack_offset": 0 }, { "address": "0x140019ec6", "size": 4, "mnemonic": "add", - "operands": "rbx, 8" + "operands": "rbx, 8", + "stack_offset": 0 }, { "address": "0x140019eca", "size": 3, "mnemonic": "cmp", - "operands": "rbx, rdi" + "operands": "rbx, rdi", + "stack_offset": 0 }, { "address": "0x140019ecd", "size": 2, "mnemonic": "jne", - "operands": "0x140019ebe" + "operands": "0x140019ebe", + "stack_offset": 0 }, { "address": "0x140019ecf", "size": 5, "mnemonic": "mov", - "operands": "rbx, qword ptr [rsp + 0x30]" + "operands": "rbx, qword ptr [rsp + 0x30]", + "stack_offset": 0 }, { "address": "0x140019ed4", "size": 4, "mnemonic": "add", - "operands": "rsp, 0x20" + "operands": "rsp, 0x20", + "stack_offset": 0 }, { "address": "0x140019ed8", "size": 1, "mnemonic": "pop", - "operands": "rdi" + "operands": "rdi", + "stack_offset": 0 }, { "address": "0x140019ed9", "size": 1, "mnemonic": "ret", - "operands": "" + "operands": "", + "stack_offset": 0 } ], "successors": [ diff --git a/types.hpp b/types.hpp index 00efecd..8247ab7 100644 --- a/types.hpp +++ b/types.hpp @@ -28,6 +28,12 @@ struct IndirectTarget bool resolved; }; +struct XrefEntry +{ + addr_t target; + vector> callers; +}; + struct Instruction { addr_t address; @@ -35,6 +41,7 @@ struct Instruction string mnemonic; string operands; uint8_t size; + int64_t stack_offset = 0; }; struct BasicBlock @@ -62,6 +69,7 @@ struct CFG vector functions; vector imports; vector indirect_targets; + vector xrefs; static string escapeJSON(const string& s) { @@ -140,7 +148,8 @@ struct CFG os << " \"address\": \"0x" << hex << inst.address << "\",\n"; os << " \"size\": " << dec << (int)inst.size << ",\n"; os << " \"mnemonic\": \"" << escapeJSON(inst.mnemonic) << "\",\n"; - os << " \"operands\": \"" << escapeJSON(inst.operands) << "\"\n"; + os << " \"operands\": \"" << escapeJSON(inst.operands) << "\",\n"; + os << " \"stack_offset\": " << dec << inst.stack_offset << "\n"; os << " }"; if (k < b.instructions.size() - 1) os << ","; os << "\n"; @@ -162,7 +171,34 @@ struct CFG if (i < functions.size() - 1) os << ","; os << "\n"; } - os << " ]\n"; + if (!xrefs.empty()) + { + os << " ],\n"; + os << " \"xrefs\": [\n"; + for (size_t i = 0; i < xrefs.size(); ++i) { + const auto& x = xrefs[i]; + os << " {\n"; + os << " \"target\": \"0x" << hex << x.target << "\",\n"; + os << " \"callers\": [\n"; + for (size_t j = 0; j < x.callers.size(); ++j) { + os << " {\n"; + os << " \"address\": \"0x" << hex << x.callers[j].first << "\",\n"; + os << " \"type\": \"" << escapeJSON(x.callers[j].second) << "\"\n"; + os << " }"; + if (j < x.callers.size() - 1) os << ","; + os << "\n"; + } + os << " ]\n"; + os << " }"; + if (i < xrefs.size() - 1) os << ","; + os << "\n"; + } + os << " ]\n"; + } + else + { + os << " ]\n"; + } os << "}\n"; return os.str(); }