diff --git a/sim/compiled_sim.dll b/sim/compiled_sim.dll index 754d261..d780b5b 100644 Binary files a/sim/compiled_sim.dll and b/sim/compiled_sim.dll differ diff --git a/sim/compiled_sim_gates.c b/sim/compiled_sim_gates.c index 37a2ab3..3a698ce 100644 --- a/sim/compiled_sim_gates.c +++ b/sim/compiled_sim_gates.c @@ -86,6 +86,48 @@ enum GateFuncs { GateFunc_Adder8, GateFunc_Adder16, GateFunc_Adder32, + GateFunc_And2, + GateFunc_And3, + GateFunc_And4, + GateFunc_And5, + GateFunc_And6, + GateFunc_And7, + GateFunc_And8, + GateFunc_Or2, + GateFunc_Or3, + GateFunc_Or4, + GateFunc_Or5, + GateFunc_Or6, + GateFunc_Or7, + GateFunc_Or8, + GateFunc_Xor2, + GateFunc_Xor3, + GateFunc_Xor4, + GateFunc_Xor5, + GateFunc_Xor6, + GateFunc_Xor7, + GateFunc_Xor8, + GateFunc_Nand2, + GateFunc_Nand3, + GateFunc_Nand4, + GateFunc_Nand5, + GateFunc_Nand6, + GateFunc_Nand7, + GateFunc_Nand8, + GateFunc_Nor2, + GateFunc_Nor3, + GateFunc_Nor4, + GateFunc_Nor5, + GateFunc_Nor6, + GateFunc_Nor7, + GateFunc_Nor8, + GateFunc_Xnor2, + GateFunc_Xnor3, + GateFunc_Xnor4, + GateFunc_Xnor5, + GateFunc_Xnor6, + GateFunc_Xnor7, + GateFunc_Xnor8, GateFunc_Rom4x1, GateFunc_Rom4x4, GateFunc_Rom4x8, @@ -211,6 +253,48 @@ GATEFUNC(Adder4) { int v = getword(4, 1) + getword(4, 5) + getport(13); setword( GATEFUNC(Adder8) { int v = getword(8, 1) + getword(8, 9) + getport(25); setword(8, 17, v); setport(26, (v>>8) & 1); } GATEFUNC(Adder16) { int v = getword(16, 1) + getword(16, 17) + getport(49); setword(16, 33, v); setport(50, (v>>16) & 1); } GATEFUNC(Adder32) { unsigned long long v = getword(32, 1) + getword(32, 33) + getport(97); setword(32, 65, v); setport(98, (v>>32) & 1); } +GATEFUNC(And2) { setport(3, (getport(1) && getport(2))); } +GATEFUNC(And3) { setport(4, (getport(1) && getport(2) && getport(3))); } +GATEFUNC(And4) { setport(5, (getport(1) && getport(2) && getport(3) && getport(4))); } +GATEFUNC(And5) { setport(6, (getport(1) && getport(2) && getport(3) && getport(4) && getport(5))); } +GATEFUNC(And6) { setport(7, (getport(1) && getport(2) && getport(3) && getport(4) && getport(5) && getport(6))); } +GATEFUNC(And7) { setport(8, (getport(1) && getport(2) && getport(3) && getport(4) && getport(5) && getport(6) && getport(7))); } +GATEFUNC(And8) { setport(9, (getport(1) && getport(2) && getport(3) && getport(4) && getport(5) && getport(6) && getport(7) && getport(8))); } +GATEFUNC(Or2) { setport(3, (getport(1) || getport(2))); } +GATEFUNC(Or3) { setport(4, (getport(1) || getport(2) || getport(3))); } +GATEFUNC(Or4) { setport(5, (getport(1) || getport(2) || getport(3) || getport(4))); } +GATEFUNC(Or5) { setport(6, (getport(1) || getport(2) || getport(3) || getport(4) || getport(5))); } +GATEFUNC(Or6) { setport(7, (getport(1) || getport(2) || getport(3) || getport(4) || getport(5) || getport(6))); } +GATEFUNC(Or7) { setport(8, (getport(1) || getport(2) || getport(3) || getport(4) || getport(5) || getport(6) || getport(7))); } +GATEFUNC(Or8) { setport(9, (getport(1) || getport(2) || getport(3) || getport(4) || getport(5) || getport(6) || getport(7) || getport(8))); } +GATEFUNC(Xor2) { setport(3, (getport(1) ^ getport(2))); } +GATEFUNC(Xor3) { setport(4, (getport(1) ^ getport(2) ^ getport(3))); } +GATEFUNC(Xor4) { setport(5, (getport(1) ^ getport(2) ^ getport(3) ^ getport(4))); } +GATEFUNC(Xor5) { setport(6, (getport(1) ^ getport(2) ^ getport(3) ^ getport(4) ^ getport(5))); } +GATEFUNC(Xor6) { setport(7, (getport(1) ^ getport(2) ^ getport(3) ^ getport(4) ^ getport(5) ^ getport(6))); } +GATEFUNC(Xor7) { setport(8, (getport(1) ^ getport(2) ^ getport(3) ^ getport(4) ^ getport(5) ^ getport(6) ^ getport(7))); } +GATEFUNC(Xor8) { setport(9, (getport(1) ^ getport(2) ^ getport(3) ^ getport(4) ^ getport(5) ^ getport(6) ^ getport(7) ^ getport(8))); } +GATEFUNC(Nand2) { setport(3, !(getport(1) && getport(2))); } +GATEFUNC(Nand3) { setport(4, !(getport(1) && getport(2) && getport(3))); } +GATEFUNC(Nand4) { setport(5, !(getport(1) && getport(2) && getport(3) && getport(4))); } +GATEFUNC(Nand5) { setport(6, !(getport(1) && getport(2) && getport(3) && getport(4) && getport(5))); } +GATEFUNC(Nand6) { setport(7, !(getport(1) && getport(2) && getport(3) && getport(4) && getport(5) && getport(6))); } +GATEFUNC(Nand7) { setport(8, !(getport(1) && getport(2) && getport(3) && getport(4) && getport(5) && getport(6) && getport(7))); } +GATEFUNC(Nand8) { setport(9, !(getport(1) && getport(2) && getport(3) && getport(4) && getport(5) && getport(6) && getport(7) && getport(8))); } +GATEFUNC(Nor2) { setport(3, !(getport(1) || getport(2))); } +GATEFUNC(Nor3) { setport(4, !(getport(1) || getport(2) || getport(3))); } +GATEFUNC(Nor4) { setport(5, !(getport(1) || getport(2) || getport(3) || getport(4))); } +GATEFUNC(Nor5) { setport(6, !(getport(1) || getport(2) || getport(3) || getport(4) || getport(5))); } +GATEFUNC(Nor6) { setport(7, !(getport(1) || getport(2) || getport(3) || getport(4) || getport(5) || getport(6))); } +GATEFUNC(Nor7) { setport(8, !(getport(1) || getport(2) || getport(3) || getport(4) || getport(5) || getport(6) || getport(7))); } +GATEFUNC(Nor8) { setport(9, !(getport(1) || getport(2) || getport(3) || getport(4) || getport(5) || getport(6) || getport(7) || getport(8))); } +GATEFUNC(Xnor2) { setport(3, !(getport(1) ^ getport(2))); } +GATEFUNC(Xnor3) { setport(4, !(getport(1) ^ getport(2) ^ getport(3))); } +GATEFUNC(Xnor4) { setport(5, !(getport(1) ^ getport(2) ^ getport(3) ^ getport(4))); } +GATEFUNC(Xnor5) { setport(6, !(getport(1) ^ getport(2) ^ getport(3) ^ getport(4) ^ getport(5))); } +GATEFUNC(Xnor6) { setport(7, !(getport(1) ^ getport(2) ^ getport(3) ^ getport(4) ^ getport(5) ^ getport(6))); } +GATEFUNC(Xnor7) { setport(8, !(getport(1) ^ getport(2) ^ getport(3) ^ getport(4) ^ getport(5) ^ getport(6) ^ getport(7))); } +GATEFUNC(Xnor8) { setport(9, !(getport(1) ^ getport(2) ^ getport(3) ^ getport(4) ^ getport(5) ^ getport(6) ^ getport(7) ^ getport(8))); } GATEFUNC(Rom4x1) { if(getport(6)) { int a = getword(4, 1); for(int i=0; i<1; i++) { setport(5+i, getdata(a + i*16)); } } else { clearword(1, 5); } } GATEFUNC(Rom4x4) { if(getport(9)) { int a = getword(4, 1); for(int i=0; i<4; i++) { setport(5+i, getdata(a + i*16)); } } else { clearword(4, 5); } } GATEFUNC(Rom4x8) { if(getport(13)) { int a = getword(4, 1); for(int i=0; i<8; i++) { setport(5+i, getdata(a + i*16)); } } else { clearword(8, 5); } } @@ -337,6 +421,48 @@ GateFunc sim_logic_functions[] = { GATEFUNCID(Adder8), GATEFUNCID(Adder16), GATEFUNCID(Adder32), + GATEFUNCID(And2), + GATEFUNCID(And3), + GATEFUNCID(And4), + GATEFUNCID(And5), + GATEFUNCID(And6), + GATEFUNCID(And7), + GATEFUNCID(And8), + GATEFUNCID(Or2), + GATEFUNCID(Or3), + GATEFUNCID(Or4), + GATEFUNCID(Or5), + GATEFUNCID(Or6), + GATEFUNCID(Or7), + GATEFUNCID(Or8), + GATEFUNCID(Xor2), + GATEFUNCID(Xor3), + GATEFUNCID(Xor4), + GATEFUNCID(Xor5), + GATEFUNCID(Xor6), + GATEFUNCID(Xor7), + GATEFUNCID(Xor8), + GATEFUNCID(Nand2), + GATEFUNCID(Nand3), + GATEFUNCID(Nand4), + GATEFUNCID(Nand5), + GATEFUNCID(Nand6), + GATEFUNCID(Nand7), + GATEFUNCID(Nand8), + GATEFUNCID(Nor2), + GATEFUNCID(Nor3), + GATEFUNCID(Nor4), + GATEFUNCID(Nor5), + GATEFUNCID(Nor6), + GATEFUNCID(Nor7), + GATEFUNCID(Nor8), + GATEFUNCID(Xnor2), + GATEFUNCID(Xnor3), + GATEFUNCID(Xnor4), + GATEFUNCID(Xnor5), + GATEFUNCID(Xnor6), + GATEFUNCID(Xnor7), + GATEFUNCID(Xnor8), GATEFUNCID(Rom4x1), GATEFUNCID(Rom4x4), GATEFUNCID(Rom4x8), diff --git a/sim/compiled_sim_gates.lua b/sim/compiled_sim_gates.lua index 6b41245..2a2b5ce 100644 --- a/sim/compiled_sim_gates.lua +++ b/sim/compiled_sim_gates.lua @@ -225,45 +225,87 @@ cFuncsByName = { ["adder 8 bit"] = 82, ["adder 16 bit"] = 83, ["adder 32 bit"] = 84, - ["rom 4x4"] = 85, - ["rom 4x4x4"] = 86, - ["rom 8x2x8"] = 87, - ["rom 8x8"] = 88, - ["rom 8x8x4"] = 89, - ["rom 8x8x8"] = 90, - ["rom 16x4x16"] = 91, - ["rom 32x2x32"] = 92, - ["rom 64x1x48"] = 93, - ["rom 64x1x64"] = 94, - ["rom 16x16"] = 95, - ["rom 16x16x4"] = 96, - ["rom 16x16x8"] = 97, - ["rom 16x16x16"] = 98, - ["rom 32x8x32"] = 99, - ["rom 64x4x48"] = 100, - ["rom 64x4x64"] = 101, - ["rom 32x16"] = 102, - ["rom 32x16x4"] = 103, - ["rom 32x16x8"] = 104, - ["rom 32x16x16"] = 105, - ["rom 32x16x32"] = 106, - ["rom 64x8x48"] = 107, - ["rom 64x8x64"] = 108, - ["rom 32x32x8"] = 109, - ["rom 32x32x16"] = 110, - ["rom 32x32x32"] = 111, - ["rom 64x16x48"] = 112, - ["rom 64x16x64"] = 113, - ["rom 64x32x8"] = 114, - ["rom 64x32x16"] = 115, - ["rom 64x32x32"] = 116, - ["rom 64x32x48"] = 117, - ["rom 64x32x64"] = 118, - ["rom 64x64x8"] = 119, - ["rom 64x64x16"] = 120, - ["rom 64x64x32"] = 121, - ["rom 64x64x48"] = 122, - ["rom 64x64x64"] = 123, + ["and 2 bit"] = 85, + ["and 3 bit"] = 86, + ["and 4 bit"] = 87, + ["and 5 bit"] = 88, + ["and 6 bit"] = 89, + ["and 7 bit"] = 90, + ["and 8 bit"] = 91, + ["or 2 bit"] = 92, + ["or 3 bit"] = 93, + ["or 4 bit"] = 94, + ["or 5 bit"] = 95, + ["or 6 bit"] = 96, + ["or 7 bit"] = 97, + ["or 8 bit"] = 98, + ["xor 2 bit"] = 99, + ["xor 3 bit"] = 100, + ["xor 4 bit"] = 101, + ["xor 5 bit"] = 102, + ["xor 6 bit"] = 103, + ["xor 7 bit"] = 104, + ["xor 8 bit"] = 105, + ["nand 2 bit"] = 106, + ["nand 3 bit"] = 107, + ["nand 4 bit"] = 108, + ["nand 5 bit"] = 109, + ["nand 6 bit"] = 110, + ["nand 7 bit"] = 111, + ["nand 8 bit"] = 112, + ["nor 2 bit"] = 113, + ["nor 3 bit"] = 114, + ["nor 4 bit"] = 115, + ["nor 5 bit"] = 116, + ["nor 6 bit"] = 117, + ["nor 7 bit"] = 118, + ["nor 8 bit"] = 119, + ["xnor 2 bit"] = 120, + ["xnor 3 bit"] = 121, + ["xnor 4 bit"] = 122, + ["xnor 5 bit"] = 123, + ["xnor 6 bit"] = 124, + ["xnor 7 bit"] = 125, + ["xnor 8 bit"] = 126, + ["rom 4x4"] = 127, + ["rom 4x4x4"] = 128, + ["rom 8x2x8"] = 129, + ["rom 8x8"] = 130, + ["rom 8x8x4"] = 131, + ["rom 8x8x8"] = 132, + ["rom 16x4x16"] = 133, + ["rom 32x2x32"] = 134, + ["rom 64x1x48"] = 135, + ["rom 64x1x64"] = 136, + ["rom 16x16"] = 137, + ["rom 16x16x4"] = 138, + ["rom 16x16x8"] = 139, + ["rom 16x16x16"] = 140, + ["rom 32x8x32"] = 141, + ["rom 64x4x48"] = 142, + ["rom 64x4x64"] = 143, + ["rom 32x16"] = 144, + ["rom 32x16x4"] = 145, + ["rom 32x16x8"] = 146, + ["rom 32x16x16"] = 147, + ["rom 32x16x32"] = 148, + ["rom 64x8x48"] = 149, + ["rom 64x8x64"] = 150, + ["rom 32x32x8"] = 151, + ["rom 32x32x16"] = 152, + ["rom 32x32x32"] = 153, + ["rom 64x16x48"] = 154, + ["rom 64x16x64"] = 155, + ["rom 64x32x8"] = 156, + ["rom 64x32x16"] = 157, + ["rom 64x32x32"] = 158, + ["rom 64x32x48"] = 159, + ["rom 64x32x64"] = 160, + ["rom 64x64x8"] = 161, + ["rom 64x64x16"] = 162, + ["rom 64x64x32"] = 163, + ["rom 64x64x48"] = 164, + ["rom 64x64x64"] = 165, } cDataSizeByName = { diff --git a/sim/dump.txt b/sim/dump.txt index 0b25620..6e8f951 100644 --- a/sim/dump.txt +++ b/sim/dump.txt @@ -5,8 +5,8 @@ compiled_sim.dll: file format pei-x86-64 Disassembly of section .text: 0000000066341000 : - 66341000: 48 8d 0d f9 5f 01 00 lea 0x15ff9(%rip),%rcx # 66357000 <__bss_start__> - 66341007: e9 64 13 01 00 jmpq 66352370 <_initialize_onexit_table> + 66341000: 48 8d 0d f9 4f 01 00 lea 0x14ff9(%rip),%rcx # 66356000 <__bss_start__> + 66341007: e9 54 01 01 00 jmpq 66351160 <_initialize_onexit_table> 6634100c: 0f 1f 40 00 nopl 0x0(%rax) 0000000066341010 <_CRT_INIT>: @@ -21,16 +21,16 @@ Disassembly of section .text: 6634101e: 49 89 cc mov %rcx,%r12 66341021: 4d 89 c5 mov %r8,%r13 66341024: 75 7a jne 663410a0 <_CRT_INIT+0x90> - 66341026: 8b 15 ec 5f 01 00 mov 0x15fec(%rip),%edx # 66357018 <__proc_attached> + 66341026: 8b 15 ec 4f 01 00 mov 0x14fec(%rip),%edx # 66356018 <__proc_attached> 6634102c: 31 c0 xor %eax,%eax 6634102e: 85 d2 test %edx,%edx 66341030: 7e 59 jle 6634108b <_CRT_INIT+0x7b> 66341032: 83 ea 01 sub $0x1,%edx - 66341035: 48 8b 1d d4 32 01 00 mov 0x132d4(%rip),%rbx # 66354310 <.refptr.__native_startup_lock> + 66341035: 48 8b 1d d4 22 01 00 mov 0x122d4(%rip),%rbx # 66353310 <.refptr.__native_startup_lock> 6634103c: 31 ed xor %ebp,%ebp 6634103e: bf 01 00 00 00 mov $0x1,%edi - 66341043: 89 15 cf 5f 01 00 mov %edx,0x15fcf(%rip) # 66357018 <__proc_attached> - 66341049: 4c 8b 25 00 82 01 00 mov 0x18200(%rip),%r12 # 66359250 <__imp_Sleep> + 66341043: 89 15 cf 4f 01 00 mov %edx,0x14fcf(%rip) # 66356018 <__proc_attached> + 66341049: 4c 8b 25 00 72 01 00 mov 0x17200(%rip),%r12 # 66358250 <__imp_Sleep> 66341050: eb 08 jmp 6634105a <_CRT_INIT+0x4a> 66341052: b9 e8 03 00 00 mov $0x3e8,%ecx 66341057: 41 ff d4 callq *%r12 @@ -39,12 +39,12 @@ Disassembly of section .text: 66341062: 48 85 c0 test %rax,%rax 66341065: 48 89 c6 mov %rax,%rsi 66341068: 75 e8 jne 66341052 <_CRT_INIT+0x42> - 6634106a: 48 8b 3d af 32 01 00 mov 0x132af(%rip),%rdi # 66354320 <.refptr.__native_startup_state> + 6634106a: 48 8b 3d af 22 01 00 mov 0x122af(%rip),%rdi # 66353320 <.refptr.__native_startup_state> 66341071: 8b 07 mov (%rdi),%eax 66341073: 83 f8 02 cmp $0x2,%eax 66341076: 0f 84 e9 00 00 00 je 66341165 <_CRT_INIT+0x155> 6634107c: b9 1f 00 00 00 mov $0x1f,%ecx - 66341081: e8 e2 12 01 00 callq 66352368 <_amsg_exit> + 66341081: e8 d2 00 01 00 callq 66351158 <_amsg_exit> 66341086: b8 01 00 00 00 mov $0x1,%eax 6634108b: 48 83 c4 28 add $0x28,%rsp 6634108f: 5b pop %rbx @@ -60,10 +60,10 @@ Disassembly of section .text: 663410a3: 0f 85 aa 00 00 00 jne 66341153 <_CRT_INIT+0x143> 663410a9: 65 48 8b 04 25 30 00 mov %gs:0x30,%rax 663410b0: 00 00 - 663410b2: 48 8b 1d 57 32 01 00 mov 0x13257(%rip),%rbx # 66354310 <.refptr.__native_startup_lock> + 663410b2: 48 8b 1d 57 22 01 00 mov 0x12257(%rip),%rbx # 66353310 <.refptr.__native_startup_lock> 663410b9: 31 ff xor %edi,%edi 663410bb: 48 8b 70 08 mov 0x8(%rax),%rsi - 663410bf: 48 8b 2d 8a 81 01 00 mov 0x1818a(%rip),%rbp # 66359250 <__imp_Sleep> + 663410bf: 48 8b 2d 8a 71 01 00 mov 0x1718a(%rip),%rbp # 66358250 <__imp_Sleep> 663410c6: eb 18 jmp 663410e0 <_CRT_INIT+0xd0> 663410c8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) 663410cf: 00 @@ -76,7 +76,7 @@ Disassembly of section .text: 663410e8: 48 85 c0 test %rax,%rax 663410eb: 75 e3 jne 663410d0 <_CRT_INIT+0xc0> 663410ed: 31 ff xor %edi,%edi - 663410ef: 48 8b 35 2a 32 01 00 mov 0x1322a(%rip),%rsi # 66354320 <.refptr.__native_startup_state> + 663410ef: 48 8b 35 2a 22 01 00 mov 0x1222a(%rip),%rsi # 66353320 <.refptr.__native_startup_state> 663410f6: 8b 06 mov (%rsi),%eax 663410f8: 83 f8 01 cmp $0x1,%eax 663410fb: 0f 84 ef 00 00 00 je 663411f0 <_CRT_INIT+0x1e0> @@ -88,7 +88,7 @@ Disassembly of section .text: 66341110: 0f 84 ba 00 00 00 je 663411d0 <_CRT_INIT+0x1c0> 66341116: 85 ff test %edi,%edi 66341118: 0f 84 82 00 00 00 je 663411a0 <_CRT_INIT+0x190> - 6634111e: 48 8b 05 bb 31 01 00 mov 0x131bb(%rip),%rax # 663542e0 <.refptr.__dyn_tls_init_callback> + 6634111e: 48 8b 05 bb 21 01 00 mov 0x121bb(%rip),%rax # 663532e0 <.refptr.__dyn_tls_init_callback> 66341125: 48 8b 00 mov (%rax),%rax 66341128: 48 85 c0 test %rax,%rax 6634112b: 74 0d je 6634113a <_CRT_INIT+0x12a> @@ -96,7 +96,7 @@ Disassembly of section .text: 66341130: ba 02 00 00 00 mov $0x2,%edx 66341135: 4c 89 e1 mov %r12,%rcx 66341138: ff d0 callq *%rax - 6634113a: 83 05 d7 5e 01 00 01 addl $0x1,0x15ed7(%rip) # 66357018 <__proc_attached> + 6634113a: 83 05 d7 4e 01 00 01 addl $0x1,0x14ed7(%rip) # 66356018 <__proc_attached> 66341141: b8 01 00 00 00 mov $0x1,%eax 66341146: 48 83 c4 28 add $0x28,%rsp 6634114a: 5b pop %rbx @@ -115,8 +115,8 @@ Disassembly of section .text: 66341160: 41 5c pop %r12 66341162: 41 5d pop %r13 66341164: c3 retq - 66341165: 48 8d 0d 94 5e 01 00 lea 0x15e94(%rip),%rcx # 66357000 <__bss_start__> - 6634116c: e8 ff 12 01 00 callq 66352470 <_execute_onexit_table> + 66341165: 48 8d 0d 94 4e 01 00 lea 0x14e94(%rip),%rcx # 66356000 <__bss_start__> + 6634116c: e8 ef 00 01 00 callq 66351260 <_execute_onexit_table> 66341171: c7 07 00 00 00 00 movl $0x0,(%rdi) 66341177: 48 87 33 xchg %rsi,(%rbx) 6634117a: b8 01 00 00 00 mov $0x1,%eax @@ -136,20 +136,20 @@ Disassembly of section .text: 663411a2: 48 87 03 xchg %rax,(%rbx) 663411a5: e9 74 ff ff ff jmpq 6634111e <_CRT_INIT+0x10e> 663411aa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 663411b0: 48 8b 15 a9 31 01 00 mov 0x131a9(%rip),%rdx # 66354360 <.refptr.__xi_z> + 663411b0: 48 8b 15 a9 21 01 00 mov 0x121a9(%rip),%rdx # 66353360 <.refptr.__xi_z> 663411b7: c7 06 01 00 00 00 movl $0x1,(%rsi) - 663411bd: 48 8b 0d 8c 31 01 00 mov 0x1318c(%rip),%rcx # 66354350 <.refptr.__xi_a> - 663411c4: e8 8f 11 01 00 callq 66352358 <_initterm> + 663411bd: 48 8b 0d 8c 21 01 00 mov 0x1218c(%rip),%rcx # 66353350 <.refptr.__xi_a> + 663411c4: e8 7f ff 00 00 callq 66351148 <_initterm> 663411c9: e9 3d ff ff ff jmpq 6634110b <_CRT_INIT+0xfb> 663411ce: 66 90 xchg %ax,%ax - 663411d0: 48 8b 15 69 31 01 00 mov 0x13169(%rip),%rdx # 66354340 <.refptr.__xc_z> - 663411d7: 48 8b 0d 52 31 01 00 mov 0x13152(%rip),%rcx # 66354330 <.refptr.__xc_a> - 663411de: e8 75 11 01 00 callq 66352358 <_initterm> + 663411d0: 48 8b 15 69 21 01 00 mov 0x12169(%rip),%rdx # 66353340 <.refptr.__xc_z> + 663411d7: 48 8b 0d 52 21 01 00 mov 0x12152(%rip),%rcx # 66353330 <.refptr.__xc_a> + 663411de: e8 65 ff 00 00 callq 66351148 <_initterm> 663411e3: c7 06 02 00 00 00 movl $0x2,(%rsi) 663411e9: e9 28 ff ff ff jmpq 66341116 <_CRT_INIT+0x106> 663411ee: 66 90 xchg %ax,%ax 663411f0: b9 1f 00 00 00 mov $0x1f,%ecx - 663411f5: e8 6e 11 01 00 callq 66352368 <_amsg_exit> + 663411f5: e8 5e ff 00 00 callq 66351158 <_amsg_exit> 663411fa: e9 0c ff ff ff jmpq 6634110b <_CRT_INIT+0xfb> 663411ff: 90 nop @@ -160,25 +160,25 @@ Disassembly of section .text: 66341204: 56 push %rsi 66341205: 53 push %rbx 66341206: 48 83 ec 20 sub $0x20,%rsp - 6634120a: 48 8b 35 ef 30 01 00 mov 0x130ef(%rip),%rsi # 66354300 <.refptr.__native_dllmain_reason> + 6634120a: 48 8b 35 ef 20 01 00 mov 0x120ef(%rip),%rsi # 66353300 <.refptr.__native_dllmain_reason> 66341211: 85 d2 test %edx,%edx 66341213: 48 89 cf mov %rcx,%rdi 66341216: 89 d3 mov %edx,%ebx 66341218: 89 16 mov %edx,(%rsi) 6634121a: 4c 89 c5 mov %r8,%rbp 6634121d: 75 54 jne 66341273 <__DllMainCRTStartup+0x73> - 6634121f: 8b 05 f3 5d 01 00 mov 0x15df3(%rip),%eax # 66357018 <__proc_attached> + 6634121f: 8b 05 f3 4d 01 00 mov 0x14df3(%rip),%eax # 66356018 <__proc_attached> 66341225: 85 c0 test %eax,%eax 66341227: 74 33 je 6634125c <__DllMainCRTStartup+0x5c> - 66341229: e8 a2 00 01 00 callq 663512d0 <_pei386_runtime_relocator> + 66341229: e8 92 ee 00 00 callq 663500c0 <_pei386_runtime_relocator> 6634122e: 49 89 e8 mov %rbp,%r8 66341231: 31 d2 xor %edx,%edx 66341233: 48 89 f9 mov %rdi,%rcx - 66341236: e8 85 0e 01 00 callq 663520c0 + 66341236: e8 75 fc 00 00 callq 66350eb0 6634123b: 49 89 e8 mov %rbp,%r8 6634123e: 89 da mov %ebx,%edx 66341240: 48 89 f9 mov %rdi,%rcx - 66341243: e8 68 0e 01 00 callq 663520b0 + 66341243: e8 58 fc 00 00 callq 66350ea0 66341248: 49 89 e8 mov %rbp,%r8 6634124b: 89 da mov %ebx,%edx 6634124d: 48 89 f9 mov %rdi,%rcx @@ -196,14 +196,14 @@ Disassembly of section .text: 6634126f: 5d pop %rbp 66341270: 41 5c pop %r12 66341272: c3 retq - 66341273: e8 58 00 01 00 callq 663512d0 <_pei386_runtime_relocator> + 66341273: e8 48 ee 00 00 callq 663500c0 <_pei386_runtime_relocator> 66341278: 8d 43 ff lea -0x1(%rbx),%eax 6634127b: 83 f8 01 cmp $0x1,%eax 6634127e: 76 20 jbe 663412a0 <__DllMainCRTStartup+0xa0> 66341280: 49 89 e8 mov %rbp,%r8 66341283: 89 da mov %ebx,%edx 66341285: 48 89 f9 mov %rdi,%rcx - 66341288: e8 33 0e 01 00 callq 663520c0 + 66341288: e8 23 fc 00 00 callq 66350eb0 6634128d: 83 fb 03 cmp $0x3,%ebx 66341290: 41 89 c4 mov %eax,%r12d 66341293: 75 ca jne 6634125f <__DllMainCRTStartup+0x5f> @@ -219,28 +219,28 @@ Disassembly of section .text: 663412b1: 49 89 e8 mov %rbp,%r8 663412b4: 89 da mov %ebx,%edx 663412b6: 48 89 f9 mov %rdi,%rcx - 663412b9: e8 f2 0d 01 00 callq 663520b0 + 663412b9: e8 e2 fb 00 00 callq 66350ea0 663412be: 85 c0 test %eax,%eax 663412c0: 41 89 c4 mov %eax,%r12d 663412c3: 74 5b je 66341320 <__DllMainCRTStartup+0x120> 663412c5: 83 fb 01 cmp $0x1,%ebx 663412c8: 75 b6 jne 66341280 <__DllMainCRTStartup+0x80> - 663412ca: e8 51 fb 00 00 callq 66350e20 <__main> + 663412ca: e8 41 e9 00 00 callq 6634fc10 <__main> 663412cf: 49 89 e8 mov %rbp,%r8 663412d2: ba 01 00 00 00 mov $0x1,%edx 663412d7: 48 89 f9 mov %rdi,%rcx - 663412da: e8 e1 0d 01 00 callq 663520c0 + 663412da: e8 d1 fb 00 00 callq 66350eb0 663412df: 85 c0 test %eax,%eax 663412e1: 41 89 c4 mov %eax,%r12d 663412e4: 0f 85 75 ff ff ff jne 6634125f <__DllMainCRTStartup+0x5f> 663412ea: 49 89 e8 mov %rbp,%r8 663412ed: 31 d2 xor %edx,%edx 663412ef: 48 89 f9 mov %rdi,%rcx - 663412f2: e8 c9 0d 01 00 callq 663520c0 + 663412f2: e8 b9 fb 00 00 callq 66350eb0 663412f7: 49 89 e8 mov %rbp,%r8 663412fa: 31 d2 xor %edx,%edx 663412fc: 48 89 f9 mov %rdi,%rcx - 663412ff: e8 ac 0d 01 00 callq 663520b0 + 663412ff: e8 9c fb 00 00 callq 66350ea0 66341304: 49 89 e8 mov %rbp,%r8 66341307: 31 d2 xor %edx,%edx 66341309: 48 89 f9 mov %rdi,%rcx @@ -255,7 +255,7 @@ Disassembly of section .text: 0000000066341330 : 66341330: 48 83 ec 48 sub $0x48,%rsp - 66341334: 48 8b 05 35 30 01 00 mov 0x13035(%rip),%rax # 66354370 <.refptr.mingw_app_type> + 66341334: 48 8b 05 35 20 01 00 mov 0x12035(%rip),%rax # 66353370 <.refptr.mingw_app_type> 6634133b: c7 00 00 00 00 00 movl $0x0,(%rax) 66341341: 83 fa 01 cmp $0x1,%edx 66341344: 74 0a je 66341350 @@ -265,8 +265,8 @@ Disassembly of section .text: 66341350: 4c 89 44 24 38 mov %r8,0x38(%rsp) 66341355: 89 54 24 34 mov %edx,0x34(%rsp) 66341359: 48 89 4c 24 28 mov %rcx,0x28(%rsp) - 6634135e: e8 dd fa 00 00 callq 66350e40 <__security_init_cookie> - 66341363: e8 c8 03 01 00 callq 66351730 <__mingw_init_ehandler> + 6634135e: e8 cd e8 00 00 callq 6634fc30 <__security_init_cookie> + 66341363: e8 b8 f1 00 00 callq 66350520 <__mingw_init_ehandler> 66341368: 4c 8b 44 24 38 mov 0x38(%rsp),%r8 6634136d: 8b 54 24 34 mov 0x34(%rsp),%edx 66341371: 48 8b 4c 24 28 mov 0x28(%rsp),%rcx @@ -276,8 +276,8 @@ Disassembly of section .text: 0000000066341380 : 66341380: 48 89 ca mov %rcx,%rdx - 66341383: 48 8d 0d 76 5c 01 00 lea 0x15c76(%rip),%rcx # 66357000 <__bss_start__> - 6634138a: e9 11 10 01 00 jmpq 663523a0 <_register_onexit_function> + 66341383: 48 8d 0d 76 4c 01 00 lea 0x14c76(%rip),%rcx # 66356000 <__bss_start__> + 6634138a: e9 01 fe 00 00 jmpq 66351190 <_register_onexit_function> 6634138f: 90 nop 0000000066341390 <__gcc_register_frame>: @@ -330,8 +330,8 @@ Disassembly of section .text: 663413fb: 85 c0 test %eax,%eax 663413fd: 75 2e jne 6634142d 663413ff: 48 8b 41 28 mov 0x28(%rcx),%rax - 66341403: 48 8b 0d 26 65 01 00 mov 0x16526(%rip),%rcx # 66357930 - 6634140a: 4c 8b 05 0f 65 01 00 mov 0x1650f(%rip),%r8 # 66357920 + 66341403: 48 8b 0d 26 55 01 00 mov 0x15526(%rip),%rcx # 66356930 + 6634140a: 4c 8b 05 0f 55 01 00 mov 0x1550f(%rip),%r8 # 66356920 66341411: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx 66341415: 48 8b 42 10 mov 0x10(%rdx),%rax 66341419: c7 00 01 00 00 00 movl $0x1,(%rax) @@ -367,8 +367,8 @@ Disassembly of section .text: 66341478: 85 c0 test %eax,%eax 6634147a: 75 2e jne 663414aa 6634147c: 48 8b 41 28 mov 0x28(%rcx),%rax - 66341480: 48 8b 0d a9 64 01 00 mov 0x164a9(%rip),%rcx # 66357930 - 66341487: 4c 8b 05 92 64 01 00 mov 0x16492(%rip),%r8 # 66357920 + 66341480: 48 8b 0d a9 54 01 00 mov 0x154a9(%rip),%rcx # 66356930 + 66341487: 4c 8b 05 92 54 01 00 mov 0x15492(%rip),%r8 # 66356920 6634148e: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx 66341492: 48 8b 42 10 mov 0x10(%rdx),%rax 66341496: c7 00 01 00 00 00 movl $0x1,(%rax) @@ -387,10 +387,10 @@ Disassembly of section .text: 663414ba: 45 85 c0 test %r8d,%r8d 663414bd: 48 89 cb mov %rcx,%rbx 663414c0: 7f 19 jg 663414db - 663414c2: 48 8d 15 37 2b 01 00 lea 0x12b37(%rip),%rdx # 66354000 <.rdata> + 663414c2: 48 8d 15 37 1b 01 00 lea 0x11b37(%rip),%rdx # 66353000 <.rdata> 663414c9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 663414cf: 48 8d 0d 3a 2b 01 00 lea 0x12b3a(%rip),%rcx # 66354010 <.rdata+0x10> - 663414d6: e8 35 0d 01 00 callq 66352210 <_assert> + 663414cf: 48 8d 0d 3a 1b 01 00 lea 0x11b3a(%rip),%rcx # 66353010 <.rdata+0x10> + 663414d6: e8 25 fb 00 00 callq 66351000 <_assert> 663414db: 48 8b 43 40 mov 0x40(%rbx),%rax 663414df: 8b 10 mov (%rax),%edx 663414e1: 48 8b 43 10 mov 0x10(%rbx),%rax @@ -436,18 +436,18 @@ Disassembly of section .text: 66341552: 5b pop %rbx 66341553: 5e pop %rsi 66341554: c3 retq - 66341555: 48 8d 15 a4 2a 01 00 lea 0x12aa4(%rip),%rdx # 66354000 <.rdata> + 66341555: 48 8d 15 a4 1a 01 00 lea 0x11aa4(%rip),%rdx # 66353000 <.rdata> 6634155c: 41 b8 93 00 00 00 mov $0x93,%r8d - 66341562: 48 8d 0d a7 2a 01 00 lea 0x12aa7(%rip),%rcx # 66354010 <.rdata+0x10> - 66341569: e8 a2 0c 01 00 callq 66352210 <_assert> + 66341562: 48 8d 0d a7 1a 01 00 lea 0x11aa7(%rip),%rcx # 66353010 <.rdata+0x10> + 66341569: e8 92 fa 00 00 callq 66351000 <_assert> 6634156e: 48 8b 43 40 mov 0x40(%rbx),%rax 66341572: c7 00 00 00 00 00 movl $0x0,(%rax) 66341578: eb 9f jmp 66341519 6634157a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66341580: 48 8d 15 79 2a 01 00 lea 0x12a79(%rip),%rdx # 66354000 <.rdata> + 66341580: 48 8d 15 79 1a 01 00 lea 0x11a79(%rip),%rdx # 66353000 <.rdata> 66341587: 41 b8 93 00 00 00 mov $0x93,%r8d - 6634158d: 48 8d 0d 7c 2a 01 00 lea 0x12a7c(%rip),%rcx # 66354010 <.rdata+0x10> - 66341594: e8 77 0c 01 00 callq 66352210 <_assert> + 6634158d: 48 8d 0d 7c 1a 01 00 lea 0x11a7c(%rip),%rcx # 66353010 <.rdata+0x10> + 66341594: e8 67 fa 00 00 callq 66351000 <_assert> 66341599: 48 8b 43 40 mov 0x40(%rbx),%rax 6634159d: 89 30 mov %esi,(%rax) 6634159f: eb ad jmp 6634154e @@ -456,18695 +456,19078 @@ Disassembly of section .text: 663415a9: eb 86 jmp 66341531 663415ab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) -00000000663415b0 : - 663415b0: 53 push %rbx - 663415b1: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 663415b5: 4c 8b 59 08 mov 0x8(%rcx),%r11 - 663415b9: 49 8b 42 10 mov 0x10(%r10),%rax - 663415bd: 49 8b 52 08 mov 0x8(%r10),%rdx - 663415c1: 45 8b 4b 0c mov 0xc(%r11),%r9d - 663415c5: 44 8b 02 mov (%rdx),%r8d - 663415c8: 44 03 00 add (%rax),%r8d - 663415cb: 49 8b 42 20 mov 0x20(%r10),%rax - 663415cf: 44 03 00 add (%rax),%r8d - 663415d2: 44 89 c2 mov %r8d,%edx - 663415d5: 83 e2 01 and $0x1,%edx - 663415d8: 44 39 ca cmp %r9d,%edx - 663415db: 74 62 je 6634163f - 663415dd: 48 8b 41 18 mov 0x18(%rcx),%rax - 663415e1: 89 d3 mov %edx,%ebx - 663415e3: 44 29 cb sub %r9d,%ebx - 663415e6: 48 8b 40 18 mov 0x18(%rax),%rax - 663415ea: 01 18 add %ebx,(%rax) - 663415ec: 41 89 53 0c mov %edx,0xc(%r11) - 663415f0: 31 d2 xor %edx,%edx - 663415f2: 44 8b 08 mov (%rax),%r9d - 663415f5: 49 8b 42 18 mov 0x18(%r10),%rax - 663415f9: 45 85 c9 test %r9d,%r9d - 663415fc: 0f 9f c2 setg %dl - 663415ff: 3b 10 cmp (%rax),%edx - 66341601: 74 3c je 6634163f - 66341603: 48 8b 41 20 mov 0x20(%rcx),%rax - 66341607: 48 8b 40 18 mov 0x18(%rax),%rax - 6634160b: 8b 00 mov (%rax),%eax - 6634160d: 85 c0 test %eax,%eax - 6634160f: 75 2e jne 6634163f - 66341611: 48 8b 41 28 mov 0x28(%rcx),%rax - 66341615: 4c 8b 0d 14 63 01 00 mov 0x16314(%rip),%r9 # 66357930 - 6634161c: 4c 8b 15 fd 62 01 00 mov 0x162fd(%rip),%r10 # 66357920 - 66341623: 48 8b 50 18 mov 0x18(%rax),%rdx - 66341627: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634162b: c7 00 01 00 00 00 movl $0x1,(%rax) - 66341631: 49 63 01 movslq (%r9),%rax - 66341634: 44 8d 58 01 lea 0x1(%rax),%r11d - 66341638: 45 89 19 mov %r11d,(%r9) - 6634163b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634163f: 41 d1 f8 sar %r8d - 66341642: ba 05 00 00 00 mov $0x5,%edx - 66341647: 41 83 e0 01 and $0x1,%r8d - 6634164b: 5b pop %rbx - 6634164c: e9 5f fd ff ff jmpq 663413b0 - 66341651: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66341656: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634165d: 00 00 00 +00000000663415b0 : + 663415b0: 56 push %rsi + 663415b1: 53 push %rbx + 663415b2: 48 83 ec 28 sub $0x28,%rsp + 663415b6: 44 8b 41 38 mov 0x38(%rcx),%r8d + 663415ba: 45 85 c0 test %r8d,%r8d + 663415bd: 48 89 cb mov %rcx,%rbx + 663415c0: 7f 19 jg 663415db + 663415c2: 48 8d 15 37 1a 01 00 lea 0x11a37(%rip),%rdx # 66353000 <.rdata> + 663415c9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663415cf: 48 8d 0d 3a 1a 01 00 lea 0x11a3a(%rip),%rcx # 66353010 <.rdata+0x10> + 663415d6: e8 25 fa 00 00 callq 66351000 <_assert> + 663415db: 48 8b 43 40 mov 0x40(%rbx),%rax + 663415df: 8b 10 mov (%rax),%edx + 663415e1: 48 8b 43 10 mov 0x10(%rbx),%rax + 663415e5: 48 8b 48 38 mov 0x38(%rax),%rcx + 663415e9: 8b 09 mov (%rcx),%ecx + 663415eb: 85 c9 test %ecx,%ecx + 663415ed: 74 41 je 66341630 + 663415ef: 48 8b 48 10 mov 0x10(%rax),%rcx + 663415f3: 48 8b 40 08 mov 0x8(%rax),%rax + 663415f7: 8b 09 mov (%rcx),%ecx + 663415f9: 8b 00 mov (%rax),%eax + 663415fb: 8d 74 48 03 lea 0x3(%rax,%rcx,2),%esi + 663415ff: 39 d6 cmp %edx,%esi + 66341601: 74 25 je 66341628 + 66341603: 85 d2 test %edx,%edx + 66341605: 0f 85 86 00 00 00 jne 66341691 + 6634160b: 89 f2 mov %esi,%edx + 6634160d: 41 b8 01 00 00 00 mov $0x1,%r8d + 66341613: 48 89 d9 mov %rbx,%rcx + 66341616: e8 95 fd ff ff callq 663413b0 + 6634161b: 8b 53 38 mov 0x38(%rbx),%edx + 6634161e: 85 d2 test %edx,%edx + 66341620: 7e 4e jle 66341670 + 66341622: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341626: 89 30 mov %esi,(%rax) + 66341628: 48 83 c4 28 add $0x28,%rsp + 6634162c: 5b pop %rbx + 6634162d: 5e pop %rsi + 6634162e: c3 retq + 6634162f: 90 nop + 66341630: 85 d2 test %edx,%edx + 66341632: 74 f4 je 66341628 + 66341634: 48 89 d9 mov %rbx,%rcx + 66341637: e8 f4 fd ff ff callq 66341430 + 6634163c: 8b 43 38 mov 0x38(%rbx),%eax + 6634163f: 85 c0 test %eax,%eax + 66341641: 7f 19 jg 6634165c + 66341643: 48 8d 15 b6 19 01 00 lea 0x119b6(%rip),%rdx # 66353000 <.rdata> + 6634164a: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341650: 48 8d 0d b9 19 01 00 lea 0x119b9(%rip),%rcx # 66353010 <.rdata+0x10> + 66341657: e8 a4 f9 00 00 callq 66351000 <_assert> + 6634165c: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341660: c7 00 00 00 00 00 movl $0x0,(%rax) + 66341666: 48 83 c4 28 add $0x28,%rsp + 6634166a: 5b pop %rbx + 6634166b: 5e pop %rsi + 6634166c: c3 retq + 6634166d: 0f 1f 00 nopl (%rax) + 66341670: 48 8d 15 89 19 01 00 lea 0x11989(%rip),%rdx # 66353000 <.rdata> + 66341677: 41 b8 93 00 00 00 mov $0x93,%r8d + 6634167d: 48 8d 0d 8c 19 01 00 lea 0x1198c(%rip),%rcx # 66353010 <.rdata+0x10> + 66341684: e8 77 f9 00 00 callq 66351000 <_assert> + 66341689: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634168d: 89 30 mov %esi,(%rax) + 6634168f: eb 97 jmp 66341628 + 66341691: 48 89 d9 mov %rbx,%rcx + 66341694: e8 97 fd ff ff callq 66341430 + 66341699: e9 6d ff ff ff jmpq 6634160b + 6634169e: 66 90 xchg %ax,%ax -0000000066341660 : - 66341660: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66341664: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 66341668: 48 8b 42 08 mov 0x8(%rdx),%rax - 6634166c: 45 8b 48 08 mov 0x8(%r8),%r9d - 66341670: 8b 00 mov (%rax),%eax - 66341672: 44 39 c8 cmp %r9d,%eax - 66341675: 74 67 je 663416de - 66341677: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634167b: 41 89 c3 mov %eax,%r11d - 6634167e: 45 29 cb sub %r9d,%r11d - 66341681: 4d 8b 52 10 mov 0x10(%r10),%r10 - 66341685: 45 01 1a add %r11d,(%r10) - 66341688: 41 89 40 08 mov %eax,0x8(%r8) - 6634168c: 45 31 c0 xor %r8d,%r8d - 6634168f: 45 8b 0a mov (%r10),%r9d - 66341692: 48 8b 42 10 mov 0x10(%rdx),%rax - 66341696: 45 85 c9 test %r9d,%r9d - 66341699: 41 0f 9f c0 setg %r8b - 6634169d: 44 3b 00 cmp (%rax),%r8d - 663416a0: 74 3c je 663416de - 663416a2: 48 8b 41 20 mov 0x20(%rcx),%rax - 663416a6: 48 8b 40 10 mov 0x10(%rax),%rax - 663416aa: 8b 00 mov (%rax),%eax - 663416ac: 85 c0 test %eax,%eax - 663416ae: 75 2e jne 663416de - 663416b0: 48 8b 41 28 mov 0x28(%rcx),%rax - 663416b4: 48 8b 0d 75 62 01 00 mov 0x16275(%rip),%rcx # 66357930 - 663416bb: 4c 8b 05 5e 62 01 00 mov 0x1625e(%rip),%r8 # 66357920 - 663416c2: 48 8b 50 10 mov 0x10(%rax),%rdx - 663416c6: 48 8b 42 10 mov 0x10(%rdx),%rax - 663416ca: c7 00 01 00 00 00 movl $0x1,(%rax) - 663416d0: 48 63 01 movslq (%rcx),%rax - 663416d3: 44 8d 48 01 lea 0x1(%rax),%r9d - 663416d7: 44 89 09 mov %r9d,(%rcx) - 663416da: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 663416de: c3 retq - 663416df: 90 nop +00000000663416a0 : + 663416a0: 56 push %rsi + 663416a1: 53 push %rbx + 663416a2: 48 83 ec 28 sub $0x28,%rsp + 663416a6: 44 8b 41 38 mov 0x38(%rcx),%r8d + 663416aa: 45 85 c0 test %r8d,%r8d + 663416ad: 48 89 cb mov %rcx,%rbx + 663416b0: 7f 19 jg 663416cb + 663416b2: 48 8d 15 47 19 01 00 lea 0x11947(%rip),%rdx # 66353000 <.rdata> + 663416b9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663416bf: 48 8d 0d 4a 19 01 00 lea 0x1194a(%rip),%rcx # 66353010 <.rdata+0x10> + 663416c6: e8 35 f9 00 00 callq 66351000 <_assert> + 663416cb: 48 8b 43 40 mov 0x40(%rbx),%rax + 663416cf: 8b 10 mov (%rax),%edx + 663416d1: 48 8b 43 10 mov 0x10(%rbx),%rax + 663416d5: 48 8b 48 60 mov 0x60(%rax),%rcx + 663416d9: 8b 09 mov (%rcx),%ecx + 663416db: 85 c9 test %ecx,%ecx + 663416dd: 74 51 je 66341730 + 663416df: 48 8b 48 10 mov 0x10(%rax),%rcx + 663416e3: 44 8b 01 mov (%rcx),%r8d + 663416e6: 48 8b 48 08 mov 0x8(%rax),%rcx + 663416ea: 48 8b 40 18 mov 0x18(%rax),%rax + 663416ee: 8b 09 mov (%rcx),%ecx + 663416f0: 8b 00 mov (%rax),%eax + 663416f2: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 663416f6: 8d 74 81 04 lea 0x4(%rcx,%rax,4),%esi + 663416fa: 39 d6 cmp %edx,%esi + 663416fc: 74 25 je 66341723 + 663416fe: 85 d2 test %edx,%edx + 66341700: 0f 85 8b 00 00 00 jne 66341791 + 66341706: 89 f2 mov %esi,%edx + 66341708: 41 b8 01 00 00 00 mov $0x1,%r8d + 6634170e: 48 89 d9 mov %rbx,%rcx + 66341711: e8 9a fc ff ff callq 663413b0 + 66341716: 8b 53 38 mov 0x38(%rbx),%edx + 66341719: 85 d2 test %edx,%edx + 6634171b: 7e 53 jle 66341770 + 6634171d: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341721: 89 30 mov %esi,(%rax) + 66341723: 48 83 c4 28 add $0x28,%rsp + 66341727: 5b pop %rbx + 66341728: 5e pop %rsi + 66341729: c3 retq + 6634172a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66341730: 85 d2 test %edx,%edx + 66341732: 74 ef je 66341723 + 66341734: 48 89 d9 mov %rbx,%rcx + 66341737: e8 f4 fc ff ff callq 66341430 + 6634173c: 8b 43 38 mov 0x38(%rbx),%eax + 6634173f: 85 c0 test %eax,%eax + 66341741: 7f 19 jg 6634175c + 66341743: 48 8d 15 b6 18 01 00 lea 0x118b6(%rip),%rdx # 66353000 <.rdata> + 6634174a: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341750: 48 8d 0d b9 18 01 00 lea 0x118b9(%rip),%rcx # 66353010 <.rdata+0x10> + 66341757: e8 a4 f8 00 00 callq 66351000 <_assert> + 6634175c: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341760: c7 00 00 00 00 00 movl $0x0,(%rax) + 66341766: 48 83 c4 28 add $0x28,%rsp + 6634176a: 5b pop %rbx + 6634176b: 5e pop %rsi + 6634176c: c3 retq + 6634176d: 0f 1f 00 nopl (%rax) + 66341770: 48 8d 15 89 18 01 00 lea 0x11889(%rip),%rdx # 66353000 <.rdata> + 66341777: 41 b8 93 00 00 00 mov $0x93,%r8d + 6634177d: 48 8d 0d 8c 18 01 00 lea 0x1188c(%rip),%rcx # 66353010 <.rdata+0x10> + 66341784: e8 77 f8 00 00 callq 66351000 <_assert> + 66341789: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634178d: 89 30 mov %esi,(%rax) + 6634178f: eb 92 jmp 66341723 + 66341791: 48 89 d9 mov %rbx,%rcx + 66341794: e8 97 fc ff ff callq 66341430 + 66341799: e9 68 ff ff ff jmpq 66341706 + 6634179e: 66 90 xchg %ax,%ax -00000000663416e0 : - 663416e0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663416e4: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 663416e8: 48 8b 42 08 mov 0x8(%rdx),%rax - 663416ec: 45 8b 48 08 mov 0x8(%r8),%r9d - 663416f0: 44 8b 10 mov (%rax),%r10d - 663416f3: 31 c0 xor %eax,%eax - 663416f5: 45 85 d2 test %r10d,%r10d - 663416f8: 0f 94 c0 sete %al - 663416fb: 44 39 c8 cmp %r9d,%eax - 663416fe: 74 67 je 66341767 - 66341700: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66341704: 41 89 c3 mov %eax,%r11d - 66341707: 45 29 cb sub %r9d,%r11d - 6634170a: 4d 8b 52 10 mov 0x10(%r10),%r10 - 6634170e: 45 01 1a add %r11d,(%r10) - 66341711: 41 89 40 08 mov %eax,0x8(%r8) - 66341715: 45 31 c0 xor %r8d,%r8d - 66341718: 45 8b 0a mov (%r10),%r9d - 6634171b: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634171f: 45 85 c9 test %r9d,%r9d - 66341722: 41 0f 9f c0 setg %r8b - 66341726: 44 3b 00 cmp (%rax),%r8d - 66341729: 74 3c je 66341767 - 6634172b: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634172f: 48 8b 40 10 mov 0x10(%rax),%rax - 66341733: 8b 00 mov (%rax),%eax - 66341735: 85 c0 test %eax,%eax - 66341737: 75 2e jne 66341767 - 66341739: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634173d: 48 8b 0d ec 61 01 00 mov 0x161ec(%rip),%rcx # 66357930 - 66341744: 4c 8b 05 d5 61 01 00 mov 0x161d5(%rip),%r8 # 66357920 - 6634174b: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634174f: 48 8b 42 10 mov 0x10(%rdx),%rax - 66341753: c7 00 01 00 00 00 movl $0x1,(%rax) - 66341759: 48 63 01 movslq (%rcx),%rax - 6634175c: 44 8d 48 01 lea 0x1(%rax),%r9d - 66341760: 44 89 09 mov %r9d,(%rcx) - 66341763: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66341767: c3 retq - 66341768: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634176f: 00 +00000000663417a0 : + 663417a0: 56 push %rsi + 663417a1: 53 push %rbx + 663417a2: 48 83 ec 28 sub $0x28,%rsp + 663417a6: 44 8b 41 38 mov 0x38(%rcx),%r8d + 663417aa: 45 85 c0 test %r8d,%r8d + 663417ad: 48 89 cb mov %rcx,%rbx + 663417b0: 7f 19 jg 663417cb + 663417b2: 48 8d 15 47 18 01 00 lea 0x11847(%rip),%rdx # 66353000 <.rdata> + 663417b9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663417bf: 48 8d 0d 4a 18 01 00 lea 0x1184a(%rip),%rcx # 66353010 <.rdata+0x10> + 663417c6: e8 35 f8 00 00 callq 66351000 <_assert> + 663417cb: 48 8b 43 40 mov 0x40(%rbx),%rax + 663417cf: 8b 10 mov (%rax),%edx + 663417d1: 48 8b 43 10 mov 0x10(%rbx),%rax + 663417d5: 48 8b 88 a8 00 00 00 mov 0xa8(%rax),%rcx + 663417dc: 8b 09 mov (%rcx),%ecx + 663417de: 85 c9 test %ecx,%ecx + 663417e0: 74 5e je 66341840 + 663417e2: 48 8b 48 10 mov 0x10(%rax),%rcx + 663417e6: 44 8b 01 mov (%rcx),%r8d + 663417e9: 48 8b 48 08 mov 0x8(%rax),%rcx + 663417ed: 8b 09 mov (%rcx),%ecx + 663417ef: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 663417f3: 4c 8b 40 18 mov 0x18(%rax),%r8 + 663417f7: 48 8b 40 20 mov 0x20(%rax),%rax + 663417fb: 45 8b 00 mov (%r8),%r8d + 663417fe: 8b 00 mov (%rax),%eax + 66341800: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx + 66341804: 8d 74 c1 05 lea 0x5(%rcx,%rax,8),%esi + 66341808: 39 d6 cmp %edx,%esi + 6634180a: 74 25 je 66341831 + 6634180c: 85 d2 test %edx,%edx + 6634180e: 0f 85 8d 00 00 00 jne 663418a1 + 66341814: 89 f2 mov %esi,%edx + 66341816: 41 b8 01 00 00 00 mov $0x1,%r8d + 6634181c: 48 89 d9 mov %rbx,%rcx + 6634181f: e8 8c fb ff ff callq 663413b0 + 66341824: 8b 53 38 mov 0x38(%rbx),%edx + 66341827: 85 d2 test %edx,%edx + 66341829: 7e 55 jle 66341880 + 6634182b: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634182f: 89 30 mov %esi,(%rax) + 66341831: 48 83 c4 28 add $0x28,%rsp + 66341835: 5b pop %rbx + 66341836: 5e pop %rsi + 66341837: c3 retq + 66341838: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634183f: 00 + 66341840: 85 d2 test %edx,%edx + 66341842: 74 ed je 66341831 + 66341844: 48 89 d9 mov %rbx,%rcx + 66341847: e8 e4 fb ff ff callq 66341430 + 6634184c: 8b 43 38 mov 0x38(%rbx),%eax + 6634184f: 85 c0 test %eax,%eax + 66341851: 7f 19 jg 6634186c + 66341853: 48 8d 15 a6 17 01 00 lea 0x117a6(%rip),%rdx # 66353000 <.rdata> + 6634185a: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341860: 48 8d 0d a9 17 01 00 lea 0x117a9(%rip),%rcx # 66353010 <.rdata+0x10> + 66341867: e8 94 f7 00 00 callq 66351000 <_assert> + 6634186c: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341870: c7 00 00 00 00 00 movl $0x0,(%rax) + 66341876: 48 83 c4 28 add $0x28,%rsp + 6634187a: 5b pop %rbx + 6634187b: 5e pop %rsi + 6634187c: c3 retq + 6634187d: 0f 1f 00 nopl (%rax) + 66341880: 48 8d 15 79 17 01 00 lea 0x11779(%rip),%rdx # 66353000 <.rdata> + 66341887: 41 b8 93 00 00 00 mov $0x93,%r8d + 6634188d: 48 8d 0d 7c 17 01 00 lea 0x1177c(%rip),%rcx # 66353010 <.rdata+0x10> + 66341894: e8 67 f7 00 00 callq 66351000 <_assert> + 66341899: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634189d: 89 30 mov %esi,(%rax) + 6634189f: eb 90 jmp 66341831 + 663418a1: 48 89 d9 mov %rbx,%rcx + 663418a4: e8 87 fb ff ff callq 66341430 + 663418a9: e9 66 ff ff ff jmpq 66341814 + 663418ae: 66 90 xchg %ax,%ax -0000000066341770 : - 66341770: 41 56 push %r14 - 66341772: 57 push %rdi - 66341773: 56 push %rsi - 66341774: 53 push %rbx - 66341775: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341779: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax - 66341780: 44 8b 10 mov (%rax),%r10d - 66341783: 45 85 d2 test %r10d,%r10d - 66341786: 0f 84 a8 00 00 00 je 66341834 - 6634178c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341790: 31 c0 xor %eax,%eax - 66341792: 48 8b 3d 87 61 01 00 mov 0x16187(%rip),%rdi # 66357920 - 66341799: 48 8b 35 90 61 01 00 mov 0x16190(%rip),%rsi # 66357930 - 663417a0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 663417a5: 44 8b 84 03 04 01 00 mov 0x104(%rbx,%rax,1),%r8d - 663417ac: 00 - 663417ad: 8b 12 mov (%rdx),%edx - 663417af: 44 39 c2 cmp %r8d,%edx - 663417b2: 74 70 je 66341824 - 663417b4: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663417b8: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 663417bc: 41 89 d6 mov %edx,%r14d - 663417bf: 45 29 c6 sub %r8d,%r14d - 663417c2: 45 31 c0 xor %r8d,%r8d - 663417c5: 4f 8b 8c 11 08 02 00 mov 0x208(%r9,%r10,1),%r9 - 663417cc: 00 - 663417cd: 45 01 31 add %r14d,(%r9) - 663417d0: 89 94 03 04 01 00 00 mov %edx,0x104(%rbx,%rax,1) - 663417d7: 45 8b 09 mov (%r9),%r9d - 663417da: 49 8b 94 43 08 02 00 mov 0x208(%r11,%rax,2),%rdx - 663417e1: 00 - 663417e2: 45 85 c9 test %r9d,%r9d - 663417e5: 41 0f 9f c0 setg %r8b - 663417e9: 44 3b 02 cmp (%rdx),%r8d - 663417ec: 74 36 je 66341824 - 663417ee: 48 8b 51 20 mov 0x20(%rcx),%rdx - 663417f2: 4a 8b 94 12 08 02 00 mov 0x208(%rdx,%r10,1),%rdx - 663417f9: 00 - 663417fa: 8b 12 mov (%rdx),%edx - 663417fc: 85 d2 test %edx,%edx - 663417fe: 75 24 jne 66341824 - 66341800: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341804: 4e 8b 84 12 08 02 00 mov 0x208(%rdx,%r10,1),%r8 - 6634180b: 00 - 6634180c: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341810: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341816: 48 63 16 movslq (%rsi),%rdx - 66341819: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 6634181d: 44 89 0e mov %r9d,(%rsi) - 66341820: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341824: 48 83 c0 04 add $0x4,%rax - 66341828: 48 3d 00 01 00 00 cmp $0x100,%rax - 6634182e: 0f 85 6c ff ff ff jne 663417a0 - 66341834: 5b pop %rbx - 66341835: 5e pop %rsi - 66341836: 5f pop %rdi - 66341837: 41 5e pop %r14 - 66341839: c3 retq - 6634183a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) +00000000663418b0 : + 663418b0: 56 push %rsi + 663418b1: 53 push %rbx + 663418b2: 48 83 ec 28 sub $0x28,%rsp + 663418b6: 44 8b 41 38 mov 0x38(%rcx),%r8d + 663418ba: 45 85 c0 test %r8d,%r8d + 663418bd: 48 89 cb mov %rcx,%rbx + 663418c0: 7f 19 jg 663418db + 663418c2: 48 8d 15 37 17 01 00 lea 0x11737(%rip),%rdx # 66353000 <.rdata> + 663418c9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663418cf: 48 8d 0d 3a 17 01 00 lea 0x1173a(%rip),%rcx # 66353010 <.rdata+0x10> + 663418d6: e8 25 f7 00 00 callq 66351000 <_assert> + 663418db: 48 8b 43 40 mov 0x40(%rbx),%rax + 663418df: 8b 10 mov (%rax),%edx + 663418e1: 48 8b 43 10 mov 0x10(%rbx),%rax + 663418e5: 48 8b 88 30 01 00 00 mov 0x130(%rax),%rcx + 663418ec: 8b 09 mov (%rcx),%ecx + 663418ee: 85 c9 test %ecx,%ecx + 663418f0: 74 6e je 66341960 + 663418f2: 48 8b 48 10 mov 0x10(%rax),%rcx + 663418f6: 44 8b 01 mov (%rcx),%r8d + 663418f9: 48 8b 48 08 mov 0x8(%rax),%rcx + 663418fd: 8b 09 mov (%rcx),%ecx + 663418ff: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 66341903: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66341907: 45 8b 00 mov (%r8),%r8d + 6634190a: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx + 6634190e: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66341912: 48 8b 40 28 mov 0x28(%rax),%rax + 66341916: 45 8b 00 mov (%r8),%r8d + 66341919: 8b 00 mov (%rax),%eax + 6634191b: 42 8d 0c c1 lea (%rcx,%r8,8),%ecx + 6634191f: c1 e0 04 shl $0x4,%eax + 66341922: 8d 74 01 06 lea 0x6(%rcx,%rax,1),%esi + 66341926: 39 d6 cmp %edx,%esi + 66341928: 74 25 je 6634194f + 6634192a: 85 d2 test %edx,%edx + 6634192c: 0f 85 8f 00 00 00 jne 663419c1 + 66341932: 89 f2 mov %esi,%edx + 66341934: 41 b8 01 00 00 00 mov $0x1,%r8d + 6634193a: 48 89 d9 mov %rbx,%rcx + 6634193d: e8 6e fa ff ff callq 663413b0 + 66341942: 8b 53 38 mov 0x38(%rbx),%edx + 66341945: 85 d2 test %edx,%edx + 66341947: 7e 57 jle 663419a0 + 66341949: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634194d: 89 30 mov %esi,(%rax) + 6634194f: 48 83 c4 28 add $0x28,%rsp + 66341953: 5b pop %rbx + 66341954: 5e pop %rsi + 66341955: c3 retq + 66341956: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634195d: 00 00 00 + 66341960: 85 d2 test %edx,%edx + 66341962: 74 eb je 6634194f + 66341964: 48 89 d9 mov %rbx,%rcx + 66341967: e8 c4 fa ff ff callq 66341430 + 6634196c: 8b 43 38 mov 0x38(%rbx),%eax + 6634196f: 85 c0 test %eax,%eax + 66341971: 7f 19 jg 6634198c + 66341973: 48 8d 15 86 16 01 00 lea 0x11686(%rip),%rdx # 66353000 <.rdata> + 6634197a: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341980: 48 8d 0d 89 16 01 00 lea 0x11689(%rip),%rcx # 66353010 <.rdata+0x10> + 66341987: e8 74 f6 00 00 callq 66351000 <_assert> + 6634198c: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341990: c7 00 00 00 00 00 movl $0x0,(%rax) + 66341996: 48 83 c4 28 add $0x28,%rsp + 6634199a: 5b pop %rbx + 6634199b: 5e pop %rsi + 6634199c: c3 retq + 6634199d: 0f 1f 00 nopl (%rax) + 663419a0: 48 8d 15 59 16 01 00 lea 0x11659(%rip),%rdx # 66353000 <.rdata> + 663419a7: 41 b8 93 00 00 00 mov $0x93,%r8d + 663419ad: 48 8d 0d 5c 16 01 00 lea 0x1165c(%rip),%rcx # 66353010 <.rdata+0x10> + 663419b4: e8 47 f6 00 00 callq 66351000 <_assert> + 663419b9: 48 8b 43 40 mov 0x40(%rbx),%rax + 663419bd: 89 30 mov %esi,(%rax) + 663419bf: eb 8e jmp 6634194f + 663419c1: 48 89 d9 mov %rbx,%rcx + 663419c4: e8 67 fa ff ff callq 66341430 + 663419c9: e9 64 ff ff ff jmpq 66341932 + 663419ce: 66 90 xchg %ax,%ax -0000000066341840 : - 66341840: 41 56 push %r14 - 66341842: 57 push %rdi - 66341843: 56 push %rsi - 66341844: 53 push %rbx - 66341845: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341849: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax - 66341850: 44 8b 10 mov (%rax),%r10d - 66341853: 45 85 d2 test %r10d,%r10d - 66341856: 0f 84 a8 00 00 00 je 66341904 - 6634185c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341860: 31 c0 xor %eax,%eax - 66341862: 48 8b 3d b7 60 01 00 mov 0x160b7(%rip),%rdi # 66357920 - 66341869: 48 8b 35 c0 60 01 00 mov 0x160c0(%rip),%rsi # 66357930 - 66341870: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341875: 44 8b 84 03 c4 00 00 mov 0xc4(%rbx,%rax,1),%r8d - 6634187c: 00 - 6634187d: 8b 12 mov (%rdx),%edx - 6634187f: 44 39 c2 cmp %r8d,%edx - 66341882: 74 70 je 663418f4 - 66341884: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341888: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 6634188c: 41 89 d6 mov %edx,%r14d - 6634188f: 45 29 c6 sub %r8d,%r14d - 66341892: 45 31 c0 xor %r8d,%r8d - 66341895: 4f 8b 8c 11 88 01 00 mov 0x188(%r9,%r10,1),%r9 - 6634189c: 00 - 6634189d: 45 01 31 add %r14d,(%r9) - 663418a0: 89 94 03 c4 00 00 00 mov %edx,0xc4(%rbx,%rax,1) - 663418a7: 45 8b 09 mov (%r9),%r9d - 663418aa: 49 8b 94 43 88 01 00 mov 0x188(%r11,%rax,2),%rdx - 663418b1: 00 - 663418b2: 45 85 c9 test %r9d,%r9d - 663418b5: 41 0f 9f c0 setg %r8b - 663418b9: 44 3b 02 cmp (%rdx),%r8d - 663418bc: 74 36 je 663418f4 - 663418be: 48 8b 51 20 mov 0x20(%rcx),%rdx - 663418c2: 4a 8b 94 12 88 01 00 mov 0x188(%rdx,%r10,1),%rdx - 663418c9: 00 - 663418ca: 8b 12 mov (%rdx),%edx - 663418cc: 85 d2 test %edx,%edx - 663418ce: 75 24 jne 663418f4 - 663418d0: 48 8b 51 28 mov 0x28(%rcx),%rdx - 663418d4: 4e 8b 84 12 88 01 00 mov 0x188(%rdx,%r10,1),%r8 - 663418db: 00 - 663418dc: 49 8b 50 10 mov 0x10(%r8),%rdx - 663418e0: c7 02 01 00 00 00 movl $0x1,(%rdx) - 663418e6: 48 63 16 movslq (%rsi),%rdx - 663418e9: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 663418ed: 44 89 0e mov %r9d,(%rsi) - 663418f0: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 663418f4: 48 83 c0 04 add $0x4,%rax - 663418f8: 48 3d c0 00 00 00 cmp $0xc0,%rax - 663418fe: 0f 85 6c ff ff ff jne 66341870 - 66341904: 5b pop %rbx - 66341905: 5e pop %rsi - 66341906: 5f pop %rdi - 66341907: 41 5e pop %r14 - 66341909: c3 retq - 6634190a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) +00000000663419d0 : + 663419d0: 56 push %rsi + 663419d1: 53 push %rbx + 663419d2: 48 83 ec 28 sub $0x28,%rsp + 663419d6: 44 8b 41 38 mov 0x38(%rcx),%r8d + 663419da: 45 85 c0 test %r8d,%r8d + 663419dd: 48 89 cb mov %rcx,%rbx + 663419e0: 7f 19 jg 663419fb + 663419e2: 48 8d 15 17 16 01 00 lea 0x11617(%rip),%rdx # 66353000 <.rdata> + 663419e9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663419ef: 48 8d 0d 1a 16 01 00 lea 0x1161a(%rip),%rcx # 66353010 <.rdata+0x10> + 663419f6: e8 05 f6 00 00 callq 66351000 <_assert> + 663419fb: 48 8b 43 40 mov 0x40(%rbx),%rax + 663419ff: 8b 10 mov (%rax),%edx + 66341a01: 48 8b 43 10 mov 0x10(%rbx),%rax + 66341a05: 48 8b 88 38 02 00 00 mov 0x238(%rax),%rcx + 66341a0c: 8b 09 mov (%rcx),%ecx + 66341a0e: 85 c9 test %ecx,%ecx + 66341a10: 74 70 je 66341a82 + 66341a12: 48 8b 48 10 mov 0x10(%rax),%rcx + 66341a16: 44 8b 01 mov (%rcx),%r8d + 66341a19: 48 8b 48 08 mov 0x8(%rax),%rcx + 66341a1d: 8b 09 mov (%rcx),%ecx + 66341a1f: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 66341a23: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66341a27: 45 8b 00 mov (%r8),%r8d + 66341a2a: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx + 66341a2e: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66341a32: 45 8b 00 mov (%r8),%r8d + 66341a35: 46 8d 04 c1 lea (%rcx,%r8,8),%r8d + 66341a39: 48 8b 48 28 mov 0x28(%rax),%rcx + 66341a3d: 48 8b 40 30 mov 0x30(%rax),%rax + 66341a41: 8b 09 mov (%rcx),%ecx + 66341a43: 8b 00 mov (%rax),%eax + 66341a45: c1 e1 04 shl $0x4,%ecx + 66341a48: 44 01 c1 add %r8d,%ecx + 66341a4b: c1 e0 05 shl $0x5,%eax + 66341a4e: 8d 74 01 07 lea 0x7(%rcx,%rax,1),%esi + 66341a52: 39 d6 cmp %edx,%esi + 66341a54: 74 25 je 66341a7b + 66341a56: 85 d2 test %edx,%edx + 66341a58: 0f 85 83 00 00 00 jne 66341ae1 + 66341a5e: 89 f2 mov %esi,%edx + 66341a60: 41 b8 01 00 00 00 mov $0x1,%r8d + 66341a66: 48 89 d9 mov %rbx,%rcx + 66341a69: e8 42 f9 ff ff callq 663413b0 + 66341a6e: 8b 53 38 mov 0x38(%rbx),%edx + 66341a71: 85 d2 test %edx,%edx + 66341a73: 7e 4b jle 66341ac0 + 66341a75: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341a79: 89 30 mov %esi,(%rax) + 66341a7b: 48 83 c4 28 add $0x28,%rsp + 66341a7f: 5b pop %rbx + 66341a80: 5e pop %rsi + 66341a81: c3 retq + 66341a82: 85 d2 test %edx,%edx + 66341a84: 74 f5 je 66341a7b + 66341a86: 48 89 d9 mov %rbx,%rcx + 66341a89: e8 a2 f9 ff ff callq 66341430 + 66341a8e: 8b 43 38 mov 0x38(%rbx),%eax + 66341a91: 85 c0 test %eax,%eax + 66341a93: 7f 19 jg 66341aae + 66341a95: 48 8d 15 64 15 01 00 lea 0x11564(%rip),%rdx # 66353000 <.rdata> + 66341a9c: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341aa2: 48 8d 0d 67 15 01 00 lea 0x11567(%rip),%rcx # 66353010 <.rdata+0x10> + 66341aa9: e8 52 f5 00 00 callq 66351000 <_assert> + 66341aae: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341ab2: c7 00 00 00 00 00 movl $0x0,(%rax) + 66341ab8: 48 83 c4 28 add $0x28,%rsp + 66341abc: 5b pop %rbx + 66341abd: 5e pop %rsi + 66341abe: c3 retq + 66341abf: 90 nop + 66341ac0: 48 8d 15 39 15 01 00 lea 0x11539(%rip),%rdx # 66353000 <.rdata> + 66341ac7: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341acd: 48 8d 0d 3c 15 01 00 lea 0x1153c(%rip),%rcx # 66353010 <.rdata+0x10> + 66341ad4: e8 27 f5 00 00 callq 66351000 <_assert> + 66341ad9: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341add: 89 30 mov %esi,(%rax) + 66341adf: eb 9a jmp 66341a7b + 66341ae1: 48 89 d9 mov %rbx,%rcx + 66341ae4: e8 47 f9 ff ff callq 66341430 + 66341ae9: e9 70 ff ff ff jmpq 66341a5e + 66341aee: 66 90 xchg %ax,%ax -0000000066341910 : - 66341910: 41 56 push %r14 - 66341912: 57 push %rdi - 66341913: 56 push %rsi - 66341914: 53 push %rbx - 66341915: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341919: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax - 66341920: 44 8b 10 mov (%rax),%r10d - 66341923: 45 85 d2 test %r10d,%r10d - 66341926: 0f 84 a8 00 00 00 je 663419d4 - 6634192c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341930: 31 c0 xor %eax,%eax - 66341932: 48 8b 3d e7 5f 01 00 mov 0x15fe7(%rip),%rdi # 66357920 - 66341939: 48 8b 35 f0 5f 01 00 mov 0x15ff0(%rip),%rsi # 66357930 - 66341940: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341945: 44 8b 84 03 84 00 00 mov 0x84(%rbx,%rax,1),%r8d - 6634194c: 00 - 6634194d: 8b 12 mov (%rdx),%edx - 6634194f: 44 39 c2 cmp %r8d,%edx - 66341952: 74 70 je 663419c4 - 66341954: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341958: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 6634195c: 41 89 d6 mov %edx,%r14d - 6634195f: 45 29 c6 sub %r8d,%r14d - 66341962: 45 31 c0 xor %r8d,%r8d - 66341965: 4f 8b 8c 11 08 01 00 mov 0x108(%r9,%r10,1),%r9 - 6634196c: 00 - 6634196d: 45 01 31 add %r14d,(%r9) - 66341970: 89 94 03 84 00 00 00 mov %edx,0x84(%rbx,%rax,1) - 66341977: 45 8b 09 mov (%r9),%r9d - 6634197a: 49 8b 94 43 08 01 00 mov 0x108(%r11,%rax,2),%rdx - 66341981: 00 - 66341982: 45 85 c9 test %r9d,%r9d - 66341985: 41 0f 9f c0 setg %r8b - 66341989: 44 3b 02 cmp (%rdx),%r8d - 6634198c: 74 36 je 663419c4 - 6634198e: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341992: 4a 8b 94 12 08 01 00 mov 0x108(%rdx,%r10,1),%rdx - 66341999: 00 - 6634199a: 8b 12 mov (%rdx),%edx - 6634199c: 85 d2 test %edx,%edx - 6634199e: 75 24 jne 663419c4 - 663419a0: 48 8b 51 28 mov 0x28(%rcx),%rdx - 663419a4: 4e 8b 84 12 08 01 00 mov 0x108(%rdx,%r10,1),%r8 - 663419ab: 00 - 663419ac: 49 8b 50 10 mov 0x10(%r8),%rdx - 663419b0: c7 02 01 00 00 00 movl $0x1,(%rdx) - 663419b6: 48 63 16 movslq (%rsi),%rdx - 663419b9: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 663419bd: 44 89 0e mov %r9d,(%rsi) - 663419c0: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 663419c4: 48 83 c0 04 add $0x4,%rax - 663419c8: 48 3d 80 00 00 00 cmp $0x80,%rax - 663419ce: 0f 85 6c ff ff ff jne 66341940 - 663419d4: 5b pop %rbx - 663419d5: 5e pop %rsi - 663419d6: 5f pop %rdi - 663419d7: 41 5e pop %r14 - 663419d9: c3 retq - 663419da: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) +0000000066341af0 : + 66341af0: 56 push %rsi + 66341af1: 53 push %rbx + 66341af2: 48 83 ec 28 sub $0x28,%rsp + 66341af6: 44 8b 41 38 mov 0x38(%rcx),%r8d + 66341afa: 45 85 c0 test %r8d,%r8d + 66341afd: 48 89 cb mov %rcx,%rbx + 66341b00: 7f 19 jg 66341b1b + 66341b02: 48 8d 15 f7 14 01 00 lea 0x114f7(%rip),%rdx # 66353000 <.rdata> + 66341b09: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66341b0f: 48 8d 0d fa 14 01 00 lea 0x114fa(%rip),%rcx # 66353010 <.rdata+0x10> + 66341b16: e8 e5 f4 00 00 callq 66351000 <_assert> + 66341b1b: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341b1f: 8b 10 mov (%rax),%edx + 66341b21: 48 8b 43 10 mov 0x10(%rbx),%rax + 66341b25: 48 8b 88 40 04 00 00 mov 0x440(%rax),%rcx + 66341b2c: 8b 09 mov (%rcx),%ecx + 66341b2e: 85 c9 test %ecx,%ecx + 66341b30: 74 7e je 66341bb0 + 66341b32: 48 8b 48 10 mov 0x10(%rax),%rcx + 66341b36: 44 8b 01 mov (%rcx),%r8d + 66341b39: 48 8b 48 08 mov 0x8(%rax),%rcx + 66341b3d: 8b 09 mov (%rcx),%ecx + 66341b3f: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 66341b43: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66341b47: 45 8b 00 mov (%r8),%r8d + 66341b4a: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx + 66341b4e: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66341b52: 45 8b 00 mov (%r8),%r8d + 66341b55: 46 8d 04 c1 lea (%rcx,%r8,8),%r8d + 66341b59: 48 8b 48 28 mov 0x28(%rax),%rcx + 66341b5d: 8b 09 mov (%rcx),%ecx + 66341b5f: c1 e1 04 shl $0x4,%ecx + 66341b62: 41 01 c8 add %ecx,%r8d + 66341b65: 48 8b 48 30 mov 0x30(%rax),%rcx + 66341b69: 48 8b 40 38 mov 0x38(%rax),%rax + 66341b6d: 8b 09 mov (%rcx),%ecx + 66341b6f: 8b 00 mov (%rax),%eax + 66341b71: c1 e1 05 shl $0x5,%ecx + 66341b74: 44 01 c1 add %r8d,%ecx + 66341b77: c1 e0 06 shl $0x6,%eax + 66341b7a: 8d 74 01 08 lea 0x8(%rcx,%rax,1),%esi + 66341b7e: 39 d6 cmp %edx,%esi + 66341b80: 74 25 je 66341ba7 + 66341b82: 85 d2 test %edx,%edx + 66341b84: 0f 85 87 00 00 00 jne 66341c11 + 66341b8a: 89 f2 mov %esi,%edx + 66341b8c: 41 b8 01 00 00 00 mov $0x1,%r8d + 66341b92: 48 89 d9 mov %rbx,%rcx + 66341b95: e8 16 f8 ff ff callq 663413b0 + 66341b9a: 8b 53 38 mov 0x38(%rbx),%edx + 66341b9d: 85 d2 test %edx,%edx + 66341b9f: 7e 4f jle 66341bf0 + 66341ba1: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341ba5: 89 30 mov %esi,(%rax) + 66341ba7: 48 83 c4 28 add $0x28,%rsp + 66341bab: 5b pop %rbx + 66341bac: 5e pop %rsi + 66341bad: c3 retq + 66341bae: 66 90 xchg %ax,%ax + 66341bb0: 85 d2 test %edx,%edx + 66341bb2: 74 f3 je 66341ba7 + 66341bb4: 48 89 d9 mov %rbx,%rcx + 66341bb7: e8 74 f8 ff ff callq 66341430 + 66341bbc: 8b 43 38 mov 0x38(%rbx),%eax + 66341bbf: 85 c0 test %eax,%eax + 66341bc1: 7f 19 jg 66341bdc + 66341bc3: 48 8d 15 36 14 01 00 lea 0x11436(%rip),%rdx # 66353000 <.rdata> + 66341bca: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341bd0: 48 8d 0d 39 14 01 00 lea 0x11439(%rip),%rcx # 66353010 <.rdata+0x10> + 66341bd7: e8 24 f4 00 00 callq 66351000 <_assert> + 66341bdc: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341be0: c7 00 00 00 00 00 movl $0x0,(%rax) + 66341be6: 48 83 c4 28 add $0x28,%rsp + 66341bea: 5b pop %rbx + 66341beb: 5e pop %rsi + 66341bec: c3 retq + 66341bed: 0f 1f 00 nopl (%rax) + 66341bf0: 48 8d 15 09 14 01 00 lea 0x11409(%rip),%rdx # 66353000 <.rdata> + 66341bf7: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341bfd: 48 8d 0d 0c 14 01 00 lea 0x1140c(%rip),%rcx # 66353010 <.rdata+0x10> + 66341c04: e8 f7 f3 00 00 callq 66351000 <_assert> + 66341c09: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341c0d: 89 30 mov %esi,(%rax) + 66341c0f: eb 96 jmp 66341ba7 + 66341c11: 48 89 d9 mov %rbx,%rcx + 66341c14: e8 17 f8 ff ff callq 66341430 + 66341c19: e9 6c ff ff ff jmpq 66341b8a + 66341c1e: 66 90 xchg %ax,%ax -00000000663419e0 : - 663419e0: 41 56 push %r14 - 663419e2: 57 push %rdi - 663419e3: 56 push %rsi - 663419e4: 53 push %rbx - 663419e5: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 663419e9: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax - 663419f0: 44 8b 10 mov (%rax),%r10d - 663419f3: 45 85 d2 test %r10d,%r10d - 663419f6: 0f 84 a0 00 00 00 je 66341a9c - 663419fc: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341a00: 31 c0 xor %eax,%eax - 66341a02: 48 8b 3d 17 5f 01 00 mov 0x15f17(%rip),%rdi # 66357920 - 66341a09: 48 8b 35 20 5f 01 00 mov 0x15f20(%rip),%rsi # 66357930 - 66341a10: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341a15: 44 8b 44 03 64 mov 0x64(%rbx,%rax,1),%r8d - 66341a1a: 8b 12 mov (%rdx),%edx - 66341a1c: 44 39 c2 cmp %r8d,%edx - 66341a1f: 74 6d je 66341a8e - 66341a21: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341a25: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 66341a29: 41 89 d6 mov %edx,%r14d - 66341a2c: 45 29 c6 sub %r8d,%r14d - 66341a2f: 45 31 c0 xor %r8d,%r8d - 66341a32: 4f 8b 8c 11 c8 00 00 mov 0xc8(%r9,%r10,1),%r9 - 66341a39: 00 - 66341a3a: 45 01 31 add %r14d,(%r9) - 66341a3d: 89 54 03 64 mov %edx,0x64(%rbx,%rax,1) - 66341a41: 45 8b 09 mov (%r9),%r9d - 66341a44: 49 8b 94 43 c8 00 00 mov 0xc8(%r11,%rax,2),%rdx - 66341a4b: 00 - 66341a4c: 45 85 c9 test %r9d,%r9d - 66341a4f: 41 0f 9f c0 setg %r8b - 66341a53: 44 3b 02 cmp (%rdx),%r8d - 66341a56: 74 36 je 66341a8e - 66341a58: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341a5c: 4a 8b 94 12 c8 00 00 mov 0xc8(%rdx,%r10,1),%rdx - 66341a63: 00 - 66341a64: 8b 12 mov (%rdx),%edx - 66341a66: 85 d2 test %edx,%edx - 66341a68: 75 24 jne 66341a8e - 66341a6a: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341a6e: 4e 8b 84 12 c8 00 00 mov 0xc8(%rdx,%r10,1),%r8 - 66341a75: 00 - 66341a76: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341a7a: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341a80: 48 63 16 movslq (%rsi),%rdx - 66341a83: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341a87: 44 89 0e mov %r9d,(%rsi) - 66341a8a: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341a8e: 48 83 c0 04 add $0x4,%rax - 66341a92: 48 83 f8 60 cmp $0x60,%rax - 66341a96: 0f 85 74 ff ff ff jne 66341a10 - 66341a9c: 5b pop %rbx - 66341a9d: 5e pop %rsi - 66341a9e: 5f pop %rdi - 66341a9f: 41 5e pop %r14 - 66341aa1: c3 retq - 66341aa2: 0f 1f 40 00 nopl 0x0(%rax) - 66341aa6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341aad: 00 00 00 +0000000066341c20 : + 66341c20: 56 push %rsi + 66341c21: 53 push %rbx + 66341c22: 48 83 ec 28 sub $0x28,%rsp + 66341c26: 44 8b 41 38 mov 0x38(%rcx),%r8d + 66341c2a: 45 85 c0 test %r8d,%r8d + 66341c2d: 48 89 cb mov %rcx,%rbx + 66341c30: 7f 19 jg 66341c4b + 66341c32: 48 8d 15 c7 13 01 00 lea 0x113c7(%rip),%rdx # 66353000 <.rdata> + 66341c39: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66341c3f: 48 8d 0d ca 13 01 00 lea 0x113ca(%rip),%rcx # 66353010 <.rdata+0x10> + 66341c46: e8 b5 f3 00 00 callq 66351000 <_assert> + 66341c4b: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341c4f: 8b 10 mov (%rax),%edx + 66341c51: 48 8b 43 10 mov 0x10(%rbx),%rax + 66341c55: 48 8b 88 48 08 00 00 mov 0x848(%rax),%rcx + 66341c5c: 8b 09 mov (%rcx),%ecx + 66341c5e: 85 c9 test %ecx,%ecx + 66341c60: 0f 84 8a 00 00 00 je 66341cf0 + 66341c66: 48 8b 48 10 mov 0x10(%rax),%rcx + 66341c6a: 44 8b 01 mov (%rcx),%r8d + 66341c6d: 48 8b 48 08 mov 0x8(%rax),%rcx + 66341c71: 8b 09 mov (%rcx),%ecx + 66341c73: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx + 66341c77: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66341c7b: 45 8b 00 mov (%r8),%r8d + 66341c7e: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx + 66341c82: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66341c86: 45 8b 00 mov (%r8),%r8d + 66341c89: 42 8d 0c c1 lea (%rcx,%r8,8),%ecx + 66341c8d: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66341c91: 45 8b 00 mov (%r8),%r8d + 66341c94: 41 c1 e0 04 shl $0x4,%r8d + 66341c98: 41 01 c8 add %ecx,%r8d + 66341c9b: 48 8b 48 30 mov 0x30(%rax),%rcx + 66341c9f: 8b 09 mov (%rcx),%ecx + 66341ca1: c1 e1 05 shl $0x5,%ecx + 66341ca4: 41 01 c8 add %ecx,%r8d + 66341ca7: 48 8b 48 38 mov 0x38(%rax),%rcx + 66341cab: 48 8b 40 40 mov 0x40(%rax),%rax + 66341caf: 8b 09 mov (%rcx),%ecx + 66341cb1: 8b 00 mov (%rax),%eax + 66341cb3: c1 e1 06 shl $0x6,%ecx + 66341cb6: 44 01 c1 add %r8d,%ecx + 66341cb9: c1 e0 07 shl $0x7,%eax + 66341cbc: 8d 74 01 09 lea 0x9(%rcx,%rax,1),%esi + 66341cc0: 39 d6 cmp %edx,%esi + 66341cc2: 74 25 je 66341ce9 + 66341cc4: 85 d2 test %edx,%edx + 66341cc6: 0f 85 85 00 00 00 jne 66341d51 + 66341ccc: 89 f2 mov %esi,%edx + 66341cce: 41 b8 01 00 00 00 mov $0x1,%r8d + 66341cd4: 48 89 d9 mov %rbx,%rcx + 66341cd7: e8 d4 f6 ff ff callq 663413b0 + 66341cdc: 8b 53 38 mov 0x38(%rbx),%edx + 66341cdf: 85 d2 test %edx,%edx + 66341ce1: 7e 4d jle 66341d30 + 66341ce3: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341ce7: 89 30 mov %esi,(%rax) + 66341ce9: 48 83 c4 28 add $0x28,%rsp + 66341ced: 5b pop %rbx + 66341cee: 5e pop %rsi + 66341cef: c3 retq + 66341cf0: 85 d2 test %edx,%edx + 66341cf2: 74 f5 je 66341ce9 + 66341cf4: 48 89 d9 mov %rbx,%rcx + 66341cf7: e8 34 f7 ff ff callq 66341430 + 66341cfc: 8b 43 38 mov 0x38(%rbx),%eax + 66341cff: 85 c0 test %eax,%eax + 66341d01: 7f 19 jg 66341d1c + 66341d03: 48 8d 15 f6 12 01 00 lea 0x112f6(%rip),%rdx # 66353000 <.rdata> + 66341d0a: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341d10: 48 8d 0d f9 12 01 00 lea 0x112f9(%rip),%rcx # 66353010 <.rdata+0x10> + 66341d17: e8 e4 f2 00 00 callq 66351000 <_assert> + 66341d1c: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341d20: c7 00 00 00 00 00 movl $0x0,(%rax) + 66341d26: 48 83 c4 28 add $0x28,%rsp + 66341d2a: 5b pop %rbx + 66341d2b: 5e pop %rsi + 66341d2c: c3 retq + 66341d2d: 0f 1f 00 nopl (%rax) + 66341d30: 48 8d 15 c9 12 01 00 lea 0x112c9(%rip),%rdx # 66353000 <.rdata> + 66341d37: 41 b8 93 00 00 00 mov $0x93,%r8d + 66341d3d: 48 8d 0d cc 12 01 00 lea 0x112cc(%rip),%rcx # 66353010 <.rdata+0x10> + 66341d44: e8 b7 f2 00 00 callq 66351000 <_assert> + 66341d49: 48 8b 43 40 mov 0x40(%rbx),%rax + 66341d4d: 89 30 mov %esi,(%rax) + 66341d4f: eb 98 jmp 66341ce9 + 66341d51: 48 89 d9 mov %rbx,%rcx + 66341d54: e8 d7 f6 ff ff callq 66341430 + 66341d59: e9 6e ff ff ff jmpq 66341ccc + 66341d5e: 66 90 xchg %ax,%ax -0000000066341ab0 : - 66341ab0: 41 56 push %r14 - 66341ab2: 57 push %rdi - 66341ab3: 56 push %rsi - 66341ab4: 53 push %rbx - 66341ab5: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341ab9: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax - 66341ac0: 44 8b 10 mov (%rax),%r10d - 66341ac3: 45 85 d2 test %r10d,%r10d - 66341ac6: 0f 84 a0 00 00 00 je 66341b6c - 66341acc: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341ad0: 31 c0 xor %eax,%eax - 66341ad2: 48 8b 3d 47 5e 01 00 mov 0x15e47(%rip),%rdi # 66357920 - 66341ad9: 48 8b 35 50 5e 01 00 mov 0x15e50(%rip),%rsi # 66357930 - 66341ae0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341ae5: 44 8b 44 03 44 mov 0x44(%rbx,%rax,1),%r8d - 66341aea: 8b 12 mov (%rdx),%edx - 66341aec: 44 39 c2 cmp %r8d,%edx - 66341aef: 74 6d je 66341b5e - 66341af1: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341af5: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 66341af9: 41 89 d6 mov %edx,%r14d - 66341afc: 45 29 c6 sub %r8d,%r14d - 66341aff: 45 31 c0 xor %r8d,%r8d - 66341b02: 4f 8b 8c 11 88 00 00 mov 0x88(%r9,%r10,1),%r9 - 66341b09: 00 - 66341b0a: 45 01 31 add %r14d,(%r9) - 66341b0d: 89 54 03 44 mov %edx,0x44(%rbx,%rax,1) - 66341b11: 45 8b 09 mov (%r9),%r9d - 66341b14: 49 8b 94 43 88 00 00 mov 0x88(%r11,%rax,2),%rdx - 66341b1b: 00 - 66341b1c: 45 85 c9 test %r9d,%r9d - 66341b1f: 41 0f 9f c0 setg %r8b - 66341b23: 44 3b 02 cmp (%rdx),%r8d - 66341b26: 74 36 je 66341b5e - 66341b28: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341b2c: 4a 8b 94 12 88 00 00 mov 0x88(%rdx,%r10,1),%rdx - 66341b33: 00 - 66341b34: 8b 12 mov (%rdx),%edx - 66341b36: 85 d2 test %edx,%edx - 66341b38: 75 24 jne 66341b5e - 66341b3a: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341b3e: 4e 8b 84 12 88 00 00 mov 0x88(%rdx,%r10,1),%r8 - 66341b45: 00 - 66341b46: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341b4a: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341b50: 48 63 16 movslq (%rsi),%rdx - 66341b53: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341b57: 44 89 0e mov %r9d,(%rsi) - 66341b5a: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341b5e: 48 83 c0 04 add $0x4,%rax - 66341b62: 48 83 f8 40 cmp $0x40,%rax - 66341b66: 0f 85 74 ff ff ff jne 66341ae0 - 66341b6c: 5b pop %rbx - 66341b6d: 5e pop %rsi - 66341b6e: 5f pop %rdi - 66341b6f: 41 5e pop %r14 - 66341b71: c3 retq - 66341b72: 0f 1f 40 00 nopl 0x0(%rax) - 66341b76: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341b7d: 00 00 00 +0000000066341d60 : + 66341d60: 53 push %rbx + 66341d61: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66341d65: 4c 8b 59 08 mov 0x8(%rcx),%r11 + 66341d69: 49 8b 42 10 mov 0x10(%r10),%rax + 66341d6d: 49 8b 52 08 mov 0x8(%r10),%rdx + 66341d71: 45 8b 4b 0c mov 0xc(%r11),%r9d + 66341d75: 44 8b 02 mov (%rdx),%r8d + 66341d78: 44 03 00 add (%rax),%r8d + 66341d7b: 49 8b 42 20 mov 0x20(%r10),%rax + 66341d7f: 44 03 00 add (%rax),%r8d + 66341d82: 44 89 c2 mov %r8d,%edx + 66341d85: 83 e2 01 and $0x1,%edx + 66341d88: 44 39 ca cmp %r9d,%edx + 66341d8b: 74 62 je 66341def + 66341d8d: 48 8b 41 18 mov 0x18(%rcx),%rax + 66341d91: 89 d3 mov %edx,%ebx + 66341d93: 44 29 cb sub %r9d,%ebx + 66341d96: 48 8b 40 18 mov 0x18(%rax),%rax + 66341d9a: 01 18 add %ebx,(%rax) + 66341d9c: 41 89 53 0c mov %edx,0xc(%r11) + 66341da0: 31 d2 xor %edx,%edx + 66341da2: 44 8b 08 mov (%rax),%r9d + 66341da5: 49 8b 42 18 mov 0x18(%r10),%rax + 66341da9: 45 85 c9 test %r9d,%r9d + 66341dac: 0f 9f c2 setg %dl + 66341daf: 3b 10 cmp (%rax),%edx + 66341db1: 74 3c je 66341def + 66341db3: 48 8b 41 20 mov 0x20(%rcx),%rax + 66341db7: 48 8b 40 18 mov 0x18(%rax),%rax + 66341dbb: 8b 00 mov (%rax),%eax + 66341dbd: 85 c0 test %eax,%eax + 66341dbf: 75 2e jne 66341def + 66341dc1: 48 8b 41 28 mov 0x28(%rcx),%rax + 66341dc5: 4c 8b 0d 64 4b 01 00 mov 0x14b64(%rip),%r9 # 66356930 + 66341dcc: 4c 8b 15 4d 4b 01 00 mov 0x14b4d(%rip),%r10 # 66356920 + 66341dd3: 48 8b 50 18 mov 0x18(%rax),%rdx + 66341dd7: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341ddb: c7 00 01 00 00 00 movl $0x1,(%rax) + 66341de1: 49 63 01 movslq (%r9),%rax + 66341de4: 44 8d 58 01 lea 0x1(%rax),%r11d + 66341de8: 45 89 19 mov %r11d,(%r9) + 66341deb: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66341def: 41 d1 f8 sar %r8d + 66341df2: ba 05 00 00 00 mov $0x5,%edx + 66341df7: 41 83 e0 01 and $0x1,%r8d + 66341dfb: 5b pop %rbx + 66341dfc: e9 af f5 ff ff jmpq 663413b0 + 66341e01: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66341e06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66341e0d: 00 00 00 -0000000066341b80 : - 66341b80: 41 56 push %r14 - 66341b82: 57 push %rdi - 66341b83: 56 push %rsi - 66341b84: 53 push %rbx - 66341b85: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341b89: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax - 66341b90: 44 8b 10 mov (%rax),%r10d - 66341b93: 45 85 d2 test %r10d,%r10d - 66341b96: 0f 84 a0 00 00 00 je 66341c3c - 66341b9c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341ba0: 31 c0 xor %eax,%eax - 66341ba2: 48 8b 3d 77 5d 01 00 mov 0x15d77(%rip),%rdi # 66357920 - 66341ba9: 48 8b 35 80 5d 01 00 mov 0x15d80(%rip),%rsi # 66357930 - 66341bb0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341bb5: 44 8b 44 03 40 mov 0x40(%rbx,%rax,1),%r8d - 66341bba: 8b 12 mov (%rdx),%edx - 66341bbc: 44 39 c2 cmp %r8d,%edx - 66341bbf: 74 6d je 66341c2e - 66341bc1: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341bc5: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 66341bc9: 41 89 d6 mov %edx,%r14d - 66341bcc: 45 29 c6 sub %r8d,%r14d - 66341bcf: 45 31 c0 xor %r8d,%r8d - 66341bd2: 4f 8b 8c 11 80 00 00 mov 0x80(%r9,%r10,1),%r9 - 66341bd9: 00 - 66341bda: 45 01 31 add %r14d,(%r9) - 66341bdd: 89 54 03 40 mov %edx,0x40(%rbx,%rax,1) - 66341be1: 45 8b 09 mov (%r9),%r9d - 66341be4: 49 8b 94 43 80 00 00 mov 0x80(%r11,%rax,2),%rdx - 66341beb: 00 - 66341bec: 45 85 c9 test %r9d,%r9d - 66341bef: 41 0f 9f c0 setg %r8b - 66341bf3: 44 3b 02 cmp (%rdx),%r8d - 66341bf6: 74 36 je 66341c2e - 66341bf8: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341bfc: 4a 8b 94 12 80 00 00 mov 0x80(%rdx,%r10,1),%rdx - 66341c03: 00 - 66341c04: 8b 12 mov (%rdx),%edx - 66341c06: 85 d2 test %edx,%edx - 66341c08: 75 24 jne 66341c2e - 66341c0a: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341c0e: 4e 8b 84 12 80 00 00 mov 0x80(%rdx,%r10,1),%r8 - 66341c15: 00 - 66341c16: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341c1a: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341c20: 48 63 16 movslq (%rsi),%rdx - 66341c23: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341c27: 44 89 0e mov %r9d,(%rsi) - 66341c2a: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341c2e: 48 83 c0 04 add $0x4,%rax - 66341c32: 48 83 f8 3c cmp $0x3c,%rax - 66341c36: 0f 85 74 ff ff ff jne 66341bb0 - 66341c3c: 5b pop %rbx - 66341c3d: 5e pop %rsi - 66341c3e: 5f pop %rdi - 66341c3f: 41 5e pop %r14 - 66341c41: c3 retq - 66341c42: 0f 1f 40 00 nopl 0x0(%rax) - 66341c46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341c4d: 00 00 00 +0000000066341e10 : + 66341e10: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66341e14: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66341e18: 48 8b 42 08 mov 0x8(%rdx),%rax + 66341e1c: 45 8b 48 08 mov 0x8(%r8),%r9d + 66341e20: 8b 00 mov (%rax),%eax + 66341e22: 44 39 c8 cmp %r9d,%eax + 66341e25: 74 67 je 66341e8e + 66341e27: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66341e2b: 41 89 c3 mov %eax,%r11d + 66341e2e: 45 29 cb sub %r9d,%r11d + 66341e31: 4d 8b 52 10 mov 0x10(%r10),%r10 + 66341e35: 45 01 1a add %r11d,(%r10) + 66341e38: 41 89 40 08 mov %eax,0x8(%r8) + 66341e3c: 45 31 c0 xor %r8d,%r8d + 66341e3f: 45 8b 0a mov (%r10),%r9d + 66341e42: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341e46: 45 85 c9 test %r9d,%r9d + 66341e49: 41 0f 9f c0 setg %r8b + 66341e4d: 44 3b 00 cmp (%rax),%r8d + 66341e50: 74 3c je 66341e8e + 66341e52: 48 8b 41 20 mov 0x20(%rcx),%rax + 66341e56: 48 8b 40 10 mov 0x10(%rax),%rax + 66341e5a: 8b 00 mov (%rax),%eax + 66341e5c: 85 c0 test %eax,%eax + 66341e5e: 75 2e jne 66341e8e + 66341e60: 48 8b 41 28 mov 0x28(%rcx),%rax + 66341e64: 48 8b 0d c5 4a 01 00 mov 0x14ac5(%rip),%rcx # 66356930 + 66341e6b: 4c 8b 05 ae 4a 01 00 mov 0x14aae(%rip),%r8 # 66356920 + 66341e72: 48 8b 50 10 mov 0x10(%rax),%rdx + 66341e76: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341e7a: c7 00 01 00 00 00 movl $0x1,(%rax) + 66341e80: 48 63 01 movslq (%rcx),%rax + 66341e83: 44 8d 48 01 lea 0x1(%rax),%r9d + 66341e87: 44 89 09 mov %r9d,(%rcx) + 66341e8a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66341e8e: c3 retq + 66341e8f: 90 nop -0000000066341c50 : - 66341c50: 41 56 push %r14 - 66341c52: 57 push %rdi - 66341c53: 56 push %rsi - 66341c54: 53 push %rbx - 66341c55: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341c59: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax - 66341c60: 44 8b 10 mov (%rax),%r10d - 66341c63: 45 85 d2 test %r10d,%r10d - 66341c66: 0f 84 90 00 00 00 je 66341cfc - 66341c6c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341c70: 31 c0 xor %eax,%eax - 66341c72: 48 8b 3d a7 5c 01 00 mov 0x15ca7(%rip),%rdi # 66357920 - 66341c79: 48 8b 35 b0 5c 01 00 mov 0x15cb0(%rip),%rsi # 66357930 - 66341c80: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341c85: 44 8b 44 03 3c mov 0x3c(%rbx,%rax,1),%r8d - 66341c8a: 8b 12 mov (%rdx),%edx - 66341c8c: 44 39 c2 cmp %r8d,%edx - 66341c8f: 74 61 je 66341cf2 - 66341c91: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341c95: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 66341c99: 41 89 d6 mov %edx,%r14d - 66341c9c: 45 29 c6 sub %r8d,%r14d - 66341c9f: 45 31 c0 xor %r8d,%r8d - 66341ca2: 4f 8b 4c 11 78 mov 0x78(%r9,%r10,1),%r9 - 66341ca7: 45 01 31 add %r14d,(%r9) - 66341caa: 89 54 03 3c mov %edx,0x3c(%rbx,%rax,1) - 66341cae: 45 8b 09 mov (%r9),%r9d - 66341cb1: 49 8b 54 43 78 mov 0x78(%r11,%rax,2),%rdx - 66341cb6: 45 85 c9 test %r9d,%r9d - 66341cb9: 41 0f 9f c0 setg %r8b - 66341cbd: 44 3b 02 cmp (%rdx),%r8d - 66341cc0: 74 30 je 66341cf2 - 66341cc2: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341cc6: 4a 8b 54 12 78 mov 0x78(%rdx,%r10,1),%rdx - 66341ccb: 8b 12 mov (%rdx),%edx - 66341ccd: 85 d2 test %edx,%edx - 66341ccf: 75 21 jne 66341cf2 - 66341cd1: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341cd5: 4e 8b 44 12 78 mov 0x78(%rdx,%r10,1),%r8 - 66341cda: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341cde: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341ce4: 48 63 16 movslq (%rsi),%rdx - 66341ce7: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341ceb: 44 89 0e mov %r9d,(%rsi) - 66341cee: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341cf2: 48 83 c0 04 add $0x4,%rax - 66341cf6: 48 83 f8 38 cmp $0x38,%rax - 66341cfa: 75 84 jne 66341c80 - 66341cfc: 5b pop %rbx - 66341cfd: 5e pop %rsi - 66341cfe: 5f pop %rdi - 66341cff: 41 5e pop %r14 - 66341d01: c3 retq - 66341d02: 0f 1f 40 00 nopl 0x0(%rax) - 66341d06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341d0d: 00 00 00 +0000000066341e90 : + 66341e90: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66341e94: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66341e98: 48 8b 42 08 mov 0x8(%rdx),%rax + 66341e9c: 45 8b 48 08 mov 0x8(%r8),%r9d + 66341ea0: 44 8b 10 mov (%rax),%r10d + 66341ea3: 31 c0 xor %eax,%eax + 66341ea5: 45 85 d2 test %r10d,%r10d + 66341ea8: 0f 94 c0 sete %al + 66341eab: 44 39 c8 cmp %r9d,%eax + 66341eae: 74 67 je 66341f17 + 66341eb0: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66341eb4: 41 89 c3 mov %eax,%r11d + 66341eb7: 45 29 cb sub %r9d,%r11d + 66341eba: 4d 8b 52 10 mov 0x10(%r10),%r10 + 66341ebe: 45 01 1a add %r11d,(%r10) + 66341ec1: 41 89 40 08 mov %eax,0x8(%r8) + 66341ec5: 45 31 c0 xor %r8d,%r8d + 66341ec8: 45 8b 0a mov (%r10),%r9d + 66341ecb: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341ecf: 45 85 c9 test %r9d,%r9d + 66341ed2: 41 0f 9f c0 setg %r8b + 66341ed6: 44 3b 00 cmp (%rax),%r8d + 66341ed9: 74 3c je 66341f17 + 66341edb: 48 8b 41 20 mov 0x20(%rcx),%rax + 66341edf: 48 8b 40 10 mov 0x10(%rax),%rax + 66341ee3: 8b 00 mov (%rax),%eax + 66341ee5: 85 c0 test %eax,%eax + 66341ee7: 75 2e jne 66341f17 + 66341ee9: 48 8b 41 28 mov 0x28(%rcx),%rax + 66341eed: 48 8b 0d 3c 4a 01 00 mov 0x14a3c(%rip),%rcx # 66356930 + 66341ef4: 4c 8b 05 25 4a 01 00 mov 0x14a25(%rip),%r8 # 66356920 + 66341efb: 48 8b 50 10 mov 0x10(%rax),%rdx + 66341eff: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341f03: c7 00 01 00 00 00 movl $0x1,(%rax) + 66341f09: 48 63 01 movslq (%rcx),%rax + 66341f0c: 44 8d 48 01 lea 0x1(%rax),%r9d + 66341f10: 44 89 09 mov %r9d,(%rcx) + 66341f13: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66341f17: c3 retq + 66341f18: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66341f1f: 00 -0000000066341d10 : - 66341d10: 41 56 push %r14 - 66341d12: 57 push %rdi - 66341d13: 56 push %rsi - 66341d14: 53 push %rbx - 66341d15: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66341d19: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax - 66341d20: 44 8b 10 mov (%rax),%r10d - 66341d23: 45 85 d2 test %r10d,%r10d - 66341d26: 0f 84 90 00 00 00 je 66341dbc - 66341d2c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341d30: 31 c0 xor %eax,%eax - 66341d32: 48 8b 3d e7 5b 01 00 mov 0x15be7(%rip),%rdi # 66357920 - 66341d39: 48 8b 35 f0 5b 01 00 mov 0x15bf0(%rip),%rsi # 66357930 - 66341d40: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx - 66341d45: 44 8b 44 03 38 mov 0x38(%rbx,%rax,1),%r8d - 66341d4a: 8b 12 mov (%rdx),%edx - 66341d4c: 44 39 c2 cmp %r8d,%edx - 66341d4f: 74 61 je 66341db2 - 66341d51: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341d55: 4c 8d 14 00 lea (%rax,%rax,1),%r10 - 66341d59: 41 89 d6 mov %edx,%r14d - 66341d5c: 45 29 c6 sub %r8d,%r14d - 66341d5f: 45 31 c0 xor %r8d,%r8d - 66341d62: 4f 8b 4c 11 70 mov 0x70(%r9,%r10,1),%r9 - 66341d67: 45 01 31 add %r14d,(%r9) - 66341d6a: 89 54 03 38 mov %edx,0x38(%rbx,%rax,1) - 66341d6e: 45 8b 09 mov (%r9),%r9d - 66341d71: 49 8b 54 43 70 mov 0x70(%r11,%rax,2),%rdx - 66341d76: 45 85 c9 test %r9d,%r9d - 66341d79: 41 0f 9f c0 setg %r8b - 66341d7d: 44 3b 02 cmp (%rdx),%r8d - 66341d80: 74 30 je 66341db2 - 66341d82: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341d86: 4a 8b 54 12 70 mov 0x70(%rdx,%r10,1),%rdx - 66341d8b: 8b 12 mov (%rdx),%edx - 66341d8d: 85 d2 test %edx,%edx - 66341d8f: 75 21 jne 66341db2 - 66341d91: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341d95: 4e 8b 44 12 70 mov 0x70(%rdx,%r10,1),%r8 - 66341d9a: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341d9e: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341da4: 48 63 16 movslq (%rsi),%rdx - 66341da7: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341dab: 44 89 0e mov %r9d,(%rsi) - 66341dae: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341db2: 48 83 c0 04 add $0x4,%rax - 66341db6: 48 83 f8 34 cmp $0x34,%rax - 66341dba: 75 84 jne 66341d40 - 66341dbc: 5b pop %rbx - 66341dbd: 5e pop %rsi - 66341dbe: 5f pop %rdi - 66341dbf: 41 5e pop %r14 - 66341dc1: c3 retq - 66341dc2: 0f 1f 40 00 nopl 0x0(%rax) - 66341dc6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341dcd: 00 00 00 +0000000066341f20 : + 66341f20: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66341f24: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66341f28: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341f2c: 8b 00 mov (%rax),%eax + 66341f2e: 41 33 00 xor (%r8),%eax + 66341f31: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66341f35: 45 8b 48 0c mov 0xc(%r8),%r9d + 66341f39: 44 39 c8 cmp %r9d,%eax + 66341f3c: 74 67 je 66341fa5 + 66341f3e: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66341f42: 41 89 c3 mov %eax,%r11d + 66341f45: 45 29 cb sub %r9d,%r11d + 66341f48: 4d 8b 52 18 mov 0x18(%r10),%r10 + 66341f4c: 45 01 1a add %r11d,(%r10) + 66341f4f: 41 89 40 0c mov %eax,0xc(%r8) + 66341f53: 45 31 c0 xor %r8d,%r8d + 66341f56: 45 8b 0a mov (%r10),%r9d + 66341f59: 48 8b 42 18 mov 0x18(%rdx),%rax + 66341f5d: 45 85 c9 test %r9d,%r9d + 66341f60: 41 0f 9f c0 setg %r8b + 66341f64: 44 3b 00 cmp (%rax),%r8d + 66341f67: 74 3c je 66341fa5 + 66341f69: 48 8b 41 20 mov 0x20(%rcx),%rax + 66341f6d: 48 8b 40 18 mov 0x18(%rax),%rax + 66341f71: 8b 00 mov (%rax),%eax + 66341f73: 85 c0 test %eax,%eax + 66341f75: 75 2e jne 66341fa5 + 66341f77: 48 8b 41 28 mov 0x28(%rcx),%rax + 66341f7b: 48 8b 0d ae 49 01 00 mov 0x149ae(%rip),%rcx # 66356930 + 66341f82: 4c 8b 05 97 49 01 00 mov 0x14997(%rip),%r8 # 66356920 + 66341f89: 48 8b 50 18 mov 0x18(%rax),%rdx + 66341f8d: 48 8b 42 10 mov 0x10(%rdx),%rax + 66341f91: c7 00 01 00 00 00 movl $0x1,(%rax) + 66341f97: 48 63 01 movslq (%rcx),%rax + 66341f9a: 44 8d 48 01 lea 0x1(%rax),%r9d + 66341f9e: 44 89 09 mov %r9d,(%rcx) + 66341fa1: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66341fa5: c3 retq + 66341fa6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66341fad: 00 00 00 -0000000066341dd0 : - 66341dd0: 41 56 push %r14 - 66341dd2: 57 push %rdi - 66341dd3: 56 push %rsi - 66341dd4: 53 push %rbx - 66341dd5: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66341dd9: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax - 66341de0: 44 8b 18 mov (%rax),%r11d - 66341de3: 45 85 db test %r11d,%r11d - 66341de6: 0f 84 90 00 00 00 je 66341e7c - 66341dec: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341df0: 31 c0 xor %eax,%eax - 66341df2: 48 8b 3d 27 5b 01 00 mov 0x15b27(%rip),%rdi # 66357920 - 66341df9: 48 8b 35 30 5b 01 00 mov 0x15b30(%rip),%rsi # 66357930 - 66341e00: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx - 66341e05: 44 8b 44 03 34 mov 0x34(%rbx,%rax,1),%r8d - 66341e0a: 8b 12 mov (%rdx),%edx - 66341e0c: 44 39 c2 cmp %r8d,%edx - 66341e0f: 74 61 je 66341e72 - 66341e11: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341e15: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 - 66341e19: 41 89 d6 mov %edx,%r14d - 66341e1c: 45 29 c6 sub %r8d,%r14d - 66341e1f: 45 31 c0 xor %r8d,%r8d - 66341e22: 4f 8b 4c 19 68 mov 0x68(%r9,%r11,1),%r9 - 66341e27: 45 01 31 add %r14d,(%r9) - 66341e2a: 89 54 03 34 mov %edx,0x34(%rbx,%rax,1) - 66341e2e: 45 8b 09 mov (%r9),%r9d - 66341e31: 49 8b 54 42 68 mov 0x68(%r10,%rax,2),%rdx - 66341e36: 45 85 c9 test %r9d,%r9d - 66341e39: 41 0f 9f c0 setg %r8b - 66341e3d: 44 3b 02 cmp (%rdx),%r8d - 66341e40: 74 30 je 66341e72 - 66341e42: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341e46: 4a 8b 54 1a 68 mov 0x68(%rdx,%r11,1),%rdx - 66341e4b: 8b 12 mov (%rdx),%edx - 66341e4d: 85 d2 test %edx,%edx - 66341e4f: 75 21 jne 66341e72 - 66341e51: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341e55: 4e 8b 44 1a 68 mov 0x68(%rdx,%r11,1),%r8 - 66341e5a: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341e5e: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341e64: 48 63 16 movslq (%rsi),%rdx - 66341e67: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341e6b: 44 89 0e mov %r9d,(%rsi) - 66341e6e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341e72: 48 83 c0 04 add $0x4,%rax - 66341e76: 48 83 f8 30 cmp $0x30,%rax - 66341e7a: 75 84 jne 66341e00 - 66341e7c: 5b pop %rbx - 66341e7d: 5e pop %rsi - 66341e7e: 5f pop %rdi - 66341e7f: 41 5e pop %r14 - 66341e81: c3 retq - 66341e82: 0f 1f 40 00 nopl 0x0(%rax) - 66341e86: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341e8d: 00 00 00 +0000000066341fb0 : + 66341fb0: 48 8b 41 10 mov 0x10(%rcx),%rax + 66341fb4: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66341fb8: 48 8b 50 08 mov 0x8(%rax),%rdx + 66341fbc: 8b 12 mov (%rdx),%edx + 66341fbe: 41 39 10 cmp %edx,(%r8) + 66341fc1: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66341fc5: 0f 94 c2 sete %dl + 66341fc8: 45 8b 48 0c mov 0xc(%r8),%r9d + 66341fcc: 0f b6 d2 movzbl %dl,%edx + 66341fcf: 44 39 ca cmp %r9d,%edx + 66341fd2: 74 64 je 66342038 + 66341fd4: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66341fd8: 41 89 d3 mov %edx,%r11d + 66341fdb: 45 29 cb sub %r9d,%r11d + 66341fde: 48 8b 40 18 mov 0x18(%rax),%rax + 66341fe2: 4d 8b 52 18 mov 0x18(%r10),%r10 + 66341fe6: 45 01 1a add %r11d,(%r10) + 66341fe9: 41 89 50 0c mov %edx,0xc(%r8) + 66341fed: 31 d2 xor %edx,%edx + 66341fef: 45 8b 02 mov (%r10),%r8d + 66341ff2: 45 85 c0 test %r8d,%r8d + 66341ff5: 0f 9f c2 setg %dl + 66341ff8: 3b 10 cmp (%rax),%edx + 66341ffa: 74 3c je 66342038 + 66341ffc: 48 8b 41 20 mov 0x20(%rcx),%rax + 66342000: 48 8b 40 18 mov 0x18(%rax),%rax + 66342004: 8b 00 mov (%rax),%eax + 66342006: 85 c0 test %eax,%eax + 66342008: 75 2e jne 66342038 + 6634200a: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634200e: 48 8b 0d 1b 49 01 00 mov 0x1491b(%rip),%rcx # 66356930 + 66342015: 4c 8b 05 04 49 01 00 mov 0x14904(%rip),%r8 # 66356920 + 6634201c: 48 8b 50 18 mov 0x18(%rax),%rdx + 66342020: 48 8b 42 10 mov 0x10(%rdx),%rax + 66342024: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634202a: 48 63 01 movslq (%rcx),%rax + 6634202d: 44 8d 48 01 lea 0x1(%rax),%r9d + 66342031: 44 89 09 mov %r9d,(%rcx) + 66342034: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66342038: c3 retq + 66342039: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) -0000000066341e90 : - 66341e90: 41 56 push %r14 - 66341e92: 57 push %rdi - 66341e93: 56 push %rsi - 66341e94: 53 push %rbx - 66341e95: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66341e99: 49 8b 82 b8 00 00 00 mov 0xb8(%r10),%rax - 66341ea0: 44 8b 18 mov (%rax),%r11d - 66341ea3: 45 85 db test %r11d,%r11d - 66341ea6: 0f 84 90 00 00 00 je 66341f3c - 66341eac: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341eb0: 31 c0 xor %eax,%eax - 66341eb2: 48 8b 3d 67 5a 01 00 mov 0x15a67(%rip),%rdi # 66357920 - 66341eb9: 48 8b 35 70 5a 01 00 mov 0x15a70(%rip),%rsi # 66357930 - 66341ec0: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx - 66341ec5: 44 8b 44 03 30 mov 0x30(%rbx,%rax,1),%r8d - 66341eca: 8b 12 mov (%rdx),%edx - 66341ecc: 44 39 c2 cmp %r8d,%edx - 66341ecf: 74 61 je 66341f32 - 66341ed1: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341ed5: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 - 66341ed9: 41 89 d6 mov %edx,%r14d - 66341edc: 45 29 c6 sub %r8d,%r14d - 66341edf: 45 31 c0 xor %r8d,%r8d - 66341ee2: 4f 8b 4c 19 60 mov 0x60(%r9,%r11,1),%r9 - 66341ee7: 45 01 31 add %r14d,(%r9) - 66341eea: 89 54 03 30 mov %edx,0x30(%rbx,%rax,1) - 66341eee: 45 8b 09 mov (%r9),%r9d - 66341ef1: 49 8b 54 42 60 mov 0x60(%r10,%rax,2),%rdx - 66341ef6: 45 85 c9 test %r9d,%r9d - 66341ef9: 41 0f 9f c0 setg %r8b - 66341efd: 44 3b 02 cmp (%rdx),%r8d - 66341f00: 74 30 je 66341f32 - 66341f02: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341f06: 4a 8b 54 1a 60 mov 0x60(%rdx,%r11,1),%rdx - 66341f0b: 8b 12 mov (%rdx),%edx - 66341f0d: 85 d2 test %edx,%edx - 66341f0f: 75 21 jne 66341f32 - 66341f11: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341f15: 4e 8b 44 1a 60 mov 0x60(%rdx,%r11,1),%r8 - 66341f1a: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341f1e: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341f24: 48 63 16 movslq (%rsi),%rdx - 66341f27: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341f2b: 44 89 0e mov %r9d,(%rsi) - 66341f2e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341f32: 48 83 c0 04 add $0x4,%rax - 66341f36: 48 83 f8 2c cmp $0x2c,%rax - 66341f3a: 75 84 jne 66341ec0 - 66341f3c: 5b pop %rbx - 66341f3d: 5e pop %rsi - 66341f3e: 5f pop %rdi - 66341f3f: 41 5e pop %r14 - 66341f41: c3 retq - 66341f42: 0f 1f 40 00 nopl 0x0(%rax) - 66341f46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66341f4d: 00 00 00 +0000000066342040 : + 66342040: 41 56 push %r14 + 66342042: 57 push %rdi + 66342043: 56 push %rsi + 66342044: 53 push %rbx + 66342045: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66342049: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax + 66342050: 44 8b 10 mov (%rax),%r10d + 66342053: 45 85 d2 test %r10d,%r10d + 66342056: 0f 84 a8 00 00 00 je 66342104 + 6634205c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342060: 31 c0 xor %eax,%eax + 66342062: 48 8b 3d b7 48 01 00 mov 0x148b7(%rip),%rdi # 66356920 + 66342069: 48 8b 35 c0 48 01 00 mov 0x148c0(%rip),%rsi # 66356930 + 66342070: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66342075: 44 8b 84 03 04 01 00 mov 0x104(%rbx,%rax,1),%r8d + 6634207c: 00 + 6634207d: 8b 12 mov (%rdx),%edx + 6634207f: 44 39 c2 cmp %r8d,%edx + 66342082: 74 70 je 663420f4 + 66342084: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342088: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 6634208c: 41 89 d6 mov %edx,%r14d + 6634208f: 45 29 c6 sub %r8d,%r14d + 66342092: 45 31 c0 xor %r8d,%r8d + 66342095: 4f 8b 8c 11 08 02 00 mov 0x208(%r9,%r10,1),%r9 + 6634209c: 00 + 6634209d: 45 01 31 add %r14d,(%r9) + 663420a0: 89 94 03 04 01 00 00 mov %edx,0x104(%rbx,%rax,1) + 663420a7: 45 8b 09 mov (%r9),%r9d + 663420aa: 49 8b 94 43 08 02 00 mov 0x208(%r11,%rax,2),%rdx + 663420b1: 00 + 663420b2: 45 85 c9 test %r9d,%r9d + 663420b5: 41 0f 9f c0 setg %r8b + 663420b9: 44 3b 02 cmp (%rdx),%r8d + 663420bc: 74 36 je 663420f4 + 663420be: 48 8b 51 20 mov 0x20(%rcx),%rdx + 663420c2: 4a 8b 94 12 08 02 00 mov 0x208(%rdx,%r10,1),%rdx + 663420c9: 00 + 663420ca: 8b 12 mov (%rdx),%edx + 663420cc: 85 d2 test %edx,%edx + 663420ce: 75 24 jne 663420f4 + 663420d0: 48 8b 51 28 mov 0x28(%rcx),%rdx + 663420d4: 4e 8b 84 12 08 02 00 mov 0x208(%rdx,%r10,1),%r8 + 663420db: 00 + 663420dc: 49 8b 50 10 mov 0x10(%r8),%rdx + 663420e0: c7 02 01 00 00 00 movl $0x1,(%rdx) + 663420e6: 48 63 16 movslq (%rsi),%rdx + 663420e9: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 663420ed: 44 89 0e mov %r9d,(%rsi) + 663420f0: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 663420f4: 48 83 c0 04 add $0x4,%rax + 663420f8: 48 3d 00 01 00 00 cmp $0x100,%rax + 663420fe: 0f 85 6c ff ff ff jne 66342070 + 66342104: 5b pop %rbx + 66342105: 5e pop %rsi + 66342106: 5f pop %rdi + 66342107: 41 5e pop %r14 + 66342109: c3 retq + 6634210a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -0000000066341f50 : - 66341f50: 41 56 push %r14 - 66341f52: 57 push %rdi - 66341f53: 56 push %rsi - 66341f54: 53 push %rbx - 66341f55: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66341f59: 49 8b 82 a8 00 00 00 mov 0xa8(%r10),%rax - 66341f60: 44 8b 18 mov (%rax),%r11d - 66341f63: 45 85 db test %r11d,%r11d - 66341f66: 0f 84 90 00 00 00 je 66341ffc - 66341f6c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66341f70: 31 c0 xor %eax,%eax - 66341f72: 48 8b 3d a7 59 01 00 mov 0x159a7(%rip),%rdi # 66357920 - 66341f79: 48 8b 35 b0 59 01 00 mov 0x159b0(%rip),%rsi # 66357930 - 66341f80: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx - 66341f85: 44 8b 44 03 2c mov 0x2c(%rbx,%rax,1),%r8d - 66341f8a: 8b 12 mov (%rdx),%edx - 66341f8c: 44 39 c2 cmp %r8d,%edx - 66341f8f: 74 61 je 66341ff2 - 66341f91: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66341f95: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 - 66341f99: 41 89 d6 mov %edx,%r14d - 66341f9c: 45 29 c6 sub %r8d,%r14d - 66341f9f: 45 31 c0 xor %r8d,%r8d - 66341fa2: 4f 8b 4c 19 58 mov 0x58(%r9,%r11,1),%r9 - 66341fa7: 45 01 31 add %r14d,(%r9) - 66341faa: 89 54 03 2c mov %edx,0x2c(%rbx,%rax,1) - 66341fae: 45 8b 09 mov (%r9),%r9d - 66341fb1: 49 8b 54 42 58 mov 0x58(%r10,%rax,2),%rdx - 66341fb6: 45 85 c9 test %r9d,%r9d - 66341fb9: 41 0f 9f c0 setg %r8b - 66341fbd: 44 3b 02 cmp (%rdx),%r8d - 66341fc0: 74 30 je 66341ff2 - 66341fc2: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66341fc6: 4a 8b 54 1a 58 mov 0x58(%rdx,%r11,1),%rdx - 66341fcb: 8b 12 mov (%rdx),%edx - 66341fcd: 85 d2 test %edx,%edx - 66341fcf: 75 21 jne 66341ff2 - 66341fd1: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66341fd5: 4e 8b 44 1a 58 mov 0x58(%rdx,%r11,1),%r8 - 66341fda: 49 8b 50 10 mov 0x10(%r8),%rdx - 66341fde: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66341fe4: 48 63 16 movslq (%rsi),%rdx - 66341fe7: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 66341feb: 44 89 0e mov %r9d,(%rsi) - 66341fee: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66341ff2: 48 83 c0 04 add $0x4,%rax - 66341ff6: 48 83 f8 28 cmp $0x28,%rax - 66341ffa: 75 84 jne 66341f80 - 66341ffc: 5b pop %rbx - 66341ffd: 5e pop %rsi - 66341ffe: 5f pop %rdi - 66341fff: 41 5e pop %r14 - 66342001: c3 retq - 66342002: 0f 1f 40 00 nopl 0x0(%rax) - 66342006: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634200d: 00 00 00 +0000000066342110 : + 66342110: 41 56 push %r14 + 66342112: 57 push %rdi + 66342113: 56 push %rsi + 66342114: 53 push %rbx + 66342115: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66342119: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax + 66342120: 44 8b 10 mov (%rax),%r10d + 66342123: 45 85 d2 test %r10d,%r10d + 66342126: 0f 84 a8 00 00 00 je 663421d4 + 6634212c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342130: 31 c0 xor %eax,%eax + 66342132: 48 8b 3d e7 47 01 00 mov 0x147e7(%rip),%rdi # 66356920 + 66342139: 48 8b 35 f0 47 01 00 mov 0x147f0(%rip),%rsi # 66356930 + 66342140: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66342145: 44 8b 84 03 c4 00 00 mov 0xc4(%rbx,%rax,1),%r8d + 6634214c: 00 + 6634214d: 8b 12 mov (%rdx),%edx + 6634214f: 44 39 c2 cmp %r8d,%edx + 66342152: 74 70 je 663421c4 + 66342154: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342158: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 6634215c: 41 89 d6 mov %edx,%r14d + 6634215f: 45 29 c6 sub %r8d,%r14d + 66342162: 45 31 c0 xor %r8d,%r8d + 66342165: 4f 8b 8c 11 88 01 00 mov 0x188(%r9,%r10,1),%r9 + 6634216c: 00 + 6634216d: 45 01 31 add %r14d,(%r9) + 66342170: 89 94 03 c4 00 00 00 mov %edx,0xc4(%rbx,%rax,1) + 66342177: 45 8b 09 mov (%r9),%r9d + 6634217a: 49 8b 94 43 88 01 00 mov 0x188(%r11,%rax,2),%rdx + 66342181: 00 + 66342182: 45 85 c9 test %r9d,%r9d + 66342185: 41 0f 9f c0 setg %r8b + 66342189: 44 3b 02 cmp (%rdx),%r8d + 6634218c: 74 36 je 663421c4 + 6634218e: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342192: 4a 8b 94 12 88 01 00 mov 0x188(%rdx,%r10,1),%rdx + 66342199: 00 + 6634219a: 8b 12 mov (%rdx),%edx + 6634219c: 85 d2 test %edx,%edx + 6634219e: 75 24 jne 663421c4 + 663421a0: 48 8b 51 28 mov 0x28(%rcx),%rdx + 663421a4: 4e 8b 84 12 88 01 00 mov 0x188(%rdx,%r10,1),%r8 + 663421ab: 00 + 663421ac: 49 8b 50 10 mov 0x10(%r8),%rdx + 663421b0: c7 02 01 00 00 00 movl $0x1,(%rdx) + 663421b6: 48 63 16 movslq (%rsi),%rdx + 663421b9: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 663421bd: 44 89 0e mov %r9d,(%rsi) + 663421c0: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 663421c4: 48 83 c0 04 add $0x4,%rax + 663421c8: 48 3d c0 00 00 00 cmp $0xc0,%rax + 663421ce: 0f 85 6c ff ff ff jne 66342140 + 663421d4: 5b pop %rbx + 663421d5: 5e pop %rsi + 663421d6: 5f pop %rdi + 663421d7: 41 5e pop %r14 + 663421d9: c3 retq + 663421da: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -0000000066342010 : - 66342010: 41 56 push %r14 - 66342012: 57 push %rdi - 66342013: 56 push %rsi - 66342014: 53 push %rbx - 66342015: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66342019: 49 8b 82 98 00 00 00 mov 0x98(%r10),%rax - 66342020: 44 8b 18 mov (%rax),%r11d - 66342023: 45 85 db test %r11d,%r11d - 66342026: 0f 84 90 00 00 00 je 663420bc - 6634202c: 48 8b 59 08 mov 0x8(%rcx),%rbx - 66342030: 31 c0 xor %eax,%eax - 66342032: 48 8b 3d e7 58 01 00 mov 0x158e7(%rip),%rdi # 66357920 - 66342039: 48 8b 35 f0 58 01 00 mov 0x158f0(%rip),%rsi # 66357930 - 66342040: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx - 66342045: 44 8b 44 03 28 mov 0x28(%rbx,%rax,1),%r8d - 6634204a: 8b 12 mov (%rdx),%edx - 6634204c: 44 39 c2 cmp %r8d,%edx - 6634204f: 74 61 je 663420b2 - 66342051: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66342055: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 - 66342059: 41 89 d6 mov %edx,%r14d - 6634205c: 45 29 c6 sub %r8d,%r14d - 6634205f: 45 31 c0 xor %r8d,%r8d - 66342062: 4f 8b 4c 19 50 mov 0x50(%r9,%r11,1),%r9 - 66342067: 45 01 31 add %r14d,(%r9) - 6634206a: 89 54 03 28 mov %edx,0x28(%rbx,%rax,1) - 6634206e: 45 8b 09 mov (%r9),%r9d - 66342071: 49 8b 54 42 50 mov 0x50(%r10,%rax,2),%rdx - 66342076: 45 85 c9 test %r9d,%r9d - 66342079: 41 0f 9f c0 setg %r8b - 6634207d: 44 3b 02 cmp (%rdx),%r8d - 66342080: 74 30 je 663420b2 - 66342082: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66342086: 4a 8b 54 1a 50 mov 0x50(%rdx,%r11,1),%rdx - 6634208b: 8b 12 mov (%rdx),%edx - 6634208d: 85 d2 test %edx,%edx - 6634208f: 75 21 jne 663420b2 - 66342091: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66342095: 4e 8b 44 1a 50 mov 0x50(%rdx,%r11,1),%r8 - 6634209a: 49 8b 50 10 mov 0x10(%r8),%rdx - 6634209e: c7 02 01 00 00 00 movl $0x1,(%rdx) - 663420a4: 48 63 16 movslq (%rsi),%rdx - 663420a7: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 663420ab: 44 89 0e mov %r9d,(%rsi) - 663420ae: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 663420b2: 48 83 c0 04 add $0x4,%rax - 663420b6: 48 83 f8 24 cmp $0x24,%rax - 663420ba: 75 84 jne 66342040 - 663420bc: 5b pop %rbx - 663420bd: 5e pop %rsi - 663420be: 5f pop %rdi - 663420bf: 41 5e pop %r14 - 663420c1: c3 retq - 663420c2: 0f 1f 40 00 nopl 0x0(%rax) - 663420c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663420cd: 00 00 00 +00000000663421e0 : + 663421e0: 48 8b 41 10 mov 0x10(%rcx),%rax + 663421e4: 4c 8b 40 08 mov 0x8(%rax),%r8 + 663421e8: 48 8b 50 10 mov 0x10(%rax),%rdx + 663421ec: 8b 12 mov (%rdx),%edx + 663421ee: 41 33 10 xor (%r8),%edx + 663421f1: 4c 8b 40 18 mov 0x18(%rax),%r8 + 663421f5: 41 3b 10 cmp (%r8),%edx + 663421f8: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663421fc: 0f 94 c2 sete %dl + 663421ff: 45 8b 48 10 mov 0x10(%r8),%r9d + 66342203: 0f b6 d2 movzbl %dl,%edx + 66342206: 44 39 ca cmp %r9d,%edx + 66342209: 74 64 je 6634226f + 6634220b: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634220f: 41 89 d3 mov %edx,%r11d + 66342212: 45 29 cb sub %r9d,%r11d + 66342215: 48 8b 40 20 mov 0x20(%rax),%rax + 66342219: 4d 8b 52 20 mov 0x20(%r10),%r10 + 6634221d: 45 01 1a add %r11d,(%r10) + 66342220: 41 89 50 10 mov %edx,0x10(%r8) + 66342224: 31 d2 xor %edx,%edx + 66342226: 45 8b 02 mov (%r10),%r8d + 66342229: 45 85 c0 test %r8d,%r8d + 6634222c: 0f 9f c2 setg %dl + 6634222f: 3b 10 cmp (%rax),%edx + 66342231: 74 3c je 6634226f + 66342233: 48 8b 41 20 mov 0x20(%rcx),%rax + 66342237: 48 8b 40 20 mov 0x20(%rax),%rax + 6634223b: 8b 00 mov (%rax),%eax + 6634223d: 85 c0 test %eax,%eax + 6634223f: 75 2e jne 6634226f + 66342241: 48 8b 41 28 mov 0x28(%rcx),%rax + 66342245: 48 8b 0d e4 46 01 00 mov 0x146e4(%rip),%rcx # 66356930 + 6634224c: 4c 8b 05 cd 46 01 00 mov 0x146cd(%rip),%r8 # 66356920 + 66342253: 48 8b 50 20 mov 0x20(%rax),%rdx + 66342257: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634225b: c7 00 01 00 00 00 movl $0x1,(%rax) + 66342261: 48 63 01 movslq (%rcx),%rax + 66342264: 44 8d 48 01 lea 0x1(%rax),%r9d + 66342268: 44 89 09 mov %r9d,(%rcx) + 6634226b: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634226f: c3 retq -00000000663420d0 : - 663420d0: 41 56 push %r14 - 663420d2: 57 push %rdi - 663420d3: 56 push %rsi - 663420d4: 53 push %rbx - 663420d5: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 663420d9: 49 8b 82 88 00 00 00 mov 0x88(%r10),%rax - 663420e0: 44 8b 18 mov (%rax),%r11d - 663420e3: 45 85 db test %r11d,%r11d - 663420e6: 0f 84 90 00 00 00 je 6634217c - 663420ec: 48 8b 59 08 mov 0x8(%rcx),%rbx - 663420f0: 31 c0 xor %eax,%eax - 663420f2: 48 8b 3d 27 58 01 00 mov 0x15827(%rip),%rdi # 66357920 - 663420f9: 48 8b 35 30 58 01 00 mov 0x15830(%rip),%rsi # 66357930 - 66342100: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx - 66342105: 44 8b 44 03 24 mov 0x24(%rbx,%rax,1),%r8d - 6634210a: 8b 12 mov (%rdx),%edx - 6634210c: 44 39 c2 cmp %r8d,%edx - 6634210f: 74 61 je 66342172 - 66342111: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66342115: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 - 66342119: 41 89 d6 mov %edx,%r14d - 6634211c: 45 29 c6 sub %r8d,%r14d - 6634211f: 45 31 c0 xor %r8d,%r8d - 66342122: 4f 8b 4c 19 48 mov 0x48(%r9,%r11,1),%r9 - 66342127: 45 01 31 add %r14d,(%r9) - 6634212a: 89 54 03 24 mov %edx,0x24(%rbx,%rax,1) - 6634212e: 45 8b 09 mov (%r9),%r9d - 66342131: 49 8b 54 42 48 mov 0x48(%r10,%rax,2),%rdx - 66342136: 45 85 c9 test %r9d,%r9d - 66342139: 41 0f 9f c0 setg %r8b - 6634213d: 44 3b 02 cmp (%rdx),%r8d - 66342140: 74 30 je 66342172 - 66342142: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66342146: 4a 8b 54 1a 48 mov 0x48(%rdx,%r11,1),%rdx - 6634214b: 8b 12 mov (%rdx),%edx - 6634214d: 85 d2 test %edx,%edx - 6634214f: 75 21 jne 66342172 - 66342151: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66342155: 4e 8b 44 1a 48 mov 0x48(%rdx,%r11,1),%r8 - 6634215a: 49 8b 50 10 mov 0x10(%r8),%rdx - 6634215e: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66342164: 48 63 16 movslq (%rsi),%rdx - 66342167: 44 8d 4a 01 lea 0x1(%rdx),%r9d - 6634216b: 44 89 0e mov %r9d,(%rsi) - 6634216e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) - 66342172: 48 83 c0 04 add $0x4,%rax - 66342176: 48 83 f8 20 cmp $0x20,%rax - 6634217a: 75 84 jne 66342100 - 6634217c: 5b pop %rbx - 6634217d: 5e pop %rsi - 6634217e: 5f pop %rdi - 6634217f: 41 5e pop %r14 - 66342181: c3 retq - 66342182: 0f 1f 40 00 nopl 0x0(%rax) - 66342186: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634218d: 00 00 00 +0000000066342270 : + 66342270: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66342274: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66342278: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634227c: 8b 00 mov (%rax),%eax + 6634227e: 41 33 00 xor (%r8),%eax + 66342281: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66342285: 41 33 00 xor (%r8),%eax + 66342288: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634228c: 45 8b 48 10 mov 0x10(%r8),%r9d + 66342290: 44 39 c8 cmp %r9d,%eax + 66342293: 74 67 je 663422fc + 66342295: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66342299: 41 89 c3 mov %eax,%r11d + 6634229c: 45 29 cb sub %r9d,%r11d + 6634229f: 4d 8b 52 20 mov 0x20(%r10),%r10 + 663422a3: 45 01 1a add %r11d,(%r10) + 663422a6: 41 89 40 10 mov %eax,0x10(%r8) + 663422aa: 45 31 c0 xor %r8d,%r8d + 663422ad: 45 8b 0a mov (%r10),%r9d + 663422b0: 48 8b 42 20 mov 0x20(%rdx),%rax + 663422b4: 45 85 c9 test %r9d,%r9d + 663422b7: 41 0f 9f c0 setg %r8b + 663422bb: 44 3b 00 cmp (%rax),%r8d + 663422be: 74 3c je 663422fc + 663422c0: 48 8b 41 20 mov 0x20(%rcx),%rax + 663422c4: 48 8b 40 20 mov 0x20(%rax),%rax + 663422c8: 8b 00 mov (%rax),%eax + 663422ca: 85 c0 test %eax,%eax + 663422cc: 75 2e jne 663422fc + 663422ce: 48 8b 41 28 mov 0x28(%rcx),%rax + 663422d2: 48 8b 0d 57 46 01 00 mov 0x14657(%rip),%rcx # 66356930 + 663422d9: 4c 8b 05 40 46 01 00 mov 0x14640(%rip),%r8 # 66356920 + 663422e0: 48 8b 50 20 mov 0x20(%rax),%rdx + 663422e4: 48 8b 42 10 mov 0x10(%rdx),%rax + 663422e8: c7 00 01 00 00 00 movl $0x1,(%rax) + 663422ee: 48 63 01 movslq (%rcx),%rax + 663422f1: 44 8d 48 01 lea 0x1(%rax),%r9d + 663422f5: 44 89 09 mov %r9d,(%rcx) + 663422f8: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663422fc: c3 retq + 663422fd: 0f 1f 00 nopl (%rax) -0000000066342190 : - 66342190: 56 push %rsi - 66342191: 53 push %rbx - 66342192: 48 8b 41 10 mov 0x10(%rcx),%rax - 66342196: 48 8b 50 78 mov 0x78(%rax),%rdx - 6634219a: 44 8b 12 mov (%rdx),%r10d - 6634219d: 45 85 d2 test %r10d,%r10d - 663421a0: 0f 84 3d 02 00 00 je 663423e3 - 663421a6: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663421aa: 4c 8b 48 08 mov 0x8(%rax),%r9 - 663421ae: 4c 8b 1d 6b 57 01 00 mov 0x1576b(%rip),%r11 # 66357920 - 663421b5: 4c 8b 05 74 57 01 00 mov 0x15774(%rip),%r8 # 66357930 - 663421bc: 44 8b 52 20 mov 0x20(%rdx),%r10d - 663421c0: 45 8b 09 mov (%r9),%r9d - 663421c3: 45 39 d1 cmp %r10d,%r9d - 663421c6: 74 3d je 66342205 - 663421c8: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663421cc: 44 89 ce mov %r9d,%esi - 663421cf: 44 29 d6 sub %r10d,%esi - 663421d2: 45 31 d2 xor %r10d,%r10d - 663421d5: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 663421d9: 01 33 add %esi,(%rbx) - 663421db: 44 89 4a 20 mov %r9d,0x20(%rdx) - 663421df: 44 8b 0b mov (%rbx),%r9d - 663421e2: 45 85 c9 test %r9d,%r9d - 663421e5: 4c 8b 48 40 mov 0x40(%rax),%r9 - 663421e9: 41 0f 9f c2 setg %r10b - 663421ed: 45 3b 11 cmp (%r9),%r10d - 663421f0: 74 13 je 66342205 - 663421f2: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663421f6: 4d 8b 49 40 mov 0x40(%r9),%r9 - 663421fa: 41 8b 31 mov (%r9),%esi - 663421fd: 85 f6 test %esi,%esi - 663421ff: 0f 84 db 02 00 00 je 663424e0 - 66342205: 4c 8b 48 10 mov 0x10(%rax),%r9 - 66342209: 44 8b 52 24 mov 0x24(%rdx),%r10d - 6634220d: 45 8b 09 mov (%r9),%r9d - 66342210: 45 39 d1 cmp %r10d,%r9d - 66342213: 74 3c je 66342251 - 66342215: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342219: 44 89 ce mov %r9d,%esi - 6634221c: 44 29 d6 sub %r10d,%esi - 6634221f: 45 31 d2 xor %r10d,%r10d - 66342222: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 66342226: 01 33 add %esi,(%rbx) - 66342228: 44 89 4a 24 mov %r9d,0x24(%rdx) - 6634222c: 8b 1b mov (%rbx),%ebx - 6634222e: 4c 8b 48 48 mov 0x48(%rax),%r9 - 66342232: 85 db test %ebx,%ebx - 66342234: 41 0f 9f c2 setg %r10b - 66342238: 45 3b 11 cmp (%r9),%r10d - 6634223b: 74 14 je 66342251 - 6634223d: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342241: 4d 8b 49 48 mov 0x48(%r9),%r9 - 66342245: 45 8b 11 mov (%r9),%r10d - 66342248: 45 85 d2 test %r10d,%r10d - 6634224b: 0f 84 5f 02 00 00 je 663424b0 - 66342251: 4c 8b 48 18 mov 0x18(%rax),%r9 - 66342255: 44 8b 52 28 mov 0x28(%rdx),%r10d - 66342259: 45 8b 09 mov (%r9),%r9d - 6634225c: 45 39 d1 cmp %r10d,%r9d - 6634225f: 74 3d je 6634229e - 66342261: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342265: 44 89 ce mov %r9d,%esi - 66342268: 44 29 d6 sub %r10d,%esi - 6634226b: 45 31 d2 xor %r10d,%r10d - 6634226e: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66342272: 01 33 add %esi,(%rbx) - 66342274: 44 89 4a 28 mov %r9d,0x28(%rdx) - 66342278: 44 8b 0b mov (%rbx),%r9d - 6634227b: 45 85 c9 test %r9d,%r9d - 6634227e: 4c 8b 48 50 mov 0x50(%rax),%r9 - 66342282: 41 0f 9f c2 setg %r10b - 66342286: 45 3b 11 cmp (%r9),%r10d - 66342289: 74 13 je 6634229e - 6634228b: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 6634228f: 4d 8b 49 50 mov 0x50(%r9),%r9 - 66342293: 41 8b 31 mov (%r9),%esi - 66342296: 85 f6 test %esi,%esi - 66342298: 0f 84 e2 01 00 00 je 66342480 - 6634229e: 4c 8b 48 20 mov 0x20(%rax),%r9 - 663422a2: 44 8b 52 2c mov 0x2c(%rdx),%r10d - 663422a6: 45 8b 09 mov (%r9),%r9d - 663422a9: 45 39 d1 cmp %r10d,%r9d - 663422ac: 74 3c je 663422ea - 663422ae: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663422b2: 44 89 ce mov %r9d,%esi - 663422b5: 44 29 d6 sub %r10d,%esi - 663422b8: 45 31 d2 xor %r10d,%r10d - 663422bb: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 663422bf: 01 33 add %esi,(%rbx) - 663422c1: 44 89 4a 2c mov %r9d,0x2c(%rdx) - 663422c5: 8b 1b mov (%rbx),%ebx - 663422c7: 4c 8b 48 58 mov 0x58(%rax),%r9 - 663422cb: 85 db test %ebx,%ebx - 663422cd: 41 0f 9f c2 setg %r10b - 663422d1: 45 3b 11 cmp (%r9),%r10d - 663422d4: 74 14 je 663422ea - 663422d6: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663422da: 4d 8b 49 58 mov 0x58(%r9),%r9 - 663422de: 45 8b 11 mov (%r9),%r10d - 663422e1: 45 85 d2 test %r10d,%r10d - 663422e4: 0f 84 66 01 00 00 je 66342450 - 663422ea: 4c 8b 48 28 mov 0x28(%rax),%r9 - 663422ee: 44 8b 52 30 mov 0x30(%rdx),%r10d - 663422f2: 45 8b 09 mov (%r9),%r9d - 663422f5: 45 39 d1 cmp %r10d,%r9d - 663422f8: 74 3d je 66342337 - 663422fa: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663422fe: 44 89 ce mov %r9d,%esi - 66342301: 44 29 d6 sub %r10d,%esi - 66342304: 45 31 d2 xor %r10d,%r10d - 66342307: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 6634230b: 01 33 add %esi,(%rbx) - 6634230d: 44 89 4a 30 mov %r9d,0x30(%rdx) - 66342311: 44 8b 0b mov (%rbx),%r9d - 66342314: 45 85 c9 test %r9d,%r9d - 66342317: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634231b: 41 0f 9f c2 setg %r10b - 6634231f: 45 3b 11 cmp (%r9),%r10d - 66342322: 74 13 je 66342337 - 66342324: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342328: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634232c: 41 8b 31 mov (%r9),%esi - 6634232f: 85 f6 test %esi,%esi - 66342331: 0f 84 e9 00 00 00 je 66342420 - 66342337: 4c 8b 48 30 mov 0x30(%rax),%r9 - 6634233b: 44 8b 52 34 mov 0x34(%rdx),%r10d - 6634233f: 45 8b 09 mov (%r9),%r9d - 66342342: 45 39 d1 cmp %r10d,%r9d - 66342345: 74 38 je 6634237f - 66342347: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634234b: 44 89 ce mov %r9d,%esi - 6634234e: 44 29 d6 sub %r10d,%esi - 66342351: 45 31 d2 xor %r10d,%r10d - 66342354: 48 8b 5b 68 mov 0x68(%rbx),%rbx - 66342358: 01 33 add %esi,(%rbx) - 6634235a: 44 89 4a 34 mov %r9d,0x34(%rdx) - 6634235e: 8b 1b mov (%rbx),%ebx - 66342360: 4c 8b 48 68 mov 0x68(%rax),%r9 - 66342364: 85 db test %ebx,%ebx - 66342366: 41 0f 9f c2 setg %r10b - 6634236a: 45 3b 11 cmp (%r9),%r10d - 6634236d: 74 10 je 6634237f - 6634236f: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342373: 4d 8b 49 68 mov 0x68(%r9),%r9 - 66342377: 45 8b 11 mov (%r9),%r10d - 6634237a: 45 85 d2 test %r10d,%r10d - 6634237d: 74 71 je 663423f0 - 6634237f: 4c 8b 48 38 mov 0x38(%rax),%r9 - 66342383: 44 8b 52 38 mov 0x38(%rdx),%r10d - 66342387: 45 8b 09 mov (%r9),%r9d - 6634238a: 45 39 d1 cmp %r10d,%r9d - 6634238d: 74 54 je 663423e3 - 6634238f: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342393: 44 89 ce mov %r9d,%esi - 66342396: 44 29 d6 sub %r10d,%esi - 66342399: 48 8b 40 70 mov 0x70(%rax),%rax - 6634239d: 48 8b 5b 70 mov 0x70(%rbx),%rbx - 663423a1: 01 33 add %esi,(%rbx) - 663423a3: 44 89 4a 38 mov %r9d,0x38(%rdx) - 663423a7: 31 d2 xor %edx,%edx - 663423a9: 44 8b 0b mov (%rbx),%r9d - 663423ac: 45 85 c9 test %r9d,%r9d - 663423af: 0f 9f c2 setg %dl - 663423b2: 3b 10 cmp (%rax),%edx - 663423b4: 74 2d je 663423e3 - 663423b6: 48 8b 41 20 mov 0x20(%rcx),%rax - 663423ba: 48 8b 40 70 mov 0x70(%rax),%rax - 663423be: 8b 00 mov (%rax),%eax - 663423c0: 85 c0 test %eax,%eax - 663423c2: 75 1f jne 663423e3 - 663423c4: 48 8b 41 28 mov 0x28(%rcx),%rax - 663423c8: 48 8b 50 70 mov 0x70(%rax),%rdx - 663423cc: 48 8b 42 10 mov 0x10(%rdx),%rax - 663423d0: c7 00 01 00 00 00 movl $0x1,(%rax) - 663423d6: 49 63 00 movslq (%r8),%rax - 663423d9: 8d 48 01 lea 0x1(%rax),%ecx - 663423dc: 41 89 08 mov %ecx,(%r8) - 663423df: 49 89 14 c3 mov %rdx,(%r11,%rax,8) - 663423e3: 5b pop %rbx - 663423e4: 5e pop %rsi - 663423e5: c3 retq - 663423e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663423ed: 00 00 00 - 663423f0: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663423f4: 4d 8b 51 68 mov 0x68(%r9),%r10 - 663423f8: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 663423fc: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342403: 4d 63 08 movslq (%r8),%r9 - 66342406: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634240a: 41 89 18 mov %ebx,(%r8) - 6634240d: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342411: e9 69 ff ff ff jmpq 6634237f - 66342416: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634241d: 00 00 00 - 66342420: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342424: 4d 8b 51 60 mov 0x60(%r9),%r10 - 66342428: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634242c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342433: 4d 63 08 movslq (%r8),%r9 - 66342436: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634243a: 41 89 18 mov %ebx,(%r8) - 6634243d: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342441: e9 f1 fe ff ff jmpq 66342337 - 66342446: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634244d: 00 00 00 - 66342450: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342454: 4d 8b 51 58 mov 0x58(%r9),%r10 - 66342458: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634245c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342463: 4d 63 08 movslq (%r8),%r9 - 66342466: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634246a: 41 89 18 mov %ebx,(%r8) - 6634246d: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342471: e9 74 fe ff ff jmpq 663422ea - 66342476: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634247d: 00 00 00 - 66342480: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342484: 4d 8b 51 50 mov 0x50(%r9),%r10 - 66342488: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634248c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342493: 4d 63 08 movslq (%r8),%r9 - 66342496: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634249a: 41 89 18 mov %ebx,(%r8) - 6634249d: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 663424a1: e9 f8 fd ff ff jmpq 6634229e - 663424a6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663424ad: 00 00 00 - 663424b0: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663424b4: 4d 8b 51 48 mov 0x48(%r9),%r10 - 663424b8: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 663424bc: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663424c3: 4d 63 08 movslq (%r8),%r9 - 663424c6: 41 8d 59 01 lea 0x1(%r9),%ebx - 663424ca: 41 89 18 mov %ebx,(%r8) - 663424cd: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 663424d1: e9 7b fd ff ff jmpq 66342251 - 663424d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663424dd: 00 00 00 - 663424e0: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663424e4: 4d 8b 51 40 mov 0x40(%r9),%r10 - 663424e8: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 663424ec: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663424f3: 4d 63 08 movslq (%r8),%r9 - 663424f6: 41 8d 59 01 lea 0x1(%r9),%ebx - 663424fa: 41 89 18 mov %ebx,(%r8) - 663424fd: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342501: e9 ff fc ff ff jmpq 66342205 - 66342506: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634250d: 00 00 00 +0000000066342300 : + 66342300: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66342304: 48 8b 42 08 mov 0x8(%rdx),%rax + 66342308: 8b 00 mov (%rax),%eax + 6634230a: 85 c0 test %eax,%eax + 6634230c: 74 0f je 6634231d + 6634230e: 48 8b 42 10 mov 0x10(%rdx),%rax + 66342312: 44 8b 10 mov (%rax),%r10d + 66342315: 31 c0 xor %eax,%eax + 66342317: 45 85 d2 test %r10d,%r10d + 6634231a: 0f 95 c0 setne %al + 6634231d: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66342321: 45 8b 48 0c mov 0xc(%r8),%r9d + 66342325: 44 39 c8 cmp %r9d,%eax + 66342328: 74 67 je 66342391 + 6634232a: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634232e: 41 89 c3 mov %eax,%r11d + 66342331: 45 29 cb sub %r9d,%r11d + 66342334: 4d 8b 52 18 mov 0x18(%r10),%r10 + 66342338: 45 01 1a add %r11d,(%r10) + 6634233b: 41 89 40 0c mov %eax,0xc(%r8) + 6634233f: 45 31 c0 xor %r8d,%r8d + 66342342: 45 8b 0a mov (%r10),%r9d + 66342345: 48 8b 42 18 mov 0x18(%rdx),%rax + 66342349: 45 85 c9 test %r9d,%r9d + 6634234c: 41 0f 9f c0 setg %r8b + 66342350: 44 3b 00 cmp (%rax),%r8d + 66342353: 74 3c je 66342391 + 66342355: 48 8b 41 20 mov 0x20(%rcx),%rax + 66342359: 48 8b 40 18 mov 0x18(%rax),%rax + 6634235d: 8b 00 mov (%rax),%eax + 6634235f: 85 c0 test %eax,%eax + 66342361: 75 2e jne 66342391 + 66342363: 48 8b 41 28 mov 0x28(%rcx),%rax + 66342367: 48 8b 0d c2 45 01 00 mov 0x145c2(%rip),%rcx # 66356930 + 6634236e: 4c 8b 05 ab 45 01 00 mov 0x145ab(%rip),%r8 # 66356920 + 66342375: 48 8b 50 18 mov 0x18(%rax),%rdx + 66342379: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634237d: c7 00 01 00 00 00 movl $0x1,(%rax) + 66342383: 48 63 01 movslq (%rcx),%rax + 66342386: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634238a: 44 89 09 mov %r9d,(%rcx) + 6634238d: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66342391: c3 retq + 66342392: 0f 1f 40 00 nopl 0x0(%rax) + 66342396: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634239d: 00 00 00 -0000000066342510 : - 66342510: 56 push %rsi - 66342511: 53 push %rbx - 66342512: 48 8b 41 10 mov 0x10(%rcx),%rax - 66342516: 48 8b 50 68 mov 0x68(%rax),%rdx - 6634251a: 8b 32 mov (%rdx),%esi - 6634251c: 85 f6 test %esi,%esi - 6634251e: 0f 84 85 02 00 00 je 663427a9 - 66342524: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66342528: 4c 8b 48 08 mov 0x8(%rax),%r9 - 6634252c: 4c 8b 1d ed 53 01 00 mov 0x153ed(%rip),%r11 # 66357920 - 66342533: 4c 8b 05 f6 53 01 00 mov 0x153f6(%rip),%r8 # 66357930 - 6634253a: 44 8b 52 1c mov 0x1c(%rdx),%r10d - 6634253e: 45 8b 09 mov (%r9),%r9d - 66342541: 45 39 d1 cmp %r10d,%r9d - 66342544: 74 59 je 6634259f - 66342546: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634254a: 44 89 ce mov %r9d,%esi - 6634254d: 44 29 d6 sub %r10d,%esi - 66342550: 45 31 d2 xor %r10d,%r10d - 66342553: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 66342557: 01 33 add %esi,(%rbx) - 66342559: 44 89 4a 1c mov %r9d,0x1c(%rdx) - 6634255d: 8b 1b mov (%rbx),%ebx - 6634255f: 4c 8b 48 38 mov 0x38(%rax),%r9 - 66342563: 85 db test %ebx,%ebx - 66342565: 41 0f 9f c2 setg %r10b - 66342569: 45 3b 11 cmp (%r9),%r10d - 6634256c: 74 31 je 6634259f - 6634256e: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342572: 4d 8b 49 38 mov 0x38(%r9),%r9 - 66342576: 45 8b 11 mov (%r9),%r10d - 66342579: 45 85 d2 test %r10d,%r10d - 6634257c: 75 21 jne 6634259f - 6634257e: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342582: 4d 8b 51 38 mov 0x38(%r9),%r10 - 66342586: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634258a: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342591: 4d 63 08 movslq (%r8),%r9 - 66342594: 41 8d 59 01 lea 0x1(%r9),%ebx - 66342598: 41 89 18 mov %ebx,(%r8) - 6634259b: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 6634259f: 4c 8b 48 10 mov 0x10(%rax),%r9 - 663425a3: 44 8b 52 20 mov 0x20(%rdx),%r10d - 663425a7: 45 8b 09 mov (%r9),%r9d - 663425aa: 45 39 d1 cmp %r10d,%r9d - 663425ad: 74 5a je 66342609 - 663425af: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663425b3: 44 89 ce mov %r9d,%esi - 663425b6: 44 29 d6 sub %r10d,%esi - 663425b9: 45 31 d2 xor %r10d,%r10d - 663425bc: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 663425c0: 01 33 add %esi,(%rbx) - 663425c2: 44 89 4a 20 mov %r9d,0x20(%rdx) - 663425c6: 44 8b 0b mov (%rbx),%r9d - 663425c9: 45 85 c9 test %r9d,%r9d - 663425cc: 4c 8b 48 40 mov 0x40(%rax),%r9 - 663425d0: 41 0f 9f c2 setg %r10b - 663425d4: 45 3b 11 cmp (%r9),%r10d - 663425d7: 74 30 je 66342609 - 663425d9: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663425dd: 4d 8b 49 40 mov 0x40(%r9),%r9 - 663425e1: 41 8b 31 mov (%r9),%esi - 663425e4: 85 f6 test %esi,%esi - 663425e6: 75 21 jne 66342609 - 663425e8: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663425ec: 4d 8b 51 40 mov 0x40(%r9),%r10 - 663425f0: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 663425f4: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663425fb: 4d 63 08 movslq (%r8),%r9 - 663425fe: 41 8d 59 01 lea 0x1(%r9),%ebx - 66342602: 41 89 18 mov %ebx,(%r8) - 66342605: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342609: 4c 8b 48 18 mov 0x18(%rax),%r9 - 6634260d: 44 8b 52 24 mov 0x24(%rdx),%r10d - 66342611: 45 8b 09 mov (%r9),%r9d - 66342614: 45 39 d1 cmp %r10d,%r9d - 66342617: 74 59 je 66342672 - 66342619: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634261d: 44 89 ce mov %r9d,%esi - 66342620: 44 29 d6 sub %r10d,%esi - 66342623: 45 31 d2 xor %r10d,%r10d - 66342626: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 6634262a: 01 33 add %esi,(%rbx) - 6634262c: 44 89 4a 24 mov %r9d,0x24(%rdx) - 66342630: 8b 1b mov (%rbx),%ebx - 66342632: 4c 8b 48 48 mov 0x48(%rax),%r9 - 66342636: 85 db test %ebx,%ebx - 66342638: 41 0f 9f c2 setg %r10b - 6634263c: 45 3b 11 cmp (%r9),%r10d - 6634263f: 74 31 je 66342672 - 66342641: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342645: 4d 8b 49 48 mov 0x48(%r9),%r9 - 66342649: 45 8b 11 mov (%r9),%r10d - 6634264c: 45 85 d2 test %r10d,%r10d - 6634264f: 75 21 jne 66342672 - 66342651: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342655: 4d 8b 51 48 mov 0x48(%r9),%r10 - 66342659: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634265d: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342664: 4d 63 08 movslq (%r8),%r9 - 66342667: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634266b: 41 89 18 mov %ebx,(%r8) - 6634266e: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342672: 4c 8b 48 20 mov 0x20(%rax),%r9 - 66342676: 44 8b 52 28 mov 0x28(%rdx),%r10d - 6634267a: 45 8b 09 mov (%r9),%r9d - 6634267d: 45 39 d1 cmp %r10d,%r9d - 66342680: 74 5a je 663426dc - 66342682: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342686: 44 89 ce mov %r9d,%esi - 66342689: 44 29 d6 sub %r10d,%esi - 6634268c: 45 31 d2 xor %r10d,%r10d - 6634268f: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66342693: 01 33 add %esi,(%rbx) - 66342695: 44 89 4a 28 mov %r9d,0x28(%rdx) - 66342699: 44 8b 0b mov (%rbx),%r9d - 6634269c: 45 85 c9 test %r9d,%r9d - 6634269f: 4c 8b 48 50 mov 0x50(%rax),%r9 - 663426a3: 41 0f 9f c2 setg %r10b - 663426a7: 45 3b 11 cmp (%r9),%r10d - 663426aa: 74 30 je 663426dc - 663426ac: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663426b0: 4d 8b 49 50 mov 0x50(%r9),%r9 - 663426b4: 41 8b 31 mov (%r9),%esi - 663426b7: 85 f6 test %esi,%esi - 663426b9: 75 21 jne 663426dc - 663426bb: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663426bf: 4d 8b 51 50 mov 0x50(%r9),%r10 - 663426c3: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 663426c7: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663426ce: 4d 63 08 movslq (%r8),%r9 - 663426d1: 41 8d 59 01 lea 0x1(%r9),%ebx - 663426d5: 41 89 18 mov %ebx,(%r8) - 663426d8: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 663426dc: 4c 8b 48 28 mov 0x28(%rax),%r9 - 663426e0: 44 8b 52 2c mov 0x2c(%rdx),%r10d - 663426e4: 45 8b 09 mov (%r9),%r9d - 663426e7: 45 39 d1 cmp %r10d,%r9d - 663426ea: 74 59 je 66342745 - 663426ec: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663426f0: 44 89 ce mov %r9d,%esi - 663426f3: 44 29 d6 sub %r10d,%esi - 663426f6: 45 31 d2 xor %r10d,%r10d - 663426f9: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 663426fd: 01 33 add %esi,(%rbx) - 663426ff: 44 89 4a 2c mov %r9d,0x2c(%rdx) - 66342703: 8b 1b mov (%rbx),%ebx - 66342705: 4c 8b 48 58 mov 0x58(%rax),%r9 - 66342709: 85 db test %ebx,%ebx - 6634270b: 41 0f 9f c2 setg %r10b - 6634270f: 45 3b 11 cmp (%r9),%r10d - 66342712: 74 31 je 66342745 - 66342714: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66342718: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634271c: 45 8b 11 mov (%r9),%r10d - 6634271f: 45 85 d2 test %r10d,%r10d - 66342722: 75 21 jne 66342745 - 66342724: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66342728: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634272c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 66342730: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66342737: 4d 63 08 movslq (%r8),%r9 - 6634273a: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634273e: 41 89 18 mov %ebx,(%r8) - 66342741: 4f 89 14 cb mov %r10,(%r11,%r9,8) - 66342745: 4c 8b 48 30 mov 0x30(%rax),%r9 - 66342749: 44 8b 52 30 mov 0x30(%rdx),%r10d - 6634274d: 45 8b 09 mov (%r9),%r9d - 66342750: 45 39 d1 cmp %r10d,%r9d - 66342753: 74 54 je 663427a9 - 66342755: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342759: 44 89 ce mov %r9d,%esi - 6634275c: 44 29 d6 sub %r10d,%esi - 6634275f: 48 8b 40 60 mov 0x60(%rax),%rax - 66342763: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 66342767: 01 33 add %esi,(%rbx) - 66342769: 44 89 4a 30 mov %r9d,0x30(%rdx) - 6634276d: 31 d2 xor %edx,%edx - 6634276f: 44 8b 0b mov (%rbx),%r9d - 66342772: 45 85 c9 test %r9d,%r9d - 66342775: 0f 9f c2 setg %dl - 66342778: 3b 10 cmp (%rax),%edx - 6634277a: 74 2d je 663427a9 - 6634277c: 48 8b 41 20 mov 0x20(%rcx),%rax - 66342780: 48 8b 40 60 mov 0x60(%rax),%rax - 66342784: 8b 00 mov (%rax),%eax - 66342786: 85 c0 test %eax,%eax - 66342788: 75 1f jne 663427a9 - 6634278a: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634278e: 48 8b 50 60 mov 0x60(%rax),%rdx - 66342792: 48 8b 42 10 mov 0x10(%rdx),%rax - 66342796: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634279c: 49 63 00 movslq (%r8),%rax - 6634279f: 8d 48 01 lea 0x1(%rax),%ecx - 663427a2: 41 89 08 mov %ecx,(%r8) - 663427a5: 49 89 14 c3 mov %rdx,(%r11,%rax,8) - 663427a9: 5b pop %rbx - 663427aa: 5e pop %rsi - 663427ab: c3 retq - 663427ac: 0f 1f 40 00 nopl 0x0(%rax) +00000000663423a0 : + 663423a0: b8 01 00 00 00 mov $0x1,%eax + 663423a5: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663423a9: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 663423ad: 45 8b 18 mov (%r8),%r11d + 663423b0: 45 85 db test %r11d,%r11d + 663423b3: 75 0f jne 663423c4 + 663423b5: 48 8b 42 10 mov 0x10(%rdx),%rax + 663423b9: 44 8b 10 mov (%rax),%r10d + 663423bc: 31 c0 xor %eax,%eax + 663423be: 45 85 d2 test %r10d,%r10d + 663423c1: 0f 95 c0 setne %al + 663423c4: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663423c8: 45 8b 48 0c mov 0xc(%r8),%r9d + 663423cc: 44 39 c8 cmp %r9d,%eax + 663423cf: 74 67 je 66342438 + 663423d1: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663423d5: 41 89 c3 mov %eax,%r11d + 663423d8: 45 29 cb sub %r9d,%r11d + 663423db: 4d 8b 52 18 mov 0x18(%r10),%r10 + 663423df: 45 01 1a add %r11d,(%r10) + 663423e2: 41 89 40 0c mov %eax,0xc(%r8) + 663423e6: 45 31 c0 xor %r8d,%r8d + 663423e9: 45 8b 0a mov (%r10),%r9d + 663423ec: 48 8b 42 18 mov 0x18(%rdx),%rax + 663423f0: 45 85 c9 test %r9d,%r9d + 663423f3: 41 0f 9f c0 setg %r8b + 663423f7: 44 3b 00 cmp (%rax),%r8d + 663423fa: 74 3c je 66342438 + 663423fc: 48 8b 41 20 mov 0x20(%rcx),%rax + 66342400: 48 8b 40 18 mov 0x18(%rax),%rax + 66342404: 8b 00 mov (%rax),%eax + 66342406: 85 c0 test %eax,%eax + 66342408: 75 2e jne 66342438 + 6634240a: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634240e: 48 8b 0d 1b 45 01 00 mov 0x1451b(%rip),%rcx # 66356930 + 66342415: 4c 8b 05 04 45 01 00 mov 0x14504(%rip),%r8 # 66356920 + 6634241c: 48 8b 50 18 mov 0x18(%rax),%rdx + 66342420: 48 8b 42 10 mov 0x10(%rdx),%rax + 66342424: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634242a: 48 63 01 movslq (%rcx),%rax + 6634242d: 44 8d 48 01 lea 0x1(%rax),%r9d + 66342431: 44 89 09 mov %r9d,(%rcx) + 66342434: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66342438: c3 retq + 66342439: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) -00000000663427b0 : - 663427b0: 56 push %rsi - 663427b1: 53 push %rbx - 663427b2: 48 8b 41 10 mov 0x10(%rcx),%rax - 663427b6: 48 8b 50 58 mov 0x58(%rax),%rdx - 663427ba: 44 8b 0a mov (%rdx),%r9d - 663427bd: 45 85 c9 test %r9d,%r9d - 663427c0: 0f 84 a4 01 00 00 je 6634296a - 663427c6: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663427ca: 4c 8b 40 08 mov 0x8(%rax),%r8 - 663427ce: 4c 8b 1d 4b 51 01 00 mov 0x1514b(%rip),%r11 # 66357920 - 663427d5: 4c 8b 0d 54 51 01 00 mov 0x15154(%rip),%r9 # 66357930 - 663427dc: 44 8b 52 18 mov 0x18(%rdx),%r10d - 663427e0: 45 8b 00 mov (%r8),%r8d - 663427e3: 45 39 d0 cmp %r10d,%r8d - 663427e6: 74 3d je 66342825 - 663427e8: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663427ec: 44 89 c6 mov %r8d,%esi - 663427ef: 44 29 d6 sub %r10d,%esi - 663427f2: 45 31 d2 xor %r10d,%r10d - 663427f5: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 663427f9: 01 33 add %esi,(%rbx) - 663427fb: 44 89 42 18 mov %r8d,0x18(%rdx) - 663427ff: 44 8b 03 mov (%rbx),%r8d - 66342802: 45 85 c0 test %r8d,%r8d - 66342805: 4c 8b 40 30 mov 0x30(%rax),%r8 - 66342809: 41 0f 9f c2 setg %r10b - 6634280d: 45 3b 10 cmp (%r8),%r10d - 66342810: 74 13 je 66342825 - 66342812: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342816: 4d 8b 40 30 mov 0x30(%r8),%r8 - 6634281a: 41 8b 30 mov (%r8),%esi - 6634281d: 85 f6 test %esi,%esi - 6634281f: 0f 84 db 01 00 00 je 66342a00 - 66342825: 4c 8b 40 10 mov 0x10(%rax),%r8 - 66342829: 44 8b 52 1c mov 0x1c(%rdx),%r10d - 6634282d: 45 8b 00 mov (%r8),%r8d - 66342830: 45 39 d0 cmp %r10d,%r8d - 66342833: 74 3c je 66342871 - 66342835: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342839: 44 89 c6 mov %r8d,%esi - 6634283c: 44 29 d6 sub %r10d,%esi - 6634283f: 45 31 d2 xor %r10d,%r10d - 66342842: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 66342846: 01 33 add %esi,(%rbx) - 66342848: 44 89 42 1c mov %r8d,0x1c(%rdx) - 6634284c: 8b 1b mov (%rbx),%ebx - 6634284e: 4c 8b 40 38 mov 0x38(%rax),%r8 - 66342852: 85 db test %ebx,%ebx - 66342854: 41 0f 9f c2 setg %r10b - 66342858: 45 3b 10 cmp (%r8),%r10d - 6634285b: 74 14 je 66342871 - 6634285d: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342861: 4d 8b 40 38 mov 0x38(%r8),%r8 - 66342865: 45 8b 10 mov (%r8),%r10d - 66342868: 45 85 d2 test %r10d,%r10d - 6634286b: 0f 84 5f 01 00 00 je 663429d0 - 66342871: 4c 8b 40 18 mov 0x18(%rax),%r8 - 66342875: 44 8b 52 20 mov 0x20(%rdx),%r10d - 66342879: 45 8b 00 mov (%r8),%r8d - 6634287c: 45 39 d0 cmp %r10d,%r8d - 6634287f: 74 3d je 663428be - 66342881: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66342885: 44 89 c6 mov %r8d,%esi - 66342888: 44 29 d6 sub %r10d,%esi - 6634288b: 45 31 d2 xor %r10d,%r10d - 6634288e: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66342892: 01 33 add %esi,(%rbx) - 66342894: 44 89 42 20 mov %r8d,0x20(%rdx) - 66342898: 44 8b 03 mov (%rbx),%r8d - 6634289b: 45 85 c0 test %r8d,%r8d - 6634289e: 4c 8b 40 40 mov 0x40(%rax),%r8 - 663428a2: 41 0f 9f c2 setg %r10b - 663428a6: 45 3b 10 cmp (%r8),%r10d - 663428a9: 74 13 je 663428be - 663428ab: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663428af: 4d 8b 40 40 mov 0x40(%r8),%r8 - 663428b3: 41 8b 30 mov (%r8),%esi - 663428b6: 85 f6 test %esi,%esi - 663428b8: 0f 84 e2 00 00 00 je 663429a0 - 663428be: 4c 8b 40 20 mov 0x20(%rax),%r8 - 663428c2: 44 8b 52 24 mov 0x24(%rdx),%r10d - 663428c6: 45 8b 00 mov (%r8),%r8d - 663428c9: 45 39 d0 cmp %r10d,%r8d - 663428cc: 74 38 je 66342906 - 663428ce: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663428d2: 44 89 c6 mov %r8d,%esi - 663428d5: 44 29 d6 sub %r10d,%esi - 663428d8: 45 31 d2 xor %r10d,%r10d - 663428db: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 663428df: 01 33 add %esi,(%rbx) - 663428e1: 44 89 42 24 mov %r8d,0x24(%rdx) - 663428e5: 8b 1b mov (%rbx),%ebx - 663428e7: 4c 8b 40 48 mov 0x48(%rax),%r8 - 663428eb: 85 db test %ebx,%ebx - 663428ed: 41 0f 9f c2 setg %r10b - 663428f1: 45 3b 10 cmp (%r8),%r10d - 663428f4: 74 10 je 66342906 - 663428f6: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663428fa: 4d 8b 40 48 mov 0x48(%r8),%r8 - 663428fe: 45 8b 10 mov (%r8),%r10d - 66342901: 45 85 d2 test %r10d,%r10d - 66342904: 74 6a je 66342970 - 66342906: 4c 8b 40 28 mov 0x28(%rax),%r8 - 6634290a: 44 8b 52 28 mov 0x28(%rdx),%r10d - 6634290e: 45 8b 00 mov (%r8),%r8d - 66342911: 45 39 d0 cmp %r10d,%r8d - 66342914: 74 54 je 6634296a - 66342916: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634291a: 44 89 c6 mov %r8d,%esi - 6634291d: 44 29 d6 sub %r10d,%esi - 66342920: 48 8b 40 50 mov 0x50(%rax),%rax - 66342924: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66342928: 01 33 add %esi,(%rbx) - 6634292a: 44 89 42 28 mov %r8d,0x28(%rdx) - 6634292e: 31 d2 xor %edx,%edx - 66342930: 44 8b 03 mov (%rbx),%r8d - 66342933: 45 85 c0 test %r8d,%r8d - 66342936: 0f 9f c2 setg %dl - 66342939: 3b 10 cmp (%rax),%edx - 6634293b: 74 2d je 6634296a - 6634293d: 48 8b 41 20 mov 0x20(%rcx),%rax - 66342941: 48 8b 40 50 mov 0x50(%rax),%rax - 66342945: 8b 00 mov (%rax),%eax - 66342947: 85 c0 test %eax,%eax - 66342949: 75 1f jne 6634296a - 6634294b: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634294f: 48 8b 50 50 mov 0x50(%rax),%rdx - 66342953: 48 8b 42 10 mov 0x10(%rdx),%rax - 66342957: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634295d: 49 63 01 movslq (%r9),%rax - 66342960: 8d 48 01 lea 0x1(%rax),%ecx - 66342963: 41 89 09 mov %ecx,(%r9) - 66342966: 49 89 14 c3 mov %rdx,(%r11,%rax,8) - 6634296a: 5b pop %rbx - 6634296b: 5e pop %rsi - 6634296c: c3 retq - 6634296d: 0f 1f 00 nopl (%rax) - 66342970: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342974: 4d 8b 50 48 mov 0x48(%r8),%r10 - 66342978: 4d 8b 42 10 mov 0x10(%r10),%r8 - 6634297c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342983: 4d 63 01 movslq (%r9),%r8 - 66342986: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634298a: 41 89 19 mov %ebx,(%r9) - 6634298d: 4f 89 14 c3 mov %r10,(%r11,%r8,8) - 66342991: e9 70 ff ff ff jmpq 66342906 - 66342996: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634299d: 00 00 00 - 663429a0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663429a4: 4d 8b 50 40 mov 0x40(%r8),%r10 - 663429a8: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663429ac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663429b3: 4d 63 01 movslq (%r9),%r8 - 663429b6: 41 8d 58 01 lea 0x1(%r8),%ebx - 663429ba: 41 89 19 mov %ebx,(%r9) - 663429bd: 4f 89 14 c3 mov %r10,(%r11,%r8,8) - 663429c1: e9 f8 fe ff ff jmpq 663428be - 663429c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663429cd: 00 00 00 - 663429d0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663429d4: 4d 8b 50 38 mov 0x38(%r8),%r10 - 663429d8: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663429dc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663429e3: 4d 63 01 movslq (%r9),%r8 - 663429e6: 41 8d 58 01 lea 0x1(%r8),%ebx - 663429ea: 41 89 19 mov %ebx,(%r9) - 663429ed: 4f 89 14 c3 mov %r10,(%r11,%r8,8) - 663429f1: e9 7b fe ff ff jmpq 66342871 - 663429f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663429fd: 00 00 00 - 66342a00: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342a04: 4d 8b 50 30 mov 0x30(%r8),%r10 - 66342a08: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66342a0c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342a13: 4d 63 01 movslq (%r9),%r8 - 66342a16: 41 8d 58 01 lea 0x1(%r8),%ebx - 66342a1a: 41 89 19 mov %ebx,(%r9) - 66342a1d: 4f 89 14 c3 mov %r10,(%r11,%r8,8) - 66342a21: e9 ff fd ff ff jmpq 66342825 - 66342a26: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66342a2d: 00 00 00 +0000000066342440 : + 66342440: b8 01 00 00 00 mov $0x1,%eax + 66342445: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66342449: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 6634244d: 45 8b 18 mov (%r8),%r11d + 66342450: 45 85 db test %r11d,%r11d + 66342453: 74 0f je 66342464 + 66342455: 48 8b 42 10 mov 0x10(%rdx),%rax + 66342459: 44 8b 10 mov (%rax),%r10d + 6634245c: 31 c0 xor %eax,%eax + 6634245e: 45 85 d2 test %r10d,%r10d + 66342461: 0f 94 c0 sete %al + 66342464: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66342468: 45 8b 48 0c mov 0xc(%r8),%r9d + 6634246c: 44 39 c8 cmp %r9d,%eax + 6634246f: 74 67 je 663424d8 + 66342471: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66342475: 41 89 c3 mov %eax,%r11d + 66342478: 45 29 cb sub %r9d,%r11d + 6634247b: 4d 8b 52 18 mov 0x18(%r10),%r10 + 6634247f: 45 01 1a add %r11d,(%r10) + 66342482: 41 89 40 0c mov %eax,0xc(%r8) + 66342486: 45 31 c0 xor %r8d,%r8d + 66342489: 45 8b 0a mov (%r10),%r9d + 6634248c: 48 8b 42 18 mov 0x18(%rdx),%rax + 66342490: 45 85 c9 test %r9d,%r9d + 66342493: 41 0f 9f c0 setg %r8b + 66342497: 44 3b 00 cmp (%rax),%r8d + 6634249a: 74 3c je 663424d8 + 6634249c: 48 8b 41 20 mov 0x20(%rcx),%rax + 663424a0: 48 8b 40 18 mov 0x18(%rax),%rax + 663424a4: 8b 00 mov (%rax),%eax + 663424a6: 85 c0 test %eax,%eax + 663424a8: 75 2e jne 663424d8 + 663424aa: 48 8b 41 28 mov 0x28(%rcx),%rax + 663424ae: 48 8b 0d 7b 44 01 00 mov 0x1447b(%rip),%rcx # 66356930 + 663424b5: 4c 8b 05 64 44 01 00 mov 0x14464(%rip),%r8 # 66356920 + 663424bc: 48 8b 50 18 mov 0x18(%rax),%rdx + 663424c0: 48 8b 42 10 mov 0x10(%rdx),%rax + 663424c4: c7 00 01 00 00 00 movl $0x1,(%rax) + 663424ca: 48 63 01 movslq (%rcx),%rax + 663424cd: 44 8d 48 01 lea 0x1(%rax),%r9d + 663424d1: 44 89 09 mov %r9d,(%rcx) + 663424d4: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663424d8: c3 retq + 663424d9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) -0000000066342a30 : - 66342a30: 56 push %rsi - 66342a31: 53 push %rbx - 66342a32: 48 8b 41 10 mov 0x10(%rcx),%rax - 66342a36: 48 8b 50 48 mov 0x48(%rax),%rdx - 66342a3a: 8b 1a mov (%rdx),%ebx - 66342a3c: 85 db test %ebx,%ebx - 66342a3e: 0f 84 ba 01 00 00 je 66342bfe - 66342a44: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66342a48: 4c 8b 40 08 mov 0x8(%rax),%r8 - 66342a4c: 48 8b 1d cd 4e 01 00 mov 0x14ecd(%rip),%rbx # 66357920 - 66342a53: 4c 8b 0d d6 4e 01 00 mov 0x14ed6(%rip),%r9 # 66357930 - 66342a5a: 44 8b 52 14 mov 0x14(%rdx),%r10d - 66342a5e: 45 8b 00 mov (%r8),%r8d - 66342a61: 45 39 d0 cmp %r10d,%r8d - 66342a64: 74 5c je 66342ac2 - 66342a66: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66342a6a: 44 89 c6 mov %r8d,%esi - 66342a6d: 44 29 d6 sub %r10d,%esi - 66342a70: 45 31 d2 xor %r10d,%r10d - 66342a73: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 66342a77: 41 01 33 add %esi,(%r11) - 66342a7a: 44 89 42 14 mov %r8d,0x14(%rdx) - 66342a7e: 45 8b 1b mov (%r11),%r11d - 66342a81: 4c 8b 40 28 mov 0x28(%rax),%r8 - 66342a85: 45 85 db test %r11d,%r11d - 66342a88: 41 0f 9f c2 setg %r10b - 66342a8c: 45 3b 10 cmp (%r8),%r10d - 66342a8f: 74 31 je 66342ac2 - 66342a91: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342a95: 4d 8b 40 28 mov 0x28(%r8),%r8 - 66342a99: 45 8b 10 mov (%r8),%r10d - 66342a9c: 45 85 d2 test %r10d,%r10d - 66342a9f: 75 21 jne 66342ac2 - 66342aa1: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342aa5: 4d 8b 50 28 mov 0x28(%r8),%r10 - 66342aa9: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66342aad: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342ab4: 4d 63 01 movslq (%r9),%r8 - 66342ab7: 45 8d 58 01 lea 0x1(%r8),%r11d - 66342abb: 45 89 19 mov %r11d,(%r9) - 66342abe: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) - 66342ac2: 4c 8b 40 10 mov 0x10(%rax),%r8 - 66342ac6: 44 8b 52 18 mov 0x18(%rdx),%r10d - 66342aca: 45 8b 00 mov (%r8),%r8d - 66342acd: 45 39 d0 cmp %r10d,%r8d - 66342ad0: 74 5b je 66342b2d - 66342ad2: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66342ad6: 44 89 c6 mov %r8d,%esi - 66342ad9: 44 29 d6 sub %r10d,%esi - 66342adc: 45 31 d2 xor %r10d,%r10d - 66342adf: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66342ae3: 41 01 33 add %esi,(%r11) - 66342ae6: 44 89 42 18 mov %r8d,0x18(%rdx) - 66342aea: 45 8b 03 mov (%r11),%r8d - 66342aed: 45 85 c0 test %r8d,%r8d - 66342af0: 4c 8b 40 30 mov 0x30(%rax),%r8 - 66342af4: 41 0f 9f c2 setg %r10b - 66342af8: 45 3b 10 cmp (%r8),%r10d - 66342afb: 74 30 je 66342b2d - 66342afd: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342b01: 4d 8b 40 30 mov 0x30(%r8),%r8 - 66342b05: 41 8b 30 mov (%r8),%esi - 66342b08: 85 f6 test %esi,%esi - 66342b0a: 75 21 jne 66342b2d - 66342b0c: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342b10: 4d 8b 50 30 mov 0x30(%r8),%r10 - 66342b14: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66342b18: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342b1f: 4d 63 01 movslq (%r9),%r8 - 66342b22: 45 8d 58 01 lea 0x1(%r8),%r11d - 66342b26: 45 89 19 mov %r11d,(%r9) - 66342b29: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) - 66342b2d: 4c 8b 40 18 mov 0x18(%rax),%r8 - 66342b31: 44 8b 52 1c mov 0x1c(%rdx),%r10d - 66342b35: 45 8b 00 mov (%r8),%r8d - 66342b38: 45 39 d0 cmp %r10d,%r8d - 66342b3b: 74 5c je 66342b99 - 66342b3d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66342b41: 44 89 c6 mov %r8d,%esi - 66342b44: 44 29 d6 sub %r10d,%esi - 66342b47: 45 31 d2 xor %r10d,%r10d - 66342b4a: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66342b4e: 41 01 33 add %esi,(%r11) - 66342b51: 44 89 42 1c mov %r8d,0x1c(%rdx) - 66342b55: 45 8b 1b mov (%r11),%r11d - 66342b58: 4c 8b 40 38 mov 0x38(%rax),%r8 - 66342b5c: 45 85 db test %r11d,%r11d - 66342b5f: 41 0f 9f c2 setg %r10b - 66342b63: 45 3b 10 cmp (%r8),%r10d - 66342b66: 74 31 je 66342b99 - 66342b68: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66342b6c: 4d 8b 40 38 mov 0x38(%r8),%r8 - 66342b70: 45 8b 10 mov (%r8),%r10d - 66342b73: 45 85 d2 test %r10d,%r10d - 66342b76: 75 21 jne 66342b99 - 66342b78: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66342b7c: 4d 8b 50 38 mov 0x38(%r8),%r10 - 66342b80: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66342b84: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66342b8b: 4d 63 01 movslq (%r9),%r8 - 66342b8e: 45 8d 58 01 lea 0x1(%r8),%r11d - 66342b92: 45 89 19 mov %r11d,(%r9) - 66342b95: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) - 66342b99: 4c 8b 40 20 mov 0x20(%rax),%r8 - 66342b9d: 44 8b 52 20 mov 0x20(%rdx),%r10d - 66342ba1: 45 8b 00 mov (%r8),%r8d - 66342ba4: 45 39 d0 cmp %r10d,%r8d - 66342ba7: 74 55 je 66342bfe - 66342ba9: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66342bad: 44 89 c6 mov %r8d,%esi - 66342bb0: 44 29 d6 sub %r10d,%esi - 66342bb3: 48 8b 40 40 mov 0x40(%rax),%rax - 66342bb7: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66342bbb: 41 01 33 add %esi,(%r11) - 66342bbe: 44 89 42 20 mov %r8d,0x20(%rdx) - 66342bc2: 31 d2 xor %edx,%edx - 66342bc4: 45 8b 03 mov (%r11),%r8d - 66342bc7: 45 85 c0 test %r8d,%r8d - 66342bca: 0f 9f c2 setg %dl - 66342bcd: 3b 10 cmp (%rax),%edx - 66342bcf: 74 2d je 66342bfe - 66342bd1: 48 8b 41 20 mov 0x20(%rcx),%rax - 66342bd5: 48 8b 40 40 mov 0x40(%rax),%rax - 66342bd9: 8b 00 mov (%rax),%eax - 66342bdb: 85 c0 test %eax,%eax - 66342bdd: 75 1f jne 66342bfe - 66342bdf: 48 8b 41 28 mov 0x28(%rcx),%rax - 66342be3: 48 8b 50 40 mov 0x40(%rax),%rdx - 66342be7: 48 8b 42 10 mov 0x10(%rdx),%rax - 66342beb: c7 00 01 00 00 00 movl $0x1,(%rax) - 66342bf1: 49 63 01 movslq (%r9),%rax - 66342bf4: 8d 48 01 lea 0x1(%rax),%ecx - 66342bf7: 41 89 09 mov %ecx,(%r9) - 66342bfa: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) - 66342bfe: 5b pop %rbx - 66342bff: 5e pop %rsi - 66342c00: c3 retq - 66342c01: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66342c06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66342c0d: 00 00 00 +00000000663424e0 : + 663424e0: 31 c0 xor %eax,%eax + 663424e2: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663424e6: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 663424ea: 45 8b 18 mov (%r8),%r11d + 663424ed: 45 85 db test %r11d,%r11d + 663424f0: 75 0f jne 66342501 + 663424f2: 48 8b 42 10 mov 0x10(%rdx),%rax + 663424f6: 44 8b 10 mov (%rax),%r10d + 663424f9: 31 c0 xor %eax,%eax + 663424fb: 45 85 d2 test %r10d,%r10d + 663424fe: 0f 94 c0 sete %al + 66342501: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66342505: 45 8b 48 0c mov 0xc(%r8),%r9d + 66342509: 44 39 c8 cmp %r9d,%eax + 6634250c: 74 67 je 66342575 + 6634250e: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66342512: 41 89 c3 mov %eax,%r11d + 66342515: 45 29 cb sub %r9d,%r11d + 66342518: 4d 8b 52 18 mov 0x18(%r10),%r10 + 6634251c: 45 01 1a add %r11d,(%r10) + 6634251f: 41 89 40 0c mov %eax,0xc(%r8) + 66342523: 45 31 c0 xor %r8d,%r8d + 66342526: 45 8b 0a mov (%r10),%r9d + 66342529: 48 8b 42 18 mov 0x18(%rdx),%rax + 6634252d: 45 85 c9 test %r9d,%r9d + 66342530: 41 0f 9f c0 setg %r8b + 66342534: 44 3b 00 cmp (%rax),%r8d + 66342537: 74 3c je 66342575 + 66342539: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634253d: 48 8b 40 18 mov 0x18(%rax),%rax + 66342541: 8b 00 mov (%rax),%eax + 66342543: 85 c0 test %eax,%eax + 66342545: 75 2e jne 66342575 + 66342547: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634254b: 48 8b 0d de 43 01 00 mov 0x143de(%rip),%rcx # 66356930 + 66342552: 4c 8b 05 c7 43 01 00 mov 0x143c7(%rip),%r8 # 66356920 + 66342559: 48 8b 50 18 mov 0x18(%rax),%rdx + 6634255d: 48 8b 42 10 mov 0x10(%rdx),%rax + 66342561: c7 00 01 00 00 00 movl $0x1,(%rax) + 66342567: 48 63 01 movslq (%rcx),%rax + 6634256a: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634256e: 44 89 09 mov %r9d,(%rcx) + 66342571: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66342575: c3 retq + 66342576: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634257d: 00 00 00 -0000000066342c10 : - 66342c10: 41 56 push %r14 - 66342c12: 41 54 push %r12 - 66342c14: 55 push %rbp - 66342c15: 57 push %rdi - 66342c16: 56 push %rsi - 66342c17: 53 push %rbx - 66342c18: 31 db xor %ebx,%ebx - 66342c1a: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66342c1e: 49 89 ca mov %rcx,%r10 - 66342c21: 31 c9 xor %ecx,%ecx - 66342c23: 49 8b 44 cb 08 mov 0x8(%r11,%rcx,8),%rax - 66342c28: 8b 00 mov (%rax),%eax - 66342c2a: d3 e0 shl %cl,%eax - 66342c2c: 48 83 c1 01 add $0x1,%rcx - 66342c30: 01 c3 add %eax,%ebx - 66342c32: 48 83 f9 20 cmp $0x20,%rcx - 66342c36: 75 eb jne 66342c23 - 66342c38: 31 c9 xor %ecx,%ecx - 66342c3a: 31 d2 xor %edx,%edx - 66342c3c: 0f 1f 40 00 nopl 0x0(%rax) - 66342c40: 49 8b 84 cb 08 01 00 mov 0x108(%r11,%rcx,8),%rax - 66342c47: 00 - 66342c48: 8b 00 mov (%rax),%eax - 66342c4a: d3 e0 shl %cl,%eax - 66342c4c: 48 83 c1 01 add $0x1,%rcx - 66342c50: 01 c2 add %eax,%edx - 66342c52: 48 83 f9 20 cmp $0x20,%rcx - 66342c56: 75 e8 jne 66342c40 - 66342c58: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax - 66342c5f: 01 da add %ebx,%edx - 66342c61: 31 c9 xor %ecx,%ecx - 66342c63: 49 8b 7a 08 mov 0x8(%r10),%rdi - 66342c67: 4c 8b 25 b2 4c 01 00 mov 0x14cb2(%rip),%r12 # 66357920 - 66342c6e: 48 8b 2d bb 4c 01 00 mov 0x14cbb(%rip),%rbp # 66357930 - 66342c75: 8b 18 mov (%rax),%ebx - 66342c77: 01 d3 add %edx,%ebx - 66342c79: 4c 63 c3 movslq %ebx,%r8 - 66342c7c: 0f 1f 40 00 nopl 0x0(%rax) - 66342c80: 8b 94 8f 04 01 00 00 mov 0x104(%rdi,%rcx,4),%edx - 66342c87: 89 d8 mov %ebx,%eax - 66342c89: d3 f8 sar %cl,%eax - 66342c8b: 83 e0 01 and $0x1,%eax - 66342c8e: 39 d0 cmp %edx,%eax - 66342c90: 74 73 je 66342d05 - 66342c92: 4d 8b 4a 18 mov 0x18(%r10),%r9 - 66342c96: 48 8d 34 cd 00 00 00 lea 0x0(,%rcx,8),%rsi - 66342c9d: 00 - 66342c9e: 41 89 c6 mov %eax,%r14d - 66342ca1: 41 29 d6 sub %edx,%r14d - 66342ca4: 31 d2 xor %edx,%edx - 66342ca6: 4d 8b 8c 31 08 02 00 mov 0x208(%r9,%rsi,1),%r9 - 66342cad: 00 - 66342cae: 45 01 31 add %r14d,(%r9) - 66342cb1: 89 84 8f 04 01 00 00 mov %eax,0x104(%rdi,%rcx,4) - 66342cb8: 45 8b 09 mov (%r9),%r9d - 66342cbb: 49 8b 84 cb 08 02 00 mov 0x208(%r11,%rcx,8),%rax - 66342cc2: 00 - 66342cc3: 45 85 c9 test %r9d,%r9d - 66342cc6: 0f 9f c2 setg %dl - 66342cc9: 3b 10 cmp (%rax),%edx - 66342ccb: 74 38 je 66342d05 - 66342ccd: 49 8b 42 20 mov 0x20(%r10),%rax - 66342cd1: 48 8b 84 30 08 02 00 mov 0x208(%rax,%rsi,1),%rax - 66342cd8: 00 - 66342cd9: 8b 00 mov (%rax),%eax - 66342cdb: 85 c0 test %eax,%eax - 66342cdd: 75 26 jne 66342d05 - 66342cdf: 49 8b 42 28 mov 0x28(%r10),%rax - 66342ce3: 48 8b 94 30 08 02 00 mov 0x208(%rax,%rsi,1),%rdx - 66342cea: 00 - 66342ceb: 48 8b 42 10 mov 0x10(%rdx),%rax - 66342cef: c7 00 01 00 00 00 movl $0x1,(%rax) - 66342cf5: 48 63 45 00 movslq 0x0(%rbp),%rax - 66342cf9: 44 8d 48 01 lea 0x1(%rax),%r9d - 66342cfd: 44 89 4d 00 mov %r9d,0x0(%rbp) - 66342d01: 49 89 14 c4 mov %rdx,(%r12,%rax,8) - 66342d05: 48 83 c1 01 add $0x1,%rcx - 66342d09: 48 83 f9 20 cmp $0x20,%rcx - 66342d0d: 0f 85 6d ff ff ff jne 66342c80 - 66342d13: 49 c1 e8 3f shr $0x3f,%r8 - 66342d17: ba 62 00 00 00 mov $0x62,%edx - 66342d1c: 4c 89 d1 mov %r10,%rcx - 66342d1f: 5b pop %rbx - 66342d20: 5e pop %rsi - 66342d21: 5f pop %rdi - 66342d22: 5d pop %rbp - 66342d23: 41 5c pop %r12 - 66342d25: 41 5e pop %r14 - 66342d27: e9 84 e6 ff ff jmpq 663413b0 - 66342d2c: 0f 1f 40 00 nopl 0x0(%rax) +0000000066342580 : + 66342580: 41 56 push %r14 + 66342582: 57 push %rdi + 66342583: 56 push %rsi + 66342584: 53 push %rbx + 66342585: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66342589: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax + 66342590: 44 8b 10 mov (%rax),%r10d + 66342593: 45 85 d2 test %r10d,%r10d + 66342596: 0f 84 a8 00 00 00 je 66342644 + 6634259c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 663425a0: 31 c0 xor %eax,%eax + 663425a2: 48 8b 3d 77 43 01 00 mov 0x14377(%rip),%rdi # 66356920 + 663425a9: 48 8b 35 80 43 01 00 mov 0x14380(%rip),%rsi # 66356930 + 663425b0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 663425b5: 44 8b 84 03 84 00 00 mov 0x84(%rbx,%rax,1),%r8d + 663425bc: 00 + 663425bd: 8b 12 mov (%rdx),%edx + 663425bf: 44 39 c2 cmp %r8d,%edx + 663425c2: 74 70 je 66342634 + 663425c4: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 663425c8: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 663425cc: 41 89 d6 mov %edx,%r14d + 663425cf: 45 29 c6 sub %r8d,%r14d + 663425d2: 45 31 c0 xor %r8d,%r8d + 663425d5: 4f 8b 8c 11 08 01 00 mov 0x108(%r9,%r10,1),%r9 + 663425dc: 00 + 663425dd: 45 01 31 add %r14d,(%r9) + 663425e0: 89 94 03 84 00 00 00 mov %edx,0x84(%rbx,%rax,1) + 663425e7: 45 8b 09 mov (%r9),%r9d + 663425ea: 49 8b 94 43 08 01 00 mov 0x108(%r11,%rax,2),%rdx + 663425f1: 00 + 663425f2: 45 85 c9 test %r9d,%r9d + 663425f5: 41 0f 9f c0 setg %r8b + 663425f9: 44 3b 02 cmp (%rdx),%r8d + 663425fc: 74 36 je 66342634 + 663425fe: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342602: 4a 8b 94 12 08 01 00 mov 0x108(%rdx,%r10,1),%rdx + 66342609: 00 + 6634260a: 8b 12 mov (%rdx),%edx + 6634260c: 85 d2 test %edx,%edx + 6634260e: 75 24 jne 66342634 + 66342610: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342614: 4e 8b 84 12 08 01 00 mov 0x108(%rdx,%r10,1),%r8 + 6634261b: 00 + 6634261c: 49 8b 50 10 mov 0x10(%r8),%rdx + 66342620: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342626: 48 63 16 movslq (%rsi),%rdx + 66342629: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 6634262d: 44 89 0e mov %r9d,(%rsi) + 66342630: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66342634: 48 83 c0 04 add $0x4,%rax + 66342638: 48 3d 80 00 00 00 cmp $0x80,%rax + 6634263e: 0f 85 6c ff ff ff jne 663425b0 + 66342644: 5b pop %rbx + 66342645: 5e pop %rsi + 66342646: 5f pop %rdi + 66342647: 41 5e pop %r14 + 66342649: c3 retq + 6634264a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -0000000066342d30 : - 66342d30: 57 push %rdi - 66342d31: 56 push %rsi - 66342d32: 53 push %rbx - 66342d33: 48 8b 35 e6 4b 01 00 mov 0x14be6(%rip),%rsi # 66357920 - 66342d3a: 48 8b 1d ef 4b 01 00 mov 0x14bef(%rip),%rbx # 66357930 - 66342d41: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66342d45: 49 8b 41 20 mov 0x20(%r9),%rax - 66342d49: 8b 10 mov (%rax),%edx - 66342d4b: 49 8b 41 18 mov 0x18(%r9),%rax - 66342d4f: 8b 00 mov (%rax),%eax - 66342d51: 44 8d 04 50 lea (%rax,%rdx,2),%r8d - 66342d55: 49 8b 41 10 mov 0x10(%r9),%rax - 66342d59: 8b 10 mov (%rax),%edx - 66342d5b: 49 8b 41 08 mov 0x8(%r9),%rax - 66342d5f: 8b 00 mov (%rax),%eax - 66342d61: 8d 04 50 lea (%rax,%rdx,2),%eax - 66342d64: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66342d68: 41 01 c0 add %eax,%r8d - 66342d6b: 49 8b 41 38 mov 0x38(%r9),%rax - 66342d6f: 44 8b 52 14 mov 0x14(%rdx),%r10d - 66342d73: 44 03 00 add (%rax),%r8d - 66342d76: 44 89 c0 mov %r8d,%eax - 66342d79: 83 e0 01 and $0x1,%eax - 66342d7c: 44 39 d0 cmp %r10d,%eax - 66342d7f: 74 56 je 66342dd7 - 66342d81: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66342d85: 89 c7 mov %eax,%edi - 66342d87: 44 29 d7 sub %r10d,%edi - 66342d8a: 4d 8b 51 28 mov 0x28(%r9),%r10 - 66342d8e: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 66342d92: 41 01 3b add %edi,(%r11) - 66342d95: 89 42 14 mov %eax,0x14(%rdx) - 66342d98: 31 c0 xor %eax,%eax - 66342d9a: 41 8b 3b mov (%r11),%edi - 66342d9d: 85 ff test %edi,%edi - 66342d9f: 0f 9f c0 setg %al - 66342da2: 41 39 02 cmp %eax,(%r10) - 66342da5: 74 30 je 66342dd7 - 66342da7: 48 8b 41 20 mov 0x20(%rcx),%rax - 66342dab: 48 8b 40 28 mov 0x28(%rax),%rax - 66342daf: 44 8b 18 mov (%rax),%r11d - 66342db2: 45 85 db test %r11d,%r11d - 66342db5: 75 20 jne 66342dd7 - 66342db7: 48 8b 41 28 mov 0x28(%rcx),%rax - 66342dbb: 4c 8b 50 28 mov 0x28(%rax),%r10 - 66342dbf: 49 8b 42 10 mov 0x10(%r10),%rax - 66342dc3: c7 00 01 00 00 00 movl $0x1,(%rax) - 66342dc9: 48 63 03 movslq (%rbx),%rax - 66342dcc: 44 8d 58 01 lea 0x1(%rax),%r11d - 66342dd0: 44 89 1b mov %r11d,(%rbx) - 66342dd3: 4c 89 14 c6 mov %r10,(%rsi,%rax,8) - 66342dd7: 44 8b 52 18 mov 0x18(%rdx),%r10d - 66342ddb: 44 89 c0 mov %r8d,%eax - 66342dde: d1 f8 sar %eax - 66342de0: 83 e0 01 and $0x1,%eax - 66342de3: 44 39 d0 cmp %r10d,%eax - 66342de6: 74 54 je 66342e3c - 66342de8: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66342dec: 89 c7 mov %eax,%edi - 66342dee: 44 29 d7 sub %r10d,%edi - 66342df1: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66342df5: 41 01 3b add %edi,(%r11) - 66342df8: 89 42 18 mov %eax,0x18(%rdx) - 66342dfb: 31 d2 xor %edx,%edx - 66342dfd: 45 8b 13 mov (%r11),%r10d - 66342e00: 49 8b 41 30 mov 0x30(%r9),%rax - 66342e04: 45 85 d2 test %r10d,%r10d - 66342e07: 0f 9f c2 setg %dl - 66342e0a: 3b 10 cmp (%rax),%edx - 66342e0c: 74 2e je 66342e3c - 66342e0e: 48 8b 41 20 mov 0x20(%rcx),%rax - 66342e12: 48 8b 40 30 mov 0x30(%rax),%rax - 66342e16: 8b 00 mov (%rax),%eax - 66342e18: 85 c0 test %eax,%eax - 66342e1a: 75 20 jne 66342e3c - 66342e1c: 48 8b 41 28 mov 0x28(%rcx),%rax - 66342e20: 48 8b 50 30 mov 0x30(%rax),%rdx - 66342e24: 48 8b 42 10 mov 0x10(%rdx),%rax - 66342e28: c7 00 01 00 00 00 movl $0x1,(%rax) - 66342e2e: 48 63 03 movslq (%rbx),%rax - 66342e31: 44 8d 48 01 lea 0x1(%rax),%r9d - 66342e35: 44 89 0b mov %r9d,(%rbx) - 66342e38: 48 89 14 c6 mov %rdx,(%rsi,%rax,8) - 66342e3c: 41 c1 f8 02 sar $0x2,%r8d - 66342e40: ba 08 00 00 00 mov $0x8,%edx - 66342e45: 41 83 e0 01 and $0x1,%r8d - 66342e49: 5b pop %rbx - 66342e4a: 5e pop %rsi - 66342e4b: 5f pop %rdi - 66342e4c: e9 5f e5 ff ff jmpq 663413b0 - 66342e51: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66342e56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66342e5d: 00 00 00 +0000000066342650 : + 66342650: 41 56 push %r14 + 66342652: 57 push %rdi + 66342653: 56 push %rsi + 66342654: 53 push %rbx + 66342655: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66342659: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax + 66342660: 44 8b 10 mov (%rax),%r10d + 66342663: 45 85 d2 test %r10d,%r10d + 66342666: 0f 84 a0 00 00 00 je 6634270c + 6634266c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342670: 31 c0 xor %eax,%eax + 66342672: 48 8b 3d a7 42 01 00 mov 0x142a7(%rip),%rdi # 66356920 + 66342679: 48 8b 35 b0 42 01 00 mov 0x142b0(%rip),%rsi # 66356930 + 66342680: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66342685: 44 8b 44 03 64 mov 0x64(%rbx,%rax,1),%r8d + 6634268a: 8b 12 mov (%rdx),%edx + 6634268c: 44 39 c2 cmp %r8d,%edx + 6634268f: 74 6d je 663426fe + 66342691: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342695: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 66342699: 41 89 d6 mov %edx,%r14d + 6634269c: 45 29 c6 sub %r8d,%r14d + 6634269f: 45 31 c0 xor %r8d,%r8d + 663426a2: 4f 8b 8c 11 c8 00 00 mov 0xc8(%r9,%r10,1),%r9 + 663426a9: 00 + 663426aa: 45 01 31 add %r14d,(%r9) + 663426ad: 89 54 03 64 mov %edx,0x64(%rbx,%rax,1) + 663426b1: 45 8b 09 mov (%r9),%r9d + 663426b4: 49 8b 94 43 c8 00 00 mov 0xc8(%r11,%rax,2),%rdx + 663426bb: 00 + 663426bc: 45 85 c9 test %r9d,%r9d + 663426bf: 41 0f 9f c0 setg %r8b + 663426c3: 44 3b 02 cmp (%rdx),%r8d + 663426c6: 74 36 je 663426fe + 663426c8: 48 8b 51 20 mov 0x20(%rcx),%rdx + 663426cc: 4a 8b 94 12 c8 00 00 mov 0xc8(%rdx,%r10,1),%rdx + 663426d3: 00 + 663426d4: 8b 12 mov (%rdx),%edx + 663426d6: 85 d2 test %edx,%edx + 663426d8: 75 24 jne 663426fe + 663426da: 48 8b 51 28 mov 0x28(%rcx),%rdx + 663426de: 4e 8b 84 12 c8 00 00 mov 0xc8(%rdx,%r10,1),%r8 + 663426e5: 00 + 663426e6: 49 8b 50 10 mov 0x10(%r8),%rdx + 663426ea: c7 02 01 00 00 00 movl $0x1,(%rdx) + 663426f0: 48 63 16 movslq (%rsi),%rdx + 663426f3: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 663426f7: 44 89 0e mov %r9d,(%rsi) + 663426fa: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 663426fe: 48 83 c0 04 add $0x4,%rax + 66342702: 48 83 f8 60 cmp $0x60,%rax + 66342706: 0f 85 74 ff ff ff jne 66342680 + 6634270c: 5b pop %rbx + 6634270d: 5e pop %rsi + 6634270e: 5f pop %rdi + 6634270f: 41 5e pop %r14 + 66342711: c3 retq + 66342712: 0f 1f 40 00 nopl 0x0(%rax) + 66342716: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634271d: 00 00 00 -0000000066342e60 : - 66342e60: 57 push %rdi - 66342e61: 56 push %rsi - 66342e62: 53 push %rbx - 66342e63: 48 8b 1d b6 4a 01 00 mov 0x14ab6(%rip),%rbx # 66357920 - 66342e6a: 4c 8b 15 bf 4a 01 00 mov 0x14abf(%rip),%r10 # 66357930 - 66342e71: 48 8b 41 10 mov 0x10(%rcx),%rax - 66342e75: 48 8b 50 10 mov 0x10(%rax),%rdx - 66342e79: 44 8b 02 mov (%rdx),%r8d - 66342e7c: 48 8b 50 08 mov 0x8(%rax),%rdx - 66342e80: 8b 12 mov (%rdx),%edx - 66342e82: 42 8d 14 42 lea (%rdx,%r8,2),%edx - 66342e86: 4c 8b 40 18 mov 0x18(%rax),%r8 - 66342e8a: 45 8b 00 mov (%r8),%r8d - 66342e8d: 42 8d 14 82 lea (%rdx,%r8,4),%edx - 66342e91: 4c 8b 40 30 mov 0x30(%rax),%r8 - 66342e95: 45 8b 08 mov (%r8),%r9d - 66342e98: 4c 8b 40 28 mov 0x28(%rax),%r8 - 66342e9c: 45 8b 00 mov (%r8),%r8d - 66342e9f: 47 8d 04 48 lea (%r8,%r9,2),%r8d - 66342ea3: 4c 8b 48 38 mov 0x38(%rax),%r9 - 66342ea7: 45 8b 09 mov (%r9),%r9d - 66342eaa: 47 8d 04 88 lea (%r8,%r9,4),%r8d - 66342eae: 4c 8b 48 40 mov 0x40(%rax),%r9 - 66342eb2: 45 8b 09 mov (%r9),%r9d - 66342eb5: 47 8d 04 c8 lea (%r8,%r9,8),%r8d - 66342eb9: 4c 8b 48 20 mov 0x20(%rax),%r9 - 66342ebd: 45 8b 09 mov (%r9),%r9d - 66342ec0: 42 8d 14 ca lea (%rdx,%r9,8),%edx - 66342ec4: 4c 8b 49 08 mov 0x8(%rcx),%r9 - 66342ec8: 41 01 d0 add %edx,%r8d - 66342ecb: 48 8b 50 68 mov 0x68(%rax),%rdx - 66342ecf: 45 8b 59 24 mov 0x24(%r9),%r11d - 66342ed3: 44 03 02 add (%rdx),%r8d - 66342ed6: 44 89 c2 mov %r8d,%edx - 66342ed9: 83 e2 01 and $0x1,%edx - 66342edc: 44 39 da cmp %r11d,%edx - 66342edf: 74 54 je 66342f35 - 66342ee1: 48 8b 71 18 mov 0x18(%rcx),%rsi - 66342ee5: 89 d7 mov %edx,%edi - 66342ee7: 44 29 df sub %r11d,%edi - 66342eea: 4c 8b 58 48 mov 0x48(%rax),%r11 - 66342eee: 48 8b 76 48 mov 0x48(%rsi),%rsi - 66342ef2: 01 3e add %edi,(%rsi) - 66342ef4: 41 89 51 24 mov %edx,0x24(%r9) - 66342ef8: 31 d2 xor %edx,%edx - 66342efa: 8b 36 mov (%rsi),%esi - 66342efc: 85 f6 test %esi,%esi - 66342efe: 0f 9f c2 setg %dl - 66342f01: 41 39 13 cmp %edx,(%r11) - 66342f04: 74 2f je 66342f35 - 66342f06: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66342f0a: 48 8b 52 48 mov 0x48(%rdx),%rdx - 66342f0e: 44 8b 1a mov (%rdx),%r11d - 66342f11: 45 85 db test %r11d,%r11d - 66342f14: 75 1f jne 66342f35 - 66342f16: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66342f1a: 4c 8b 5a 48 mov 0x48(%rdx),%r11 - 66342f1e: 49 8b 53 10 mov 0x10(%r11),%rdx - 66342f22: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66342f28: 49 63 12 movslq (%r10),%rdx - 66342f2b: 8d 72 01 lea 0x1(%rdx),%esi - 66342f2e: 41 89 32 mov %esi,(%r10) - 66342f31: 4c 89 1c d3 mov %r11,(%rbx,%rdx,8) - 66342f35: 45 8b 59 28 mov 0x28(%r9),%r11d - 66342f39: 44 89 c2 mov %r8d,%edx - 66342f3c: d1 fa sar %edx - 66342f3e: 83 e2 01 and $0x1,%edx - 66342f41: 41 39 d3 cmp %edx,%r11d - 66342f44: 74 54 je 66342f9a - 66342f46: 48 8b 71 18 mov 0x18(%rcx),%rsi - 66342f4a: 89 d7 mov %edx,%edi - 66342f4c: 44 29 df sub %r11d,%edi - 66342f4f: 45 31 db xor %r11d,%r11d - 66342f52: 48 8b 76 50 mov 0x50(%rsi),%rsi - 66342f56: 01 3e add %edi,(%rsi) - 66342f58: 41 89 51 28 mov %edx,0x28(%r9) - 66342f5c: 8b 16 mov (%rsi),%edx - 66342f5e: 85 d2 test %edx,%edx - 66342f60: 48 8b 50 50 mov 0x50(%rax),%rdx - 66342f64: 41 0f 9f c3 setg %r11b - 66342f68: 44 3b 1a cmp (%rdx),%r11d - 66342f6b: 74 2d je 66342f9a - 66342f6d: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66342f71: 48 8b 52 50 mov 0x50(%rdx),%rdx - 66342f75: 8b 3a mov (%rdx),%edi - 66342f77: 85 ff test %edi,%edi - 66342f79: 75 1f jne 66342f9a - 66342f7b: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66342f7f: 4c 8b 5a 50 mov 0x50(%rdx),%r11 - 66342f83: 49 8b 53 10 mov 0x10(%r11),%rdx - 66342f87: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66342f8d: 49 63 12 movslq (%r10),%rdx - 66342f90: 8d 72 01 lea 0x1(%rdx),%esi - 66342f93: 41 89 32 mov %esi,(%r10) - 66342f96: 4c 89 1c d3 mov %r11,(%rbx,%rdx,8) - 66342f9a: 45 8b 59 2c mov 0x2c(%r9),%r11d - 66342f9e: 44 89 c2 mov %r8d,%edx - 66342fa1: c1 fa 02 sar $0x2,%edx - 66342fa4: 83 e2 01 and $0x1,%edx - 66342fa7: 44 39 da cmp %r11d,%edx - 66342faa: 74 56 je 66343002 - 66342fac: 48 8b 71 18 mov 0x18(%rcx),%rsi - 66342fb0: 89 d7 mov %edx,%edi - 66342fb2: 44 29 df sub %r11d,%edi - 66342fb5: 45 31 db xor %r11d,%r11d - 66342fb8: 48 8b 76 58 mov 0x58(%rsi),%rsi - 66342fbc: 01 3e add %edi,(%rsi) - 66342fbe: 41 89 51 2c mov %edx,0x2c(%r9) - 66342fc2: 8b 36 mov (%rsi),%esi - 66342fc4: 48 8b 50 58 mov 0x58(%rax),%rdx - 66342fc8: 85 f6 test %esi,%esi - 66342fca: 41 0f 9f c3 setg %r11b - 66342fce: 44 3b 1a cmp (%rdx),%r11d - 66342fd1: 74 2f je 66343002 - 66342fd3: 48 8b 51 20 mov 0x20(%rcx),%rdx - 66342fd7: 48 8b 52 58 mov 0x58(%rdx),%rdx - 66342fdb: 44 8b 1a mov (%rdx),%r11d - 66342fde: 45 85 db test %r11d,%r11d - 66342fe1: 75 1f jne 66343002 - 66342fe3: 48 8b 51 28 mov 0x28(%rcx),%rdx - 66342fe7: 4c 8b 5a 58 mov 0x58(%rdx),%r11 - 66342feb: 49 8b 53 10 mov 0x10(%r11),%rdx - 66342fef: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66342ff5: 49 63 12 movslq (%r10),%rdx - 66342ff8: 8d 72 01 lea 0x1(%rdx),%esi - 66342ffb: 41 89 32 mov %esi,(%r10) - 66342ffe: 4c 89 1c d3 mov %r11,(%rbx,%rdx,8) - 66343002: 45 8b 59 30 mov 0x30(%r9),%r11d - 66343006: 44 89 c2 mov %r8d,%edx - 66343009: c1 fa 03 sar $0x3,%edx - 6634300c: 83 e2 01 and $0x1,%edx - 6634300f: 44 39 da cmp %r11d,%edx - 66343012: 74 54 je 66343068 - 66343014: 48 8b 71 18 mov 0x18(%rcx),%rsi - 66343018: 89 d7 mov %edx,%edi - 6634301a: 44 29 df sub %r11d,%edi - 6634301d: 48 8b 40 60 mov 0x60(%rax),%rax - 66343021: 48 8b 76 60 mov 0x60(%rsi),%rsi - 66343025: 01 3e add %edi,(%rsi) - 66343027: 41 89 51 30 mov %edx,0x30(%r9) - 6634302b: 31 d2 xor %edx,%edx - 6634302d: 44 8b 0e mov (%rsi),%r9d - 66343030: 45 85 c9 test %r9d,%r9d - 66343033: 0f 9f c2 setg %dl - 66343036: 3b 10 cmp (%rax),%edx - 66343038: 74 2e je 66343068 - 6634303a: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634303e: 48 8b 40 60 mov 0x60(%rax),%rax - 66343042: 8b 00 mov (%rax),%eax - 66343044: 85 c0 test %eax,%eax - 66343046: 75 20 jne 66343068 - 66343048: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634304c: 48 8b 50 60 mov 0x60(%rax),%rdx - 66343050: 48 8b 42 10 mov 0x10(%rdx),%rax - 66343054: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634305a: 49 63 02 movslq (%r10),%rax - 6634305d: 44 8d 48 01 lea 0x1(%rax),%r9d - 66343061: 45 89 0a mov %r9d,(%r10) - 66343064: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) - 66343068: 41 c1 f8 04 sar $0x4,%r8d - 6634306c: ba 0e 00 00 00 mov $0xe,%edx - 66343071: 41 83 e0 01 and $0x1,%r8d - 66343075: 5b pop %rbx - 66343076: 5e pop %rsi - 66343077: 5f pop %rdi - 66343078: e9 33 e3 ff ff jmpq 663413b0 - 6634307d: 0f 1f 00 nopl (%rax) +0000000066342720 : + 66342720: 41 56 push %r14 + 66342722: 57 push %rdi + 66342723: 56 push %rsi + 66342724: 53 push %rbx + 66342725: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66342729: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax + 66342730: 44 8b 10 mov (%rax),%r10d + 66342733: 45 85 d2 test %r10d,%r10d + 66342736: 0f 84 a0 00 00 00 je 663427dc + 6634273c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342740: 31 c0 xor %eax,%eax + 66342742: 48 8b 3d d7 41 01 00 mov 0x141d7(%rip),%rdi # 66356920 + 66342749: 48 8b 35 e0 41 01 00 mov 0x141e0(%rip),%rsi # 66356930 + 66342750: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66342755: 44 8b 44 03 44 mov 0x44(%rbx,%rax,1),%r8d + 6634275a: 8b 12 mov (%rdx),%edx + 6634275c: 44 39 c2 cmp %r8d,%edx + 6634275f: 74 6d je 663427ce + 66342761: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342765: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 66342769: 41 89 d6 mov %edx,%r14d + 6634276c: 45 29 c6 sub %r8d,%r14d + 6634276f: 45 31 c0 xor %r8d,%r8d + 66342772: 4f 8b 8c 11 88 00 00 mov 0x88(%r9,%r10,1),%r9 + 66342779: 00 + 6634277a: 45 01 31 add %r14d,(%r9) + 6634277d: 89 54 03 44 mov %edx,0x44(%rbx,%rax,1) + 66342781: 45 8b 09 mov (%r9),%r9d + 66342784: 49 8b 94 43 88 00 00 mov 0x88(%r11,%rax,2),%rdx + 6634278b: 00 + 6634278c: 45 85 c9 test %r9d,%r9d + 6634278f: 41 0f 9f c0 setg %r8b + 66342793: 44 3b 02 cmp (%rdx),%r8d + 66342796: 74 36 je 663427ce + 66342798: 48 8b 51 20 mov 0x20(%rcx),%rdx + 6634279c: 4a 8b 94 12 88 00 00 mov 0x88(%rdx,%r10,1),%rdx + 663427a3: 00 + 663427a4: 8b 12 mov (%rdx),%edx + 663427a6: 85 d2 test %edx,%edx + 663427a8: 75 24 jne 663427ce + 663427aa: 48 8b 51 28 mov 0x28(%rcx),%rdx + 663427ae: 4e 8b 84 12 88 00 00 mov 0x88(%rdx,%r10,1),%r8 + 663427b5: 00 + 663427b6: 49 8b 50 10 mov 0x10(%r8),%rdx + 663427ba: c7 02 01 00 00 00 movl $0x1,(%rdx) + 663427c0: 48 63 16 movslq (%rsi),%rdx + 663427c3: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 663427c7: 44 89 0e mov %r9d,(%rsi) + 663427ca: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 663427ce: 48 83 c0 04 add $0x4,%rax + 663427d2: 48 83 f8 40 cmp $0x40,%rax + 663427d6: 0f 85 74 ff ff ff jne 66342750 + 663427dc: 5b pop %rbx + 663427dd: 5e pop %rsi + 663427de: 5f pop %rdi + 663427df: 41 5e pop %r14 + 663427e1: c3 retq + 663427e2: 0f 1f 40 00 nopl 0x0(%rax) + 663427e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663427ed: 00 00 00 -0000000066343080 : - 66343080: 41 56 push %r14 - 66343082: 55 push %rbp - 66343083: 57 push %rdi - 66343084: 56 push %rsi - 66343085: 53 push %rbx - 66343086: 48 8b 51 10 mov 0x10(%rcx),%rdx - 6634308a: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634308e: 48 89 cb mov %rcx,%rbx - 66343091: 8b 08 mov (%rax),%ecx - 66343093: 48 8b 42 08 mov 0x8(%rdx),%rax - 66343097: 8b 00 mov (%rax),%eax - 66343099: 8d 04 48 lea (%rax,%rcx,2),%eax - 6634309c: 48 8b 4a 18 mov 0x18(%rdx),%rcx - 663430a0: 8b 09 mov (%rcx),%ecx - 663430a2: 8d 04 88 lea (%rax,%rcx,4),%eax - 663430a5: 48 8b 4a 20 mov 0x20(%rdx),%rcx - 663430a9: 8b 09 mov (%rcx),%ecx - 663430ab: 8d 0c c8 lea (%rax,%rcx,8),%ecx - 663430ae: 48 8b 42 28 mov 0x28(%rdx),%rax - 663430b2: 8b 00 mov (%rax),%eax - 663430b4: c1 e0 04 shl $0x4,%eax - 663430b7: 01 c8 add %ecx,%eax - 663430b9: 48 8b 4a 30 mov 0x30(%rdx),%rcx - 663430bd: 8b 09 mov (%rcx),%ecx - 663430bf: c1 e1 05 shl $0x5,%ecx - 663430c2: 01 c8 add %ecx,%eax - 663430c4: 48 8b 4a 38 mov 0x38(%rdx),%rcx - 663430c8: 44 8b 01 mov (%rcx),%r8d - 663430cb: 41 c1 e0 06 shl $0x6,%r8d - 663430cf: 41 8d 0c 00 lea (%r8,%rax,1),%ecx - 663430d3: 48 8b 42 50 mov 0x50(%rdx),%rax - 663430d7: 44 8b 00 mov (%rax),%r8d - 663430da: 48 8b 42 48 mov 0x48(%rdx),%rax - 663430de: 8b 00 mov (%rax),%eax - 663430e0: 42 8d 04 40 lea (%rax,%r8,2),%eax - 663430e4: 4c 8b 42 58 mov 0x58(%rdx),%r8 - 663430e8: 45 8b 00 mov (%r8),%r8d - 663430eb: 42 8d 04 80 lea (%rax,%r8,4),%eax - 663430ef: 4c 8b 42 60 mov 0x60(%rdx),%r8 - 663430f3: 45 8b 00 mov (%r8),%r8d - 663430f6: 42 8d 04 c0 lea (%rax,%r8,8),%eax - 663430fa: 4c 8b 42 68 mov 0x68(%rdx),%r8 - 663430fe: 45 8b 00 mov (%r8),%r8d - 66343101: 41 c1 e0 04 shl $0x4,%r8d - 66343105: 41 01 c0 add %eax,%r8d - 66343108: 48 8b 42 70 mov 0x70(%rdx),%rax - 6634310c: 8b 00 mov (%rax),%eax - 6634310e: c1 e0 05 shl $0x5,%eax - 66343111: 41 01 c0 add %eax,%r8d - 66343114: 48 8b 42 78 mov 0x78(%rdx),%rax - 66343118: 8b 00 mov (%rax),%eax - 6634311a: c1 e0 06 shl $0x6,%eax - 6634311d: 44 01 c0 add %r8d,%eax - 66343120: 4c 8b 82 80 00 00 00 mov 0x80(%rdx),%r8 - 66343127: 45 8b 00 mov (%r8),%r8d - 6634312a: 41 c1 e0 07 shl $0x7,%r8d - 6634312e: 44 01 c0 add %r8d,%eax - 66343131: 4c 8b 42 40 mov 0x40(%rdx),%r8 - 66343135: 45 8b 00 mov (%r8),%r8d - 66343138: 48 8b 73 08 mov 0x8(%rbx),%rsi - 6634313c: 48 8b 2d dd 47 01 00 mov 0x147dd(%rip),%rbp # 66357920 - 66343143: 48 8b 3d e6 47 01 00 mov 0x147e6(%rip),%rdi # 66357930 - 6634314a: 41 c1 e0 07 shl $0x7,%r8d - 6634314e: 41 01 c8 add %ecx,%r8d - 66343151: 31 c9 xor %ecx,%ecx - 66343153: 41 01 c0 add %eax,%r8d - 66343156: 48 8b 82 c8 00 00 00 mov 0xc8(%rdx),%rax - 6634315d: 44 03 00 add (%rax),%r8d - 66343160: 44 8b 4c 8e 44 mov 0x44(%rsi,%rcx,4),%r9d - 66343165: 44 89 c0 mov %r8d,%eax - 66343168: d3 f8 sar %cl,%eax - 6634316a: 83 e0 01 and $0x1,%eax - 6634316d: 44 39 c8 cmp %r9d,%eax - 66343170: 74 72 je 663431e4 - 66343172: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 66343176: 4c 8d 1c cd 00 00 00 lea 0x0(,%rcx,8),%r11 - 6634317d: 00 - 6634317e: 41 89 c6 mov %eax,%r14d - 66343181: 45 29 ce sub %r9d,%r14d - 66343184: 45 31 c9 xor %r9d,%r9d - 66343187: 4f 8b 94 1a 88 00 00 mov 0x88(%r10,%r11,1),%r10 - 6634318e: 00 - 6634318f: 45 01 32 add %r14d,(%r10) - 66343192: 89 44 8e 44 mov %eax,0x44(%rsi,%rcx,4) - 66343196: 45 8b 12 mov (%r10),%r10d - 66343199: 48 8b 84 ca 88 00 00 mov 0x88(%rdx,%rcx,8),%rax - 663431a0: 00 - 663431a1: 45 85 d2 test %r10d,%r10d - 663431a4: 41 0f 9f c1 setg %r9b - 663431a8: 44 3b 08 cmp (%rax),%r9d - 663431ab: 74 37 je 663431e4 - 663431ad: 48 8b 43 20 mov 0x20(%rbx),%rax - 663431b1: 4a 8b 84 18 88 00 00 mov 0x88(%rax,%r11,1),%rax - 663431b8: 00 - 663431b9: 8b 00 mov (%rax),%eax - 663431bb: 85 c0 test %eax,%eax - 663431bd: 75 25 jne 663431e4 - 663431bf: 48 8b 43 28 mov 0x28(%rbx),%rax - 663431c3: 4e 8b 8c 18 88 00 00 mov 0x88(%rax,%r11,1),%r9 - 663431ca: 00 - 663431cb: 49 8b 41 10 mov 0x10(%r9),%rax - 663431cf: c7 00 01 00 00 00 movl $0x1,(%rax) - 663431d5: 48 63 07 movslq (%rdi),%rax - 663431d8: 44 8d 50 01 lea 0x1(%rax),%r10d - 663431dc: 44 89 17 mov %r10d,(%rdi) - 663431df: 4c 89 4c c5 00 mov %r9,0x0(%rbp,%rax,8) - 663431e4: 48 83 c1 01 add $0x1,%rcx - 663431e8: 48 83 f9 08 cmp $0x8,%rcx - 663431ec: 0f 85 6e ff ff ff jne 66343160 - 663431f2: 41 c1 f8 08 sar $0x8,%r8d - 663431f6: ba 1a 00 00 00 mov $0x1a,%edx - 663431fb: 48 89 d9 mov %rbx,%rcx - 663431fe: 41 83 e0 01 and $0x1,%r8d - 66343202: 5b pop %rbx - 66343203: 5e pop %rsi - 66343204: 5f pop %rdi - 66343205: 5d pop %rbp - 66343206: 41 5e pop %r14 - 66343208: e9 a3 e1 ff ff jmpq 663413b0 - 6634320d: 0f 1f 00 nopl (%rax) +00000000663427f0 : + 663427f0: 41 56 push %r14 + 663427f2: 57 push %rdi + 663427f3: 56 push %rsi + 663427f4: 53 push %rbx + 663427f5: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 663427f9: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax + 66342800: 44 8b 10 mov (%rax),%r10d + 66342803: 45 85 d2 test %r10d,%r10d + 66342806: 0f 84 a0 00 00 00 je 663428ac + 6634280c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342810: 31 c0 xor %eax,%eax + 66342812: 48 8b 3d 07 41 01 00 mov 0x14107(%rip),%rdi # 66356920 + 66342819: 48 8b 35 10 41 01 00 mov 0x14110(%rip),%rsi # 66356930 + 66342820: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 66342825: 44 8b 44 03 40 mov 0x40(%rbx,%rax,1),%r8d + 6634282a: 8b 12 mov (%rdx),%edx + 6634282c: 44 39 c2 cmp %r8d,%edx + 6634282f: 74 6d je 6634289e + 66342831: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342835: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 66342839: 41 89 d6 mov %edx,%r14d + 6634283c: 45 29 c6 sub %r8d,%r14d + 6634283f: 45 31 c0 xor %r8d,%r8d + 66342842: 4f 8b 8c 11 80 00 00 mov 0x80(%r9,%r10,1),%r9 + 66342849: 00 + 6634284a: 45 01 31 add %r14d,(%r9) + 6634284d: 89 54 03 40 mov %edx,0x40(%rbx,%rax,1) + 66342851: 45 8b 09 mov (%r9),%r9d + 66342854: 49 8b 94 43 80 00 00 mov 0x80(%r11,%rax,2),%rdx + 6634285b: 00 + 6634285c: 45 85 c9 test %r9d,%r9d + 6634285f: 41 0f 9f c0 setg %r8b + 66342863: 44 3b 02 cmp (%rdx),%r8d + 66342866: 74 36 je 6634289e + 66342868: 48 8b 51 20 mov 0x20(%rcx),%rdx + 6634286c: 4a 8b 94 12 80 00 00 mov 0x80(%rdx,%r10,1),%rdx + 66342873: 00 + 66342874: 8b 12 mov (%rdx),%edx + 66342876: 85 d2 test %edx,%edx + 66342878: 75 24 jne 6634289e + 6634287a: 48 8b 51 28 mov 0x28(%rcx),%rdx + 6634287e: 4e 8b 84 12 80 00 00 mov 0x80(%rdx,%r10,1),%r8 + 66342885: 00 + 66342886: 49 8b 50 10 mov 0x10(%r8),%rdx + 6634288a: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342890: 48 63 16 movslq (%rsi),%rdx + 66342893: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66342897: 44 89 0e mov %r9d,(%rsi) + 6634289a: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 6634289e: 48 83 c0 04 add $0x4,%rax + 663428a2: 48 83 f8 3c cmp $0x3c,%rax + 663428a6: 0f 85 74 ff ff ff jne 66342820 + 663428ac: 5b pop %rbx + 663428ad: 5e pop %rsi + 663428ae: 5f pop %rdi + 663428af: 41 5e pop %r14 + 663428b1: c3 retq + 663428b2: 0f 1f 40 00 nopl 0x0(%rax) + 663428b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663428bd: 00 00 00 -0000000066343210 : - 66343210: 41 56 push %r14 - 66343212: 55 push %rbp - 66343213: 57 push %rdi - 66343214: 56 push %rsi - 66343215: 53 push %rbx - 66343216: 48 8b 51 10 mov 0x10(%rcx),%rdx - 6634321a: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634321e: 48 89 cb mov %rcx,%rbx - 66343221: 8b 08 mov (%rax),%ecx - 66343223: 48 8b 42 08 mov 0x8(%rdx),%rax - 66343227: 8b 00 mov (%rax),%eax - 66343229: 8d 04 48 lea (%rax,%rcx,2),%eax - 6634322c: 48 8b 4a 18 mov 0x18(%rdx),%rcx - 66343230: 8b 09 mov (%rcx),%ecx - 66343232: 8d 04 88 lea (%rax,%rcx,4),%eax - 66343235: 48 8b 4a 20 mov 0x20(%rdx),%rcx - 66343239: 8b 09 mov (%rcx),%ecx - 6634323b: 8d 0c c8 lea (%rax,%rcx,8),%ecx - 6634323e: 48 8b 42 28 mov 0x28(%rdx),%rax - 66343242: 8b 00 mov (%rax),%eax - 66343244: c1 e0 04 shl $0x4,%eax - 66343247: 01 c8 add %ecx,%eax - 66343249: 48 8b 4a 30 mov 0x30(%rdx),%rcx - 6634324d: 8b 09 mov (%rcx),%ecx - 6634324f: c1 e1 05 shl $0x5,%ecx - 66343252: 01 c8 add %ecx,%eax - 66343254: 48 8b 4a 38 mov 0x38(%rdx),%rcx - 66343258: 8b 09 mov (%rcx),%ecx - 6634325a: c1 e1 06 shl $0x6,%ecx - 6634325d: 01 c1 add %eax,%ecx - 6634325f: 48 8b 42 40 mov 0x40(%rdx),%rax - 66343263: 8b 00 mov (%rax),%eax - 66343265: c1 e0 07 shl $0x7,%eax - 66343268: 01 c1 add %eax,%ecx - 6634326a: 48 8b 42 48 mov 0x48(%rdx),%rax - 6634326e: 8b 00 mov (%rax),%eax - 66343270: c1 e0 08 shl $0x8,%eax - 66343273: 01 c8 add %ecx,%eax - 66343275: 48 8b 4a 50 mov 0x50(%rdx),%rcx - 66343279: 8b 09 mov (%rcx),%ecx - 6634327b: c1 e1 09 shl $0x9,%ecx - 6634327e: 01 c8 add %ecx,%eax - 66343280: 48 8b 4a 58 mov 0x58(%rdx),%rcx - 66343284: 8b 09 mov (%rcx),%ecx - 66343286: c1 e1 0a shl $0xa,%ecx - 66343289: 01 c1 add %eax,%ecx - 6634328b: 48 8b 42 60 mov 0x60(%rdx),%rax - 6634328f: 8b 00 mov (%rax),%eax - 66343291: c1 e0 0b shl $0xb,%eax - 66343294: 01 c1 add %eax,%ecx - 66343296: 48 8b 42 68 mov 0x68(%rdx),%rax - 6634329a: 8b 00 mov (%rax),%eax - 6634329c: c1 e0 0c shl $0xc,%eax - 6634329f: 01 c8 add %ecx,%eax - 663432a1: 48 8b 4a 70 mov 0x70(%rdx),%rcx - 663432a5: 8b 09 mov (%rcx),%ecx - 663432a7: c1 e1 0d shl $0xd,%ecx - 663432aa: 01 c8 add %ecx,%eax - 663432ac: 48 8b 4a 78 mov 0x78(%rdx),%rcx - 663432b0: 44 8b 01 mov (%rcx),%r8d - 663432b3: 41 c1 e0 0e shl $0xe,%r8d - 663432b7: 41 8d 0c 00 lea (%r8,%rax,1),%ecx - 663432bb: 48 8b 82 90 00 00 00 mov 0x90(%rdx),%rax - 663432c2: 44 8b 00 mov (%rax),%r8d - 663432c5: 48 8b 82 88 00 00 00 mov 0x88(%rdx),%rax - 663432cc: 8b 00 mov (%rax),%eax - 663432ce: 42 8d 04 40 lea (%rax,%r8,2),%eax - 663432d2: 4c 8b 82 98 00 00 00 mov 0x98(%rdx),%r8 - 663432d9: 45 8b 00 mov (%r8),%r8d - 663432dc: 42 8d 04 80 lea (%rax,%r8,4),%eax - 663432e0: 4c 8b 82 a0 00 00 00 mov 0xa0(%rdx),%r8 - 663432e7: 45 8b 00 mov (%r8),%r8d - 663432ea: 42 8d 04 c0 lea (%rax,%r8,8),%eax - 663432ee: 4c 8b 82 a8 00 00 00 mov 0xa8(%rdx),%r8 - 663432f5: 45 8b 00 mov (%r8),%r8d - 663432f8: 41 c1 e0 04 shl $0x4,%r8d - 663432fc: 41 01 c0 add %eax,%r8d - 663432ff: 48 8b 82 b0 00 00 00 mov 0xb0(%rdx),%rax - 66343306: 8b 00 mov (%rax),%eax - 66343308: c1 e0 05 shl $0x5,%eax - 6634330b: 41 01 c0 add %eax,%r8d - 6634330e: 48 8b 82 b8 00 00 00 mov 0xb8(%rdx),%rax - 66343315: 8b 00 mov (%rax),%eax - 66343317: c1 e0 06 shl $0x6,%eax - 6634331a: 44 01 c0 add %r8d,%eax - 6634331d: 4c 8b 82 c0 00 00 00 mov 0xc0(%rdx),%r8 - 66343324: 45 8b 00 mov (%r8),%r8d - 66343327: 41 c1 e0 07 shl $0x7,%r8d - 6634332b: 44 01 c0 add %r8d,%eax - 6634332e: 4c 8b 82 c8 00 00 00 mov 0xc8(%rdx),%r8 - 66343335: 45 8b 00 mov (%r8),%r8d - 66343338: 41 c1 e0 08 shl $0x8,%r8d - 6634333c: 41 01 c0 add %eax,%r8d - 6634333f: 48 8b 82 d0 00 00 00 mov 0xd0(%rdx),%rax - 66343346: 8b 00 mov (%rax),%eax - 66343348: c1 e0 09 shl $0x9,%eax - 6634334b: 41 01 c0 add %eax,%r8d - 6634334e: 48 8b 82 d8 00 00 00 mov 0xd8(%rdx),%rax - 66343355: 8b 00 mov (%rax),%eax - 66343357: c1 e0 0a shl $0xa,%eax - 6634335a: 44 01 c0 add %r8d,%eax - 6634335d: 4c 8b 82 e0 00 00 00 mov 0xe0(%rdx),%r8 - 66343364: 45 8b 00 mov (%r8),%r8d - 66343367: 41 c1 e0 0b shl $0xb,%r8d - 6634336b: 44 01 c0 add %r8d,%eax - 6634336e: 4c 8b 82 e8 00 00 00 mov 0xe8(%rdx),%r8 - 66343375: 45 8b 00 mov (%r8),%r8d - 66343378: 41 c1 e0 0c shl $0xc,%r8d - 6634337c: 41 01 c0 add %eax,%r8d - 6634337f: 48 8b 82 f0 00 00 00 mov 0xf0(%rdx),%rax - 66343386: 8b 00 mov (%rax),%eax - 66343388: c1 e0 0d shl $0xd,%eax - 6634338b: 41 01 c0 add %eax,%r8d - 6634338e: 48 8b 82 f8 00 00 00 mov 0xf8(%rdx),%rax - 66343395: 8b 00 mov (%rax),%eax - 66343397: c1 e0 0e shl $0xe,%eax - 6634339a: 44 01 c0 add %r8d,%eax - 6634339d: 4c 8b 82 00 01 00 00 mov 0x100(%rdx),%r8 - 663433a4: 45 8b 00 mov (%r8),%r8d - 663433a7: 41 c1 e0 0f shl $0xf,%r8d - 663433ab: 44 01 c0 add %r8d,%eax - 663433ae: 4c 8b 82 80 00 00 00 mov 0x80(%rdx),%r8 - 663433b5: 45 8b 00 mov (%r8),%r8d - 663433b8: 48 8b 73 08 mov 0x8(%rbx),%rsi - 663433bc: 48 8b 2d 5d 45 01 00 mov 0x1455d(%rip),%rbp # 66357920 - 663433c3: 48 8b 3d 66 45 01 00 mov 0x14566(%rip),%rdi # 66357930 - 663433ca: 41 c1 e0 0f shl $0xf,%r8d - 663433ce: 41 01 c8 add %ecx,%r8d - 663433d1: 31 c9 xor %ecx,%ecx - 663433d3: 41 01 c0 add %eax,%r8d - 663433d6: 48 8b 82 88 01 00 00 mov 0x188(%rdx),%rax - 663433dd: 44 03 00 add (%rax),%r8d - 663433e0: 44 8b 8c 8e 84 00 00 mov 0x84(%rsi,%rcx,4),%r9d - 663433e7: 00 - 663433e8: 44 89 c0 mov %r8d,%eax - 663433eb: d3 f8 sar %cl,%eax - 663433ed: 83 e0 01 and $0x1,%eax - 663433f0: 44 39 c8 cmp %r9d,%eax - 663433f3: 74 75 je 6634346a - 663433f5: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 663433f9: 4c 8d 1c cd 00 00 00 lea 0x0(,%rcx,8),%r11 - 66343400: 00 - 66343401: 41 89 c6 mov %eax,%r14d - 66343404: 45 29 ce sub %r9d,%r14d - 66343407: 45 31 c9 xor %r9d,%r9d - 6634340a: 4f 8b 94 1a 08 01 00 mov 0x108(%r10,%r11,1),%r10 - 66343411: 00 - 66343412: 45 01 32 add %r14d,(%r10) - 66343415: 89 84 8e 84 00 00 00 mov %eax,0x84(%rsi,%rcx,4) - 6634341c: 45 8b 12 mov (%r10),%r10d - 6634341f: 48 8b 84 ca 08 01 00 mov 0x108(%rdx,%rcx,8),%rax - 66343426: 00 - 66343427: 45 85 d2 test %r10d,%r10d - 6634342a: 41 0f 9f c1 setg %r9b - 6634342e: 44 3b 08 cmp (%rax),%r9d - 66343431: 74 37 je 6634346a - 66343433: 48 8b 43 20 mov 0x20(%rbx),%rax - 66343437: 4a 8b 84 18 08 01 00 mov 0x108(%rax,%r11,1),%rax - 6634343e: 00 - 6634343f: 8b 00 mov (%rax),%eax - 66343441: 85 c0 test %eax,%eax - 66343443: 75 25 jne 6634346a - 66343445: 48 8b 43 28 mov 0x28(%rbx),%rax - 66343449: 4e 8b 8c 18 08 01 00 mov 0x108(%rax,%r11,1),%r9 - 66343450: 00 - 66343451: 49 8b 41 10 mov 0x10(%r9),%rax - 66343455: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634345b: 48 63 07 movslq (%rdi),%rax - 6634345e: 44 8d 50 01 lea 0x1(%rax),%r10d - 66343462: 44 89 17 mov %r10d,(%rdi) - 66343465: 4c 89 4c c5 00 mov %r9,0x0(%rbp,%rax,8) - 6634346a: 48 83 c1 01 add $0x1,%rcx - 6634346e: 48 83 f9 10 cmp $0x10,%rcx - 66343472: 0f 85 68 ff ff ff jne 663433e0 - 66343478: 41 c1 f8 10 sar $0x10,%r8d - 6634347c: ba 32 00 00 00 mov $0x32,%edx - 66343481: 48 89 d9 mov %rbx,%rcx - 66343484: 41 83 e0 01 and $0x1,%r8d - 66343488: 5b pop %rbx - 66343489: 5e pop %rsi - 6634348a: 5f pop %rdi - 6634348b: 5d pop %rbp - 6634348c: 41 5e pop %r14 - 6634348e: e9 1d df ff ff jmpq 663413b0 - 66343493: 0f 1f 00 nopl (%rax) - 66343496: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634349d: 00 00 00 +00000000663428c0 : + 663428c0: 41 56 push %r14 + 663428c2: 57 push %rdi + 663428c3: 56 push %rsi + 663428c4: 53 push %rbx + 663428c5: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 663428c9: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax + 663428d0: 44 8b 10 mov (%rax),%r10d + 663428d3: 45 85 d2 test %r10d,%r10d + 663428d6: 0f 84 90 00 00 00 je 6634296c + 663428dc: 48 8b 59 08 mov 0x8(%rcx),%rbx + 663428e0: 31 c0 xor %eax,%eax + 663428e2: 48 8b 3d 37 40 01 00 mov 0x14037(%rip),%rdi # 66356920 + 663428e9: 48 8b 35 40 40 01 00 mov 0x14040(%rip),%rsi # 66356930 + 663428f0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 663428f5: 44 8b 44 03 3c mov 0x3c(%rbx,%rax,1),%r8d + 663428fa: 8b 12 mov (%rdx),%edx + 663428fc: 44 39 c2 cmp %r8d,%edx + 663428ff: 74 61 je 66342962 + 66342901: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342905: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 66342909: 41 89 d6 mov %edx,%r14d + 6634290c: 45 29 c6 sub %r8d,%r14d + 6634290f: 45 31 c0 xor %r8d,%r8d + 66342912: 4f 8b 4c 11 78 mov 0x78(%r9,%r10,1),%r9 + 66342917: 45 01 31 add %r14d,(%r9) + 6634291a: 89 54 03 3c mov %edx,0x3c(%rbx,%rax,1) + 6634291e: 45 8b 09 mov (%r9),%r9d + 66342921: 49 8b 54 43 78 mov 0x78(%r11,%rax,2),%rdx + 66342926: 45 85 c9 test %r9d,%r9d + 66342929: 41 0f 9f c0 setg %r8b + 6634292d: 44 3b 02 cmp (%rdx),%r8d + 66342930: 74 30 je 66342962 + 66342932: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342936: 4a 8b 54 12 78 mov 0x78(%rdx,%r10,1),%rdx + 6634293b: 8b 12 mov (%rdx),%edx + 6634293d: 85 d2 test %edx,%edx + 6634293f: 75 21 jne 66342962 + 66342941: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342945: 4e 8b 44 12 78 mov 0x78(%rdx,%r10,1),%r8 + 6634294a: 49 8b 50 10 mov 0x10(%r8),%rdx + 6634294e: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342954: 48 63 16 movslq (%rsi),%rdx + 66342957: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 6634295b: 44 89 0e mov %r9d,(%rsi) + 6634295e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66342962: 48 83 c0 04 add $0x4,%rax + 66342966: 48 83 f8 38 cmp $0x38,%rax + 6634296a: 75 84 jne 663428f0 + 6634296c: 5b pop %rbx + 6634296d: 5e pop %rsi + 6634296e: 5f pop %rdi + 6634296f: 41 5e pop %r14 + 66342971: c3 retq + 66342972: 0f 1f 40 00 nopl 0x0(%rax) + 66342976: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634297d: 00 00 00 -00000000663434a0 : - 663434a0: 48 8b 41 10 mov 0x10(%rcx),%rax - 663434a4: 48 8b 50 18 mov 0x18(%rax),%rdx - 663434a8: 44 8b 0a mov (%rdx),%r9d - 663434ab: 45 85 c9 test %r9d,%r9d - 663434ae: 74 77 je 66343527 - 663434b0: 48 8b 50 08 mov 0x8(%rax),%rdx - 663434b4: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 663434b8: 8b 12 mov (%rdx),%edx - 663434ba: 45 8b 48 08 mov 0x8(%r8),%r9d - 663434be: 41 39 d1 cmp %edx,%r9d - 663434c1: 74 64 je 66343527 - 663434c3: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663434c7: 41 89 d3 mov %edx,%r11d - 663434ca: 45 29 cb sub %r9d,%r11d - 663434cd: 48 8b 40 10 mov 0x10(%rax),%rax - 663434d1: 4d 8b 52 10 mov 0x10(%r10),%r10 - 663434d5: 45 01 1a add %r11d,(%r10) - 663434d8: 41 89 50 08 mov %edx,0x8(%r8) - 663434dc: 31 d2 xor %edx,%edx - 663434de: 45 8b 02 mov (%r10),%r8d - 663434e1: 45 85 c0 test %r8d,%r8d - 663434e4: 0f 9f c2 setg %dl - 663434e7: 3b 10 cmp (%rax),%edx - 663434e9: 74 3c je 66343527 - 663434eb: 48 8b 41 20 mov 0x20(%rcx),%rax - 663434ef: 48 8b 40 10 mov 0x10(%rax),%rax - 663434f3: 8b 00 mov (%rax),%eax - 663434f5: 85 c0 test %eax,%eax - 663434f7: 75 2e jne 66343527 - 663434f9: 48 8b 41 28 mov 0x28(%rcx),%rax - 663434fd: 48 8b 0d 2c 44 01 00 mov 0x1442c(%rip),%rcx # 66357930 - 66343504: 4c 8b 05 15 44 01 00 mov 0x14415(%rip),%r8 # 66357920 - 6634350b: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634350f: 48 8b 42 10 mov 0x10(%rdx),%rax - 66343513: c7 00 01 00 00 00 movl $0x1,(%rax) - 66343519: 48 63 01 movslq (%rcx),%rax - 6634351c: 44 8d 48 01 lea 0x1(%rax),%r9d - 66343520: 44 89 09 mov %r9d,(%rcx) - 66343523: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66343527: c3 retq - 66343528: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634352f: 00 +0000000066342980 : + 66342980: 41 56 push %r14 + 66342982: 57 push %rdi + 66342983: 56 push %rsi + 66342984: 53 push %rbx + 66342985: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 66342989: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax + 66342990: 44 8b 10 mov (%rax),%r10d + 66342993: 45 85 d2 test %r10d,%r10d + 66342996: 0f 84 90 00 00 00 je 66342a2c + 6634299c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 663429a0: 31 c0 xor %eax,%eax + 663429a2: 48 8b 3d 77 3f 01 00 mov 0x13f77(%rip),%rdi # 66356920 + 663429a9: 48 8b 35 80 3f 01 00 mov 0x13f80(%rip),%rsi # 66356930 + 663429b0: 49 8b 54 43 08 mov 0x8(%r11,%rax,2),%rdx + 663429b5: 44 8b 44 03 38 mov 0x38(%rbx,%rax,1),%r8d + 663429ba: 8b 12 mov (%rdx),%edx + 663429bc: 44 39 c2 cmp %r8d,%edx + 663429bf: 74 61 je 66342a22 + 663429c1: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 663429c5: 4c 8d 14 00 lea (%rax,%rax,1),%r10 + 663429c9: 41 89 d6 mov %edx,%r14d + 663429cc: 45 29 c6 sub %r8d,%r14d + 663429cf: 45 31 c0 xor %r8d,%r8d + 663429d2: 4f 8b 4c 11 70 mov 0x70(%r9,%r10,1),%r9 + 663429d7: 45 01 31 add %r14d,(%r9) + 663429da: 89 54 03 38 mov %edx,0x38(%rbx,%rax,1) + 663429de: 45 8b 09 mov (%r9),%r9d + 663429e1: 49 8b 54 43 70 mov 0x70(%r11,%rax,2),%rdx + 663429e6: 45 85 c9 test %r9d,%r9d + 663429e9: 41 0f 9f c0 setg %r8b + 663429ed: 44 3b 02 cmp (%rdx),%r8d + 663429f0: 74 30 je 66342a22 + 663429f2: 48 8b 51 20 mov 0x20(%rcx),%rdx + 663429f6: 4a 8b 54 12 70 mov 0x70(%rdx,%r10,1),%rdx + 663429fb: 8b 12 mov (%rdx),%edx + 663429fd: 85 d2 test %edx,%edx + 663429ff: 75 21 jne 66342a22 + 66342a01: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342a05: 4e 8b 44 12 70 mov 0x70(%rdx,%r10,1),%r8 + 66342a0a: 49 8b 50 10 mov 0x10(%r8),%rdx + 66342a0e: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342a14: 48 63 16 movslq (%rsi),%rdx + 66342a17: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66342a1b: 44 89 0e mov %r9d,(%rsi) + 66342a1e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66342a22: 48 83 c0 04 add $0x4,%rax + 66342a26: 48 83 f8 34 cmp $0x34,%rax + 66342a2a: 75 84 jne 663429b0 + 66342a2c: 5b pop %rbx + 66342a2d: 5e pop %rsi + 66342a2e: 5f pop %rdi + 66342a2f: 41 5e pop %r14 + 66342a31: c3 retq + 66342a32: 0f 1f 40 00 nopl 0x0(%rax) + 66342a36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66342a3d: 00 00 00 -0000000066343530 : - 66343530: 56 push %rsi - 66343531: 53 push %rbx - 66343532: 48 8b 41 10 mov 0x10(%rcx),%rax - 66343536: 48 8b 50 38 mov 0x38(%rax),%rdx - 6634353a: 44 8b 0a mov (%rdx),%r9d - 6634353d: 45 85 c9 test %r9d,%r9d - 66343540: 0f 84 4e 01 00 00 je 66343694 - 66343546: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634354a: 4c 8b 40 08 mov 0x8(%rax),%r8 - 6634354e: 48 8b 1d cb 43 01 00 mov 0x143cb(%rip),%rbx # 66357920 - 66343555: 4c 8b 1d d4 43 01 00 mov 0x143d4(%rip),%r11 # 66357930 - 6634355c: 44 8b 4a 10 mov 0x10(%rdx),%r9d - 66343560: 45 8b 00 mov (%r8),%r8d - 66343563: 45 39 c8 cmp %r9d,%r8d - 66343566: 74 5b je 663435c3 - 66343568: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634356c: 44 89 c6 mov %r8d,%esi - 6634356f: 44 29 ce sub %r9d,%esi - 66343572: 45 31 c9 xor %r9d,%r9d - 66343575: 4d 8b 52 20 mov 0x20(%r10),%r10 - 66343579: 41 01 32 add %esi,(%r10) - 6634357c: 44 89 42 10 mov %r8d,0x10(%rdx) - 66343580: 45 8b 02 mov (%r10),%r8d - 66343583: 45 85 c0 test %r8d,%r8d - 66343586: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634358a: 41 0f 9f c1 setg %r9b - 6634358e: 45 3b 08 cmp (%r8),%r9d - 66343591: 74 30 je 663435c3 - 66343593: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343597: 4d 8b 40 20 mov 0x20(%r8),%r8 - 6634359b: 41 8b 30 mov (%r8),%esi - 6634359e: 85 f6 test %esi,%esi - 663435a0: 75 21 jne 663435c3 - 663435a2: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663435a6: 4d 8b 48 20 mov 0x20(%r8),%r9 - 663435aa: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663435ae: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663435b5: 4d 63 03 movslq (%r11),%r8 - 663435b8: 45 8d 50 01 lea 0x1(%r8),%r10d - 663435bc: 45 89 13 mov %r10d,(%r11) - 663435bf: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) - 663435c3: 4c 8b 40 10 mov 0x10(%rax),%r8 - 663435c7: 44 8b 4a 14 mov 0x14(%rdx),%r9d - 663435cb: 45 8b 00 mov (%r8),%r8d - 663435ce: 45 39 c8 cmp %r9d,%r8d - 663435d1: 74 5c je 6634362f - 663435d3: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663435d7: 44 89 c6 mov %r8d,%esi - 663435da: 44 29 ce sub %r9d,%esi - 663435dd: 45 31 c9 xor %r9d,%r9d - 663435e0: 4d 8b 52 28 mov 0x28(%r10),%r10 - 663435e4: 41 01 32 add %esi,(%r10) - 663435e7: 44 89 42 14 mov %r8d,0x14(%rdx) - 663435eb: 45 8b 12 mov (%r10),%r10d - 663435ee: 4c 8b 40 28 mov 0x28(%rax),%r8 - 663435f2: 45 85 d2 test %r10d,%r10d - 663435f5: 41 0f 9f c1 setg %r9b - 663435f9: 45 3b 08 cmp (%r8),%r9d - 663435fc: 74 31 je 6634362f - 663435fe: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343602: 4d 8b 40 28 mov 0x28(%r8),%r8 - 66343606: 45 8b 08 mov (%r8),%r9d - 66343609: 45 85 c9 test %r9d,%r9d - 6634360c: 75 21 jne 6634362f - 6634360e: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343612: 4d 8b 48 28 mov 0x28(%r8),%r9 - 66343616: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634361a: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343621: 4d 63 03 movslq (%r11),%r8 - 66343624: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343628: 45 89 13 mov %r10d,(%r11) - 6634362b: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) - 6634362f: 4c 8b 40 18 mov 0x18(%rax),%r8 - 66343633: 44 8b 4a 18 mov 0x18(%rdx),%r9d - 66343637: 45 8b 00 mov (%r8),%r8d - 6634363a: 45 39 c8 cmp %r9d,%r8d - 6634363d: 74 55 je 66343694 - 6634363f: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343643: 44 89 c6 mov %r8d,%esi - 66343646: 44 29 ce sub %r9d,%esi - 66343649: 48 8b 40 30 mov 0x30(%rax),%rax - 6634364d: 4d 8b 52 30 mov 0x30(%r10),%r10 - 66343651: 41 01 32 add %esi,(%r10) - 66343654: 44 89 42 18 mov %r8d,0x18(%rdx) - 66343658: 31 d2 xor %edx,%edx - 6634365a: 45 8b 02 mov (%r10),%r8d - 6634365d: 45 85 c0 test %r8d,%r8d - 66343660: 0f 9f c2 setg %dl - 66343663: 3b 10 cmp (%rax),%edx - 66343665: 74 2d je 66343694 - 66343667: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634366b: 48 8b 40 30 mov 0x30(%rax),%rax - 6634366f: 8b 00 mov (%rax),%eax - 66343671: 85 c0 test %eax,%eax - 66343673: 75 1f jne 66343694 - 66343675: 48 8b 41 28 mov 0x28(%rcx),%rax - 66343679: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634367d: 48 8b 42 10 mov 0x10(%rdx),%rax - 66343681: c7 00 01 00 00 00 movl $0x1,(%rax) - 66343687: 49 63 03 movslq (%r11),%rax - 6634368a: 8d 48 01 lea 0x1(%rax),%ecx - 6634368d: 41 89 0b mov %ecx,(%r11) - 66343690: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) - 66343694: 5b pop %rbx - 66343695: 5e pop %rsi - 66343696: c3 retq - 66343697: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634369e: 00 00 +0000000066342a40 : + 66342a40: 41 56 push %r14 + 66342a42: 57 push %rdi + 66342a43: 56 push %rsi + 66342a44: 53 push %rbx + 66342a45: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66342a49: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax + 66342a50: 44 8b 18 mov (%rax),%r11d + 66342a53: 45 85 db test %r11d,%r11d + 66342a56: 0f 84 90 00 00 00 je 66342aec + 66342a5c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342a60: 31 c0 xor %eax,%eax + 66342a62: 48 8b 3d b7 3e 01 00 mov 0x13eb7(%rip),%rdi # 66356920 + 66342a69: 48 8b 35 c0 3e 01 00 mov 0x13ec0(%rip),%rsi # 66356930 + 66342a70: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx + 66342a75: 44 8b 44 03 34 mov 0x34(%rbx,%rax,1),%r8d + 66342a7a: 8b 12 mov (%rdx),%edx + 66342a7c: 44 39 c2 cmp %r8d,%edx + 66342a7f: 74 61 je 66342ae2 + 66342a81: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342a85: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 + 66342a89: 41 89 d6 mov %edx,%r14d + 66342a8c: 45 29 c6 sub %r8d,%r14d + 66342a8f: 45 31 c0 xor %r8d,%r8d + 66342a92: 4f 8b 4c 19 68 mov 0x68(%r9,%r11,1),%r9 + 66342a97: 45 01 31 add %r14d,(%r9) + 66342a9a: 89 54 03 34 mov %edx,0x34(%rbx,%rax,1) + 66342a9e: 45 8b 09 mov (%r9),%r9d + 66342aa1: 49 8b 54 42 68 mov 0x68(%r10,%rax,2),%rdx + 66342aa6: 45 85 c9 test %r9d,%r9d + 66342aa9: 41 0f 9f c0 setg %r8b + 66342aad: 44 3b 02 cmp (%rdx),%r8d + 66342ab0: 74 30 je 66342ae2 + 66342ab2: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342ab6: 4a 8b 54 1a 68 mov 0x68(%rdx,%r11,1),%rdx + 66342abb: 8b 12 mov (%rdx),%edx + 66342abd: 85 d2 test %edx,%edx + 66342abf: 75 21 jne 66342ae2 + 66342ac1: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342ac5: 4e 8b 44 1a 68 mov 0x68(%rdx,%r11,1),%r8 + 66342aca: 49 8b 50 10 mov 0x10(%r8),%rdx + 66342ace: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342ad4: 48 63 16 movslq (%rsi),%rdx + 66342ad7: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66342adb: 44 89 0e mov %r9d,(%rsi) + 66342ade: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66342ae2: 48 83 c0 04 add $0x4,%rax + 66342ae6: 48 83 f8 30 cmp $0x30,%rax + 66342aea: 75 84 jne 66342a70 + 66342aec: 5b pop %rbx + 66342aed: 5e pop %rsi + 66342aee: 5f pop %rdi + 66342aef: 41 5e pop %r14 + 66342af1: c3 retq + 66342af2: 0f 1f 40 00 nopl 0x0(%rax) + 66342af6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66342afd: 00 00 00 -00000000663436a0 : - 663436a0: 56 push %rsi - 663436a1: 53 push %rbx - 663436a2: 48 8b 41 10 mov 0x10(%rcx),%rax - 663436a6: 48 8b 50 28 mov 0x28(%rax),%rdx - 663436aa: 44 8b 1a mov (%rdx),%r11d - 663436ad: 45 85 db test %r11d,%r11d - 663436b0: 0f 84 e3 00 00 00 je 66343799 - 663436b6: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663436ba: 4c 8b 40 08 mov 0x8(%rax),%r8 - 663436be: 48 8b 1d 5b 42 01 00 mov 0x1425b(%rip),%rbx # 66357920 - 663436c5: 4c 8b 1d 64 42 01 00 mov 0x14264(%rip),%r11 # 66357930 - 663436cc: 44 8b 4a 0c mov 0xc(%rdx),%r9d - 663436d0: 45 8b 00 mov (%r8),%r8d - 663436d3: 45 39 c8 cmp %r9d,%r8d - 663436d6: 74 5c je 66343734 - 663436d8: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663436dc: 44 89 c6 mov %r8d,%esi - 663436df: 44 29 ce sub %r9d,%esi - 663436e2: 45 31 c9 xor %r9d,%r9d - 663436e5: 4d 8b 52 18 mov 0x18(%r10),%r10 - 663436e9: 41 01 32 add %esi,(%r10) - 663436ec: 44 89 42 0c mov %r8d,0xc(%rdx) - 663436f0: 45 8b 12 mov (%r10),%r10d - 663436f3: 4c 8b 40 18 mov 0x18(%rax),%r8 - 663436f7: 45 85 d2 test %r10d,%r10d - 663436fa: 41 0f 9f c1 setg %r9b - 663436fe: 45 3b 08 cmp (%r8),%r9d - 66343701: 74 31 je 66343734 - 66343703: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343707: 4d 8b 40 18 mov 0x18(%r8),%r8 - 6634370b: 45 8b 08 mov (%r8),%r9d - 6634370e: 45 85 c9 test %r9d,%r9d - 66343711: 75 21 jne 66343734 - 66343713: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343717: 4d 8b 48 18 mov 0x18(%r8),%r9 - 6634371b: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634371f: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343726: 4d 63 03 movslq (%r11),%r8 - 66343729: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634372d: 45 89 13 mov %r10d,(%r11) - 66343730: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) - 66343734: 4c 8b 40 10 mov 0x10(%rax),%r8 - 66343738: 44 8b 4a 10 mov 0x10(%rdx),%r9d - 6634373c: 45 8b 00 mov (%r8),%r8d - 6634373f: 45 39 c8 cmp %r9d,%r8d - 66343742: 74 55 je 66343799 - 66343744: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343748: 44 89 c6 mov %r8d,%esi - 6634374b: 44 29 ce sub %r9d,%esi - 6634374e: 48 8b 40 20 mov 0x20(%rax),%rax - 66343752: 4d 8b 52 20 mov 0x20(%r10),%r10 - 66343756: 41 01 32 add %esi,(%r10) - 66343759: 44 89 42 10 mov %r8d,0x10(%rdx) - 6634375d: 31 d2 xor %edx,%edx - 6634375f: 45 8b 02 mov (%r10),%r8d - 66343762: 45 85 c0 test %r8d,%r8d - 66343765: 0f 9f c2 setg %dl - 66343768: 3b 10 cmp (%rax),%edx - 6634376a: 74 2d je 66343799 - 6634376c: 48 8b 41 20 mov 0x20(%rcx),%rax - 66343770: 48 8b 40 20 mov 0x20(%rax),%rax - 66343774: 8b 00 mov (%rax),%eax - 66343776: 85 c0 test %eax,%eax - 66343778: 75 1f jne 66343799 - 6634377a: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634377e: 48 8b 50 20 mov 0x20(%rax),%rdx - 66343782: 48 8b 42 10 mov 0x10(%rdx),%rax - 66343786: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634378c: 49 63 03 movslq (%r11),%rax - 6634378f: 8d 48 01 lea 0x1(%rax),%ecx - 66343792: 41 89 0b mov %ecx,(%r11) - 66343795: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) - 66343799: 5b pop %rbx - 6634379a: 5e pop %rsi - 6634379b: c3 retq - 6634379c: 0f 1f 40 00 nopl 0x0(%rax) +0000000066342b00 : + 66342b00: 41 56 push %r14 + 66342b02: 57 push %rdi + 66342b03: 56 push %rsi + 66342b04: 53 push %rbx + 66342b05: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66342b09: 49 8b 82 b8 00 00 00 mov 0xb8(%r10),%rax + 66342b10: 44 8b 18 mov (%rax),%r11d + 66342b13: 45 85 db test %r11d,%r11d + 66342b16: 0f 84 90 00 00 00 je 66342bac + 66342b1c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342b20: 31 c0 xor %eax,%eax + 66342b22: 48 8b 3d f7 3d 01 00 mov 0x13df7(%rip),%rdi # 66356920 + 66342b29: 48 8b 35 00 3e 01 00 mov 0x13e00(%rip),%rsi # 66356930 + 66342b30: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx + 66342b35: 44 8b 44 03 30 mov 0x30(%rbx,%rax,1),%r8d + 66342b3a: 8b 12 mov (%rdx),%edx + 66342b3c: 44 39 c2 cmp %r8d,%edx + 66342b3f: 74 61 je 66342ba2 + 66342b41: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342b45: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 + 66342b49: 41 89 d6 mov %edx,%r14d + 66342b4c: 45 29 c6 sub %r8d,%r14d + 66342b4f: 45 31 c0 xor %r8d,%r8d + 66342b52: 4f 8b 4c 19 60 mov 0x60(%r9,%r11,1),%r9 + 66342b57: 45 01 31 add %r14d,(%r9) + 66342b5a: 89 54 03 30 mov %edx,0x30(%rbx,%rax,1) + 66342b5e: 45 8b 09 mov (%r9),%r9d + 66342b61: 49 8b 54 42 60 mov 0x60(%r10,%rax,2),%rdx + 66342b66: 45 85 c9 test %r9d,%r9d + 66342b69: 41 0f 9f c0 setg %r8b + 66342b6d: 44 3b 02 cmp (%rdx),%r8d + 66342b70: 74 30 je 66342ba2 + 66342b72: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342b76: 4a 8b 54 1a 60 mov 0x60(%rdx,%r11,1),%rdx + 66342b7b: 8b 12 mov (%rdx),%edx + 66342b7d: 85 d2 test %edx,%edx + 66342b7f: 75 21 jne 66342ba2 + 66342b81: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342b85: 4e 8b 44 1a 60 mov 0x60(%rdx,%r11,1),%r8 + 66342b8a: 49 8b 50 10 mov 0x10(%r8),%rdx + 66342b8e: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342b94: 48 63 16 movslq (%rsi),%rdx + 66342b97: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66342b9b: 44 89 0e mov %r9d,(%rsi) + 66342b9e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66342ba2: 48 83 c0 04 add $0x4,%rax + 66342ba6: 48 83 f8 2c cmp $0x2c,%rax + 66342baa: 75 84 jne 66342b30 + 66342bac: 5b pop %rbx + 66342bad: 5e pop %rsi + 66342bae: 5f pop %rdi + 66342baf: 41 5e pop %r14 + 66342bb1: c3 retq + 66342bb2: 0f 1f 40 00 nopl 0x0(%rax) + 66342bb6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66342bbd: 00 00 00 -00000000663437a0 : - 663437a0: 41 56 push %r14 - 663437a2: 57 push %rdi - 663437a3: 56 push %rsi - 663437a4: 53 push %rbx - 663437a5: 48 8b 3d 74 41 01 00 mov 0x14174(%rip),%rdi # 66357920 - 663437ac: 48 8b 35 7d 41 01 00 mov 0x1417d(%rip),%rsi # 66357930 - 663437b3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 663437b7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663437bb: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax - 663437c2: 8b 00 mov (%rax),%eax - 663437c4: 85 c0 test %eax,%eax - 663437c6: 0f 84 a4 00 00 00 je 66343870 - 663437cc: 31 c0 xor %eax,%eax - 663437ce: 66 90 xchg %ax,%ax - 663437d0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 663437d5: 44 8b 8c 02 04 01 00 mov 0x104(%rdx,%rax,1),%r9d - 663437dc: 00 - 663437dd: 45 8b 00 mov (%r8),%r8d - 663437e0: 45 39 c8 cmp %r9d,%r8d - 663437e3: 74 74 je 66343859 - 663437e5: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663437e9: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663437ed: 45 89 c6 mov %r8d,%r14d - 663437f0: 45 29 ce sub %r9d,%r14d - 663437f3: 45 31 c9 xor %r9d,%r9d - 663437f6: 4d 8b 94 1a 08 02 00 mov 0x208(%r10,%rbx,1),%r10 - 663437fd: 00 - 663437fe: 45 01 32 add %r14d,(%r10) - 66343801: 44 89 84 02 04 01 00 mov %r8d,0x104(%rdx,%rax,1) - 66343808: 00 - 66343809: 45 8b 32 mov (%r10),%r14d - 6634380c: 4d 8b 84 43 08 02 00 mov 0x208(%r11,%rax,2),%r8 - 66343813: 00 - 66343814: 45 85 f6 test %r14d,%r14d - 66343817: 41 0f 9f c1 setg %r9b - 6634381b: 45 3b 08 cmp (%r8),%r9d - 6634381e: 74 39 je 66343859 - 66343820: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343824: 4d 8b 84 18 08 02 00 mov 0x208(%r8,%rbx,1),%r8 - 6634382b: 00 - 6634382c: 45 8b 10 mov (%r8),%r10d - 6634382f: 45 85 d2 test %r10d,%r10d - 66343832: 75 25 jne 66343859 - 66343834: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343838: 4d 8b 8c 18 08 02 00 mov 0x208(%r8,%rbx,1),%r9 - 6634383f: 00 - 66343840: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343844: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634384b: 4c 63 06 movslq (%rsi),%r8 - 6634384e: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343852: 44 89 16 mov %r10d,(%rsi) - 66343855: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343859: 48 83 c0 04 add $0x4,%rax - 6634385d: 48 3d 00 01 00 00 cmp $0x100,%rax - 66343863: 0f 85 67 ff ff ff jne 663437d0 - 66343869: 5b pop %rbx - 6634386a: 5e pop %rsi - 6634386b: 5f pop %rdi - 6634386c: 41 5e pop %r14 - 6634386e: c3 retq - 6634386f: 90 nop - 66343870: 48 81 c2 04 01 00 00 add $0x104,%rdx - 66343877: b8 08 02 00 00 mov $0x208,%eax - 6634387c: 0f 1f 40 00 nopl 0x0(%rax) - 66343880: 44 8b 02 mov (%rdx),%r8d - 66343883: 45 85 c0 test %r8d,%r8d - 66343886: 74 59 je 663438e1 - 66343888: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634388c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343890: 45 29 01 sub %r8d,(%r9) - 66343893: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343899: 45 8b 09 mov (%r9),%r9d - 6634389c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 663438a0: 45 85 c9 test %r9d,%r9d - 663438a3: 41 0f 9f c1 setg %r9b - 663438a7: 45 0f b6 c9 movzbl %r9b,%r9d - 663438ab: 45 3b 08 cmp (%r8),%r9d - 663438ae: 74 31 je 663438e1 - 663438b0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663438b4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663438b8: 45 8b 00 mov (%r8),%r8d - 663438bb: 45 85 c0 test %r8d,%r8d - 663438be: 75 21 jne 663438e1 - 663438c0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663438c4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 663438c8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663438cc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663438d3: 4c 63 06 movslq (%rsi),%r8 - 663438d6: 45 8d 50 01 lea 0x1(%r8),%r10d - 663438da: 44 89 16 mov %r10d,(%rsi) - 663438dd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663438e1: 48 83 c0 08 add $0x8,%rax - 663438e5: 48 83 c2 04 add $0x4,%rdx - 663438e9: 48 3d 08 04 00 00 cmp $0x408,%rax - 663438ef: 75 8f jne 66343880 - 663438f1: 5b pop %rbx - 663438f2: 5e pop %rsi - 663438f3: 5f pop %rdi - 663438f4: 41 5e pop %r14 - 663438f6: c3 retq - 663438f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663438fe: 00 00 +0000000066342bc0 : + 66342bc0: 41 56 push %r14 + 66342bc2: 57 push %rdi + 66342bc3: 56 push %rsi + 66342bc4: 53 push %rbx + 66342bc5: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66342bc9: 49 8b 82 a8 00 00 00 mov 0xa8(%r10),%rax + 66342bd0: 44 8b 18 mov (%rax),%r11d + 66342bd3: 45 85 db test %r11d,%r11d + 66342bd6: 0f 84 90 00 00 00 je 66342c6c + 66342bdc: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342be0: 31 c0 xor %eax,%eax + 66342be2: 48 8b 3d 37 3d 01 00 mov 0x13d37(%rip),%rdi # 66356920 + 66342be9: 48 8b 35 40 3d 01 00 mov 0x13d40(%rip),%rsi # 66356930 + 66342bf0: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx + 66342bf5: 44 8b 44 03 2c mov 0x2c(%rbx,%rax,1),%r8d + 66342bfa: 8b 12 mov (%rdx),%edx + 66342bfc: 44 39 c2 cmp %r8d,%edx + 66342bff: 74 61 je 66342c62 + 66342c01: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342c05: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 + 66342c09: 41 89 d6 mov %edx,%r14d + 66342c0c: 45 29 c6 sub %r8d,%r14d + 66342c0f: 45 31 c0 xor %r8d,%r8d + 66342c12: 4f 8b 4c 19 58 mov 0x58(%r9,%r11,1),%r9 + 66342c17: 45 01 31 add %r14d,(%r9) + 66342c1a: 89 54 03 2c mov %edx,0x2c(%rbx,%rax,1) + 66342c1e: 45 8b 09 mov (%r9),%r9d + 66342c21: 49 8b 54 42 58 mov 0x58(%r10,%rax,2),%rdx + 66342c26: 45 85 c9 test %r9d,%r9d + 66342c29: 41 0f 9f c0 setg %r8b + 66342c2d: 44 3b 02 cmp (%rdx),%r8d + 66342c30: 74 30 je 66342c62 + 66342c32: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342c36: 4a 8b 54 1a 58 mov 0x58(%rdx,%r11,1),%rdx + 66342c3b: 8b 12 mov (%rdx),%edx + 66342c3d: 85 d2 test %edx,%edx + 66342c3f: 75 21 jne 66342c62 + 66342c41: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342c45: 4e 8b 44 1a 58 mov 0x58(%rdx,%r11,1),%r8 + 66342c4a: 49 8b 50 10 mov 0x10(%r8),%rdx + 66342c4e: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342c54: 48 63 16 movslq (%rsi),%rdx + 66342c57: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66342c5b: 44 89 0e mov %r9d,(%rsi) + 66342c5e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66342c62: 48 83 c0 04 add $0x4,%rax + 66342c66: 48 83 f8 28 cmp $0x28,%rax + 66342c6a: 75 84 jne 66342bf0 + 66342c6c: 5b pop %rbx + 66342c6d: 5e pop %rsi + 66342c6e: 5f pop %rdi + 66342c6f: 41 5e pop %r14 + 66342c71: c3 retq + 66342c72: 0f 1f 40 00 nopl 0x0(%rax) + 66342c76: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66342c7d: 00 00 00 -0000000066343900 : - 66343900: 41 56 push %r14 - 66343902: 57 push %rdi - 66343903: 56 push %rsi - 66343904: 53 push %rbx - 66343905: 48 8b 3d 14 40 01 00 mov 0x14014(%rip),%rdi # 66357920 - 6634390c: 48 8b 35 1d 40 01 00 mov 0x1401d(%rip),%rsi # 66357930 - 66343913: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343917: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634391b: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax - 66343922: 8b 00 mov (%rax),%eax - 66343924: 85 c0 test %eax,%eax - 66343926: 0f 84 a4 00 00 00 je 663439d0 - 6634392c: 31 c0 xor %eax,%eax - 6634392e: 66 90 xchg %ax,%ax - 66343930: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343935: 44 8b 8c 02 04 01 00 mov 0x104(%rdx,%rax,1),%r9d - 6634393c: 00 - 6634393d: 45 8b 00 mov (%r8),%r8d - 66343940: 45 39 c8 cmp %r9d,%r8d - 66343943: 74 74 je 663439b9 - 66343945: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343949: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634394d: 45 89 c6 mov %r8d,%r14d - 66343950: 45 29 ce sub %r9d,%r14d - 66343953: 45 31 c9 xor %r9d,%r9d - 66343956: 4d 8b 94 1a 08 02 00 mov 0x208(%r10,%rbx,1),%r10 - 6634395d: 00 - 6634395e: 45 01 32 add %r14d,(%r10) - 66343961: 44 89 84 02 04 01 00 mov %r8d,0x104(%rdx,%rax,1) - 66343968: 00 - 66343969: 45 8b 32 mov (%r10),%r14d - 6634396c: 4d 8b 84 43 08 02 00 mov 0x208(%r11,%rax,2),%r8 - 66343973: 00 - 66343974: 45 85 f6 test %r14d,%r14d - 66343977: 41 0f 9f c1 setg %r9b - 6634397b: 45 3b 08 cmp (%r8),%r9d - 6634397e: 74 39 je 663439b9 - 66343980: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343984: 4d 8b 84 18 08 02 00 mov 0x208(%r8,%rbx,1),%r8 - 6634398b: 00 - 6634398c: 45 8b 10 mov (%r8),%r10d - 6634398f: 45 85 d2 test %r10d,%r10d - 66343992: 75 25 jne 663439b9 - 66343994: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343998: 4d 8b 8c 18 08 02 00 mov 0x208(%r8,%rbx,1),%r9 - 6634399f: 00 - 663439a0: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663439a4: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663439ab: 4c 63 06 movslq (%rsi),%r8 - 663439ae: 45 8d 50 01 lea 0x1(%r8),%r10d - 663439b2: 44 89 16 mov %r10d,(%rsi) - 663439b5: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663439b9: 48 83 c0 04 add $0x4,%rax - 663439bd: 48 3d 00 01 00 00 cmp $0x100,%rax - 663439c3: 0f 85 67 ff ff ff jne 66343930 - 663439c9: 5b pop %rbx - 663439ca: 5e pop %rsi - 663439cb: 5f pop %rdi - 663439cc: 41 5e pop %r14 - 663439ce: c3 retq - 663439cf: 90 nop - 663439d0: 48 81 c2 04 01 00 00 add $0x104,%rdx - 663439d7: b8 08 02 00 00 mov $0x208,%eax - 663439dc: 0f 1f 40 00 nopl 0x0(%rax) - 663439e0: 44 8b 02 mov (%rdx),%r8d +0000000066342c80 : + 66342c80: 41 56 push %r14 + 66342c82: 57 push %rdi + 66342c83: 56 push %rsi + 66342c84: 53 push %rbx + 66342c85: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66342c89: 49 8b 82 98 00 00 00 mov 0x98(%r10),%rax + 66342c90: 44 8b 18 mov (%rax),%r11d + 66342c93: 45 85 db test %r11d,%r11d + 66342c96: 0f 84 90 00 00 00 je 66342d2c + 66342c9c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342ca0: 31 c0 xor %eax,%eax + 66342ca2: 48 8b 3d 77 3c 01 00 mov 0x13c77(%rip),%rdi # 66356920 + 66342ca9: 48 8b 35 80 3c 01 00 mov 0x13c80(%rip),%rsi # 66356930 + 66342cb0: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx + 66342cb5: 44 8b 44 03 28 mov 0x28(%rbx,%rax,1),%r8d + 66342cba: 8b 12 mov (%rdx),%edx + 66342cbc: 44 39 c2 cmp %r8d,%edx + 66342cbf: 74 61 je 66342d22 + 66342cc1: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342cc5: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 + 66342cc9: 41 89 d6 mov %edx,%r14d + 66342ccc: 45 29 c6 sub %r8d,%r14d + 66342ccf: 45 31 c0 xor %r8d,%r8d + 66342cd2: 4f 8b 4c 19 50 mov 0x50(%r9,%r11,1),%r9 + 66342cd7: 45 01 31 add %r14d,(%r9) + 66342cda: 89 54 03 28 mov %edx,0x28(%rbx,%rax,1) + 66342cde: 45 8b 09 mov (%r9),%r9d + 66342ce1: 49 8b 54 42 50 mov 0x50(%r10,%rax,2),%rdx + 66342ce6: 45 85 c9 test %r9d,%r9d + 66342ce9: 41 0f 9f c0 setg %r8b + 66342ced: 44 3b 02 cmp (%rdx),%r8d + 66342cf0: 74 30 je 66342d22 + 66342cf2: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342cf6: 4a 8b 54 1a 50 mov 0x50(%rdx,%r11,1),%rdx + 66342cfb: 8b 12 mov (%rdx),%edx + 66342cfd: 85 d2 test %edx,%edx + 66342cff: 75 21 jne 66342d22 + 66342d01: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342d05: 4e 8b 44 1a 50 mov 0x50(%rdx,%r11,1),%r8 + 66342d0a: 49 8b 50 10 mov 0x10(%r8),%rdx + 66342d0e: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342d14: 48 63 16 movslq (%rsi),%rdx + 66342d17: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66342d1b: 44 89 0e mov %r9d,(%rsi) + 66342d1e: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66342d22: 48 83 c0 04 add $0x4,%rax + 66342d26: 48 83 f8 24 cmp $0x24,%rax + 66342d2a: 75 84 jne 66342cb0 + 66342d2c: 5b pop %rbx + 66342d2d: 5e pop %rsi + 66342d2e: 5f pop %rdi + 66342d2f: 41 5e pop %r14 + 66342d31: c3 retq + 66342d32: 0f 1f 40 00 nopl 0x0(%rax) + 66342d36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66342d3d: 00 00 00 + +0000000066342d40 : + 66342d40: 41 56 push %r14 + 66342d42: 57 push %rdi + 66342d43: 56 push %rsi + 66342d44: 53 push %rbx + 66342d45: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 66342d49: 49 8b 82 88 00 00 00 mov 0x88(%r10),%rax + 66342d50: 44 8b 18 mov (%rax),%r11d + 66342d53: 45 85 db test %r11d,%r11d + 66342d56: 0f 84 90 00 00 00 je 66342dec + 66342d5c: 48 8b 59 08 mov 0x8(%rcx),%rbx + 66342d60: 31 c0 xor %eax,%eax + 66342d62: 48 8b 3d b7 3b 01 00 mov 0x13bb7(%rip),%rdi # 66356920 + 66342d69: 48 8b 35 c0 3b 01 00 mov 0x13bc0(%rip),%rsi # 66356930 + 66342d70: 49 8b 54 42 08 mov 0x8(%r10,%rax,2),%rdx + 66342d75: 44 8b 44 03 24 mov 0x24(%rbx,%rax,1),%r8d + 66342d7a: 8b 12 mov (%rdx),%edx + 66342d7c: 44 39 c2 cmp %r8d,%edx + 66342d7f: 74 61 je 66342de2 + 66342d81: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 66342d85: 4c 8d 1c 00 lea (%rax,%rax,1),%r11 + 66342d89: 41 89 d6 mov %edx,%r14d + 66342d8c: 45 29 c6 sub %r8d,%r14d + 66342d8f: 45 31 c0 xor %r8d,%r8d + 66342d92: 4f 8b 4c 19 48 mov 0x48(%r9,%r11,1),%r9 + 66342d97: 45 01 31 add %r14d,(%r9) + 66342d9a: 89 54 03 24 mov %edx,0x24(%rbx,%rax,1) + 66342d9e: 45 8b 09 mov (%r9),%r9d + 66342da1: 49 8b 54 42 48 mov 0x48(%r10,%rax,2),%rdx + 66342da6: 45 85 c9 test %r9d,%r9d + 66342da9: 41 0f 9f c0 setg %r8b + 66342dad: 44 3b 02 cmp (%rdx),%r8d + 66342db0: 74 30 je 66342de2 + 66342db2: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66342db6: 4a 8b 54 1a 48 mov 0x48(%rdx,%r11,1),%rdx + 66342dbb: 8b 12 mov (%rdx),%edx + 66342dbd: 85 d2 test %edx,%edx + 66342dbf: 75 21 jne 66342de2 + 66342dc1: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66342dc5: 4e 8b 44 1a 48 mov 0x48(%rdx,%r11,1),%r8 + 66342dca: 49 8b 50 10 mov 0x10(%r8),%rdx + 66342dce: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66342dd4: 48 63 16 movslq (%rsi),%rdx + 66342dd7: 44 8d 4a 01 lea 0x1(%rdx),%r9d + 66342ddb: 44 89 0e mov %r9d,(%rsi) + 66342dde: 4c 89 04 d7 mov %r8,(%rdi,%rdx,8) + 66342de2: 48 83 c0 04 add $0x4,%rax + 66342de6: 48 83 f8 20 cmp $0x20,%rax + 66342dea: 75 84 jne 66342d70 + 66342dec: 5b pop %rbx + 66342ded: 5e pop %rsi + 66342dee: 5f pop %rdi + 66342def: 41 5e pop %r14 + 66342df1: c3 retq + 66342df2: 0f 1f 40 00 nopl 0x0(%rax) + 66342df6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66342dfd: 00 00 00 + +0000000066342e00 : + 66342e00: 56 push %rsi + 66342e01: 53 push %rbx + 66342e02: 48 8b 41 10 mov 0x10(%rcx),%rax + 66342e06: 48 8b 50 78 mov 0x78(%rax),%rdx + 66342e0a: 44 8b 12 mov (%rdx),%r10d + 66342e0d: 45 85 d2 test %r10d,%r10d + 66342e10: 0f 84 3d 02 00 00 je 66343053 + 66342e16: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66342e1a: 4c 8b 48 08 mov 0x8(%rax),%r9 + 66342e1e: 4c 8b 1d fb 3a 01 00 mov 0x13afb(%rip),%r11 # 66356920 + 66342e25: 4c 8b 05 04 3b 01 00 mov 0x13b04(%rip),%r8 # 66356930 + 66342e2c: 44 8b 52 20 mov 0x20(%rdx),%r10d + 66342e30: 45 8b 09 mov (%r9),%r9d + 66342e33: 45 39 d1 cmp %r10d,%r9d + 66342e36: 74 3d je 66342e75 + 66342e38: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342e3c: 44 89 ce mov %r9d,%esi + 66342e3f: 44 29 d6 sub %r10d,%esi + 66342e42: 45 31 d2 xor %r10d,%r10d + 66342e45: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66342e49: 01 33 add %esi,(%rbx) + 66342e4b: 44 89 4a 20 mov %r9d,0x20(%rdx) + 66342e4f: 44 8b 0b mov (%rbx),%r9d + 66342e52: 45 85 c9 test %r9d,%r9d + 66342e55: 4c 8b 48 40 mov 0x40(%rax),%r9 + 66342e59: 41 0f 9f c2 setg %r10b + 66342e5d: 45 3b 11 cmp (%r9),%r10d + 66342e60: 74 13 je 66342e75 + 66342e62: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342e66: 4d 8b 49 40 mov 0x40(%r9),%r9 + 66342e6a: 41 8b 31 mov (%r9),%esi + 66342e6d: 85 f6 test %esi,%esi + 66342e6f: 0f 84 db 02 00 00 je 66343150 + 66342e75: 4c 8b 48 10 mov 0x10(%rax),%r9 + 66342e79: 44 8b 52 24 mov 0x24(%rdx),%r10d + 66342e7d: 45 8b 09 mov (%r9),%r9d + 66342e80: 45 39 d1 cmp %r10d,%r9d + 66342e83: 74 3c je 66342ec1 + 66342e85: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342e89: 44 89 ce mov %r9d,%esi + 66342e8c: 44 29 d6 sub %r10d,%esi + 66342e8f: 45 31 d2 xor %r10d,%r10d + 66342e92: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 66342e96: 01 33 add %esi,(%rbx) + 66342e98: 44 89 4a 24 mov %r9d,0x24(%rdx) + 66342e9c: 8b 1b mov (%rbx),%ebx + 66342e9e: 4c 8b 48 48 mov 0x48(%rax),%r9 + 66342ea2: 85 db test %ebx,%ebx + 66342ea4: 41 0f 9f c2 setg %r10b + 66342ea8: 45 3b 11 cmp (%r9),%r10d + 66342eab: 74 14 je 66342ec1 + 66342ead: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342eb1: 4d 8b 49 48 mov 0x48(%r9),%r9 + 66342eb5: 45 8b 11 mov (%r9),%r10d + 66342eb8: 45 85 d2 test %r10d,%r10d + 66342ebb: 0f 84 5f 02 00 00 je 66343120 + 66342ec1: 4c 8b 48 18 mov 0x18(%rax),%r9 + 66342ec5: 44 8b 52 28 mov 0x28(%rdx),%r10d + 66342ec9: 45 8b 09 mov (%r9),%r9d + 66342ecc: 45 39 d1 cmp %r10d,%r9d + 66342ecf: 74 3d je 66342f0e + 66342ed1: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342ed5: 44 89 ce mov %r9d,%esi + 66342ed8: 44 29 d6 sub %r10d,%esi + 66342edb: 45 31 d2 xor %r10d,%r10d + 66342ede: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 66342ee2: 01 33 add %esi,(%rbx) + 66342ee4: 44 89 4a 28 mov %r9d,0x28(%rdx) + 66342ee8: 44 8b 0b mov (%rbx),%r9d + 66342eeb: 45 85 c9 test %r9d,%r9d + 66342eee: 4c 8b 48 50 mov 0x50(%rax),%r9 + 66342ef2: 41 0f 9f c2 setg %r10b + 66342ef6: 45 3b 11 cmp (%r9),%r10d + 66342ef9: 74 13 je 66342f0e + 66342efb: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342eff: 4d 8b 49 50 mov 0x50(%r9),%r9 + 66342f03: 41 8b 31 mov (%r9),%esi + 66342f06: 85 f6 test %esi,%esi + 66342f08: 0f 84 e2 01 00 00 je 663430f0 + 66342f0e: 4c 8b 48 20 mov 0x20(%rax),%r9 + 66342f12: 44 8b 52 2c mov 0x2c(%rdx),%r10d + 66342f16: 45 8b 09 mov (%r9),%r9d + 66342f19: 45 39 d1 cmp %r10d,%r9d + 66342f1c: 74 3c je 66342f5a + 66342f1e: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342f22: 44 89 ce mov %r9d,%esi + 66342f25: 44 29 d6 sub %r10d,%esi + 66342f28: 45 31 d2 xor %r10d,%r10d + 66342f2b: 48 8b 5b 58 mov 0x58(%rbx),%rbx + 66342f2f: 01 33 add %esi,(%rbx) + 66342f31: 44 89 4a 2c mov %r9d,0x2c(%rdx) + 66342f35: 8b 1b mov (%rbx),%ebx + 66342f37: 4c 8b 48 58 mov 0x58(%rax),%r9 + 66342f3b: 85 db test %ebx,%ebx + 66342f3d: 41 0f 9f c2 setg %r10b + 66342f41: 45 3b 11 cmp (%r9),%r10d + 66342f44: 74 14 je 66342f5a + 66342f46: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342f4a: 4d 8b 49 58 mov 0x58(%r9),%r9 + 66342f4e: 45 8b 11 mov (%r9),%r10d + 66342f51: 45 85 d2 test %r10d,%r10d + 66342f54: 0f 84 66 01 00 00 je 663430c0 + 66342f5a: 4c 8b 48 28 mov 0x28(%rax),%r9 + 66342f5e: 44 8b 52 30 mov 0x30(%rdx),%r10d + 66342f62: 45 8b 09 mov (%r9),%r9d + 66342f65: 45 39 d1 cmp %r10d,%r9d + 66342f68: 74 3d je 66342fa7 + 66342f6a: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342f6e: 44 89 ce mov %r9d,%esi + 66342f71: 44 29 d6 sub %r10d,%esi + 66342f74: 45 31 d2 xor %r10d,%r10d + 66342f77: 48 8b 5b 60 mov 0x60(%rbx),%rbx + 66342f7b: 01 33 add %esi,(%rbx) + 66342f7d: 44 89 4a 30 mov %r9d,0x30(%rdx) + 66342f81: 44 8b 0b mov (%rbx),%r9d + 66342f84: 45 85 c9 test %r9d,%r9d + 66342f87: 4c 8b 48 60 mov 0x60(%rax),%r9 + 66342f8b: 41 0f 9f c2 setg %r10b + 66342f8f: 45 3b 11 cmp (%r9),%r10d + 66342f92: 74 13 je 66342fa7 + 66342f94: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342f98: 4d 8b 49 60 mov 0x60(%r9),%r9 + 66342f9c: 41 8b 31 mov (%r9),%esi + 66342f9f: 85 f6 test %esi,%esi + 66342fa1: 0f 84 e9 00 00 00 je 66343090 + 66342fa7: 4c 8b 48 30 mov 0x30(%rax),%r9 + 66342fab: 44 8b 52 34 mov 0x34(%rdx),%r10d + 66342faf: 45 8b 09 mov (%r9),%r9d + 66342fb2: 45 39 d1 cmp %r10d,%r9d + 66342fb5: 74 38 je 66342fef + 66342fb7: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66342fbb: 44 89 ce mov %r9d,%esi + 66342fbe: 44 29 d6 sub %r10d,%esi + 66342fc1: 45 31 d2 xor %r10d,%r10d + 66342fc4: 48 8b 5b 68 mov 0x68(%rbx),%rbx + 66342fc8: 01 33 add %esi,(%rbx) + 66342fca: 44 89 4a 34 mov %r9d,0x34(%rdx) + 66342fce: 8b 1b mov (%rbx),%ebx + 66342fd0: 4c 8b 48 68 mov 0x68(%rax),%r9 + 66342fd4: 85 db test %ebx,%ebx + 66342fd6: 41 0f 9f c2 setg %r10b + 66342fda: 45 3b 11 cmp (%r9),%r10d + 66342fdd: 74 10 je 66342fef + 66342fdf: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66342fe3: 4d 8b 49 68 mov 0x68(%r9),%r9 + 66342fe7: 45 8b 11 mov (%r9),%r10d + 66342fea: 45 85 d2 test %r10d,%r10d + 66342fed: 74 71 je 66343060 + 66342fef: 4c 8b 48 38 mov 0x38(%rax),%r9 + 66342ff3: 44 8b 52 38 mov 0x38(%rdx),%r10d + 66342ff7: 45 8b 09 mov (%r9),%r9d + 66342ffa: 45 39 d1 cmp %r10d,%r9d + 66342ffd: 74 54 je 66343053 + 66342fff: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66343003: 44 89 ce mov %r9d,%esi + 66343006: 44 29 d6 sub %r10d,%esi + 66343009: 48 8b 40 70 mov 0x70(%rax),%rax + 6634300d: 48 8b 5b 70 mov 0x70(%rbx),%rbx + 66343011: 01 33 add %esi,(%rbx) + 66343013: 44 89 4a 38 mov %r9d,0x38(%rdx) + 66343017: 31 d2 xor %edx,%edx + 66343019: 44 8b 0b mov (%rbx),%r9d + 6634301c: 45 85 c9 test %r9d,%r9d + 6634301f: 0f 9f c2 setg %dl + 66343022: 3b 10 cmp (%rax),%edx + 66343024: 74 2d je 66343053 + 66343026: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634302a: 48 8b 40 70 mov 0x70(%rax),%rax + 6634302e: 8b 00 mov (%rax),%eax + 66343030: 85 c0 test %eax,%eax + 66343032: 75 1f jne 66343053 + 66343034: 48 8b 41 28 mov 0x28(%rcx),%rax + 66343038: 48 8b 50 70 mov 0x70(%rax),%rdx + 6634303c: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343040: c7 00 01 00 00 00 movl $0x1,(%rax) + 66343046: 49 63 00 movslq (%r8),%rax + 66343049: 8d 48 01 lea 0x1(%rax),%ecx + 6634304c: 41 89 08 mov %ecx,(%r8) + 6634304f: 49 89 14 c3 mov %rdx,(%r11,%rax,8) + 66343053: 5b pop %rbx + 66343054: 5e pop %rsi + 66343055: c3 retq + 66343056: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634305d: 00 00 00 + 66343060: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66343064: 4d 8b 51 68 mov 0x68(%r9),%r10 + 66343068: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634306c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66343073: 4d 63 08 movslq (%r8),%r9 + 66343076: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634307a: 41 89 18 mov %ebx,(%r8) + 6634307d: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66343081: e9 69 ff ff ff jmpq 66342fef + 66343086: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634308d: 00 00 00 + 66343090: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66343094: 4d 8b 51 60 mov 0x60(%r9),%r10 + 66343098: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634309c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663430a3: 4d 63 08 movslq (%r8),%r9 + 663430a6: 41 8d 59 01 lea 0x1(%r9),%ebx + 663430aa: 41 89 18 mov %ebx,(%r8) + 663430ad: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 663430b1: e9 f1 fe ff ff jmpq 66342fa7 + 663430b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663430bd: 00 00 00 + 663430c0: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663430c4: 4d 8b 51 58 mov 0x58(%r9),%r10 + 663430c8: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663430cc: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663430d3: 4d 63 08 movslq (%r8),%r9 + 663430d6: 41 8d 59 01 lea 0x1(%r9),%ebx + 663430da: 41 89 18 mov %ebx,(%r8) + 663430dd: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 663430e1: e9 74 fe ff ff jmpq 66342f5a + 663430e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663430ed: 00 00 00 + 663430f0: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663430f4: 4d 8b 51 50 mov 0x50(%r9),%r10 + 663430f8: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663430fc: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66343103: 4d 63 08 movslq (%r8),%r9 + 66343106: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634310a: 41 89 18 mov %ebx,(%r8) + 6634310d: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66343111: e9 f8 fd ff ff jmpq 66342f0e + 66343116: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634311d: 00 00 00 + 66343120: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66343124: 4d 8b 51 48 mov 0x48(%r9),%r10 + 66343128: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634312c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66343133: 4d 63 08 movslq (%r8),%r9 + 66343136: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634313a: 41 89 18 mov %ebx,(%r8) + 6634313d: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66343141: e9 7b fd ff ff jmpq 66342ec1 + 66343146: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634314d: 00 00 00 + 66343150: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66343154: 4d 8b 51 40 mov 0x40(%r9),%r10 + 66343158: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634315c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66343163: 4d 63 08 movslq (%r8),%r9 + 66343166: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634316a: 41 89 18 mov %ebx,(%r8) + 6634316d: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66343171: e9 ff fc ff ff jmpq 66342e75 + 66343176: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634317d: 00 00 00 + +0000000066343180 : + 66343180: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66343184: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66343188: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634318c: 8b 00 mov (%rax),%eax + 6634318e: 41 33 00 xor (%r8),%eax + 66343191: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66343195: 41 33 00 xor (%r8),%eax + 66343198: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 6634319c: 41 3b 00 cmp (%r8),%eax + 6634319f: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663431a3: 0f 94 c0 sete %al + 663431a6: 45 8b 48 14 mov 0x14(%r8),%r9d + 663431aa: 0f b6 c0 movzbl %al,%eax + 663431ad: 44 39 c8 cmp %r9d,%eax + 663431b0: 74 67 je 66343219 + 663431b2: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663431b6: 41 89 c3 mov %eax,%r11d + 663431b9: 45 29 cb sub %r9d,%r11d + 663431bc: 4d 8b 52 28 mov 0x28(%r10),%r10 + 663431c0: 45 01 1a add %r11d,(%r10) + 663431c3: 41 89 40 14 mov %eax,0x14(%r8) + 663431c7: 45 31 c0 xor %r8d,%r8d + 663431ca: 45 8b 0a mov (%r10),%r9d + 663431cd: 48 8b 42 28 mov 0x28(%rdx),%rax + 663431d1: 45 85 c9 test %r9d,%r9d + 663431d4: 41 0f 9f c0 setg %r8b + 663431d8: 44 3b 00 cmp (%rax),%r8d + 663431db: 74 3c je 66343219 + 663431dd: 48 8b 41 20 mov 0x20(%rcx),%rax + 663431e1: 48 8b 40 28 mov 0x28(%rax),%rax + 663431e5: 8b 00 mov (%rax),%eax + 663431e7: 85 c0 test %eax,%eax + 663431e9: 75 2e jne 66343219 + 663431eb: 48 8b 41 28 mov 0x28(%rcx),%rax + 663431ef: 48 8b 0d 3a 37 01 00 mov 0x1373a(%rip),%rcx # 66356930 + 663431f6: 4c 8b 05 23 37 01 00 mov 0x13723(%rip),%r8 # 66356920 + 663431fd: 48 8b 50 28 mov 0x28(%rax),%rdx + 66343201: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343205: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634320b: 48 63 01 movslq (%rcx),%rax + 6634320e: 44 8d 48 01 lea 0x1(%rax),%r9d + 66343212: 44 89 09 mov %r9d,(%rcx) + 66343215: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66343219: c3 retq + 6634321a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + +0000000066343220 : + 66343220: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66343224: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66343228: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634322c: 8b 00 mov (%rax),%eax + 6634322e: 41 33 00 xor (%r8),%eax + 66343231: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66343235: 41 33 00 xor (%r8),%eax + 66343238: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 6634323c: 41 33 00 xor (%r8),%eax + 6634323f: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66343243: 45 8b 48 14 mov 0x14(%r8),%r9d + 66343247: 44 39 c8 cmp %r9d,%eax + 6634324a: 74 67 je 663432b3 + 6634324c: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343250: 41 89 c3 mov %eax,%r11d + 66343253: 45 29 cb sub %r9d,%r11d + 66343256: 4d 8b 52 28 mov 0x28(%r10),%r10 + 6634325a: 45 01 1a add %r11d,(%r10) + 6634325d: 41 89 40 14 mov %eax,0x14(%r8) + 66343261: 45 31 c0 xor %r8d,%r8d + 66343264: 45 8b 0a mov (%r10),%r9d + 66343267: 48 8b 42 28 mov 0x28(%rdx),%rax + 6634326b: 45 85 c9 test %r9d,%r9d + 6634326e: 41 0f 9f c0 setg %r8b + 66343272: 44 3b 00 cmp (%rax),%r8d + 66343275: 74 3c je 663432b3 + 66343277: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634327b: 48 8b 40 28 mov 0x28(%rax),%rax + 6634327f: 8b 00 mov (%rax),%eax + 66343281: 85 c0 test %eax,%eax + 66343283: 75 2e jne 663432b3 + 66343285: 48 8b 41 28 mov 0x28(%rcx),%rax + 66343289: 48 8b 0d a0 36 01 00 mov 0x136a0(%rip),%rcx # 66356930 + 66343290: 4c 8b 05 89 36 01 00 mov 0x13689(%rip),%r8 # 66356920 + 66343297: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634329b: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634329f: c7 00 01 00 00 00 movl $0x1,(%rax) + 663432a5: 48 63 01 movslq (%rcx),%rax + 663432a8: 44 8d 48 01 lea 0x1(%rax),%r9d + 663432ac: 44 89 09 mov %r9d,(%rcx) + 663432af: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663432b3: c3 retq + 663432b4: 66 90 xchg %ax,%ax + 663432b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663432bd: 00 00 00 + +00000000663432c0 : + 663432c0: 56 push %rsi + 663432c1: 53 push %rbx + 663432c2: 48 8b 41 10 mov 0x10(%rcx),%rax + 663432c6: 48 8b 50 68 mov 0x68(%rax),%rdx + 663432ca: 8b 32 mov (%rdx),%esi + 663432cc: 85 f6 test %esi,%esi + 663432ce: 0f 84 85 02 00 00 je 66343559 + 663432d4: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663432d8: 4c 8b 48 08 mov 0x8(%rax),%r9 + 663432dc: 4c 8b 1d 3d 36 01 00 mov 0x1363d(%rip),%r11 # 66356920 + 663432e3: 4c 8b 05 46 36 01 00 mov 0x13646(%rip),%r8 # 66356930 + 663432ea: 44 8b 52 1c mov 0x1c(%rdx),%r10d + 663432ee: 45 8b 09 mov (%r9),%r9d + 663432f1: 45 39 d1 cmp %r10d,%r9d + 663432f4: 74 59 je 6634334f + 663432f6: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663432fa: 44 89 ce mov %r9d,%esi + 663432fd: 44 29 d6 sub %r10d,%esi + 66343300: 45 31 d2 xor %r10d,%r10d + 66343303: 48 8b 5b 38 mov 0x38(%rbx),%rbx + 66343307: 01 33 add %esi,(%rbx) + 66343309: 44 89 4a 1c mov %r9d,0x1c(%rdx) + 6634330d: 8b 1b mov (%rbx),%ebx + 6634330f: 4c 8b 48 38 mov 0x38(%rax),%r9 + 66343313: 85 db test %ebx,%ebx + 66343315: 41 0f 9f c2 setg %r10b + 66343319: 45 3b 11 cmp (%r9),%r10d + 6634331c: 74 31 je 6634334f + 6634331e: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66343322: 4d 8b 49 38 mov 0x38(%r9),%r9 + 66343326: 45 8b 11 mov (%r9),%r10d + 66343329: 45 85 d2 test %r10d,%r10d + 6634332c: 75 21 jne 6634334f + 6634332e: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66343332: 4d 8b 51 38 mov 0x38(%r9),%r10 + 66343336: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634333a: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66343341: 4d 63 08 movslq (%r8),%r9 + 66343344: 41 8d 59 01 lea 0x1(%r9),%ebx + 66343348: 41 89 18 mov %ebx,(%r8) + 6634334b: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 6634334f: 4c 8b 48 10 mov 0x10(%rax),%r9 + 66343353: 44 8b 52 20 mov 0x20(%rdx),%r10d + 66343357: 45 8b 09 mov (%r9),%r9d + 6634335a: 45 39 d1 cmp %r10d,%r9d + 6634335d: 74 5a je 663433b9 + 6634335f: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66343363: 44 89 ce mov %r9d,%esi + 66343366: 44 29 d6 sub %r10d,%esi + 66343369: 45 31 d2 xor %r10d,%r10d + 6634336c: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66343370: 01 33 add %esi,(%rbx) + 66343372: 44 89 4a 20 mov %r9d,0x20(%rdx) + 66343376: 44 8b 0b mov (%rbx),%r9d + 66343379: 45 85 c9 test %r9d,%r9d + 6634337c: 4c 8b 48 40 mov 0x40(%rax),%r9 + 66343380: 41 0f 9f c2 setg %r10b + 66343384: 45 3b 11 cmp (%r9),%r10d + 66343387: 74 30 je 663433b9 + 66343389: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 6634338d: 4d 8b 49 40 mov 0x40(%r9),%r9 + 66343391: 41 8b 31 mov (%r9),%esi + 66343394: 85 f6 test %esi,%esi + 66343396: 75 21 jne 663433b9 + 66343398: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 6634339c: 4d 8b 51 40 mov 0x40(%r9),%r10 + 663433a0: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663433a4: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663433ab: 4d 63 08 movslq (%r8),%r9 + 663433ae: 41 8d 59 01 lea 0x1(%r9),%ebx + 663433b2: 41 89 18 mov %ebx,(%r8) + 663433b5: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 663433b9: 4c 8b 48 18 mov 0x18(%rax),%r9 + 663433bd: 44 8b 52 24 mov 0x24(%rdx),%r10d + 663433c1: 45 8b 09 mov (%r9),%r9d + 663433c4: 45 39 d1 cmp %r10d,%r9d + 663433c7: 74 59 je 66343422 + 663433c9: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663433cd: 44 89 ce mov %r9d,%esi + 663433d0: 44 29 d6 sub %r10d,%esi + 663433d3: 45 31 d2 xor %r10d,%r10d + 663433d6: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 663433da: 01 33 add %esi,(%rbx) + 663433dc: 44 89 4a 24 mov %r9d,0x24(%rdx) + 663433e0: 8b 1b mov (%rbx),%ebx + 663433e2: 4c 8b 48 48 mov 0x48(%rax),%r9 + 663433e6: 85 db test %ebx,%ebx + 663433e8: 41 0f 9f c2 setg %r10b + 663433ec: 45 3b 11 cmp (%r9),%r10d + 663433ef: 74 31 je 66343422 + 663433f1: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663433f5: 4d 8b 49 48 mov 0x48(%r9),%r9 + 663433f9: 45 8b 11 mov (%r9),%r10d + 663433fc: 45 85 d2 test %r10d,%r10d + 663433ff: 75 21 jne 66343422 + 66343401: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 66343405: 4d 8b 51 48 mov 0x48(%r9),%r10 + 66343409: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634340d: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66343414: 4d 63 08 movslq (%r8),%r9 + 66343417: 41 8d 59 01 lea 0x1(%r9),%ebx + 6634341b: 41 89 18 mov %ebx,(%r8) + 6634341e: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 66343422: 4c 8b 48 20 mov 0x20(%rax),%r9 + 66343426: 44 8b 52 28 mov 0x28(%rdx),%r10d + 6634342a: 45 8b 09 mov (%r9),%r9d + 6634342d: 45 39 d1 cmp %r10d,%r9d + 66343430: 74 5a je 6634348c + 66343432: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66343436: 44 89 ce mov %r9d,%esi + 66343439: 44 29 d6 sub %r10d,%esi + 6634343c: 45 31 d2 xor %r10d,%r10d + 6634343f: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 66343443: 01 33 add %esi,(%rbx) + 66343445: 44 89 4a 28 mov %r9d,0x28(%rdx) + 66343449: 44 8b 0b mov (%rbx),%r9d + 6634344c: 45 85 c9 test %r9d,%r9d + 6634344f: 4c 8b 48 50 mov 0x50(%rax),%r9 + 66343453: 41 0f 9f c2 setg %r10b + 66343457: 45 3b 11 cmp (%r9),%r10d + 6634345a: 74 30 je 6634348c + 6634345c: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 66343460: 4d 8b 49 50 mov 0x50(%r9),%r9 + 66343464: 41 8b 31 mov (%r9),%esi + 66343467: 85 f6 test %esi,%esi + 66343469: 75 21 jne 6634348c + 6634346b: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 6634346f: 4d 8b 51 50 mov 0x50(%r9),%r10 + 66343473: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66343477: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634347e: 4d 63 08 movslq (%r8),%r9 + 66343481: 41 8d 59 01 lea 0x1(%r9),%ebx + 66343485: 41 89 18 mov %ebx,(%r8) + 66343488: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 6634348c: 4c 8b 48 28 mov 0x28(%rax),%r9 + 66343490: 44 8b 52 2c mov 0x2c(%rdx),%r10d + 66343494: 45 8b 09 mov (%r9),%r9d + 66343497: 45 39 d1 cmp %r10d,%r9d + 6634349a: 74 59 je 663434f5 + 6634349c: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663434a0: 44 89 ce mov %r9d,%esi + 663434a3: 44 29 d6 sub %r10d,%esi + 663434a6: 45 31 d2 xor %r10d,%r10d + 663434a9: 48 8b 5b 58 mov 0x58(%rbx),%rbx + 663434ad: 01 33 add %esi,(%rbx) + 663434af: 44 89 4a 2c mov %r9d,0x2c(%rdx) + 663434b3: 8b 1b mov (%rbx),%ebx + 663434b5: 4c 8b 48 58 mov 0x58(%rax),%r9 + 663434b9: 85 db test %ebx,%ebx + 663434bb: 41 0f 9f c2 setg %r10b + 663434bf: 45 3b 11 cmp (%r9),%r10d + 663434c2: 74 31 je 663434f5 + 663434c4: 4c 8b 49 20 mov 0x20(%rcx),%r9 + 663434c8: 4d 8b 49 58 mov 0x58(%r9),%r9 + 663434cc: 45 8b 11 mov (%r9),%r10d + 663434cf: 45 85 d2 test %r10d,%r10d + 663434d2: 75 21 jne 663434f5 + 663434d4: 4c 8b 49 28 mov 0x28(%rcx),%r9 + 663434d8: 4d 8b 51 58 mov 0x58(%r9),%r10 + 663434dc: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663434e0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663434e7: 4d 63 08 movslq (%r8),%r9 + 663434ea: 41 8d 59 01 lea 0x1(%r9),%ebx + 663434ee: 41 89 18 mov %ebx,(%r8) + 663434f1: 4f 89 14 cb mov %r10,(%r11,%r9,8) + 663434f5: 4c 8b 48 30 mov 0x30(%rax),%r9 + 663434f9: 44 8b 52 30 mov 0x30(%rdx),%r10d + 663434fd: 45 8b 09 mov (%r9),%r9d + 66343500: 45 39 d1 cmp %r10d,%r9d + 66343503: 74 54 je 66343559 + 66343505: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66343509: 44 89 ce mov %r9d,%esi + 6634350c: 44 29 d6 sub %r10d,%esi + 6634350f: 48 8b 40 60 mov 0x60(%rax),%rax + 66343513: 48 8b 5b 60 mov 0x60(%rbx),%rbx + 66343517: 01 33 add %esi,(%rbx) + 66343519: 44 89 4a 30 mov %r9d,0x30(%rdx) + 6634351d: 31 d2 xor %edx,%edx + 6634351f: 44 8b 0b mov (%rbx),%r9d + 66343522: 45 85 c9 test %r9d,%r9d + 66343525: 0f 9f c2 setg %dl + 66343528: 3b 10 cmp (%rax),%edx + 6634352a: 74 2d je 66343559 + 6634352c: 48 8b 41 20 mov 0x20(%rcx),%rax + 66343530: 48 8b 40 60 mov 0x60(%rax),%rax + 66343534: 8b 00 mov (%rax),%eax + 66343536: 85 c0 test %eax,%eax + 66343538: 75 1f jne 66343559 + 6634353a: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634353e: 48 8b 50 60 mov 0x60(%rax),%rdx + 66343542: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343546: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634354c: 49 63 00 movslq (%r8),%rax + 6634354f: 8d 48 01 lea 0x1(%rax),%ecx + 66343552: 41 89 08 mov %ecx,(%r8) + 66343555: 49 89 14 c3 mov %rdx,(%r11,%rax,8) + 66343559: 5b pop %rbx + 6634355a: 5e pop %rsi + 6634355b: c3 retq + 6634355c: 0f 1f 40 00 nopl 0x0(%rax) + +0000000066343560 : + 66343560: b8 01 00 00 00 mov $0x1,%eax + 66343565: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66343569: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 6634356d: 45 8b 00 mov (%r8),%r8d + 66343570: 45 85 c0 test %r8d,%r8d + 66343573: 74 0c je 66343581 + 66343575: 4c 8b 42 10 mov 0x10(%rdx),%r8 + 66343579: 45 8b 18 mov (%r8),%r11d + 6634357c: 45 85 db test %r11d,%r11d + 6634357f: 75 7f jne 66343600 + 66343581: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66343585: 45 8b 48 10 mov 0x10(%r8),%r9d + 66343589: 44 39 c8 cmp %r9d,%eax + 6634358c: 74 67 je 663435f5 + 6634358e: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343592: 41 89 c3 mov %eax,%r11d + 66343595: 45 29 cb sub %r9d,%r11d + 66343598: 4d 8b 52 20 mov 0x20(%r10),%r10 + 6634359c: 45 01 1a add %r11d,(%r10) + 6634359f: 41 89 40 10 mov %eax,0x10(%r8) + 663435a3: 45 31 c0 xor %r8d,%r8d + 663435a6: 45 8b 0a mov (%r10),%r9d + 663435a9: 48 8b 42 20 mov 0x20(%rdx),%rax + 663435ad: 45 85 c9 test %r9d,%r9d + 663435b0: 41 0f 9f c0 setg %r8b + 663435b4: 44 3b 00 cmp (%rax),%r8d + 663435b7: 74 3c je 663435f5 + 663435b9: 48 8b 41 20 mov 0x20(%rcx),%rax + 663435bd: 48 8b 40 20 mov 0x20(%rax),%rax + 663435c1: 8b 00 mov (%rax),%eax + 663435c3: 85 c0 test %eax,%eax + 663435c5: 75 2e jne 663435f5 + 663435c7: 48 8b 41 28 mov 0x28(%rcx),%rax + 663435cb: 48 8b 0d 5e 33 01 00 mov 0x1335e(%rip),%rcx # 66356930 + 663435d2: 4c 8b 05 47 33 01 00 mov 0x13347(%rip),%r8 # 66356920 + 663435d9: 48 8b 50 20 mov 0x20(%rax),%rdx + 663435dd: 48 8b 42 10 mov 0x10(%rdx),%rax + 663435e1: c7 00 01 00 00 00 movl $0x1,(%rax) + 663435e7: 48 63 01 movslq (%rcx),%rax + 663435ea: 44 8d 48 01 lea 0x1(%rax),%r9d + 663435ee: 44 89 09 mov %r9d,(%rcx) + 663435f1: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663435f5: c3 retq + 663435f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663435fd: 00 00 00 + 66343600: 48 8b 42 18 mov 0x18(%rdx),%rax + 66343604: 44 8b 10 mov (%rax),%r10d + 66343607: 31 c0 xor %eax,%eax + 66343609: 45 85 d2 test %r10d,%r10d + 6634360c: 0f 94 c0 sete %al + 6634360f: e9 6d ff ff ff jmpq 66343581 + 66343614: 66 90 xchg %ax,%ax + 66343616: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634361d: 00 00 00 + +0000000066343620 : + 66343620: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66343624: 48 8b 42 08 mov 0x8(%rdx),%rax + 66343628: 8b 00 mov (%rax),%eax + 6634362a: 85 c0 test %eax,%eax + 6634362c: 74 0a je 66343638 + 6634362e: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343632: 8b 00 mov (%rax),%eax + 66343634: 85 c0 test %eax,%eax + 66343636: 75 78 jne 663436b0 + 66343638: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634363c: 45 8b 48 10 mov 0x10(%r8),%r9d + 66343640: 44 39 c8 cmp %r9d,%eax + 66343643: 74 67 je 663436ac + 66343645: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343649: 41 89 c3 mov %eax,%r11d + 6634364c: 45 29 cb sub %r9d,%r11d + 6634364f: 4d 8b 52 20 mov 0x20(%r10),%r10 + 66343653: 45 01 1a add %r11d,(%r10) + 66343656: 41 89 40 10 mov %eax,0x10(%r8) + 6634365a: 45 31 c0 xor %r8d,%r8d + 6634365d: 45 8b 0a mov (%r10),%r9d + 66343660: 48 8b 42 20 mov 0x20(%rdx),%rax + 66343664: 45 85 c9 test %r9d,%r9d + 66343667: 41 0f 9f c0 setg %r8b + 6634366b: 44 3b 00 cmp (%rax),%r8d + 6634366e: 74 3c je 663436ac + 66343670: 48 8b 41 20 mov 0x20(%rcx),%rax + 66343674: 48 8b 40 20 mov 0x20(%rax),%rax + 66343678: 8b 00 mov (%rax),%eax + 6634367a: 85 c0 test %eax,%eax + 6634367c: 75 2e jne 663436ac + 6634367e: 48 8b 41 28 mov 0x28(%rcx),%rax + 66343682: 48 8b 0d a7 32 01 00 mov 0x132a7(%rip),%rcx # 66356930 + 66343689: 4c 8b 05 90 32 01 00 mov 0x13290(%rip),%r8 # 66356920 + 66343690: 48 8b 50 20 mov 0x20(%rax),%rdx + 66343694: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343698: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634369e: 48 63 01 movslq (%rcx),%rax + 663436a1: 44 8d 48 01 lea 0x1(%rax),%r9d + 663436a5: 44 89 09 mov %r9d,(%rcx) + 663436a8: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663436ac: c3 retq + 663436ad: 0f 1f 00 nopl (%rax) + 663436b0: 48 8b 42 18 mov 0x18(%rdx),%rax + 663436b4: 44 8b 10 mov (%rax),%r10d + 663436b7: 31 c0 xor %eax,%eax + 663436b9: 45 85 d2 test %r10d,%r10d + 663436bc: 0f 95 c0 setne %al + 663436bf: e9 74 ff ff ff jmpq 66343638 + 663436c4: 66 90 xchg %ax,%ax + 663436c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663436cd: 00 00 00 + +00000000663436d0 : + 663436d0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663436d4: 48 8b 42 08 mov 0x8(%rdx),%rax + 663436d8: 8b 00 mov (%rax),%eax + 663436da: 85 c0 test %eax,%eax + 663436dc: 0f 85 8e 00 00 00 jne 66343770 + 663436e2: 4c 8b 42 10 mov 0x10(%rdx),%r8 + 663436e6: 45 8b 18 mov (%r8),%r11d + 663436e9: 45 85 db test %r11d,%r11d + 663436ec: 0f 84 8e 00 00 00 je 66343780 + 663436f2: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663436f6: 45 8b 48 10 mov 0x10(%r8),%r9d + 663436fa: 44 39 c8 cmp %r9d,%eax + 663436fd: 74 67 je 66343766 + 663436ff: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343703: 41 89 c3 mov %eax,%r11d + 66343706: 45 29 cb sub %r9d,%r11d + 66343709: 4d 8b 52 20 mov 0x20(%r10),%r10 + 6634370d: 45 01 1a add %r11d,(%r10) + 66343710: 41 89 40 10 mov %eax,0x10(%r8) + 66343714: 45 31 c0 xor %r8d,%r8d + 66343717: 45 8b 0a mov (%r10),%r9d + 6634371a: 48 8b 42 20 mov 0x20(%rdx),%rax + 6634371e: 45 85 c9 test %r9d,%r9d + 66343721: 41 0f 9f c0 setg %r8b + 66343725: 44 3b 00 cmp (%rax),%r8d + 66343728: 74 3c je 66343766 + 6634372a: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634372e: 48 8b 40 20 mov 0x20(%rax),%rax + 66343732: 8b 00 mov (%rax),%eax + 66343734: 85 c0 test %eax,%eax + 66343736: 75 2e jne 66343766 + 66343738: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634373c: 48 8b 0d ed 31 01 00 mov 0x131ed(%rip),%rcx # 66356930 + 66343743: 4c 8b 05 d6 31 01 00 mov 0x131d6(%rip),%r8 # 66356920 + 6634374a: 48 8b 50 20 mov 0x20(%rax),%rdx + 6634374e: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343752: c7 00 01 00 00 00 movl $0x1,(%rax) + 66343758: 48 63 01 movslq (%rcx),%rax + 6634375b: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634375f: 44 89 09 mov %r9d,(%rcx) + 66343762: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66343766: c3 retq + 66343767: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634376e: 00 00 + 66343770: 31 c0 xor %eax,%eax + 66343772: e9 7b ff ff ff jmpq 663436f2 + 66343777: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634377e: 00 00 + 66343780: 48 8b 42 18 mov 0x18(%rdx),%rax + 66343784: 44 8b 10 mov (%rax),%r10d + 66343787: 31 c0 xor %eax,%eax + 66343789: 45 85 d2 test %r10d,%r10d + 6634378c: 0f 94 c0 sete %al + 6634378f: e9 5e ff ff ff jmpq 663436f2 + 66343794: 66 90 xchg %ax,%ax + 66343796: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634379d: 00 00 00 + +00000000663437a0 : + 663437a0: b8 01 00 00 00 mov $0x1,%eax + 663437a5: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663437a9: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 663437ad: 45 8b 00 mov (%r8),%r8d + 663437b0: 45 85 c0 test %r8d,%r8d + 663437b3: 75 0c jne 663437c1 + 663437b5: 4c 8b 42 10 mov 0x10(%rdx),%r8 + 663437b9: 45 8b 18 mov (%r8),%r11d + 663437bc: 45 85 db test %r11d,%r11d + 663437bf: 74 7f je 66343840 + 663437c1: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663437c5: 45 8b 48 10 mov 0x10(%r8),%r9d + 663437c9: 44 39 c8 cmp %r9d,%eax + 663437cc: 74 67 je 66343835 + 663437ce: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663437d2: 41 89 c3 mov %eax,%r11d + 663437d5: 45 29 cb sub %r9d,%r11d + 663437d8: 4d 8b 52 20 mov 0x20(%r10),%r10 + 663437dc: 45 01 1a add %r11d,(%r10) + 663437df: 41 89 40 10 mov %eax,0x10(%r8) + 663437e3: 45 31 c0 xor %r8d,%r8d + 663437e6: 45 8b 0a mov (%r10),%r9d + 663437e9: 48 8b 42 20 mov 0x20(%rdx),%rax + 663437ed: 45 85 c9 test %r9d,%r9d + 663437f0: 41 0f 9f c0 setg %r8b + 663437f4: 44 3b 00 cmp (%rax),%r8d + 663437f7: 74 3c je 66343835 + 663437f9: 48 8b 41 20 mov 0x20(%rcx),%rax + 663437fd: 48 8b 40 20 mov 0x20(%rax),%rax + 66343801: 8b 00 mov (%rax),%eax + 66343803: 85 c0 test %eax,%eax + 66343805: 75 2e jne 66343835 + 66343807: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634380b: 48 8b 0d 1e 31 01 00 mov 0x1311e(%rip),%rcx # 66356930 + 66343812: 4c 8b 05 07 31 01 00 mov 0x13107(%rip),%r8 # 66356920 + 66343819: 48 8b 50 20 mov 0x20(%rax),%rdx + 6634381d: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343821: c7 00 01 00 00 00 movl $0x1,(%rax) + 66343827: 48 63 01 movslq (%rcx),%rax + 6634382a: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634382e: 44 89 09 mov %r9d,(%rcx) + 66343831: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66343835: c3 retq + 66343836: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634383d: 00 00 00 + 66343840: 48 8b 42 18 mov 0x18(%rdx),%rax + 66343844: 44 8b 10 mov (%rax),%r10d + 66343847: 31 c0 xor %eax,%eax + 66343849: 45 85 d2 test %r10d,%r10d + 6634384c: 0f 95 c0 setne %al + 6634384f: e9 6d ff ff ff jmpq 663437c1 + 66343854: 66 90 xchg %ax,%ax + 66343856: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634385d: 00 00 00 + +0000000066343860 : + 66343860: 56 push %rsi + 66343861: 53 push %rbx + 66343862: 48 8b 41 10 mov 0x10(%rcx),%rax + 66343866: 48 8b 50 58 mov 0x58(%rax),%rdx + 6634386a: 44 8b 0a mov (%rdx),%r9d + 6634386d: 45 85 c9 test %r9d,%r9d + 66343870: 0f 84 a4 01 00 00 je 66343a1a + 66343876: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634387a: 4c 8b 40 08 mov 0x8(%rax),%r8 + 6634387e: 4c 8b 1d 9b 30 01 00 mov 0x1309b(%rip),%r11 # 66356920 + 66343885: 4c 8b 0d a4 30 01 00 mov 0x130a4(%rip),%r9 # 66356930 + 6634388c: 44 8b 52 18 mov 0x18(%rdx),%r10d + 66343890: 45 8b 00 mov (%r8),%r8d + 66343893: 45 39 d0 cmp %r10d,%r8d + 66343896: 74 3d je 663438d5 + 66343898: 48 8b 59 18 mov 0x18(%rcx),%rbx + 6634389c: 44 89 c6 mov %r8d,%esi + 6634389f: 44 29 d6 sub %r10d,%esi + 663438a2: 45 31 d2 xor %r10d,%r10d + 663438a5: 48 8b 5b 30 mov 0x30(%rbx),%rbx + 663438a9: 01 33 add %esi,(%rbx) + 663438ab: 44 89 42 18 mov %r8d,0x18(%rdx) + 663438af: 44 8b 03 mov (%rbx),%r8d + 663438b2: 45 85 c0 test %r8d,%r8d + 663438b5: 4c 8b 40 30 mov 0x30(%rax),%r8 + 663438b9: 41 0f 9f c2 setg %r10b + 663438bd: 45 3b 10 cmp (%r8),%r10d + 663438c0: 74 13 je 663438d5 + 663438c2: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663438c6: 4d 8b 40 30 mov 0x30(%r8),%r8 + 663438ca: 41 8b 30 mov (%r8),%esi + 663438cd: 85 f6 test %esi,%esi + 663438cf: 0f 84 db 01 00 00 je 66343ab0 + 663438d5: 4c 8b 40 10 mov 0x10(%rax),%r8 + 663438d9: 44 8b 52 1c mov 0x1c(%rdx),%r10d + 663438dd: 45 8b 00 mov (%r8),%r8d + 663438e0: 45 39 d0 cmp %r10d,%r8d + 663438e3: 74 3c je 66343921 + 663438e5: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663438e9: 44 89 c6 mov %r8d,%esi + 663438ec: 44 29 d6 sub %r10d,%esi + 663438ef: 45 31 d2 xor %r10d,%r10d + 663438f2: 48 8b 5b 38 mov 0x38(%rbx),%rbx + 663438f6: 01 33 add %esi,(%rbx) + 663438f8: 44 89 42 1c mov %r8d,0x1c(%rdx) + 663438fc: 8b 1b mov (%rbx),%ebx + 663438fe: 4c 8b 40 38 mov 0x38(%rax),%r8 + 66343902: 85 db test %ebx,%ebx + 66343904: 41 0f 9f c2 setg %r10b + 66343908: 45 3b 10 cmp (%r8),%r10d + 6634390b: 74 14 je 66343921 + 6634390d: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343911: 4d 8b 40 38 mov 0x38(%r8),%r8 + 66343915: 45 8b 10 mov (%r8),%r10d + 66343918: 45 85 d2 test %r10d,%r10d + 6634391b: 0f 84 5f 01 00 00 je 66343a80 + 66343921: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66343925: 44 8b 52 20 mov 0x20(%rdx),%r10d + 66343929: 45 8b 00 mov (%r8),%r8d + 6634392c: 45 39 d0 cmp %r10d,%r8d + 6634392f: 74 3d je 6634396e + 66343931: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66343935: 44 89 c6 mov %r8d,%esi + 66343938: 44 29 d6 sub %r10d,%esi + 6634393b: 45 31 d2 xor %r10d,%r10d + 6634393e: 48 8b 5b 40 mov 0x40(%rbx),%rbx + 66343942: 01 33 add %esi,(%rbx) + 66343944: 44 89 42 20 mov %r8d,0x20(%rdx) + 66343948: 44 8b 03 mov (%rbx),%r8d + 6634394b: 45 85 c0 test %r8d,%r8d + 6634394e: 4c 8b 40 40 mov 0x40(%rax),%r8 + 66343952: 41 0f 9f c2 setg %r10b + 66343956: 45 3b 10 cmp (%r8),%r10d + 66343959: 74 13 je 6634396e + 6634395b: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634395f: 4d 8b 40 40 mov 0x40(%r8),%r8 + 66343963: 41 8b 30 mov (%r8),%esi + 66343966: 85 f6 test %esi,%esi + 66343968: 0f 84 e2 00 00 00 je 66343a50 + 6634396e: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66343972: 44 8b 52 24 mov 0x24(%rdx),%r10d + 66343976: 45 8b 00 mov (%r8),%r8d + 66343979: 45 39 d0 cmp %r10d,%r8d + 6634397c: 74 38 je 663439b6 + 6634397e: 48 8b 59 18 mov 0x18(%rcx),%rbx + 66343982: 44 89 c6 mov %r8d,%esi + 66343985: 44 29 d6 sub %r10d,%esi + 66343988: 45 31 d2 xor %r10d,%r10d + 6634398b: 48 8b 5b 48 mov 0x48(%rbx),%rbx + 6634398f: 01 33 add %esi,(%rbx) + 66343991: 44 89 42 24 mov %r8d,0x24(%rdx) + 66343995: 8b 1b mov (%rbx),%ebx + 66343997: 4c 8b 40 48 mov 0x48(%rax),%r8 + 6634399b: 85 db test %ebx,%ebx + 6634399d: 41 0f 9f c2 setg %r10b + 663439a1: 45 3b 10 cmp (%r8),%r10d + 663439a4: 74 10 je 663439b6 + 663439a6: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663439aa: 4d 8b 40 48 mov 0x48(%r8),%r8 + 663439ae: 45 8b 10 mov (%r8),%r10d + 663439b1: 45 85 d2 test %r10d,%r10d + 663439b4: 74 6a je 66343a20 + 663439b6: 4c 8b 40 28 mov 0x28(%rax),%r8 + 663439ba: 44 8b 52 28 mov 0x28(%rdx),%r10d + 663439be: 45 8b 00 mov (%r8),%r8d + 663439c1: 45 39 d0 cmp %r10d,%r8d + 663439c4: 74 54 je 66343a1a + 663439c6: 48 8b 59 18 mov 0x18(%rcx),%rbx + 663439ca: 44 89 c6 mov %r8d,%esi + 663439cd: 44 29 d6 sub %r10d,%esi + 663439d0: 48 8b 40 50 mov 0x50(%rax),%rax + 663439d4: 48 8b 5b 50 mov 0x50(%rbx),%rbx + 663439d8: 01 33 add %esi,(%rbx) + 663439da: 44 89 42 28 mov %r8d,0x28(%rdx) + 663439de: 31 d2 xor %edx,%edx + 663439e0: 44 8b 03 mov (%rbx),%r8d 663439e3: 45 85 c0 test %r8d,%r8d - 663439e6: 74 59 je 66343a41 - 663439e8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663439ec: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 663439f0: 45 29 01 sub %r8d,(%r9) - 663439f3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663439f9: 45 8b 09 mov (%r9),%r9d - 663439fc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343a00: 45 85 c9 test %r9d,%r9d - 66343a03: 41 0f 9f c1 setg %r9b - 66343a07: 45 0f b6 c9 movzbl %r9b,%r9d - 66343a0b: 45 3b 08 cmp (%r8),%r9d - 66343a0e: 74 31 je 66343a41 - 66343a10: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343a14: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343a18: 45 8b 00 mov (%r8),%r8d - 66343a1b: 45 85 c0 test %r8d,%r8d - 66343a1e: 75 21 jne 66343a41 + 663439e6: 0f 9f c2 setg %dl + 663439e9: 3b 10 cmp (%rax),%edx + 663439eb: 74 2d je 66343a1a + 663439ed: 48 8b 41 20 mov 0x20(%rcx),%rax + 663439f1: 48 8b 40 50 mov 0x50(%rax),%rax + 663439f5: 8b 00 mov (%rax),%eax + 663439f7: 85 c0 test %eax,%eax + 663439f9: 75 1f jne 66343a1a + 663439fb: 48 8b 41 28 mov 0x28(%rcx),%rax + 663439ff: 48 8b 50 50 mov 0x50(%rax),%rdx + 66343a03: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343a07: c7 00 01 00 00 00 movl $0x1,(%rax) + 66343a0d: 49 63 01 movslq (%r9),%rax + 66343a10: 8d 48 01 lea 0x1(%rax),%ecx + 66343a13: 41 89 09 mov %ecx,(%r9) + 66343a16: 49 89 14 c3 mov %rdx,(%r11,%rax,8) + 66343a1a: 5b pop %rbx + 66343a1b: 5e pop %rsi + 66343a1c: c3 retq + 66343a1d: 0f 1f 00 nopl (%rax) 66343a20: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343a24: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343a28: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66343a24: 4d 8b 50 48 mov 0x48(%r8),%r10 + 66343a28: 4d 8b 42 10 mov 0x10(%r10),%r8 66343a2c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343a33: 4c 63 06 movslq (%rsi),%r8 - 66343a36: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343a3a: 44 89 16 mov %r10d,(%rsi) - 66343a3d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343a41: 48 83 c0 08 add $0x8,%rax - 66343a45: 48 83 c2 04 add $0x4,%rdx - 66343a49: 48 3d 08 04 00 00 cmp $0x408,%rax - 66343a4f: 75 8f jne 663439e0 - 66343a51: 5b pop %rbx - 66343a52: 5e pop %rsi - 66343a53: 5f pop %rdi - 66343a54: 41 5e pop %r14 - 66343a56: c3 retq - 66343a57: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343a5e: 00 00 + 66343a33: 4d 63 01 movslq (%r9),%r8 + 66343a36: 41 8d 58 01 lea 0x1(%r8),%ebx + 66343a3a: 41 89 19 mov %ebx,(%r9) + 66343a3d: 4f 89 14 c3 mov %r10,(%r11,%r8,8) + 66343a41: e9 70 ff ff ff jmpq 663439b6 + 66343a46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66343a4d: 00 00 00 + 66343a50: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343a54: 4d 8b 50 40 mov 0x40(%r8),%r10 + 66343a58: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66343a5c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343a63: 4d 63 01 movslq (%r9),%r8 + 66343a66: 41 8d 58 01 lea 0x1(%r8),%ebx + 66343a6a: 41 89 19 mov %ebx,(%r9) + 66343a6d: 4f 89 14 c3 mov %r10,(%r11,%r8,8) + 66343a71: e9 f8 fe ff ff jmpq 6634396e + 66343a76: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66343a7d: 00 00 00 + 66343a80: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343a84: 4d 8b 50 38 mov 0x38(%r8),%r10 + 66343a88: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66343a8c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343a93: 4d 63 01 movslq (%r9),%r8 + 66343a96: 41 8d 58 01 lea 0x1(%r8),%ebx + 66343a9a: 41 89 19 mov %ebx,(%r9) + 66343a9d: 4f 89 14 c3 mov %r10,(%r11,%r8,8) + 66343aa1: e9 7b fe ff ff jmpq 66343921 + 66343aa6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66343aad: 00 00 00 + 66343ab0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343ab4: 4d 8b 50 30 mov 0x30(%r8),%r10 + 66343ab8: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66343abc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343ac3: 4d 63 01 movslq (%r9),%r8 + 66343ac6: 41 8d 58 01 lea 0x1(%r8),%ebx + 66343aca: 41 89 19 mov %ebx,(%r9) + 66343acd: 4f 89 14 c3 mov %r10,(%r11,%r8,8) + 66343ad1: e9 ff fd ff ff jmpq 663438d5 + 66343ad6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66343add: 00 00 00 -0000000066343a60 : - 66343a60: 41 56 push %r14 - 66343a62: 57 push %rdi - 66343a63: 56 push %rsi - 66343a64: 53 push %rbx - 66343a65: 48 8b 3d b4 3e 01 00 mov 0x13eb4(%rip),%rdi # 66357920 - 66343a6c: 48 8b 35 bd 3e 01 00 mov 0x13ebd(%rip),%rsi # 66357930 - 66343a73: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343a77: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66343a7b: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax - 66343a82: 8b 00 mov (%rax),%eax - 66343a84: 85 c0 test %eax,%eax - 66343a86: 0f 84 a4 00 00 00 je 66343b30 - 66343a8c: 31 c0 xor %eax,%eax - 66343a8e: 66 90 xchg %ax,%ax - 66343a90: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343a95: 44 8b 8c 02 c4 00 00 mov 0xc4(%rdx,%rax,1),%r9d - 66343a9c: 00 - 66343a9d: 45 8b 00 mov (%r8),%r8d - 66343aa0: 45 39 c8 cmp %r9d,%r8d - 66343aa3: 74 74 je 66343b19 - 66343aa5: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343aa9: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66343aad: 45 89 c6 mov %r8d,%r14d - 66343ab0: 45 29 ce sub %r9d,%r14d - 66343ab3: 45 31 c9 xor %r9d,%r9d - 66343ab6: 4d 8b 94 1a 88 01 00 mov 0x188(%r10,%rbx,1),%r10 - 66343abd: 00 - 66343abe: 45 01 32 add %r14d,(%r10) - 66343ac1: 44 89 84 02 c4 00 00 mov %r8d,0xc4(%rdx,%rax,1) - 66343ac8: 00 - 66343ac9: 45 8b 32 mov (%r10),%r14d - 66343acc: 4d 8b 84 43 88 01 00 mov 0x188(%r11,%rax,2),%r8 - 66343ad3: 00 - 66343ad4: 45 85 f6 test %r14d,%r14d - 66343ad7: 41 0f 9f c1 setg %r9b - 66343adb: 45 3b 08 cmp (%r8),%r9d - 66343ade: 74 39 je 66343b19 - 66343ae0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343ae4: 4d 8b 84 18 88 01 00 mov 0x188(%r8,%rbx,1),%r8 - 66343aeb: 00 - 66343aec: 45 8b 10 mov (%r8),%r10d - 66343aef: 45 85 d2 test %r10d,%r10d - 66343af2: 75 25 jne 66343b19 - 66343af4: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343af8: 4d 8b 8c 18 88 01 00 mov 0x188(%r8,%rbx,1),%r9 - 66343aff: 00 - 66343b00: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343b04: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343b0b: 4c 63 06 movslq (%rsi),%r8 - 66343b0e: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343b12: 44 89 16 mov %r10d,(%rsi) - 66343b15: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343b19: 48 83 c0 04 add $0x4,%rax - 66343b1d: 48 3d c0 00 00 00 cmp $0xc0,%rax - 66343b23: 0f 85 67 ff ff ff jne 66343a90 - 66343b29: 5b pop %rbx - 66343b2a: 5e pop %rsi - 66343b2b: 5f pop %rdi - 66343b2c: 41 5e pop %r14 - 66343b2e: c3 retq - 66343b2f: 90 nop - 66343b30: 48 81 c2 c4 00 00 00 add $0xc4,%rdx - 66343b37: b8 88 01 00 00 mov $0x188,%eax - 66343b3c: 0f 1f 40 00 nopl 0x0(%rax) - 66343b40: 44 8b 02 mov (%rdx),%r8d - 66343b43: 45 85 c0 test %r8d,%r8d - 66343b46: 74 59 je 66343ba1 - 66343b48: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66343b4c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343b50: 45 29 01 sub %r8d,(%r9) - 66343b53: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343b59: 45 8b 09 mov (%r9),%r9d - 66343b5c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343b60: 45 85 c9 test %r9d,%r9d - 66343b63: 41 0f 9f c1 setg %r9b - 66343b67: 45 0f b6 c9 movzbl %r9b,%r9d - 66343b6b: 45 3b 08 cmp (%r8),%r9d - 66343b6e: 74 31 je 66343ba1 - 66343b70: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343b74: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343b78: 45 8b 00 mov (%r8),%r8d - 66343b7b: 45 85 c0 test %r8d,%r8d - 66343b7e: 75 21 jne 66343ba1 - 66343b80: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343b84: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343b88: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343b8c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343b93: 4c 63 06 movslq (%rsi),%r8 - 66343b96: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343b9a: 44 89 16 mov %r10d,(%rsi) - 66343b9d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343ba1: 48 83 c0 08 add $0x8,%rax - 66343ba5: 48 83 c2 04 add $0x4,%rdx - 66343ba9: 48 3d 08 03 00 00 cmp $0x308,%rax - 66343baf: 75 8f jne 66343b40 - 66343bb1: 5b pop %rbx - 66343bb2: 5e pop %rsi - 66343bb3: 5f pop %rdi - 66343bb4: 41 5e pop %r14 - 66343bb6: c3 retq - 66343bb7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343bbe: 00 00 +0000000066343ae0 : + 66343ae0: 56 push %rsi + 66343ae1: 53 push %rbx + 66343ae2: 48 8b 41 10 mov 0x10(%rcx),%rax + 66343ae6: 48 8b 50 48 mov 0x48(%rax),%rdx + 66343aea: 8b 1a mov (%rdx),%ebx + 66343aec: 85 db test %ebx,%ebx + 66343aee: 0f 84 ba 01 00 00 je 66343cae + 66343af4: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66343af8: 4c 8b 40 08 mov 0x8(%rax),%r8 + 66343afc: 48 8b 1d 1d 2e 01 00 mov 0x12e1d(%rip),%rbx # 66356920 + 66343b03: 4c 8b 0d 26 2e 01 00 mov 0x12e26(%rip),%r9 # 66356930 + 66343b0a: 44 8b 52 14 mov 0x14(%rdx),%r10d + 66343b0e: 45 8b 00 mov (%r8),%r8d + 66343b11: 45 39 d0 cmp %r10d,%r8d + 66343b14: 74 5c je 66343b72 + 66343b16: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66343b1a: 44 89 c6 mov %r8d,%esi + 66343b1d: 44 29 d6 sub %r10d,%esi + 66343b20: 45 31 d2 xor %r10d,%r10d + 66343b23: 4d 8b 5b 28 mov 0x28(%r11),%r11 + 66343b27: 41 01 33 add %esi,(%r11) + 66343b2a: 44 89 42 14 mov %r8d,0x14(%rdx) + 66343b2e: 45 8b 1b mov (%r11),%r11d + 66343b31: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66343b35: 45 85 db test %r11d,%r11d + 66343b38: 41 0f 9f c2 setg %r10b + 66343b3c: 45 3b 10 cmp (%r8),%r10d + 66343b3f: 74 31 je 66343b72 + 66343b41: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343b45: 4d 8b 40 28 mov 0x28(%r8),%r8 + 66343b49: 45 8b 10 mov (%r8),%r10d + 66343b4c: 45 85 d2 test %r10d,%r10d + 66343b4f: 75 21 jne 66343b72 + 66343b51: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343b55: 4d 8b 50 28 mov 0x28(%r8),%r10 + 66343b59: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66343b5d: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343b64: 4d 63 01 movslq (%r9),%r8 + 66343b67: 45 8d 58 01 lea 0x1(%r8),%r11d + 66343b6b: 45 89 19 mov %r11d,(%r9) + 66343b6e: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) + 66343b72: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66343b76: 44 8b 52 18 mov 0x18(%rdx),%r10d + 66343b7a: 45 8b 00 mov (%r8),%r8d + 66343b7d: 45 39 d0 cmp %r10d,%r8d + 66343b80: 74 5b je 66343bdd + 66343b82: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66343b86: 44 89 c6 mov %r8d,%esi + 66343b89: 44 29 d6 sub %r10d,%esi + 66343b8c: 45 31 d2 xor %r10d,%r10d + 66343b8f: 4d 8b 5b 30 mov 0x30(%r11),%r11 + 66343b93: 41 01 33 add %esi,(%r11) + 66343b96: 44 89 42 18 mov %r8d,0x18(%rdx) + 66343b9a: 45 8b 03 mov (%r11),%r8d + 66343b9d: 45 85 c0 test %r8d,%r8d + 66343ba0: 4c 8b 40 30 mov 0x30(%rax),%r8 + 66343ba4: 41 0f 9f c2 setg %r10b + 66343ba8: 45 3b 10 cmp (%r8),%r10d + 66343bab: 74 30 je 66343bdd + 66343bad: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343bb1: 4d 8b 40 30 mov 0x30(%r8),%r8 + 66343bb5: 41 8b 30 mov (%r8),%esi + 66343bb8: 85 f6 test %esi,%esi + 66343bba: 75 21 jne 66343bdd + 66343bbc: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343bc0: 4d 8b 50 30 mov 0x30(%r8),%r10 + 66343bc4: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66343bc8: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343bcf: 4d 63 01 movslq (%r9),%r8 + 66343bd2: 45 8d 58 01 lea 0x1(%r8),%r11d + 66343bd6: 45 89 19 mov %r11d,(%r9) + 66343bd9: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) + 66343bdd: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66343be1: 44 8b 52 1c mov 0x1c(%rdx),%r10d + 66343be5: 45 8b 00 mov (%r8),%r8d + 66343be8: 45 39 d0 cmp %r10d,%r8d + 66343beb: 74 5c je 66343c49 + 66343bed: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66343bf1: 44 89 c6 mov %r8d,%esi + 66343bf4: 44 29 d6 sub %r10d,%esi + 66343bf7: 45 31 d2 xor %r10d,%r10d + 66343bfa: 4d 8b 5b 38 mov 0x38(%r11),%r11 + 66343bfe: 41 01 33 add %esi,(%r11) + 66343c01: 44 89 42 1c mov %r8d,0x1c(%rdx) + 66343c05: 45 8b 1b mov (%r11),%r11d + 66343c08: 4c 8b 40 38 mov 0x38(%rax),%r8 + 66343c0c: 45 85 db test %r11d,%r11d + 66343c0f: 41 0f 9f c2 setg %r10b + 66343c13: 45 3b 10 cmp (%r8),%r10d + 66343c16: 74 31 je 66343c49 + 66343c18: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66343c1c: 4d 8b 40 38 mov 0x38(%r8),%r8 + 66343c20: 45 8b 10 mov (%r8),%r10d + 66343c23: 45 85 d2 test %r10d,%r10d + 66343c26: 75 21 jne 66343c49 + 66343c28: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66343c2c: 4d 8b 50 38 mov 0x38(%r8),%r10 + 66343c30: 4d 8b 42 10 mov 0x10(%r10),%r8 + 66343c34: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66343c3b: 4d 63 01 movslq (%r9),%r8 + 66343c3e: 45 8d 58 01 lea 0x1(%r8),%r11d + 66343c42: 45 89 19 mov %r11d,(%r9) + 66343c45: 4e 89 14 c3 mov %r10,(%rbx,%r8,8) + 66343c49: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66343c4d: 44 8b 52 20 mov 0x20(%rdx),%r10d + 66343c51: 45 8b 00 mov (%r8),%r8d + 66343c54: 45 39 d0 cmp %r10d,%r8d + 66343c57: 74 55 je 66343cae + 66343c59: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66343c5d: 44 89 c6 mov %r8d,%esi + 66343c60: 44 29 d6 sub %r10d,%esi + 66343c63: 48 8b 40 40 mov 0x40(%rax),%rax + 66343c67: 4d 8b 5b 40 mov 0x40(%r11),%r11 + 66343c6b: 41 01 33 add %esi,(%r11) + 66343c6e: 44 89 42 20 mov %r8d,0x20(%rdx) + 66343c72: 31 d2 xor %edx,%edx + 66343c74: 45 8b 03 mov (%r11),%r8d + 66343c77: 45 85 c0 test %r8d,%r8d + 66343c7a: 0f 9f c2 setg %dl + 66343c7d: 3b 10 cmp (%rax),%edx + 66343c7f: 74 2d je 66343cae + 66343c81: 48 8b 41 20 mov 0x20(%rcx),%rax + 66343c85: 48 8b 40 40 mov 0x40(%rax),%rax + 66343c89: 8b 00 mov (%rax),%eax + 66343c8b: 85 c0 test %eax,%eax + 66343c8d: 75 1f jne 66343cae + 66343c8f: 48 8b 41 28 mov 0x28(%rcx),%rax + 66343c93: 48 8b 50 40 mov 0x40(%rax),%rdx + 66343c97: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343c9b: c7 00 01 00 00 00 movl $0x1,(%rax) + 66343ca1: 49 63 01 movslq (%r9),%rax + 66343ca4: 8d 48 01 lea 0x1(%rax),%ecx + 66343ca7: 41 89 09 mov %ecx,(%r9) + 66343caa: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) + 66343cae: 5b pop %rbx + 66343caf: 5e pop %rsi + 66343cb0: c3 retq + 66343cb1: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66343cb6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66343cbd: 00 00 00 -0000000066343bc0 : - 66343bc0: 41 56 push %r14 - 66343bc2: 57 push %rdi - 66343bc3: 56 push %rsi - 66343bc4: 53 push %rbx - 66343bc5: 48 8b 3d 54 3d 01 00 mov 0x13d54(%rip),%rdi # 66357920 - 66343bcc: 48 8b 35 5d 3d 01 00 mov 0x13d5d(%rip),%rsi # 66357930 - 66343bd3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343bd7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66343bdb: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax - 66343be2: 8b 00 mov (%rax),%eax - 66343be4: 85 c0 test %eax,%eax - 66343be6: 0f 84 a4 00 00 00 je 66343c90 - 66343bec: 31 c0 xor %eax,%eax - 66343bee: 66 90 xchg %ax,%ax - 66343bf0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343bf5: 44 8b 8c 02 c4 00 00 mov 0xc4(%rdx,%rax,1),%r9d - 66343bfc: 00 - 66343bfd: 45 8b 00 mov (%r8),%r8d - 66343c00: 45 39 c8 cmp %r9d,%r8d - 66343c03: 74 74 je 66343c79 - 66343c05: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343c09: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66343c0d: 45 89 c6 mov %r8d,%r14d - 66343c10: 45 29 ce sub %r9d,%r14d - 66343c13: 45 31 c9 xor %r9d,%r9d - 66343c16: 4d 8b 94 1a 88 01 00 mov 0x188(%r10,%rbx,1),%r10 - 66343c1d: 00 - 66343c1e: 45 01 32 add %r14d,(%r10) - 66343c21: 44 89 84 02 c4 00 00 mov %r8d,0xc4(%rdx,%rax,1) - 66343c28: 00 - 66343c29: 45 8b 32 mov (%r10),%r14d - 66343c2c: 4d 8b 84 43 88 01 00 mov 0x188(%r11,%rax,2),%r8 - 66343c33: 00 - 66343c34: 45 85 f6 test %r14d,%r14d - 66343c37: 41 0f 9f c1 setg %r9b - 66343c3b: 45 3b 08 cmp (%r8),%r9d - 66343c3e: 74 39 je 66343c79 - 66343c40: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343c44: 4d 8b 84 18 88 01 00 mov 0x188(%r8,%rbx,1),%r8 - 66343c4b: 00 - 66343c4c: 45 8b 10 mov (%r8),%r10d - 66343c4f: 45 85 d2 test %r10d,%r10d - 66343c52: 75 25 jne 66343c79 - 66343c54: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343c58: 4d 8b 8c 18 88 01 00 mov 0x188(%r8,%rbx,1),%r9 - 66343c5f: 00 - 66343c60: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343c64: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343c6b: 4c 63 06 movslq (%rsi),%r8 - 66343c6e: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343c72: 44 89 16 mov %r10d,(%rsi) - 66343c75: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343c79: 48 83 c0 04 add $0x4,%rax - 66343c7d: 48 3d c0 00 00 00 cmp $0xc0,%rax - 66343c83: 0f 85 67 ff ff ff jne 66343bf0 - 66343c89: 5b pop %rbx - 66343c8a: 5e pop %rsi - 66343c8b: 5f pop %rdi - 66343c8c: 41 5e pop %r14 - 66343c8e: c3 retq - 66343c8f: 90 nop - 66343c90: 48 81 c2 c4 00 00 00 add $0xc4,%rdx - 66343c97: b8 88 01 00 00 mov $0x188,%eax - 66343c9c: 0f 1f 40 00 nopl 0x0(%rax) - 66343ca0: 44 8b 02 mov (%rdx),%r8d - 66343ca3: 45 85 c0 test %r8d,%r8d - 66343ca6: 74 59 je 66343d01 - 66343ca8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66343cac: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343cb0: 45 29 01 sub %r8d,(%r9) - 66343cb3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343cb9: 45 8b 09 mov (%r9),%r9d - 66343cbc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343cc0: 45 85 c9 test %r9d,%r9d - 66343cc3: 41 0f 9f c1 setg %r9b - 66343cc7: 45 0f b6 c9 movzbl %r9b,%r9d - 66343ccb: 45 3b 08 cmp (%r8),%r9d - 66343cce: 74 31 je 66343d01 - 66343cd0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343cd4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343cd8: 45 8b 00 mov (%r8),%r8d - 66343cdb: 45 85 c0 test %r8d,%r8d - 66343cde: 75 21 jne 66343d01 - 66343ce0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343ce4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343ce8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343cec: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343cf3: 4c 63 06 movslq (%rsi),%r8 - 66343cf6: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343cfa: 44 89 16 mov %r10d,(%rsi) - 66343cfd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343d01: 48 83 c0 08 add $0x8,%rax - 66343d05: 48 83 c2 04 add $0x4,%rdx - 66343d09: 48 3d 08 03 00 00 cmp $0x308,%rax - 66343d0f: 75 8f jne 66343ca0 - 66343d11: 5b pop %rbx - 66343d12: 5e pop %rsi - 66343d13: 5f pop %rdi - 66343d14: 41 5e pop %r14 - 66343d16: c3 retq - 66343d17: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343d1e: 00 00 +0000000066343cc0 : + 66343cc0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66343cc4: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66343cc8: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343ccc: 8b 00 mov (%rax),%eax + 66343cce: 41 33 00 xor (%r8),%eax + 66343cd1: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66343cd5: 41 33 00 xor (%r8),%eax + 66343cd8: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 66343cdc: 41 33 00 xor (%r8),%eax + 66343cdf: 4c 8b 42 28 mov 0x28(%rdx),%r8 + 66343ce3: 41 33 00 xor (%r8),%eax + 66343ce6: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66343cea: 45 8b 48 18 mov 0x18(%r8),%r9d + 66343cee: 44 39 c8 cmp %r9d,%eax + 66343cf1: 74 67 je 66343d5a + 66343cf3: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343cf7: 41 89 c3 mov %eax,%r11d + 66343cfa: 45 29 cb sub %r9d,%r11d + 66343cfd: 4d 8b 52 30 mov 0x30(%r10),%r10 + 66343d01: 45 01 1a add %r11d,(%r10) + 66343d04: 41 89 40 18 mov %eax,0x18(%r8) + 66343d08: 45 31 c0 xor %r8d,%r8d + 66343d0b: 45 8b 0a mov (%r10),%r9d + 66343d0e: 48 8b 42 30 mov 0x30(%rdx),%rax + 66343d12: 45 85 c9 test %r9d,%r9d + 66343d15: 41 0f 9f c0 setg %r8b + 66343d19: 44 3b 00 cmp (%rax),%r8d + 66343d1c: 74 3c je 66343d5a + 66343d1e: 48 8b 41 20 mov 0x20(%rcx),%rax + 66343d22: 48 8b 40 30 mov 0x30(%rax),%rax + 66343d26: 8b 00 mov (%rax),%eax + 66343d28: 85 c0 test %eax,%eax + 66343d2a: 75 2e jne 66343d5a + 66343d2c: 48 8b 41 28 mov 0x28(%rcx),%rax + 66343d30: 48 8b 0d f9 2b 01 00 mov 0x12bf9(%rip),%rcx # 66356930 + 66343d37: 4c 8b 05 e2 2b 01 00 mov 0x12be2(%rip),%r8 # 66356920 + 66343d3e: 48 8b 50 30 mov 0x30(%rax),%rdx + 66343d42: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343d46: c7 00 01 00 00 00 movl $0x1,(%rax) + 66343d4c: 48 63 01 movslq (%rcx),%rax + 66343d4f: 44 8d 48 01 lea 0x1(%rax),%r9d + 66343d53: 44 89 09 mov %r9d,(%rcx) + 66343d56: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66343d5a: c3 retq + 66343d5b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) -0000000066343d20 : - 66343d20: 41 56 push %r14 - 66343d22: 57 push %rdi - 66343d23: 56 push %rsi - 66343d24: 53 push %rbx - 66343d25: 48 8b 3d f4 3b 01 00 mov 0x13bf4(%rip),%rdi # 66357920 - 66343d2c: 48 8b 35 fd 3b 01 00 mov 0x13bfd(%rip),%rsi # 66357930 - 66343d33: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343d37: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66343d3b: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax - 66343d42: 8b 00 mov (%rax),%eax - 66343d44: 85 c0 test %eax,%eax - 66343d46: 0f 84 a4 00 00 00 je 66343df0 - 66343d4c: 31 c0 xor %eax,%eax - 66343d4e: 66 90 xchg %ax,%ax - 66343d50: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343d55: 44 8b 8c 02 84 00 00 mov 0x84(%rdx,%rax,1),%r9d - 66343d5c: 00 - 66343d5d: 45 8b 00 mov (%r8),%r8d - 66343d60: 45 39 c8 cmp %r9d,%r8d - 66343d63: 74 74 je 66343dd9 - 66343d65: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343d69: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66343d6d: 45 89 c6 mov %r8d,%r14d - 66343d70: 45 29 ce sub %r9d,%r14d - 66343d73: 45 31 c9 xor %r9d,%r9d - 66343d76: 4d 8b 94 1a 08 01 00 mov 0x108(%r10,%rbx,1),%r10 - 66343d7d: 00 - 66343d7e: 45 01 32 add %r14d,(%r10) - 66343d81: 44 89 84 02 84 00 00 mov %r8d,0x84(%rdx,%rax,1) - 66343d88: 00 - 66343d89: 45 8b 32 mov (%r10),%r14d - 66343d8c: 4d 8b 84 43 08 01 00 mov 0x108(%r11,%rax,2),%r8 - 66343d93: 00 - 66343d94: 45 85 f6 test %r14d,%r14d - 66343d97: 41 0f 9f c1 setg %r9b - 66343d9b: 45 3b 08 cmp (%r8),%r9d - 66343d9e: 74 39 je 66343dd9 - 66343da0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343da4: 4d 8b 84 18 08 01 00 mov 0x108(%r8,%rbx,1),%r8 - 66343dab: 00 - 66343dac: 45 8b 10 mov (%r8),%r10d - 66343daf: 45 85 d2 test %r10d,%r10d - 66343db2: 75 25 jne 66343dd9 - 66343db4: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343db8: 4d 8b 8c 18 08 01 00 mov 0x108(%r8,%rbx,1),%r9 - 66343dbf: 00 - 66343dc0: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343dc4: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343dcb: 4c 63 06 movslq (%rsi),%r8 - 66343dce: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343dd2: 44 89 16 mov %r10d,(%rsi) - 66343dd5: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343dd9: 48 83 c0 04 add $0x4,%rax - 66343ddd: 48 3d 80 00 00 00 cmp $0x80,%rax - 66343de3: 0f 85 67 ff ff ff jne 66343d50 - 66343de9: 5b pop %rbx - 66343dea: 5e pop %rsi - 66343deb: 5f pop %rdi - 66343dec: 41 5e pop %r14 - 66343dee: c3 retq - 66343def: 90 nop - 66343df0: 48 81 c2 84 00 00 00 add $0x84,%rdx - 66343df7: b8 08 01 00 00 mov $0x108,%eax - 66343dfc: 0f 1f 40 00 nopl 0x0(%rax) - 66343e00: 44 8b 02 mov (%rdx),%r8d - 66343e03: 45 85 c0 test %r8d,%r8d - 66343e06: 74 59 je 66343e61 - 66343e08: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66343e0c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343e10: 45 29 01 sub %r8d,(%r9) - 66343e13: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343e19: 45 8b 09 mov (%r9),%r9d - 66343e1c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343e20: 45 85 c9 test %r9d,%r9d - 66343e23: 41 0f 9f c1 setg %r9b - 66343e27: 45 0f b6 c9 movzbl %r9b,%r9d - 66343e2b: 45 3b 08 cmp (%r8),%r9d - 66343e2e: 74 31 je 66343e61 - 66343e30: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343e34: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343e38: 45 8b 00 mov (%r8),%r8d - 66343e3b: 45 85 c0 test %r8d,%r8d - 66343e3e: 75 21 jne 66343e61 - 66343e40: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343e44: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343e48: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343e4c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343e53: 4c 63 06 movslq (%rsi),%r8 - 66343e56: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343e5a: 44 89 16 mov %r10d,(%rsi) - 66343e5d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343e61: 48 83 c0 08 add $0x8,%rax - 66343e65: 48 83 c2 04 add $0x4,%rdx - 66343e69: 48 3d 08 02 00 00 cmp $0x208,%rax - 66343e6f: 75 8f jne 66343e00 - 66343e71: 5b pop %rbx - 66343e72: 5e pop %rsi - 66343e73: 5f pop %rdi - 66343e74: 41 5e pop %r14 - 66343e76: c3 retq - 66343e77: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343e7e: 00 00 +0000000066343d60 : + 66343d60: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66343d64: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66343d68: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343d6c: 8b 00 mov (%rax),%eax + 66343d6e: 41 33 00 xor (%r8),%eax + 66343d71: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66343d75: 41 33 00 xor (%r8),%eax + 66343d78: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 66343d7c: 41 33 00 xor (%r8),%eax + 66343d7f: 4c 8b 42 28 mov 0x28(%rdx),%r8 + 66343d83: 41 3b 00 cmp (%r8),%eax + 66343d86: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66343d8a: 0f 94 c0 sete %al + 66343d8d: 45 8b 48 18 mov 0x18(%r8),%r9d + 66343d91: 0f b6 c0 movzbl %al,%eax + 66343d94: 44 39 c8 cmp %r9d,%eax + 66343d97: 74 67 je 66343e00 + 66343d99: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66343d9d: 41 89 c3 mov %eax,%r11d + 66343da0: 45 29 cb sub %r9d,%r11d + 66343da3: 4d 8b 52 30 mov 0x30(%r10),%r10 + 66343da7: 45 01 1a add %r11d,(%r10) + 66343daa: 41 89 40 18 mov %eax,0x18(%r8) + 66343dae: 45 31 c0 xor %r8d,%r8d + 66343db1: 45 8b 0a mov (%r10),%r9d + 66343db4: 48 8b 42 30 mov 0x30(%rdx),%rax + 66343db8: 45 85 c9 test %r9d,%r9d + 66343dbb: 41 0f 9f c0 setg %r8b + 66343dbf: 44 3b 00 cmp (%rax),%r8d + 66343dc2: 74 3c je 66343e00 + 66343dc4: 48 8b 41 20 mov 0x20(%rcx),%rax + 66343dc8: 48 8b 40 30 mov 0x30(%rax),%rax + 66343dcc: 8b 00 mov (%rax),%eax + 66343dce: 85 c0 test %eax,%eax + 66343dd0: 75 2e jne 66343e00 + 66343dd2: 48 8b 41 28 mov 0x28(%rcx),%rax + 66343dd6: 48 8b 0d 53 2b 01 00 mov 0x12b53(%rip),%rcx # 66356930 + 66343ddd: 4c 8b 05 3c 2b 01 00 mov 0x12b3c(%rip),%r8 # 66356920 + 66343de4: 48 8b 50 30 mov 0x30(%rax),%rdx + 66343de8: 48 8b 42 10 mov 0x10(%rdx),%rax + 66343dec: c7 00 01 00 00 00 movl $0x1,(%rax) + 66343df2: 48 63 01 movslq (%rcx),%rax + 66343df5: 44 8d 48 01 lea 0x1(%rax),%r9d + 66343df9: 44 89 09 mov %r9d,(%rcx) + 66343dfc: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66343e00: c3 retq + 66343e01: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66343e06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66343e0d: 00 00 00 -0000000066343e80 : - 66343e80: 41 56 push %r14 - 66343e82: 57 push %rdi - 66343e83: 56 push %rsi - 66343e84: 53 push %rbx - 66343e85: 48 8b 3d 94 3a 01 00 mov 0x13a94(%rip),%rdi # 66357920 - 66343e8c: 48 8b 35 9d 3a 01 00 mov 0x13a9d(%rip),%rsi # 66357930 - 66343e93: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343e97: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66343e9b: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax - 66343ea2: 8b 00 mov (%rax),%eax - 66343ea4: 85 c0 test %eax,%eax - 66343ea6: 0f 84 a4 00 00 00 je 66343f50 - 66343eac: 31 c0 xor %eax,%eax - 66343eae: 66 90 xchg %ax,%ax - 66343eb0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66343eb5: 44 8b 8c 02 84 00 00 mov 0x84(%rdx,%rax,1),%r9d - 66343ebc: 00 - 66343ebd: 45 8b 00 mov (%r8),%r8d - 66343ec0: 45 39 c8 cmp %r9d,%r8d - 66343ec3: 74 74 je 66343f39 - 66343ec5: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66343ec9: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66343ecd: 45 89 c6 mov %r8d,%r14d - 66343ed0: 45 29 ce sub %r9d,%r14d - 66343ed3: 45 31 c9 xor %r9d,%r9d - 66343ed6: 4d 8b 94 1a 08 01 00 mov 0x108(%r10,%rbx,1),%r10 - 66343edd: 00 - 66343ede: 45 01 32 add %r14d,(%r10) - 66343ee1: 44 89 84 02 84 00 00 mov %r8d,0x84(%rdx,%rax,1) - 66343ee8: 00 - 66343ee9: 45 8b 32 mov (%r10),%r14d - 66343eec: 4d 8b 84 43 08 01 00 mov 0x108(%r11,%rax,2),%r8 - 66343ef3: 00 - 66343ef4: 45 85 f6 test %r14d,%r14d - 66343ef7: 41 0f 9f c1 setg %r9b - 66343efb: 45 3b 08 cmp (%r8),%r9d - 66343efe: 74 39 je 66343f39 - 66343f00: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343f04: 4d 8b 84 18 08 01 00 mov 0x108(%r8,%rbx,1),%r8 - 66343f0b: 00 - 66343f0c: 45 8b 10 mov (%r8),%r10d - 66343f0f: 45 85 d2 test %r10d,%r10d - 66343f12: 75 25 jne 66343f39 - 66343f14: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343f18: 4d 8b 8c 18 08 01 00 mov 0x108(%r8,%rbx,1),%r9 - 66343f1f: 00 - 66343f20: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343f24: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343f2b: 4c 63 06 movslq (%rsi),%r8 - 66343f2e: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343f32: 44 89 16 mov %r10d,(%rsi) - 66343f35: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343f39: 48 83 c0 04 add $0x4,%rax - 66343f3d: 48 3d 80 00 00 00 cmp $0x80,%rax - 66343f43: 0f 85 67 ff ff ff jne 66343eb0 - 66343f49: 5b pop %rbx - 66343f4a: 5e pop %rsi - 66343f4b: 5f pop %rdi - 66343f4c: 41 5e pop %r14 - 66343f4e: c3 retq - 66343f4f: 90 nop - 66343f50: 48 81 c2 84 00 00 00 add $0x84,%rdx - 66343f57: b8 08 01 00 00 mov $0x108,%eax - 66343f5c: 0f 1f 40 00 nopl 0x0(%rax) - 66343f60: 44 8b 02 mov (%rdx),%r8d - 66343f63: 45 85 c0 test %r8d,%r8d - 66343f66: 74 59 je 66343fc1 - 66343f68: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66343f6c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66343f70: 45 29 01 sub %r8d,(%r9) - 66343f73: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66343f79: 45 8b 09 mov (%r9),%r9d - 66343f7c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66343f80: 45 85 c9 test %r9d,%r9d - 66343f83: 41 0f 9f c1 setg %r9b - 66343f87: 45 0f b6 c9 movzbl %r9b,%r9d - 66343f8b: 45 3b 08 cmp (%r8),%r9d - 66343f8e: 74 31 je 66343fc1 - 66343f90: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66343f94: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66343f98: 45 8b 00 mov (%r8),%r8d - 66343f9b: 45 85 c0 test %r8d,%r8d - 66343f9e: 75 21 jne 66343fc1 - 66343fa0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66343fa4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66343fa8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66343fac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66343fb3: 4c 63 06 movslq (%rsi),%r8 - 66343fb6: 45 8d 50 01 lea 0x1(%r8),%r10d - 66343fba: 44 89 16 mov %r10d,(%rsi) - 66343fbd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66343fc1: 48 83 c0 08 add $0x8,%rax - 66343fc5: 48 83 c2 04 add $0x4,%rdx - 66343fc9: 48 3d 08 02 00 00 cmp $0x208,%rax - 66343fcf: 75 8f jne 66343f60 - 66343fd1: 5b pop %rbx - 66343fd2: 5e pop %rsi - 66343fd3: 5f pop %rdi - 66343fd4: 41 5e pop %r14 - 66343fd6: c3 retq - 66343fd7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66343fde: 00 00 +0000000066343e10 : + 66343e10: 57 push %rdi + 66343e11: 56 push %rsi + 66343e12: 53 push %rbx + 66343e13: 48 8b 1d 06 2b 01 00 mov 0x12b06(%rip),%rbx # 66356920 + 66343e1a: 4c 8b 15 0f 2b 01 00 mov 0x12b0f(%rip),%r10 # 66356930 + 66343e21: 48 8b 41 10 mov 0x10(%rcx),%rax + 66343e25: 48 8b 50 10 mov 0x10(%rax),%rdx + 66343e29: 44 8b 02 mov (%rdx),%r8d + 66343e2c: 48 8b 50 08 mov 0x8(%rax),%rdx + 66343e30: 8b 12 mov (%rdx),%edx + 66343e32: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 66343e36: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66343e3a: 45 8b 00 mov (%r8),%r8d + 66343e3d: 42 8d 14 82 lea (%rdx,%r8,4),%edx + 66343e41: 4c 8b 40 30 mov 0x30(%rax),%r8 + 66343e45: 45 8b 08 mov (%r8),%r9d + 66343e48: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66343e4c: 45 8b 00 mov (%r8),%r8d + 66343e4f: 47 8d 04 48 lea (%r8,%r9,2),%r8d + 66343e53: 4c 8b 48 38 mov 0x38(%rax),%r9 + 66343e57: 45 8b 09 mov (%r9),%r9d + 66343e5a: 47 8d 04 88 lea (%r8,%r9,4),%r8d + 66343e5e: 4c 8b 48 40 mov 0x40(%rax),%r9 + 66343e62: 45 8b 09 mov (%r9),%r9d + 66343e65: 47 8d 04 c8 lea (%r8,%r9,8),%r8d + 66343e69: 4c 8b 48 20 mov 0x20(%rax),%r9 + 66343e6d: 45 8b 09 mov (%r9),%r9d + 66343e70: 42 8d 14 ca lea (%rdx,%r9,8),%edx + 66343e74: 4c 8b 49 08 mov 0x8(%rcx),%r9 + 66343e78: 41 01 d0 add %edx,%r8d + 66343e7b: 48 8b 50 68 mov 0x68(%rax),%rdx + 66343e7f: 45 8b 59 24 mov 0x24(%r9),%r11d + 66343e83: 44 03 02 add (%rdx),%r8d + 66343e86: 44 89 c2 mov %r8d,%edx + 66343e89: 83 e2 01 and $0x1,%edx + 66343e8c: 44 39 da cmp %r11d,%edx + 66343e8f: 74 54 je 66343ee5 + 66343e91: 48 8b 71 18 mov 0x18(%rcx),%rsi + 66343e95: 89 d7 mov %edx,%edi + 66343e97: 44 29 df sub %r11d,%edi + 66343e9a: 4c 8b 58 48 mov 0x48(%rax),%r11 + 66343e9e: 48 8b 76 48 mov 0x48(%rsi),%rsi + 66343ea2: 01 3e add %edi,(%rsi) + 66343ea4: 41 89 51 24 mov %edx,0x24(%r9) + 66343ea8: 31 d2 xor %edx,%edx + 66343eaa: 8b 36 mov (%rsi),%esi + 66343eac: 85 f6 test %esi,%esi + 66343eae: 0f 9f c2 setg %dl + 66343eb1: 41 39 13 cmp %edx,(%r11) + 66343eb4: 74 2f je 66343ee5 + 66343eb6: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66343eba: 48 8b 52 48 mov 0x48(%rdx),%rdx + 66343ebe: 44 8b 1a mov (%rdx),%r11d + 66343ec1: 45 85 db test %r11d,%r11d + 66343ec4: 75 1f jne 66343ee5 + 66343ec6: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66343eca: 4c 8b 5a 48 mov 0x48(%rdx),%r11 + 66343ece: 49 8b 53 10 mov 0x10(%r11),%rdx + 66343ed2: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66343ed8: 49 63 12 movslq (%r10),%rdx + 66343edb: 8d 72 01 lea 0x1(%rdx),%esi + 66343ede: 41 89 32 mov %esi,(%r10) + 66343ee1: 4c 89 1c d3 mov %r11,(%rbx,%rdx,8) + 66343ee5: 45 8b 59 28 mov 0x28(%r9),%r11d + 66343ee9: 44 89 c2 mov %r8d,%edx + 66343eec: d1 fa sar %edx + 66343eee: 83 e2 01 and $0x1,%edx + 66343ef1: 41 39 d3 cmp %edx,%r11d + 66343ef4: 74 54 je 66343f4a + 66343ef6: 48 8b 71 18 mov 0x18(%rcx),%rsi + 66343efa: 89 d7 mov %edx,%edi + 66343efc: 44 29 df sub %r11d,%edi + 66343eff: 45 31 db xor %r11d,%r11d + 66343f02: 48 8b 76 50 mov 0x50(%rsi),%rsi + 66343f06: 01 3e add %edi,(%rsi) + 66343f08: 41 89 51 28 mov %edx,0x28(%r9) + 66343f0c: 8b 16 mov (%rsi),%edx + 66343f0e: 85 d2 test %edx,%edx + 66343f10: 48 8b 50 50 mov 0x50(%rax),%rdx + 66343f14: 41 0f 9f c3 setg %r11b + 66343f18: 44 3b 1a cmp (%rdx),%r11d + 66343f1b: 74 2d je 66343f4a + 66343f1d: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66343f21: 48 8b 52 50 mov 0x50(%rdx),%rdx + 66343f25: 8b 3a mov (%rdx),%edi + 66343f27: 85 ff test %edi,%edi + 66343f29: 75 1f jne 66343f4a + 66343f2b: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66343f2f: 4c 8b 5a 50 mov 0x50(%rdx),%r11 + 66343f33: 49 8b 53 10 mov 0x10(%r11),%rdx + 66343f37: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66343f3d: 49 63 12 movslq (%r10),%rdx + 66343f40: 8d 72 01 lea 0x1(%rdx),%esi + 66343f43: 41 89 32 mov %esi,(%r10) + 66343f46: 4c 89 1c d3 mov %r11,(%rbx,%rdx,8) + 66343f4a: 45 8b 59 2c mov 0x2c(%r9),%r11d + 66343f4e: 44 89 c2 mov %r8d,%edx + 66343f51: c1 fa 02 sar $0x2,%edx + 66343f54: 83 e2 01 and $0x1,%edx + 66343f57: 44 39 da cmp %r11d,%edx + 66343f5a: 74 56 je 66343fb2 + 66343f5c: 48 8b 71 18 mov 0x18(%rcx),%rsi + 66343f60: 89 d7 mov %edx,%edi + 66343f62: 44 29 df sub %r11d,%edi + 66343f65: 45 31 db xor %r11d,%r11d + 66343f68: 48 8b 76 58 mov 0x58(%rsi),%rsi + 66343f6c: 01 3e add %edi,(%rsi) + 66343f6e: 41 89 51 2c mov %edx,0x2c(%r9) + 66343f72: 8b 36 mov (%rsi),%esi + 66343f74: 48 8b 50 58 mov 0x58(%rax),%rdx + 66343f78: 85 f6 test %esi,%esi + 66343f7a: 41 0f 9f c3 setg %r11b + 66343f7e: 44 3b 1a cmp (%rdx),%r11d + 66343f81: 74 2f je 66343fb2 + 66343f83: 48 8b 51 20 mov 0x20(%rcx),%rdx + 66343f87: 48 8b 52 58 mov 0x58(%rdx),%rdx + 66343f8b: 44 8b 1a mov (%rdx),%r11d + 66343f8e: 45 85 db test %r11d,%r11d + 66343f91: 75 1f jne 66343fb2 + 66343f93: 48 8b 51 28 mov 0x28(%rcx),%rdx + 66343f97: 4c 8b 5a 58 mov 0x58(%rdx),%r11 + 66343f9b: 49 8b 53 10 mov 0x10(%r11),%rdx + 66343f9f: c7 02 01 00 00 00 movl $0x1,(%rdx) + 66343fa5: 49 63 12 movslq (%r10),%rdx + 66343fa8: 8d 72 01 lea 0x1(%rdx),%esi + 66343fab: 41 89 32 mov %esi,(%r10) + 66343fae: 4c 89 1c d3 mov %r11,(%rbx,%rdx,8) + 66343fb2: 45 8b 59 30 mov 0x30(%r9),%r11d + 66343fb6: 44 89 c2 mov %r8d,%edx + 66343fb9: c1 fa 03 sar $0x3,%edx + 66343fbc: 83 e2 01 and $0x1,%edx + 66343fbf: 44 39 da cmp %r11d,%edx + 66343fc2: 74 54 je 66344018 + 66343fc4: 48 8b 71 18 mov 0x18(%rcx),%rsi + 66343fc8: 89 d7 mov %edx,%edi + 66343fca: 44 29 df sub %r11d,%edi + 66343fcd: 48 8b 40 60 mov 0x60(%rax),%rax + 66343fd1: 48 8b 76 60 mov 0x60(%rsi),%rsi + 66343fd5: 01 3e add %edi,(%rsi) + 66343fd7: 41 89 51 30 mov %edx,0x30(%r9) + 66343fdb: 31 d2 xor %edx,%edx + 66343fdd: 44 8b 0e mov (%rsi),%r9d + 66343fe0: 45 85 c9 test %r9d,%r9d + 66343fe3: 0f 9f c2 setg %dl + 66343fe6: 3b 10 cmp (%rax),%edx + 66343fe8: 74 2e je 66344018 + 66343fea: 48 8b 41 20 mov 0x20(%rcx),%rax + 66343fee: 48 8b 40 60 mov 0x60(%rax),%rax + 66343ff2: 8b 00 mov (%rax),%eax + 66343ff4: 85 c0 test %eax,%eax + 66343ff6: 75 20 jne 66344018 + 66343ff8: 48 8b 41 28 mov 0x28(%rcx),%rax + 66343ffc: 48 8b 50 60 mov 0x60(%rax),%rdx + 66344000: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344004: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634400a: 49 63 02 movslq (%r10),%rax + 6634400d: 44 8d 48 01 lea 0x1(%rax),%r9d + 66344011: 45 89 0a mov %r9d,(%r10) + 66344014: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) + 66344018: 41 c1 f8 04 sar $0x4,%r8d + 6634401c: ba 0e 00 00 00 mov $0xe,%edx + 66344021: 41 83 e0 01 and $0x1,%r8d + 66344025: 5b pop %rbx + 66344026: 5e pop %rsi + 66344027: 5f pop %rdi + 66344028: e9 83 d3 ff ff jmpq 663413b0 + 6634402d: 0f 1f 00 nopl (%rax) -0000000066343fe0 : - 66343fe0: 41 56 push %r14 - 66343fe2: 57 push %rdi - 66343fe3: 56 push %rsi - 66343fe4: 53 push %rbx - 66343fe5: 48 8b 3d 34 39 01 00 mov 0x13934(%rip),%rdi # 66357920 - 66343fec: 48 8b 35 3d 39 01 00 mov 0x1393d(%rip),%rsi # 66357930 - 66343ff3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66343ff7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66343ffb: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax - 66344002: 8b 00 mov (%rax),%eax - 66344004: 85 c0 test %eax,%eax - 66344006: 0f 84 a4 00 00 00 je 663440b0 - 6634400c: 31 c0 xor %eax,%eax - 6634400e: 66 90 xchg %ax,%ax - 66344010: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66344015: 44 8b 4c 02 64 mov 0x64(%rdx,%rax,1),%r9d - 6634401a: 45 8b 00 mov (%r8),%r8d - 6634401d: 45 39 c8 cmp %r9d,%r8d - 66344020: 74 71 je 66344093 - 66344022: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344026: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634402a: 45 89 c6 mov %r8d,%r14d - 6634402d: 45 29 ce sub %r9d,%r14d - 66344030: 45 31 c9 xor %r9d,%r9d - 66344033: 4d 8b 94 1a c8 00 00 mov 0xc8(%r10,%rbx,1),%r10 - 6634403a: 00 - 6634403b: 45 01 32 add %r14d,(%r10) - 6634403e: 44 89 44 02 64 mov %r8d,0x64(%rdx,%rax,1) - 66344043: 45 8b 32 mov (%r10),%r14d - 66344046: 4d 8b 84 43 c8 00 00 mov 0xc8(%r11,%rax,2),%r8 - 6634404d: 00 - 6634404e: 45 85 f6 test %r14d,%r14d - 66344051: 41 0f 9f c1 setg %r9b - 66344055: 45 3b 08 cmp (%r8),%r9d - 66344058: 74 39 je 66344093 - 6634405a: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634405e: 4d 8b 84 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r8 - 66344065: 00 - 66344066: 45 8b 10 mov (%r8),%r10d - 66344069: 45 85 d2 test %r10d,%r10d - 6634406c: 75 25 jne 66344093 - 6634406e: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344072: 4d 8b 8c 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r9 - 66344079: 00 - 6634407a: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634407e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344085: 4c 63 06 movslq (%rsi),%r8 - 66344088: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634408c: 44 89 16 mov %r10d,(%rsi) - 6634408f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344093: 48 83 c0 04 add $0x4,%rax - 66344097: 48 83 f8 60 cmp $0x60,%rax - 6634409b: 0f 85 6f ff ff ff jne 66344010 - 663440a1: 5b pop %rbx - 663440a2: 5e pop %rsi - 663440a3: 5f pop %rdi - 663440a4: 41 5e pop %r14 - 663440a6: c3 retq - 663440a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663440ae: 00 00 - 663440b0: 48 83 c2 64 add $0x64,%rdx - 663440b4: b8 c8 00 00 00 mov $0xc8,%eax - 663440b9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663440c0: 44 8b 02 mov (%rdx),%r8d - 663440c3: 45 85 c0 test %r8d,%r8d - 663440c6: 74 59 je 66344121 - 663440c8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663440cc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 663440d0: 45 29 01 sub %r8d,(%r9) - 663440d3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663440d9: 45 8b 09 mov (%r9),%r9d - 663440dc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 663440e0: 45 85 c9 test %r9d,%r9d - 663440e3: 41 0f 9f c1 setg %r9b - 663440e7: 45 0f b6 c9 movzbl %r9b,%r9d - 663440eb: 45 3b 08 cmp (%r8),%r9d - 663440ee: 74 31 je 66344121 - 663440f0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663440f4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663440f8: 45 8b 00 mov (%r8),%r8d - 663440fb: 45 85 c0 test %r8d,%r8d - 663440fe: 75 21 jne 66344121 - 66344100: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344104: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344108: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634410c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344113: 4c 63 06 movslq (%rsi),%r8 - 66344116: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634411a: 44 89 16 mov %r10d,(%rsi) - 6634411d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344121: 48 83 c0 08 add $0x8,%rax - 66344125: 48 83 c2 04 add $0x4,%rdx - 66344129: 48 3d 88 01 00 00 cmp $0x188,%rax - 6634412f: 75 8f jne 663440c0 - 66344131: 5b pop %rbx - 66344132: 5e pop %rsi - 66344133: 5f pop %rdi - 66344134: 41 5e pop %r14 - 66344136: c3 retq - 66344137: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634413e: 00 00 +0000000066344030 : + 66344030: 57 push %rdi + 66344031: 56 push %rsi + 66344032: 53 push %rbx + 66344033: 48 8b 35 e6 28 01 00 mov 0x128e6(%rip),%rsi # 66356920 + 6634403a: 48 8b 1d ef 28 01 00 mov 0x128ef(%rip),%rbx # 66356930 + 66344041: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66344045: 49 8b 41 20 mov 0x20(%r9),%rax + 66344049: 8b 10 mov (%rax),%edx + 6634404b: 49 8b 41 18 mov 0x18(%r9),%rax + 6634404f: 8b 00 mov (%rax),%eax + 66344051: 44 8d 04 50 lea (%rax,%rdx,2),%r8d + 66344055: 49 8b 41 10 mov 0x10(%r9),%rax + 66344059: 8b 10 mov (%rax),%edx + 6634405b: 49 8b 41 08 mov 0x8(%r9),%rax + 6634405f: 8b 00 mov (%rax),%eax + 66344061: 8d 04 50 lea (%rax,%rdx,2),%eax + 66344064: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66344068: 41 01 c0 add %eax,%r8d + 6634406b: 49 8b 41 38 mov 0x38(%r9),%rax + 6634406f: 44 8b 52 14 mov 0x14(%rdx),%r10d + 66344073: 44 03 00 add (%rax),%r8d + 66344076: 44 89 c0 mov %r8d,%eax + 66344079: 83 e0 01 and $0x1,%eax + 6634407c: 44 39 d0 cmp %r10d,%eax + 6634407f: 74 56 je 663440d7 + 66344081: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 66344085: 89 c7 mov %eax,%edi + 66344087: 44 29 d7 sub %r10d,%edi + 6634408a: 4d 8b 51 28 mov 0x28(%r9),%r10 + 6634408e: 4d 8b 5b 28 mov 0x28(%r11),%r11 + 66344092: 41 01 3b add %edi,(%r11) + 66344095: 89 42 14 mov %eax,0x14(%rdx) + 66344098: 31 c0 xor %eax,%eax + 6634409a: 41 8b 3b mov (%r11),%edi + 6634409d: 85 ff test %edi,%edi + 6634409f: 0f 9f c0 setg %al + 663440a2: 41 39 02 cmp %eax,(%r10) + 663440a5: 74 30 je 663440d7 + 663440a7: 48 8b 41 20 mov 0x20(%rcx),%rax + 663440ab: 48 8b 40 28 mov 0x28(%rax),%rax + 663440af: 44 8b 18 mov (%rax),%r11d + 663440b2: 45 85 db test %r11d,%r11d + 663440b5: 75 20 jne 663440d7 + 663440b7: 48 8b 41 28 mov 0x28(%rcx),%rax + 663440bb: 4c 8b 50 28 mov 0x28(%rax),%r10 + 663440bf: 49 8b 42 10 mov 0x10(%r10),%rax + 663440c3: c7 00 01 00 00 00 movl $0x1,(%rax) + 663440c9: 48 63 03 movslq (%rbx),%rax + 663440cc: 44 8d 58 01 lea 0x1(%rax),%r11d + 663440d0: 44 89 1b mov %r11d,(%rbx) + 663440d3: 4c 89 14 c6 mov %r10,(%rsi,%rax,8) + 663440d7: 44 8b 52 18 mov 0x18(%rdx),%r10d + 663440db: 44 89 c0 mov %r8d,%eax + 663440de: d1 f8 sar %eax + 663440e0: 83 e0 01 and $0x1,%eax + 663440e3: 44 39 d0 cmp %r10d,%eax + 663440e6: 74 54 je 6634413c + 663440e8: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 663440ec: 89 c7 mov %eax,%edi + 663440ee: 44 29 d7 sub %r10d,%edi + 663440f1: 4d 8b 5b 30 mov 0x30(%r11),%r11 + 663440f5: 41 01 3b add %edi,(%r11) + 663440f8: 89 42 18 mov %eax,0x18(%rdx) + 663440fb: 31 d2 xor %edx,%edx + 663440fd: 45 8b 13 mov (%r11),%r10d + 66344100: 49 8b 41 30 mov 0x30(%r9),%rax + 66344104: 45 85 d2 test %r10d,%r10d + 66344107: 0f 9f c2 setg %dl + 6634410a: 3b 10 cmp (%rax),%edx + 6634410c: 74 2e je 6634413c + 6634410e: 48 8b 41 20 mov 0x20(%rcx),%rax + 66344112: 48 8b 40 30 mov 0x30(%rax),%rax + 66344116: 8b 00 mov (%rax),%eax + 66344118: 85 c0 test %eax,%eax + 6634411a: 75 20 jne 6634413c + 6634411c: 48 8b 41 28 mov 0x28(%rcx),%rax + 66344120: 48 8b 50 30 mov 0x30(%rax),%rdx + 66344124: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344128: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634412e: 48 63 03 movslq (%rbx),%rax + 66344131: 44 8d 48 01 lea 0x1(%rax),%r9d + 66344135: 44 89 0b mov %r9d,(%rbx) + 66344138: 48 89 14 c6 mov %rdx,(%rsi,%rax,8) + 6634413c: 41 c1 f8 02 sar $0x2,%r8d + 66344140: ba 08 00 00 00 mov $0x8,%edx + 66344145: 41 83 e0 01 and $0x1,%r8d + 66344149: 5b pop %rbx + 6634414a: 5e pop %rsi + 6634414b: 5f pop %rdi + 6634414c: e9 5f d2 ff ff jmpq 663413b0 + 66344151: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66344156: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634415d: 00 00 00 -0000000066344140 : - 66344140: 41 56 push %r14 - 66344142: 57 push %rdi - 66344143: 56 push %rsi - 66344144: 53 push %rbx - 66344145: 48 8b 3d d4 37 01 00 mov 0x137d4(%rip),%rdi # 66357920 - 6634414c: 48 8b 35 dd 37 01 00 mov 0x137dd(%rip),%rsi # 66357930 - 66344153: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66344157: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634415b: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax - 66344162: 8b 00 mov (%rax),%eax - 66344164: 85 c0 test %eax,%eax - 66344166: 0f 84 a4 00 00 00 je 66344210 - 6634416c: 31 c0 xor %eax,%eax - 6634416e: 66 90 xchg %ax,%ax - 66344170: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66344175: 44 8b 4c 02 64 mov 0x64(%rdx,%rax,1),%r9d - 6634417a: 45 8b 00 mov (%r8),%r8d - 6634417d: 45 39 c8 cmp %r9d,%r8d - 66344180: 74 71 je 663441f3 - 66344182: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344186: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634418a: 45 89 c6 mov %r8d,%r14d - 6634418d: 45 29 ce sub %r9d,%r14d - 66344190: 45 31 c9 xor %r9d,%r9d - 66344193: 4d 8b 94 1a c8 00 00 mov 0xc8(%r10,%rbx,1),%r10 - 6634419a: 00 - 6634419b: 45 01 32 add %r14d,(%r10) - 6634419e: 44 89 44 02 64 mov %r8d,0x64(%rdx,%rax,1) - 663441a3: 45 8b 32 mov (%r10),%r14d - 663441a6: 4d 8b 84 43 c8 00 00 mov 0xc8(%r11,%rax,2),%r8 - 663441ad: 00 - 663441ae: 45 85 f6 test %r14d,%r14d - 663441b1: 41 0f 9f c1 setg %r9b - 663441b5: 45 3b 08 cmp (%r8),%r9d - 663441b8: 74 39 je 663441f3 - 663441ba: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663441be: 4d 8b 84 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r8 - 663441c5: 00 - 663441c6: 45 8b 10 mov (%r8),%r10d - 663441c9: 45 85 d2 test %r10d,%r10d - 663441cc: 75 25 jne 663441f3 - 663441ce: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663441d2: 4d 8b 8c 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r9 - 663441d9: 00 - 663441da: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663441de: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663441e5: 4c 63 06 movslq (%rsi),%r8 - 663441e8: 45 8d 50 01 lea 0x1(%r8),%r10d - 663441ec: 44 89 16 mov %r10d,(%rsi) - 663441ef: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663441f3: 48 83 c0 04 add $0x4,%rax - 663441f7: 48 83 f8 60 cmp $0x60,%rax - 663441fb: 0f 85 6f ff ff ff jne 66344170 - 66344201: 5b pop %rbx - 66344202: 5e pop %rsi - 66344203: 5f pop %rdi - 66344204: 41 5e pop %r14 - 66344206: c3 retq - 66344207: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634420e: 00 00 - 66344210: 48 83 c2 64 add $0x64,%rdx - 66344214: b8 c8 00 00 00 mov $0xc8,%eax - 66344219: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344220: 44 8b 02 mov (%rdx),%r8d - 66344223: 45 85 c0 test %r8d,%r8d - 66344226: 74 59 je 66344281 - 66344228: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634422c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344230: 45 29 01 sub %r8d,(%r9) - 66344233: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344239: 45 8b 09 mov (%r9),%r9d - 6634423c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66344240: 45 85 c9 test %r9d,%r9d - 66344243: 41 0f 9f c1 setg %r9b - 66344247: 45 0f b6 c9 movzbl %r9b,%r9d - 6634424b: 45 3b 08 cmp (%r8),%r9d - 6634424e: 74 31 je 66344281 - 66344250: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344254: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344258: 45 8b 00 mov (%r8),%r8d - 6634425b: 45 85 c0 test %r8d,%r8d - 6634425e: 75 21 jne 66344281 - 66344260: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344264: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344268: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634426c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344273: 4c 63 06 movslq (%rsi),%r8 - 66344276: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634427a: 44 89 16 mov %r10d,(%rsi) - 6634427d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344281: 48 83 c0 08 add $0x8,%rax - 66344285: 48 83 c2 04 add $0x4,%rdx - 66344289: 48 3d 88 01 00 00 cmp $0x188,%rax - 6634428f: 75 8f jne 66344220 - 66344291: 5b pop %rbx - 66344292: 5e pop %rsi - 66344293: 5f pop %rdi - 66344294: 41 5e pop %r14 - 66344296: c3 retq - 66344297: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634429e: 00 00 +0000000066344160 : + 66344160: 41 56 push %r14 + 66344162: 55 push %rbp + 66344163: 57 push %rdi + 66344164: 56 push %rsi + 66344165: 53 push %rbx + 66344166: 48 8b 51 10 mov 0x10(%rcx),%rdx + 6634416a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634416e: 48 89 cb mov %rcx,%rbx + 66344171: 8b 08 mov (%rax),%ecx + 66344173: 48 8b 42 08 mov 0x8(%rdx),%rax + 66344177: 8b 00 mov (%rax),%eax + 66344179: 8d 04 48 lea (%rax,%rcx,2),%eax + 6634417c: 48 8b 4a 18 mov 0x18(%rdx),%rcx + 66344180: 8b 09 mov (%rcx),%ecx + 66344182: 8d 04 88 lea (%rax,%rcx,4),%eax + 66344185: 48 8b 4a 20 mov 0x20(%rdx),%rcx + 66344189: 8b 09 mov (%rcx),%ecx + 6634418b: 8d 0c c8 lea (%rax,%rcx,8),%ecx + 6634418e: 48 8b 42 28 mov 0x28(%rdx),%rax + 66344192: 8b 00 mov (%rax),%eax + 66344194: c1 e0 04 shl $0x4,%eax + 66344197: 01 c8 add %ecx,%eax + 66344199: 48 8b 4a 30 mov 0x30(%rdx),%rcx + 6634419d: 8b 09 mov (%rcx),%ecx + 6634419f: c1 e1 05 shl $0x5,%ecx + 663441a2: 01 c8 add %ecx,%eax + 663441a4: 48 8b 4a 38 mov 0x38(%rdx),%rcx + 663441a8: 8b 09 mov (%rcx),%ecx + 663441aa: c1 e1 06 shl $0x6,%ecx + 663441ad: 01 c1 add %eax,%ecx + 663441af: 48 8b 42 40 mov 0x40(%rdx),%rax + 663441b3: 8b 00 mov (%rax),%eax + 663441b5: c1 e0 07 shl $0x7,%eax + 663441b8: 01 c1 add %eax,%ecx + 663441ba: 48 8b 42 48 mov 0x48(%rdx),%rax + 663441be: 8b 00 mov (%rax),%eax + 663441c0: c1 e0 08 shl $0x8,%eax + 663441c3: 01 c8 add %ecx,%eax + 663441c5: 48 8b 4a 50 mov 0x50(%rdx),%rcx + 663441c9: 8b 09 mov (%rcx),%ecx + 663441cb: c1 e1 09 shl $0x9,%ecx + 663441ce: 01 c8 add %ecx,%eax + 663441d0: 48 8b 4a 58 mov 0x58(%rdx),%rcx + 663441d4: 8b 09 mov (%rcx),%ecx + 663441d6: c1 e1 0a shl $0xa,%ecx + 663441d9: 01 c1 add %eax,%ecx + 663441db: 48 8b 42 60 mov 0x60(%rdx),%rax + 663441df: 8b 00 mov (%rax),%eax + 663441e1: c1 e0 0b shl $0xb,%eax + 663441e4: 01 c1 add %eax,%ecx + 663441e6: 48 8b 42 68 mov 0x68(%rdx),%rax + 663441ea: 8b 00 mov (%rax),%eax + 663441ec: c1 e0 0c shl $0xc,%eax + 663441ef: 01 c8 add %ecx,%eax + 663441f1: 48 8b 4a 70 mov 0x70(%rdx),%rcx + 663441f5: 8b 09 mov (%rcx),%ecx + 663441f7: c1 e1 0d shl $0xd,%ecx + 663441fa: 01 c8 add %ecx,%eax + 663441fc: 48 8b 4a 78 mov 0x78(%rdx),%rcx + 66344200: 44 8b 01 mov (%rcx),%r8d + 66344203: 41 c1 e0 0e shl $0xe,%r8d + 66344207: 41 8d 0c 00 lea (%r8,%rax,1),%ecx + 6634420b: 48 8b 82 90 00 00 00 mov 0x90(%rdx),%rax + 66344212: 44 8b 00 mov (%rax),%r8d + 66344215: 48 8b 82 88 00 00 00 mov 0x88(%rdx),%rax + 6634421c: 8b 00 mov (%rax),%eax + 6634421e: 42 8d 04 40 lea (%rax,%r8,2),%eax + 66344222: 4c 8b 82 98 00 00 00 mov 0x98(%rdx),%r8 + 66344229: 45 8b 00 mov (%r8),%r8d + 6634422c: 42 8d 04 80 lea (%rax,%r8,4),%eax + 66344230: 4c 8b 82 a0 00 00 00 mov 0xa0(%rdx),%r8 + 66344237: 45 8b 00 mov (%r8),%r8d + 6634423a: 42 8d 04 c0 lea (%rax,%r8,8),%eax + 6634423e: 4c 8b 82 a8 00 00 00 mov 0xa8(%rdx),%r8 + 66344245: 45 8b 00 mov (%r8),%r8d + 66344248: 41 c1 e0 04 shl $0x4,%r8d + 6634424c: 41 01 c0 add %eax,%r8d + 6634424f: 48 8b 82 b0 00 00 00 mov 0xb0(%rdx),%rax + 66344256: 8b 00 mov (%rax),%eax + 66344258: c1 e0 05 shl $0x5,%eax + 6634425b: 41 01 c0 add %eax,%r8d + 6634425e: 48 8b 82 b8 00 00 00 mov 0xb8(%rdx),%rax + 66344265: 8b 00 mov (%rax),%eax + 66344267: c1 e0 06 shl $0x6,%eax + 6634426a: 44 01 c0 add %r8d,%eax + 6634426d: 4c 8b 82 c0 00 00 00 mov 0xc0(%rdx),%r8 + 66344274: 45 8b 00 mov (%r8),%r8d + 66344277: 41 c1 e0 07 shl $0x7,%r8d + 6634427b: 44 01 c0 add %r8d,%eax + 6634427e: 4c 8b 82 c8 00 00 00 mov 0xc8(%rdx),%r8 + 66344285: 45 8b 00 mov (%r8),%r8d + 66344288: 41 c1 e0 08 shl $0x8,%r8d + 6634428c: 41 01 c0 add %eax,%r8d + 6634428f: 48 8b 82 d0 00 00 00 mov 0xd0(%rdx),%rax + 66344296: 8b 00 mov (%rax),%eax + 66344298: c1 e0 09 shl $0x9,%eax + 6634429b: 41 01 c0 add %eax,%r8d + 6634429e: 48 8b 82 d8 00 00 00 mov 0xd8(%rdx),%rax + 663442a5: 8b 00 mov (%rax),%eax + 663442a7: c1 e0 0a shl $0xa,%eax + 663442aa: 44 01 c0 add %r8d,%eax + 663442ad: 4c 8b 82 e0 00 00 00 mov 0xe0(%rdx),%r8 + 663442b4: 45 8b 00 mov (%r8),%r8d + 663442b7: 41 c1 e0 0b shl $0xb,%r8d + 663442bb: 44 01 c0 add %r8d,%eax + 663442be: 4c 8b 82 e8 00 00 00 mov 0xe8(%rdx),%r8 + 663442c5: 45 8b 00 mov (%r8),%r8d + 663442c8: 41 c1 e0 0c shl $0xc,%r8d + 663442cc: 41 01 c0 add %eax,%r8d + 663442cf: 48 8b 82 f0 00 00 00 mov 0xf0(%rdx),%rax + 663442d6: 8b 00 mov (%rax),%eax + 663442d8: c1 e0 0d shl $0xd,%eax + 663442db: 41 01 c0 add %eax,%r8d + 663442de: 48 8b 82 f8 00 00 00 mov 0xf8(%rdx),%rax + 663442e5: 8b 00 mov (%rax),%eax + 663442e7: c1 e0 0e shl $0xe,%eax + 663442ea: 44 01 c0 add %r8d,%eax + 663442ed: 4c 8b 82 00 01 00 00 mov 0x100(%rdx),%r8 + 663442f4: 45 8b 00 mov (%r8),%r8d + 663442f7: 41 c1 e0 0f shl $0xf,%r8d + 663442fb: 44 01 c0 add %r8d,%eax + 663442fe: 4c 8b 82 80 00 00 00 mov 0x80(%rdx),%r8 + 66344305: 45 8b 00 mov (%r8),%r8d + 66344308: 48 8b 73 08 mov 0x8(%rbx),%rsi + 6634430c: 48 8b 2d 0d 26 01 00 mov 0x1260d(%rip),%rbp # 66356920 + 66344313: 48 8b 3d 16 26 01 00 mov 0x12616(%rip),%rdi # 66356930 + 6634431a: 41 c1 e0 0f shl $0xf,%r8d + 6634431e: 41 01 c8 add %ecx,%r8d + 66344321: 31 c9 xor %ecx,%ecx + 66344323: 41 01 c0 add %eax,%r8d + 66344326: 48 8b 82 88 01 00 00 mov 0x188(%rdx),%rax + 6634432d: 44 03 00 add (%rax),%r8d + 66344330: 44 8b 8c 8e 84 00 00 mov 0x84(%rsi,%rcx,4),%r9d + 66344337: 00 + 66344338: 44 89 c0 mov %r8d,%eax + 6634433b: d3 f8 sar %cl,%eax + 6634433d: 83 e0 01 and $0x1,%eax + 66344340: 44 39 c8 cmp %r9d,%eax + 66344343: 74 75 je 663443ba + 66344345: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66344349: 4c 8d 1c cd 00 00 00 lea 0x0(,%rcx,8),%r11 + 66344350: 00 + 66344351: 41 89 c6 mov %eax,%r14d + 66344354: 45 29 ce sub %r9d,%r14d + 66344357: 45 31 c9 xor %r9d,%r9d + 6634435a: 4f 8b 94 1a 08 01 00 mov 0x108(%r10,%r11,1),%r10 + 66344361: 00 + 66344362: 45 01 32 add %r14d,(%r10) + 66344365: 89 84 8e 84 00 00 00 mov %eax,0x84(%rsi,%rcx,4) + 6634436c: 45 8b 12 mov (%r10),%r10d + 6634436f: 48 8b 84 ca 08 01 00 mov 0x108(%rdx,%rcx,8),%rax + 66344376: 00 + 66344377: 45 85 d2 test %r10d,%r10d + 6634437a: 41 0f 9f c1 setg %r9b + 6634437e: 44 3b 08 cmp (%rax),%r9d + 66344381: 74 37 je 663443ba + 66344383: 48 8b 43 20 mov 0x20(%rbx),%rax + 66344387: 4a 8b 84 18 08 01 00 mov 0x108(%rax,%r11,1),%rax + 6634438e: 00 + 6634438f: 8b 00 mov (%rax),%eax + 66344391: 85 c0 test %eax,%eax + 66344393: 75 25 jne 663443ba + 66344395: 48 8b 43 28 mov 0x28(%rbx),%rax + 66344399: 4e 8b 8c 18 08 01 00 mov 0x108(%rax,%r11,1),%r9 + 663443a0: 00 + 663443a1: 49 8b 41 10 mov 0x10(%r9),%rax + 663443a5: c7 00 01 00 00 00 movl $0x1,(%rax) + 663443ab: 48 63 07 movslq (%rdi),%rax + 663443ae: 44 8d 50 01 lea 0x1(%rax),%r10d + 663443b2: 44 89 17 mov %r10d,(%rdi) + 663443b5: 4c 89 4c c5 00 mov %r9,0x0(%rbp,%rax,8) + 663443ba: 48 83 c1 01 add $0x1,%rcx + 663443be: 48 83 f9 10 cmp $0x10,%rcx + 663443c2: 0f 85 68 ff ff ff jne 66344330 + 663443c8: 41 c1 f8 10 sar $0x10,%r8d + 663443cc: ba 32 00 00 00 mov $0x32,%edx + 663443d1: 48 89 d9 mov %rbx,%rcx + 663443d4: 41 83 e0 01 and $0x1,%r8d + 663443d8: 5b pop %rbx + 663443d9: 5e pop %rsi + 663443da: 5f pop %rdi + 663443db: 5d pop %rbp + 663443dc: 41 5e pop %r14 + 663443de: e9 cd cf ff ff jmpq 663413b0 + 663443e3: 0f 1f 00 nopl (%rax) + 663443e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663443ed: 00 00 00 -00000000663442a0 : - 663442a0: 41 56 push %r14 - 663442a2: 57 push %rdi - 663442a3: 56 push %rsi - 663442a4: 53 push %rbx - 663442a5: 48 8b 3d 74 36 01 00 mov 0x13674(%rip),%rdi # 66357920 - 663442ac: 48 8b 35 7d 36 01 00 mov 0x1367d(%rip),%rsi # 66357930 - 663442b3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 663442b7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663442bb: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax - 663442c2: 8b 00 mov (%rax),%eax - 663442c4: 85 c0 test %eax,%eax - 663442c6: 0f 84 a4 00 00 00 je 66344370 - 663442cc: 31 c0 xor %eax,%eax - 663442ce: 66 90 xchg %ax,%ax - 663442d0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 663442d5: 44 8b 4c 02 44 mov 0x44(%rdx,%rax,1),%r9d - 663442da: 45 8b 00 mov (%r8),%r8d - 663442dd: 45 39 c8 cmp %r9d,%r8d - 663442e0: 74 71 je 66344353 - 663442e2: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663442e6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663442ea: 45 89 c6 mov %r8d,%r14d - 663442ed: 45 29 ce sub %r9d,%r14d - 663442f0: 45 31 c9 xor %r9d,%r9d - 663442f3: 4d 8b 94 1a 88 00 00 mov 0x88(%r10,%rbx,1),%r10 - 663442fa: 00 - 663442fb: 45 01 32 add %r14d,(%r10) - 663442fe: 44 89 44 02 44 mov %r8d,0x44(%rdx,%rax,1) - 66344303: 45 8b 32 mov (%r10),%r14d - 66344306: 4d 8b 84 43 88 00 00 mov 0x88(%r11,%rax,2),%r8 - 6634430d: 00 - 6634430e: 45 85 f6 test %r14d,%r14d - 66344311: 41 0f 9f c1 setg %r9b - 66344315: 45 3b 08 cmp (%r8),%r9d - 66344318: 74 39 je 66344353 - 6634431a: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634431e: 4d 8b 84 18 88 00 00 mov 0x88(%r8,%rbx,1),%r8 - 66344325: 00 - 66344326: 45 8b 10 mov (%r8),%r10d - 66344329: 45 85 d2 test %r10d,%r10d - 6634432c: 75 25 jne 66344353 - 6634432e: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344332: 4d 8b 8c 18 88 00 00 mov 0x88(%r8,%rbx,1),%r9 - 66344339: 00 - 6634433a: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634433e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344345: 4c 63 06 movslq (%rsi),%r8 - 66344348: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634434c: 44 89 16 mov %r10d,(%rsi) - 6634434f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344353: 48 83 c0 04 add $0x4,%rax - 66344357: 48 83 f8 40 cmp $0x40,%rax - 6634435b: 0f 85 6f ff ff ff jne 663442d0 - 66344361: 5b pop %rbx - 66344362: 5e pop %rsi - 66344363: 5f pop %rdi - 66344364: 41 5e pop %r14 - 66344366: c3 retq - 66344367: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634436e: 00 00 - 66344370: 48 83 c2 44 add $0x44,%rdx - 66344374: b8 88 00 00 00 mov $0x88,%eax - 66344379: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344380: 44 8b 02 mov (%rdx),%r8d - 66344383: 45 85 c0 test %r8d,%r8d - 66344386: 74 59 je 663443e1 - 66344388: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634438c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344390: 45 29 01 sub %r8d,(%r9) - 66344393: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344399: 45 8b 09 mov (%r9),%r9d - 6634439c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 663443a0: 45 85 c9 test %r9d,%r9d - 663443a3: 41 0f 9f c1 setg %r9b - 663443a7: 45 0f b6 c9 movzbl %r9b,%r9d - 663443ab: 45 3b 08 cmp (%r8),%r9d - 663443ae: 74 31 je 663443e1 - 663443b0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663443b4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663443b8: 45 8b 00 mov (%r8),%r8d - 663443bb: 45 85 c0 test %r8d,%r8d - 663443be: 75 21 jne 663443e1 - 663443c0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663443c4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 663443c8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663443cc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663443d3: 4c 63 06 movslq (%rsi),%r8 - 663443d6: 45 8d 50 01 lea 0x1(%r8),%r10d - 663443da: 44 89 16 mov %r10d,(%rsi) - 663443dd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663443e1: 48 83 c0 08 add $0x8,%rax - 663443e5: 48 83 c2 04 add $0x4,%rdx - 663443e9: 48 3d 08 01 00 00 cmp $0x108,%rax - 663443ef: 75 8f jne 66344380 - 663443f1: 5b pop %rbx - 663443f2: 5e pop %rsi - 663443f3: 5f pop %rdi - 663443f4: 41 5e pop %r14 - 663443f6: c3 retq - 663443f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663443fe: 00 00 +00000000663443f0 : + 663443f0: 41 56 push %r14 + 663443f2: 41 54 push %r12 + 663443f4: 55 push %rbp + 663443f5: 57 push %rdi + 663443f6: 56 push %rsi + 663443f7: 53 push %rbx + 663443f8: 31 db xor %ebx,%ebx + 663443fa: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 663443fe: 49 89 ca mov %rcx,%r10 + 66344401: 31 c9 xor %ecx,%ecx + 66344403: 49 8b 44 cb 08 mov 0x8(%r11,%rcx,8),%rax + 66344408: 8b 00 mov (%rax),%eax + 6634440a: d3 e0 shl %cl,%eax + 6634440c: 48 83 c1 01 add $0x1,%rcx + 66344410: 01 c3 add %eax,%ebx + 66344412: 48 83 f9 20 cmp $0x20,%rcx + 66344416: 75 eb jne 66344403 + 66344418: 31 c9 xor %ecx,%ecx + 6634441a: 31 d2 xor %edx,%edx + 6634441c: 0f 1f 40 00 nopl 0x0(%rax) + 66344420: 49 8b 84 cb 08 01 00 mov 0x108(%r11,%rcx,8),%rax + 66344427: 00 + 66344428: 8b 00 mov (%rax),%eax + 6634442a: d3 e0 shl %cl,%eax + 6634442c: 48 83 c1 01 add $0x1,%rcx + 66344430: 01 c2 add %eax,%edx + 66344432: 48 83 f9 20 cmp $0x20,%rcx + 66344436: 75 e8 jne 66344420 + 66344438: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax + 6634443f: 01 da add %ebx,%edx + 66344441: 31 c9 xor %ecx,%ecx + 66344443: 49 8b 7a 08 mov 0x8(%r10),%rdi + 66344447: 4c 8b 25 d2 24 01 00 mov 0x124d2(%rip),%r12 # 66356920 + 6634444e: 48 8b 2d db 24 01 00 mov 0x124db(%rip),%rbp # 66356930 + 66344455: 8b 18 mov (%rax),%ebx + 66344457: 01 d3 add %edx,%ebx + 66344459: 4c 63 c3 movslq %ebx,%r8 + 6634445c: 0f 1f 40 00 nopl 0x0(%rax) + 66344460: 8b 94 8f 04 01 00 00 mov 0x104(%rdi,%rcx,4),%edx + 66344467: 89 d8 mov %ebx,%eax + 66344469: d3 f8 sar %cl,%eax + 6634446b: 83 e0 01 and $0x1,%eax + 6634446e: 39 d0 cmp %edx,%eax + 66344470: 74 73 je 663444e5 + 66344472: 4d 8b 4a 18 mov 0x18(%r10),%r9 + 66344476: 48 8d 34 cd 00 00 00 lea 0x0(,%rcx,8),%rsi + 6634447d: 00 + 6634447e: 41 89 c6 mov %eax,%r14d + 66344481: 41 29 d6 sub %edx,%r14d + 66344484: 31 d2 xor %edx,%edx + 66344486: 4d 8b 8c 31 08 02 00 mov 0x208(%r9,%rsi,1),%r9 + 6634448d: 00 + 6634448e: 45 01 31 add %r14d,(%r9) + 66344491: 89 84 8f 04 01 00 00 mov %eax,0x104(%rdi,%rcx,4) + 66344498: 45 8b 09 mov (%r9),%r9d + 6634449b: 49 8b 84 cb 08 02 00 mov 0x208(%r11,%rcx,8),%rax + 663444a2: 00 + 663444a3: 45 85 c9 test %r9d,%r9d + 663444a6: 0f 9f c2 setg %dl + 663444a9: 3b 10 cmp (%rax),%edx + 663444ab: 74 38 je 663444e5 + 663444ad: 49 8b 42 20 mov 0x20(%r10),%rax + 663444b1: 48 8b 84 30 08 02 00 mov 0x208(%rax,%rsi,1),%rax + 663444b8: 00 + 663444b9: 8b 00 mov (%rax),%eax + 663444bb: 85 c0 test %eax,%eax + 663444bd: 75 26 jne 663444e5 + 663444bf: 49 8b 42 28 mov 0x28(%r10),%rax + 663444c3: 48 8b 94 30 08 02 00 mov 0x208(%rax,%rsi,1),%rdx + 663444ca: 00 + 663444cb: 48 8b 42 10 mov 0x10(%rdx),%rax + 663444cf: c7 00 01 00 00 00 movl $0x1,(%rax) + 663444d5: 48 63 45 00 movslq 0x0(%rbp),%rax + 663444d9: 44 8d 48 01 lea 0x1(%rax),%r9d + 663444dd: 44 89 4d 00 mov %r9d,0x0(%rbp) + 663444e1: 49 89 14 c4 mov %rdx,(%r12,%rax,8) + 663444e5: 48 83 c1 01 add $0x1,%rcx + 663444e9: 48 83 f9 20 cmp $0x20,%rcx + 663444ed: 0f 85 6d ff ff ff jne 66344460 + 663444f3: 49 c1 e8 3f shr $0x3f,%r8 + 663444f7: ba 62 00 00 00 mov $0x62,%edx + 663444fc: 4c 89 d1 mov %r10,%rcx + 663444ff: 5b pop %rbx + 66344500: 5e pop %rsi + 66344501: 5f pop %rdi + 66344502: 5d pop %rbp + 66344503: 41 5c pop %r12 + 66344505: 41 5e pop %r14 + 66344507: e9 a4 ce ff ff jmpq 663413b0 + 6634450c: 0f 1f 40 00 nopl 0x0(%rax) -0000000066344400 : - 66344400: 41 56 push %r14 - 66344402: 57 push %rdi - 66344403: 56 push %rsi - 66344404: 53 push %rbx - 66344405: 48 8b 3d 14 35 01 00 mov 0x13514(%rip),%rdi # 66357920 - 6634440c: 48 8b 35 1d 35 01 00 mov 0x1351d(%rip),%rsi # 66357930 - 66344413: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66344417: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634441b: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax - 66344422: 8b 00 mov (%rax),%eax - 66344424: 85 c0 test %eax,%eax - 66344426: 0f 84 a4 00 00 00 je 663444d0 - 6634442c: 31 c0 xor %eax,%eax - 6634442e: 66 90 xchg %ax,%ax - 66344430: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66344435: 44 8b 4c 02 44 mov 0x44(%rdx,%rax,1),%r9d - 6634443a: 45 8b 00 mov (%r8),%r8d - 6634443d: 45 39 c8 cmp %r9d,%r8d - 66344440: 74 71 je 663444b3 - 66344442: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344446: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634444a: 45 89 c6 mov %r8d,%r14d - 6634444d: 45 29 ce sub %r9d,%r14d - 66344450: 45 31 c9 xor %r9d,%r9d - 66344453: 4d 8b 94 1a 88 00 00 mov 0x88(%r10,%rbx,1),%r10 - 6634445a: 00 - 6634445b: 45 01 32 add %r14d,(%r10) - 6634445e: 44 89 44 02 44 mov %r8d,0x44(%rdx,%rax,1) - 66344463: 45 8b 32 mov (%r10),%r14d - 66344466: 4d 8b 84 43 88 00 00 mov 0x88(%r11,%rax,2),%r8 - 6634446d: 00 - 6634446e: 45 85 f6 test %r14d,%r14d - 66344471: 41 0f 9f c1 setg %r9b - 66344475: 45 3b 08 cmp (%r8),%r9d - 66344478: 74 39 je 663444b3 - 6634447a: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634447e: 4d 8b 84 18 88 00 00 mov 0x88(%r8,%rbx,1),%r8 - 66344485: 00 - 66344486: 45 8b 10 mov (%r8),%r10d - 66344489: 45 85 d2 test %r10d,%r10d - 6634448c: 75 25 jne 663444b3 - 6634448e: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344492: 4d 8b 8c 18 88 00 00 mov 0x88(%r8,%rbx,1),%r9 - 66344499: 00 - 6634449a: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634449e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663444a5: 4c 63 06 movslq (%rsi),%r8 - 663444a8: 45 8d 50 01 lea 0x1(%r8),%r10d - 663444ac: 44 89 16 mov %r10d,(%rsi) - 663444af: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663444b3: 48 83 c0 04 add $0x4,%rax - 663444b7: 48 83 f8 40 cmp $0x40,%rax - 663444bb: 0f 85 6f ff ff ff jne 66344430 - 663444c1: 5b pop %rbx - 663444c2: 5e pop %rsi - 663444c3: 5f pop %rdi - 663444c4: 41 5e pop %r14 - 663444c6: c3 retq - 663444c7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663444ce: 00 00 - 663444d0: 48 83 c2 44 add $0x44,%rdx - 663444d4: b8 88 00 00 00 mov $0x88,%eax - 663444d9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663444e0: 44 8b 02 mov (%rdx),%r8d - 663444e3: 45 85 c0 test %r8d,%r8d - 663444e6: 74 59 je 66344541 - 663444e8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663444ec: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 663444f0: 45 29 01 sub %r8d,(%r9) - 663444f3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663444f9: 45 8b 09 mov (%r9),%r9d - 663444fc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66344500: 45 85 c9 test %r9d,%r9d - 66344503: 41 0f 9f c1 setg %r9b - 66344507: 45 0f b6 c9 movzbl %r9b,%r9d - 6634450b: 45 3b 08 cmp (%r8),%r9d - 6634450e: 74 31 je 66344541 - 66344510: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344514: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344518: 45 8b 00 mov (%r8),%r8d - 6634451b: 45 85 c0 test %r8d,%r8d - 6634451e: 75 21 jne 66344541 - 66344520: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344524: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344528: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634452c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344533: 4c 63 06 movslq (%rsi),%r8 - 66344536: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634453a: 44 89 16 mov %r10d,(%rsi) - 6634453d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344541: 48 83 c0 08 add $0x8,%rax - 66344545: 48 83 c2 04 add $0x4,%rdx - 66344549: 48 3d 08 01 00 00 cmp $0x108,%rax - 6634454f: 75 8f jne 663444e0 - 66344551: 5b pop %rbx - 66344552: 5e pop %rsi - 66344553: 5f pop %rdi - 66344554: 41 5e pop %r14 - 66344556: c3 retq - 66344557: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634455e: 00 00 +0000000066344510 : + 66344510: 41 56 push %r14 + 66344512: 55 push %rbp + 66344513: 57 push %rdi + 66344514: 56 push %rsi + 66344515: 53 push %rbx + 66344516: 48 8b 51 10 mov 0x10(%rcx),%rdx + 6634451a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634451e: 48 89 cb mov %rcx,%rbx + 66344521: 8b 08 mov (%rax),%ecx + 66344523: 48 8b 42 08 mov 0x8(%rdx),%rax + 66344527: 8b 00 mov (%rax),%eax + 66344529: 8d 04 48 lea (%rax,%rcx,2),%eax + 6634452c: 48 8b 4a 18 mov 0x18(%rdx),%rcx + 66344530: 8b 09 mov (%rcx),%ecx + 66344532: 8d 04 88 lea (%rax,%rcx,4),%eax + 66344535: 48 8b 4a 20 mov 0x20(%rdx),%rcx + 66344539: 8b 09 mov (%rcx),%ecx + 6634453b: 8d 0c c8 lea (%rax,%rcx,8),%ecx + 6634453e: 48 8b 42 28 mov 0x28(%rdx),%rax + 66344542: 8b 00 mov (%rax),%eax + 66344544: c1 e0 04 shl $0x4,%eax + 66344547: 01 c8 add %ecx,%eax + 66344549: 48 8b 4a 30 mov 0x30(%rdx),%rcx + 6634454d: 8b 09 mov (%rcx),%ecx + 6634454f: c1 e1 05 shl $0x5,%ecx + 66344552: 01 c8 add %ecx,%eax + 66344554: 48 8b 4a 38 mov 0x38(%rdx),%rcx + 66344558: 44 8b 01 mov (%rcx),%r8d + 6634455b: 41 c1 e0 06 shl $0x6,%r8d + 6634455f: 41 8d 0c 00 lea (%r8,%rax,1),%ecx + 66344563: 48 8b 42 50 mov 0x50(%rdx),%rax + 66344567: 44 8b 00 mov (%rax),%r8d + 6634456a: 48 8b 42 48 mov 0x48(%rdx),%rax + 6634456e: 8b 00 mov (%rax),%eax + 66344570: 42 8d 04 40 lea (%rax,%r8,2),%eax + 66344574: 4c 8b 42 58 mov 0x58(%rdx),%r8 + 66344578: 45 8b 00 mov (%r8),%r8d + 6634457b: 42 8d 04 80 lea (%rax,%r8,4),%eax + 6634457f: 4c 8b 42 60 mov 0x60(%rdx),%r8 + 66344583: 45 8b 00 mov (%r8),%r8d + 66344586: 42 8d 04 c0 lea (%rax,%r8,8),%eax + 6634458a: 4c 8b 42 68 mov 0x68(%rdx),%r8 + 6634458e: 45 8b 00 mov (%r8),%r8d + 66344591: 41 c1 e0 04 shl $0x4,%r8d + 66344595: 41 01 c0 add %eax,%r8d + 66344598: 48 8b 42 70 mov 0x70(%rdx),%rax + 6634459c: 8b 00 mov (%rax),%eax + 6634459e: c1 e0 05 shl $0x5,%eax + 663445a1: 41 01 c0 add %eax,%r8d + 663445a4: 48 8b 42 78 mov 0x78(%rdx),%rax + 663445a8: 8b 00 mov (%rax),%eax + 663445aa: c1 e0 06 shl $0x6,%eax + 663445ad: 44 01 c0 add %r8d,%eax + 663445b0: 4c 8b 82 80 00 00 00 mov 0x80(%rdx),%r8 + 663445b7: 45 8b 00 mov (%r8),%r8d + 663445ba: 41 c1 e0 07 shl $0x7,%r8d + 663445be: 44 01 c0 add %r8d,%eax + 663445c1: 4c 8b 42 40 mov 0x40(%rdx),%r8 + 663445c5: 45 8b 00 mov (%r8),%r8d + 663445c8: 48 8b 73 08 mov 0x8(%rbx),%rsi + 663445cc: 48 8b 2d 4d 23 01 00 mov 0x1234d(%rip),%rbp # 66356920 + 663445d3: 48 8b 3d 56 23 01 00 mov 0x12356(%rip),%rdi # 66356930 + 663445da: 41 c1 e0 07 shl $0x7,%r8d + 663445de: 41 01 c8 add %ecx,%r8d + 663445e1: 31 c9 xor %ecx,%ecx + 663445e3: 41 01 c0 add %eax,%r8d + 663445e6: 48 8b 82 c8 00 00 00 mov 0xc8(%rdx),%rax + 663445ed: 44 03 00 add (%rax),%r8d + 663445f0: 44 8b 4c 8e 44 mov 0x44(%rsi,%rcx,4),%r9d + 663445f5: 44 89 c0 mov %r8d,%eax + 663445f8: d3 f8 sar %cl,%eax + 663445fa: 83 e0 01 and $0x1,%eax + 663445fd: 44 39 c8 cmp %r9d,%eax + 66344600: 74 72 je 66344674 + 66344602: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66344606: 4c 8d 1c cd 00 00 00 lea 0x0(,%rcx,8),%r11 + 6634460d: 00 + 6634460e: 41 89 c6 mov %eax,%r14d + 66344611: 45 29 ce sub %r9d,%r14d + 66344614: 45 31 c9 xor %r9d,%r9d + 66344617: 4f 8b 94 1a 88 00 00 mov 0x88(%r10,%r11,1),%r10 + 6634461e: 00 + 6634461f: 45 01 32 add %r14d,(%r10) + 66344622: 89 44 8e 44 mov %eax,0x44(%rsi,%rcx,4) + 66344626: 45 8b 12 mov (%r10),%r10d + 66344629: 48 8b 84 ca 88 00 00 mov 0x88(%rdx,%rcx,8),%rax + 66344630: 00 + 66344631: 45 85 d2 test %r10d,%r10d + 66344634: 41 0f 9f c1 setg %r9b + 66344638: 44 3b 08 cmp (%rax),%r9d + 6634463b: 74 37 je 66344674 + 6634463d: 48 8b 43 20 mov 0x20(%rbx),%rax + 66344641: 4a 8b 84 18 88 00 00 mov 0x88(%rax,%r11,1),%rax + 66344648: 00 + 66344649: 8b 00 mov (%rax),%eax + 6634464b: 85 c0 test %eax,%eax + 6634464d: 75 25 jne 66344674 + 6634464f: 48 8b 43 28 mov 0x28(%rbx),%rax + 66344653: 4e 8b 8c 18 88 00 00 mov 0x88(%rax,%r11,1),%r9 + 6634465a: 00 + 6634465b: 49 8b 41 10 mov 0x10(%r9),%rax + 6634465f: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344665: 48 63 07 movslq (%rdi),%rax + 66344668: 44 8d 50 01 lea 0x1(%rax),%r10d + 6634466c: 44 89 17 mov %r10d,(%rdi) + 6634466f: 4c 89 4c c5 00 mov %r9,0x0(%rbp,%rax,8) + 66344674: 48 83 c1 01 add $0x1,%rcx + 66344678: 48 83 f9 08 cmp $0x8,%rcx + 6634467c: 0f 85 6e ff ff ff jne 663445f0 + 66344682: 41 c1 f8 08 sar $0x8,%r8d + 66344686: ba 1a 00 00 00 mov $0x1a,%edx + 6634468b: 48 89 d9 mov %rbx,%rcx + 6634468e: 41 83 e0 01 and $0x1,%r8d + 66344692: 5b pop %rbx + 66344693: 5e pop %rsi + 66344694: 5f pop %rdi + 66344695: 5d pop %rbp + 66344696: 41 5e pop %r14 + 66344698: e9 13 cd ff ff jmpq 663413b0 + 6634469d: 0f 1f 00 nopl (%rax) -0000000066344560 : - 66344560: 48 8b 41 10 mov 0x10(%rcx),%rax - 66344564: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66344568: 4c 8b 48 18 mov 0x18(%rax),%r9 - 6634456c: 44 8b 42 08 mov 0x8(%rdx),%r8d - 66344570: 45 8b 09 mov (%r9),%r9d - 66344573: 45 85 c9 test %r9d,%r9d - 66344576: 75 2b jne 663445a3 - 66344578: 45 85 c0 test %r8d,%r8d - 6634457b: 74 25 je 663445a2 - 6634457d: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66344581: 48 8b 40 10 mov 0x10(%rax),%rax - 66344585: 4d 8b 49 10 mov 0x10(%r9),%r9 - 66344589: 45 29 01 sub %r8d,(%r9) - 6634458c: c7 42 08 00 00 00 00 movl $0x0,0x8(%rdx) - 66344593: 41 8b 11 mov (%r9),%edx - 66344596: 85 d2 test %edx,%edx - 66344598: 0f 9f c2 setg %dl - 6634459b: 0f b6 d2 movzbl %dl,%edx - 6634459e: 3b 10 cmp (%rax),%edx - 663445a0: 75 36 jne 663445d8 - 663445a2: c3 retq - 663445a3: 4c 8b 48 08 mov 0x8(%rax),%r9 - 663445a7: 45 8b 09 mov (%r9),%r9d - 663445aa: 45 39 c1 cmp %r8d,%r9d - 663445ad: 74 f3 je 663445a2 - 663445af: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663445b3: 45 89 cb mov %r9d,%r11d - 663445b6: 45 29 c3 sub %r8d,%r11d - 663445b9: 48 8b 40 10 mov 0x10(%rax),%rax - 663445bd: 4d 8b 52 10 mov 0x10(%r10),%r10 - 663445c1: 45 01 1a add %r11d,(%r10) - 663445c4: 44 89 4a 08 mov %r9d,0x8(%rdx) - 663445c8: 45 8b 02 mov (%r10),%r8d - 663445cb: 45 85 c0 test %r8d,%r8d - 663445ce: 0f 9f c2 setg %dl - 663445d1: 0f b6 d2 movzbl %dl,%edx - 663445d4: 3b 10 cmp (%rax),%edx - 663445d6: 74 ca je 663445a2 - 663445d8: 48 8b 41 20 mov 0x20(%rcx),%rax - 663445dc: 48 8b 40 10 mov 0x10(%rax),%rax - 663445e0: 8b 00 mov (%rax),%eax - 663445e2: 85 c0 test %eax,%eax - 663445e4: 75 bc jne 663445a2 - 663445e6: 48 8b 41 28 mov 0x28(%rcx),%rax - 663445ea: 48 8b 0d 3f 33 01 00 mov 0x1333f(%rip),%rcx # 66357930 - 663445f1: 4c 8b 05 28 33 01 00 mov 0x13328(%rip),%r8 # 66357920 - 663445f8: 48 8b 50 10 mov 0x10(%rax),%rdx - 663445fc: 48 8b 42 10 mov 0x10(%rdx),%rax - 66344600: c7 00 01 00 00 00 movl $0x1,(%rax) - 66344606: 48 63 01 movslq (%rcx),%rax - 66344609: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634460d: 44 89 09 mov %r9d,(%rcx) - 66344610: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66344614: c3 retq - 66344615: 90 nop - 66344616: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634461d: 00 00 00 +00000000663446a0 : + 663446a0: 48 8b 41 10 mov 0x10(%rcx),%rax + 663446a4: 48 8b 50 18 mov 0x18(%rax),%rdx + 663446a8: 44 8b 0a mov (%rdx),%r9d + 663446ab: 45 85 c9 test %r9d,%r9d + 663446ae: 74 77 je 66344727 + 663446b0: 48 8b 50 08 mov 0x8(%rax),%rdx + 663446b4: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663446b8: 8b 12 mov (%rdx),%edx + 663446ba: 45 8b 48 08 mov 0x8(%r8),%r9d + 663446be: 41 39 d1 cmp %edx,%r9d + 663446c1: 74 64 je 66344727 + 663446c3: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663446c7: 41 89 d3 mov %edx,%r11d + 663446ca: 45 29 cb sub %r9d,%r11d + 663446cd: 48 8b 40 10 mov 0x10(%rax),%rax + 663446d1: 4d 8b 52 10 mov 0x10(%r10),%r10 + 663446d5: 45 01 1a add %r11d,(%r10) + 663446d8: 41 89 50 08 mov %edx,0x8(%r8) + 663446dc: 31 d2 xor %edx,%edx + 663446de: 45 8b 02 mov (%r10),%r8d + 663446e1: 45 85 c0 test %r8d,%r8d + 663446e4: 0f 9f c2 setg %dl + 663446e7: 3b 10 cmp (%rax),%edx + 663446e9: 74 3c je 66344727 + 663446eb: 48 8b 41 20 mov 0x20(%rcx),%rax + 663446ef: 48 8b 40 10 mov 0x10(%rax),%rax + 663446f3: 8b 00 mov (%rax),%eax + 663446f5: 85 c0 test %eax,%eax + 663446f7: 75 2e jne 66344727 + 663446f9: 48 8b 41 28 mov 0x28(%rcx),%rax + 663446fd: 48 8b 0d 2c 22 01 00 mov 0x1222c(%rip),%rcx # 66356930 + 66344704: 4c 8b 05 15 22 01 00 mov 0x12215(%rip),%r8 # 66356920 + 6634470b: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634470f: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344713: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344719: 48 63 01 movslq (%rcx),%rax + 6634471c: 44 8d 48 01 lea 0x1(%rax),%r9d + 66344720: 44 89 09 mov %r9d,(%rcx) + 66344723: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66344727: c3 retq + 66344728: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634472f: 00 -0000000066344620 : - 66344620: 48 8b 41 10 mov 0x10(%rcx),%rax - 66344624: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66344628: 4c 8b 48 18 mov 0x18(%rax),%r9 - 6634462c: 44 8b 42 08 mov 0x8(%rdx),%r8d - 66344630: 45 8b 09 mov (%r9),%r9d - 66344633: 45 85 c9 test %r9d,%r9d - 66344636: 75 2b jne 66344663 - 66344638: 45 85 c0 test %r8d,%r8d - 6634463b: 74 25 je 66344662 - 6634463d: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66344641: 48 8b 40 10 mov 0x10(%rax),%rax - 66344645: 4d 8b 49 10 mov 0x10(%r9),%r9 - 66344649: 45 29 01 sub %r8d,(%r9) - 6634464c: c7 42 08 00 00 00 00 movl $0x0,0x8(%rdx) - 66344653: 41 8b 11 mov (%r9),%edx - 66344656: 85 d2 test %edx,%edx - 66344658: 0f 9f c2 setg %dl - 6634465b: 0f b6 d2 movzbl %dl,%edx - 6634465e: 3b 10 cmp (%rax),%edx - 66344660: 75 36 jne 66344698 - 66344662: c3 retq - 66344663: 4c 8b 48 08 mov 0x8(%rax),%r9 - 66344667: 45 8b 09 mov (%r9),%r9d - 6634466a: 45 39 c1 cmp %r8d,%r9d - 6634466d: 74 f3 je 66344662 - 6634466f: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344673: 45 89 cb mov %r9d,%r11d - 66344676: 45 29 c3 sub %r8d,%r11d - 66344679: 48 8b 40 10 mov 0x10(%rax),%rax - 6634467d: 4d 8b 52 10 mov 0x10(%r10),%r10 - 66344681: 45 01 1a add %r11d,(%r10) - 66344684: 44 89 4a 08 mov %r9d,0x8(%rdx) - 66344688: 45 8b 02 mov (%r10),%r8d - 6634468b: 45 85 c0 test %r8d,%r8d - 6634468e: 0f 9f c2 setg %dl - 66344691: 0f b6 d2 movzbl %dl,%edx - 66344694: 3b 10 cmp (%rax),%edx - 66344696: 74 ca je 66344662 - 66344698: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634469c: 48 8b 40 10 mov 0x10(%rax),%rax - 663446a0: 8b 00 mov (%rax),%eax - 663446a2: 85 c0 test %eax,%eax - 663446a4: 75 bc jne 66344662 - 663446a6: 48 8b 41 28 mov 0x28(%rcx),%rax - 663446aa: 48 8b 0d 7f 32 01 00 mov 0x1327f(%rip),%rcx # 66357930 - 663446b1: 4c 8b 05 68 32 01 00 mov 0x13268(%rip),%r8 # 66357920 - 663446b8: 48 8b 50 10 mov 0x10(%rax),%rdx - 663446bc: 48 8b 42 10 mov 0x10(%rdx),%rax - 663446c0: c7 00 01 00 00 00 movl $0x1,(%rax) - 663446c6: 48 63 01 movslq (%rcx),%rax - 663446c9: 44 8d 48 01 lea 0x1(%rax),%r9d - 663446cd: 44 89 09 mov %r9d,(%rcx) - 663446d0: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 663446d4: c3 retq - 663446d5: 90 nop - 663446d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663446dd: 00 00 00 +0000000066344730 : + 66344730: 56 push %rsi + 66344731: 53 push %rbx + 66344732: 48 8b 41 10 mov 0x10(%rcx),%rax + 66344736: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634473a: 44 8b 0a mov (%rdx),%r9d + 6634473d: 45 85 c9 test %r9d,%r9d + 66344740: 0f 84 4e 01 00 00 je 66344894 + 66344746: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634474a: 4c 8b 40 08 mov 0x8(%rax),%r8 + 6634474e: 48 8b 1d cb 21 01 00 mov 0x121cb(%rip),%rbx # 66356920 + 66344755: 4c 8b 1d d4 21 01 00 mov 0x121d4(%rip),%r11 # 66356930 + 6634475c: 44 8b 4a 10 mov 0x10(%rdx),%r9d + 66344760: 45 8b 00 mov (%r8),%r8d + 66344763: 45 39 c8 cmp %r9d,%r8d + 66344766: 74 5b je 663447c3 + 66344768: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634476c: 44 89 c6 mov %r8d,%esi + 6634476f: 44 29 ce sub %r9d,%esi + 66344772: 45 31 c9 xor %r9d,%r9d + 66344775: 4d 8b 52 20 mov 0x20(%r10),%r10 + 66344779: 41 01 32 add %esi,(%r10) + 6634477c: 44 89 42 10 mov %r8d,0x10(%rdx) + 66344780: 45 8b 02 mov (%r10),%r8d + 66344783: 45 85 c0 test %r8d,%r8d + 66344786: 4c 8b 40 20 mov 0x20(%rax),%r8 + 6634478a: 41 0f 9f c1 setg %r9b + 6634478e: 45 3b 08 cmp (%r8),%r9d + 66344791: 74 30 je 663447c3 + 66344793: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344797: 4d 8b 40 20 mov 0x20(%r8),%r8 + 6634479b: 41 8b 30 mov (%r8),%esi + 6634479e: 85 f6 test %esi,%esi + 663447a0: 75 21 jne 663447c3 + 663447a2: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 663447a6: 4d 8b 48 20 mov 0x20(%r8),%r9 + 663447aa: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663447ae: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663447b5: 4d 63 03 movslq (%r11),%r8 + 663447b8: 45 8d 50 01 lea 0x1(%r8),%r10d + 663447bc: 45 89 13 mov %r10d,(%r11) + 663447bf: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) + 663447c3: 4c 8b 40 10 mov 0x10(%rax),%r8 + 663447c7: 44 8b 4a 14 mov 0x14(%rdx),%r9d + 663447cb: 45 8b 00 mov (%r8),%r8d + 663447ce: 45 39 c8 cmp %r9d,%r8d + 663447d1: 74 5c je 6634482f + 663447d3: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663447d7: 44 89 c6 mov %r8d,%esi + 663447da: 44 29 ce sub %r9d,%esi + 663447dd: 45 31 c9 xor %r9d,%r9d + 663447e0: 4d 8b 52 28 mov 0x28(%r10),%r10 + 663447e4: 41 01 32 add %esi,(%r10) + 663447e7: 44 89 42 14 mov %r8d,0x14(%rdx) + 663447eb: 45 8b 12 mov (%r10),%r10d + 663447ee: 4c 8b 40 28 mov 0x28(%rax),%r8 + 663447f2: 45 85 d2 test %r10d,%r10d + 663447f5: 41 0f 9f c1 setg %r9b + 663447f9: 45 3b 08 cmp (%r8),%r9d + 663447fc: 74 31 je 6634482f + 663447fe: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344802: 4d 8b 40 28 mov 0x28(%r8),%r8 + 66344806: 45 8b 08 mov (%r8),%r9d + 66344809: 45 85 c9 test %r9d,%r9d + 6634480c: 75 21 jne 6634482f + 6634480e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344812: 4d 8b 48 28 mov 0x28(%r8),%r9 + 66344816: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634481a: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344821: 4d 63 03 movslq (%r11),%r8 + 66344824: 45 8d 50 01 lea 0x1(%r8),%r10d + 66344828: 45 89 13 mov %r10d,(%r11) + 6634482b: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) + 6634482f: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66344833: 44 8b 4a 18 mov 0x18(%rdx),%r9d + 66344837: 45 8b 00 mov (%r8),%r8d + 6634483a: 45 39 c8 cmp %r9d,%r8d + 6634483d: 74 55 je 66344894 + 6634483f: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344843: 44 89 c6 mov %r8d,%esi + 66344846: 44 29 ce sub %r9d,%esi + 66344849: 48 8b 40 30 mov 0x30(%rax),%rax + 6634484d: 4d 8b 52 30 mov 0x30(%r10),%r10 + 66344851: 41 01 32 add %esi,(%r10) + 66344854: 44 89 42 18 mov %r8d,0x18(%rdx) + 66344858: 31 d2 xor %edx,%edx + 6634485a: 45 8b 02 mov (%r10),%r8d + 6634485d: 45 85 c0 test %r8d,%r8d + 66344860: 0f 9f c2 setg %dl + 66344863: 3b 10 cmp (%rax),%edx + 66344865: 74 2d je 66344894 + 66344867: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634486b: 48 8b 40 30 mov 0x30(%rax),%rax + 6634486f: 8b 00 mov (%rax),%eax + 66344871: 85 c0 test %eax,%eax + 66344873: 75 1f jne 66344894 + 66344875: 48 8b 41 28 mov 0x28(%rcx),%rax + 66344879: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634487d: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344881: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344887: 49 63 03 movslq (%r11),%rax + 6634488a: 8d 48 01 lea 0x1(%rax),%ecx + 6634488d: 41 89 0b mov %ecx,(%r11) + 66344890: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) + 66344894: 5b pop %rbx + 66344895: 5e pop %rsi + 66344896: c3 retq + 66344897: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634489e: 00 00 -00000000663446e0 : - 663446e0: 41 56 push %r14 - 663446e2: 57 push %rdi - 663446e3: 56 push %rsi - 663446e4: 53 push %rbx - 663446e5: 48 8b 3d 34 32 01 00 mov 0x13234(%rip),%rdi # 66357920 - 663446ec: 48 8b 35 3d 32 01 00 mov 0x1323d(%rip),%rsi # 66357930 - 663446f3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 663446f7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663446fb: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax - 66344702: 8b 00 mov (%rax),%eax - 66344704: 85 c0 test %eax,%eax - 66344706: 0f 84 a4 00 00 00 je 663447b0 - 6634470c: 31 c0 xor %eax,%eax - 6634470e: 66 90 xchg %ax,%ax - 66344710: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66344715: 44 8b 4c 02 40 mov 0x40(%rdx,%rax,1),%r9d - 6634471a: 45 8b 00 mov (%r8),%r8d - 6634471d: 45 39 c8 cmp %r9d,%r8d - 66344720: 74 71 je 66344793 - 66344722: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344726: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634472a: 45 89 c6 mov %r8d,%r14d - 6634472d: 45 29 ce sub %r9d,%r14d - 66344730: 45 31 c9 xor %r9d,%r9d - 66344733: 4d 8b 94 1a 80 00 00 mov 0x80(%r10,%rbx,1),%r10 - 6634473a: 00 - 6634473b: 45 01 32 add %r14d,(%r10) - 6634473e: 44 89 44 02 40 mov %r8d,0x40(%rdx,%rax,1) - 66344743: 45 8b 32 mov (%r10),%r14d - 66344746: 4d 8b 84 43 80 00 00 mov 0x80(%r11,%rax,2),%r8 - 6634474d: 00 - 6634474e: 45 85 f6 test %r14d,%r14d - 66344751: 41 0f 9f c1 setg %r9b - 66344755: 45 3b 08 cmp (%r8),%r9d - 66344758: 74 39 je 66344793 - 6634475a: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634475e: 4d 8b 84 18 80 00 00 mov 0x80(%r8,%rbx,1),%r8 - 66344765: 00 - 66344766: 45 8b 10 mov (%r8),%r10d - 66344769: 45 85 d2 test %r10d,%r10d - 6634476c: 75 25 jne 66344793 - 6634476e: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344772: 4d 8b 8c 18 80 00 00 mov 0x80(%r8,%rbx,1),%r9 - 66344779: 00 - 6634477a: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634477e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344785: 4c 63 06 movslq (%rsi),%r8 - 66344788: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634478c: 44 89 16 mov %r10d,(%rsi) - 6634478f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344793: 48 83 c0 04 add $0x4,%rax - 66344797: 48 83 f8 3c cmp $0x3c,%rax - 6634479b: 0f 85 6f ff ff ff jne 66344710 - 663447a1: 5b pop %rbx - 663447a2: 5e pop %rsi - 663447a3: 5f pop %rdi - 663447a4: 41 5e pop %r14 - 663447a6: c3 retq - 663447a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663447ae: 00 00 - 663447b0: 48 83 c2 40 add $0x40,%rdx - 663447b4: b8 80 00 00 00 mov $0x80,%eax - 663447b9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663447c0: 44 8b 02 mov (%rdx),%r8d - 663447c3: 45 85 c0 test %r8d,%r8d - 663447c6: 74 59 je 66344821 - 663447c8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 663447cc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 663447d0: 45 29 01 sub %r8d,(%r9) - 663447d3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663447d9: 45 8b 09 mov (%r9),%r9d - 663447dc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 663447e0: 45 85 c9 test %r9d,%r9d - 663447e3: 41 0f 9f c1 setg %r9b - 663447e7: 45 0f b6 c9 movzbl %r9b,%r9d - 663447eb: 45 3b 08 cmp (%r8),%r9d - 663447ee: 74 31 je 66344821 - 663447f0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663447f4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663447f8: 45 8b 00 mov (%r8),%r8d - 663447fb: 45 85 c0 test %r8d,%r8d - 663447fe: 75 21 jne 66344821 - 66344800: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344804: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344808: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634480c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344813: 4c 63 06 movslq (%rsi),%r8 - 66344816: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634481a: 44 89 16 mov %r10d,(%rsi) - 6634481d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344821: 48 83 c0 08 add $0x8,%rax - 66344825: 48 83 c2 04 add $0x4,%rdx - 66344829: 48 3d f8 00 00 00 cmp $0xf8,%rax - 6634482f: 75 8f jne 663447c0 - 66344831: 5b pop %rbx - 66344832: 5e pop %rsi - 66344833: 5f pop %rdi - 66344834: 41 5e pop %r14 - 66344836: c3 retq - 66344837: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634483e: 00 00 +00000000663448a0 : + 663448a0: ba 01 00 00 00 mov $0x1,%edx + 663448a5: 48 8b 41 10 mov 0x10(%rcx),%rax + 663448a9: 4c 8b 40 08 mov 0x8(%rax),%r8 + 663448ad: 45 8b 00 mov (%r8),%r8d + 663448b0: 45 85 c0 test %r8d,%r8d + 663448b3: 74 0c je 663448c1 + 663448b5: 4c 8b 40 10 mov 0x10(%rax),%r8 + 663448b9: 45 8b 18 mov (%r8),%r11d + 663448bc: 45 85 db test %r11d,%r11d + 663448bf: 75 72 jne 66344933 + 663448c1: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663448c5: 45 8b 48 14 mov 0x14(%r8),%r9d + 663448c9: 44 39 ca cmp %r9d,%edx + 663448cc: 74 64 je 66344932 + 663448ce: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663448d2: 41 89 d3 mov %edx,%r11d + 663448d5: 45 29 cb sub %r9d,%r11d + 663448d8: 48 8b 40 28 mov 0x28(%rax),%rax + 663448dc: 4d 8b 52 28 mov 0x28(%r10),%r10 + 663448e0: 45 01 1a add %r11d,(%r10) + 663448e3: 41 89 50 14 mov %edx,0x14(%r8) + 663448e7: 31 d2 xor %edx,%edx + 663448e9: 45 8b 02 mov (%r10),%r8d + 663448ec: 45 85 c0 test %r8d,%r8d + 663448ef: 0f 9f c2 setg %dl + 663448f2: 3b 10 cmp (%rax),%edx + 663448f4: 74 3c je 66344932 + 663448f6: 48 8b 41 20 mov 0x20(%rcx),%rax + 663448fa: 48 8b 40 28 mov 0x28(%rax),%rax + 663448fe: 8b 00 mov (%rax),%eax + 66344900: 85 c0 test %eax,%eax + 66344902: 75 2e jne 66344932 + 66344904: 48 8b 41 28 mov 0x28(%rcx),%rax + 66344908: 48 8b 0d 21 20 01 00 mov 0x12021(%rip),%rcx # 66356930 + 6634490f: 4c 8b 05 0a 20 01 00 mov 0x1200a(%rip),%r8 # 66356920 + 66344916: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634491a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634491e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344924: 48 63 01 movslq (%rcx),%rax + 66344927: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634492b: 44 89 09 mov %r9d,(%rcx) + 6634492e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66344932: c3 retq + 66344933: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66344937: 45 8b 10 mov (%r8),%r10d + 6634493a: 45 85 d2 test %r10d,%r10d + 6634493d: 74 82 je 663448c1 + 6634493f: 48 8b 50 20 mov 0x20(%rax),%rdx + 66344943: 44 8b 0a mov (%rdx),%r9d + 66344946: 31 d2 xor %edx,%edx + 66344948: 45 85 c9 test %r9d,%r9d + 6634494b: 0f 94 c2 sete %dl + 6634494e: e9 6e ff ff ff jmpq 663448c1 + 66344953: 0f 1f 00 nopl (%rax) + 66344956: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634495d: 00 00 00 -0000000066344840 : - 66344840: 41 56 push %r14 - 66344842: 57 push %rdi - 66344843: 56 push %rsi - 66344844: 53 push %rbx - 66344845: 48 8b 3d d4 30 01 00 mov 0x130d4(%rip),%rdi # 66357920 - 6634484c: 48 8b 35 dd 30 01 00 mov 0x130dd(%rip),%rsi # 66357930 - 66344853: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66344857: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634485b: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax - 66344862: 8b 00 mov (%rax),%eax - 66344864: 85 c0 test %eax,%eax - 66344866: 0f 84 a4 00 00 00 je 66344910 - 6634486c: 31 c0 xor %eax,%eax - 6634486e: 66 90 xchg %ax,%ax - 66344870: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66344875: 44 8b 4c 02 40 mov 0x40(%rdx,%rax,1),%r9d - 6634487a: 45 8b 00 mov (%r8),%r8d - 6634487d: 45 39 c8 cmp %r9d,%r8d - 66344880: 74 71 je 663448f3 - 66344882: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344886: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634488a: 45 89 c6 mov %r8d,%r14d - 6634488d: 45 29 ce sub %r9d,%r14d - 66344890: 45 31 c9 xor %r9d,%r9d - 66344893: 4d 8b 94 1a 80 00 00 mov 0x80(%r10,%rbx,1),%r10 - 6634489a: 00 - 6634489b: 45 01 32 add %r14d,(%r10) - 6634489e: 44 89 44 02 40 mov %r8d,0x40(%rdx,%rax,1) - 663448a3: 45 8b 32 mov (%r10),%r14d - 663448a6: 4d 8b 84 43 80 00 00 mov 0x80(%r11,%rax,2),%r8 - 663448ad: 00 - 663448ae: 45 85 f6 test %r14d,%r14d - 663448b1: 41 0f 9f c1 setg %r9b - 663448b5: 45 3b 08 cmp (%r8),%r9d - 663448b8: 74 39 je 663448f3 - 663448ba: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663448be: 4d 8b 84 18 80 00 00 mov 0x80(%r8,%rbx,1),%r8 - 663448c5: 00 - 663448c6: 45 8b 10 mov (%r8),%r10d - 663448c9: 45 85 d2 test %r10d,%r10d - 663448cc: 75 25 jne 663448f3 - 663448ce: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663448d2: 4d 8b 8c 18 80 00 00 mov 0x80(%r8,%rbx,1),%r9 - 663448d9: 00 - 663448da: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663448de: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663448e5: 4c 63 06 movslq (%rsi),%r8 - 663448e8: 45 8d 50 01 lea 0x1(%r8),%r10d - 663448ec: 44 89 16 mov %r10d,(%rsi) - 663448ef: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663448f3: 48 83 c0 04 add $0x4,%rax - 663448f7: 48 83 f8 3c cmp $0x3c,%rax - 663448fb: 0f 85 6f ff ff ff jne 66344870 - 66344901: 5b pop %rbx - 66344902: 5e pop %rsi - 66344903: 5f pop %rdi - 66344904: 41 5e pop %r14 - 66344906: c3 retq - 66344907: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634490e: 00 00 - 66344910: 48 83 c2 40 add $0x40,%rdx - 66344914: b8 80 00 00 00 mov $0x80,%eax - 66344919: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344920: 44 8b 02 mov (%rdx),%r8d - 66344923: 45 85 c0 test %r8d,%r8d - 66344926: 74 59 je 66344981 - 66344928: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634492c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344930: 45 29 01 sub %r8d,(%r9) - 66344933: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344939: 45 8b 09 mov (%r9),%r9d - 6634493c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66344940: 45 85 c9 test %r9d,%r9d - 66344943: 41 0f 9f c1 setg %r9b - 66344947: 45 0f b6 c9 movzbl %r9b,%r9d - 6634494b: 45 3b 08 cmp (%r8),%r9d - 6634494e: 74 31 je 66344981 - 66344950: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344954: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344958: 45 8b 00 mov (%r8),%r8d - 6634495b: 45 85 c0 test %r8d,%r8d - 6634495e: 75 21 jne 66344981 - 66344960: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344964: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344968: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634496c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344973: 4c 63 06 movslq (%rsi),%r8 - 66344976: 45 8d 50 01 lea 0x1(%r8),%r10d - 6634497a: 44 89 16 mov %r10d,(%rsi) - 6634497d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344981: 48 83 c0 08 add $0x8,%rax - 66344985: 48 83 c2 04 add $0x4,%rdx - 66344989: 48 3d f8 00 00 00 cmp $0xf8,%rax - 6634498f: 75 8f jne 66344920 - 66344991: 5b pop %rbx - 66344992: 5e pop %rsi - 66344993: 5f pop %rdi - 66344994: 41 5e pop %r14 - 66344996: c3 retq - 66344997: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634499e: 00 00 +0000000066344960 : + 66344960: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66344964: 48 8b 42 08 mov 0x8(%rdx),%rax + 66344968: 8b 00 mov (%rax),%eax + 6634496a: 85 c0 test %eax,%eax + 6634496c: 74 0a je 66344978 + 6634496e: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344972: 8b 00 mov (%rax),%eax + 66344974: 85 c0 test %eax,%eax + 66344976: 75 78 jne 663449f0 + 66344978: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634497c: 45 8b 48 14 mov 0x14(%r8),%r9d + 66344980: 44 39 c8 cmp %r9d,%eax + 66344983: 74 67 je 663449ec + 66344985: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344989: 41 89 c3 mov %eax,%r11d + 6634498c: 45 29 cb sub %r9d,%r11d + 6634498f: 4d 8b 52 28 mov 0x28(%r10),%r10 + 66344993: 45 01 1a add %r11d,(%r10) + 66344996: 41 89 40 14 mov %eax,0x14(%r8) + 6634499a: 45 31 c0 xor %r8d,%r8d + 6634499d: 45 8b 0a mov (%r10),%r9d + 663449a0: 48 8b 42 28 mov 0x28(%rdx),%rax + 663449a4: 45 85 c9 test %r9d,%r9d + 663449a7: 41 0f 9f c0 setg %r8b + 663449ab: 44 3b 00 cmp (%rax),%r8d + 663449ae: 74 3c je 663449ec + 663449b0: 48 8b 41 20 mov 0x20(%rcx),%rax + 663449b4: 48 8b 40 28 mov 0x28(%rax),%rax + 663449b8: 8b 00 mov (%rax),%eax + 663449ba: 85 c0 test %eax,%eax + 663449bc: 75 2e jne 663449ec + 663449be: 48 8b 41 28 mov 0x28(%rcx),%rax + 663449c2: 48 8b 0d 67 1f 01 00 mov 0x11f67(%rip),%rcx # 66356930 + 663449c9: 4c 8b 05 50 1f 01 00 mov 0x11f50(%rip),%r8 # 66356920 + 663449d0: 48 8b 50 28 mov 0x28(%rax),%rdx + 663449d4: 48 8b 42 10 mov 0x10(%rdx),%rax + 663449d8: c7 00 01 00 00 00 movl $0x1,(%rax) + 663449de: 48 63 01 movslq (%rcx),%rax + 663449e1: 44 8d 48 01 lea 0x1(%rax),%r9d + 663449e5: 44 89 09 mov %r9d,(%rcx) + 663449e8: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663449ec: c3 retq + 663449ed: 0f 1f 00 nopl (%rax) + 663449f0: 48 8b 42 18 mov 0x18(%rdx),%rax + 663449f4: 8b 00 mov (%rax),%eax + 663449f6: 85 c0 test %eax,%eax + 663449f8: 0f 84 7a ff ff ff je 66344978 + 663449fe: 48 8b 42 20 mov 0x20(%rdx),%rax + 66344a02: 44 8b 10 mov (%rax),%r10d + 66344a05: 31 c0 xor %eax,%eax + 66344a07: 45 85 d2 test %r10d,%r10d + 66344a0a: 0f 95 c0 setne %al + 66344a0d: e9 66 ff ff ff jmpq 66344978 + 66344a12: 0f 1f 40 00 nopl 0x0(%rax) + 66344a16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66344a1d: 00 00 00 -00000000663449a0 : - 663449a0: 41 56 push %r14 - 663449a2: 57 push %rdi - 663449a3: 56 push %rsi - 663449a4: 53 push %rbx - 663449a5: 48 8b 3d 74 2f 01 00 mov 0x12f74(%rip),%rdi # 66357920 - 663449ac: 48 8b 35 7d 2f 01 00 mov 0x12f7d(%rip),%rsi # 66357930 - 663449b3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 663449b7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663449bb: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax - 663449c2: 8b 00 mov (%rax),%eax - 663449c4: 85 c0 test %eax,%eax - 663449c6: 0f 84 94 00 00 00 je 66344a60 - 663449cc: 31 c0 xor %eax,%eax - 663449ce: 66 90 xchg %ax,%ax - 663449d0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 663449d5: 44 8b 4c 02 3c mov 0x3c(%rdx,%rax,1),%r9d - 663449da: 45 8b 00 mov (%r8),%r8d - 663449dd: 45 39 c8 cmp %r9d,%r8d - 663449e0: 74 65 je 66344a47 - 663449e2: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663449e6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663449ea: 45 89 c6 mov %r8d,%r14d - 663449ed: 45 29 ce sub %r9d,%r14d - 663449f0: 45 31 c9 xor %r9d,%r9d - 663449f3: 4d 8b 54 1a 78 mov 0x78(%r10,%rbx,1),%r10 - 663449f8: 45 01 32 add %r14d,(%r10) - 663449fb: 44 89 44 02 3c mov %r8d,0x3c(%rdx,%rax,1) - 66344a00: 45 8b 32 mov (%r10),%r14d - 66344a03: 4d 8b 44 43 78 mov 0x78(%r11,%rax,2),%r8 - 66344a08: 45 85 f6 test %r14d,%r14d - 66344a0b: 41 0f 9f c1 setg %r9b - 66344a0f: 45 3b 08 cmp (%r8),%r9d - 66344a12: 74 33 je 66344a47 - 66344a14: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344a18: 4d 8b 44 18 78 mov 0x78(%r8,%rbx,1),%r8 - 66344a1d: 45 8b 10 mov (%r8),%r10d - 66344a20: 45 85 d2 test %r10d,%r10d - 66344a23: 75 22 jne 66344a47 - 66344a25: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344a29: 4d 8b 4c 18 78 mov 0x78(%r8,%rbx,1),%r9 - 66344a2e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344a32: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344a39: 4c 63 06 movslq (%rsi),%r8 - 66344a3c: 45 8d 50 01 lea 0x1(%r8),%r10d - 66344a40: 44 89 16 mov %r10d,(%rsi) - 66344a43: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344a47: 48 83 c0 04 add $0x4,%rax - 66344a4b: 48 83 f8 38 cmp $0x38,%rax - 66344a4f: 0f 85 7b ff ff ff jne 663449d0 - 66344a55: 5b pop %rbx - 66344a56: 5e pop %rsi - 66344a57: 5f pop %rdi - 66344a58: 41 5e pop %r14 - 66344a5a: c3 retq - 66344a5b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344a60: 48 83 c2 3c add $0x3c,%rdx - 66344a64: b8 78 00 00 00 mov $0x78,%eax - 66344a69: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344a70: 44 8b 02 mov (%rdx),%r8d - 66344a73: 45 85 c0 test %r8d,%r8d - 66344a76: 74 59 je 66344ad1 - 66344a78: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66344a7c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344a80: 45 29 01 sub %r8d,(%r9) - 66344a83: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344a89: 45 8b 09 mov (%r9),%r9d - 66344a8c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66344a90: 45 85 c9 test %r9d,%r9d - 66344a93: 41 0f 9f c1 setg %r9b - 66344a97: 45 0f b6 c9 movzbl %r9b,%r9d - 66344a9b: 45 3b 08 cmp (%r8),%r9d - 66344a9e: 74 31 je 66344ad1 - 66344aa0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344aa4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344aa8: 45 8b 00 mov (%r8),%r8d - 66344aab: 45 85 c0 test %r8d,%r8d - 66344aae: 75 21 jne 66344ad1 - 66344ab0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344ab4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344ab8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344abc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344ac3: 4c 63 06 movslq (%rsi),%r8 - 66344ac6: 45 8d 50 01 lea 0x1(%r8),%r10d - 66344aca: 44 89 16 mov %r10d,(%rsi) - 66344acd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344ad1: 48 83 c0 08 add $0x8,%rax - 66344ad5: 48 83 c2 04 add $0x4,%rdx - 66344ad9: 48 3d e8 00 00 00 cmp $0xe8,%rax - 66344adf: 75 8f jne 66344a70 - 66344ae1: 5b pop %rbx - 66344ae2: 5e pop %rsi - 66344ae3: 5f pop %rdi - 66344ae4: 41 5e pop %r14 - 66344ae6: c3 retq - 66344ae7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66344aee: 00 00 +0000000066344a20 : + 66344a20: ba 01 00 00 00 mov $0x1,%edx + 66344a25: 48 8b 41 10 mov 0x10(%rcx),%rax + 66344a29: 4c 8b 40 08 mov 0x8(%rax),%r8 + 66344a2d: 45 8b 00 mov (%r8),%r8d + 66344a30: 45 85 c0 test %r8d,%r8d + 66344a33: 75 0c jne 66344a41 + 66344a35: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66344a39: 45 8b 18 mov (%r8),%r11d + 66344a3c: 45 85 db test %r11d,%r11d + 66344a3f: 74 72 je 66344ab3 + 66344a41: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66344a45: 45 8b 48 14 mov 0x14(%r8),%r9d + 66344a49: 44 39 ca cmp %r9d,%edx + 66344a4c: 74 64 je 66344ab2 + 66344a4e: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344a52: 41 89 d3 mov %edx,%r11d + 66344a55: 45 29 cb sub %r9d,%r11d + 66344a58: 48 8b 40 28 mov 0x28(%rax),%rax + 66344a5c: 4d 8b 52 28 mov 0x28(%r10),%r10 + 66344a60: 45 01 1a add %r11d,(%r10) + 66344a63: 41 89 50 14 mov %edx,0x14(%r8) + 66344a67: 31 d2 xor %edx,%edx + 66344a69: 45 8b 02 mov (%r10),%r8d + 66344a6c: 45 85 c0 test %r8d,%r8d + 66344a6f: 0f 9f c2 setg %dl + 66344a72: 3b 10 cmp (%rax),%edx + 66344a74: 74 3c je 66344ab2 + 66344a76: 48 8b 41 20 mov 0x20(%rcx),%rax + 66344a7a: 48 8b 40 28 mov 0x28(%rax),%rax + 66344a7e: 8b 00 mov (%rax),%eax + 66344a80: 85 c0 test %eax,%eax + 66344a82: 75 2e jne 66344ab2 + 66344a84: 48 8b 41 28 mov 0x28(%rcx),%rax + 66344a88: 48 8b 0d a1 1e 01 00 mov 0x11ea1(%rip),%rcx # 66356930 + 66344a8f: 4c 8b 05 8a 1e 01 00 mov 0x11e8a(%rip),%r8 # 66356920 + 66344a96: 48 8b 50 28 mov 0x28(%rax),%rdx + 66344a9a: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344a9e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344aa4: 48 63 01 movslq (%rcx),%rax + 66344aa7: 44 8d 48 01 lea 0x1(%rax),%r9d + 66344aab: 44 89 09 mov %r9d,(%rcx) + 66344aae: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66344ab2: c3 retq + 66344ab3: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66344ab7: 45 8b 10 mov (%r8),%r10d + 66344aba: 45 85 d2 test %r10d,%r10d + 66344abd: 75 82 jne 66344a41 + 66344abf: 48 8b 50 20 mov 0x20(%rax),%rdx + 66344ac3: 44 8b 0a mov (%rdx),%r9d + 66344ac6: 31 d2 xor %edx,%edx + 66344ac8: 45 85 c9 test %r9d,%r9d + 66344acb: 0f 95 c2 setne %dl + 66344ace: e9 6e ff ff ff jmpq 66344a41 + 66344ad3: 0f 1f 00 nopl (%rax) + 66344ad6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66344add: 00 00 00 -0000000066344af0 : - 66344af0: 41 56 push %r14 - 66344af2: 57 push %rdi - 66344af3: 56 push %rsi - 66344af4: 53 push %rbx - 66344af5: 48 8b 3d 24 2e 01 00 mov 0x12e24(%rip),%rdi # 66357920 - 66344afc: 48 8b 35 2d 2e 01 00 mov 0x12e2d(%rip),%rsi # 66357930 - 66344b03: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66344b07: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66344b0b: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax - 66344b12: 8b 00 mov (%rax),%eax - 66344b14: 85 c0 test %eax,%eax - 66344b16: 0f 84 94 00 00 00 je 66344bb0 - 66344b1c: 31 c0 xor %eax,%eax - 66344b1e: 66 90 xchg %ax,%ax - 66344b20: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66344b25: 44 8b 4c 02 3c mov 0x3c(%rdx,%rax,1),%r9d - 66344b2a: 45 8b 00 mov (%r8),%r8d - 66344b2d: 45 39 c8 cmp %r9d,%r8d - 66344b30: 74 65 je 66344b97 - 66344b32: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344b36: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66344b3a: 45 89 c6 mov %r8d,%r14d - 66344b3d: 45 29 ce sub %r9d,%r14d - 66344b40: 45 31 c9 xor %r9d,%r9d - 66344b43: 4d 8b 54 1a 78 mov 0x78(%r10,%rbx,1),%r10 - 66344b48: 45 01 32 add %r14d,(%r10) - 66344b4b: 44 89 44 02 3c mov %r8d,0x3c(%rdx,%rax,1) - 66344b50: 45 8b 32 mov (%r10),%r14d - 66344b53: 4d 8b 44 43 78 mov 0x78(%r11,%rax,2),%r8 - 66344b58: 45 85 f6 test %r14d,%r14d - 66344b5b: 41 0f 9f c1 setg %r9b - 66344b5f: 45 3b 08 cmp (%r8),%r9d - 66344b62: 74 33 je 66344b97 - 66344b64: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344b68: 4d 8b 44 18 78 mov 0x78(%r8,%rbx,1),%r8 - 66344b6d: 45 8b 10 mov (%r8),%r10d - 66344b70: 45 85 d2 test %r10d,%r10d - 66344b73: 75 22 jne 66344b97 - 66344b75: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344b79: 4d 8b 4c 18 78 mov 0x78(%r8,%rbx,1),%r9 - 66344b7e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344b82: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344b89: 4c 63 06 movslq (%rsi),%r8 - 66344b8c: 45 8d 50 01 lea 0x1(%r8),%r10d - 66344b90: 44 89 16 mov %r10d,(%rsi) - 66344b93: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344b97: 48 83 c0 04 add $0x4,%rax - 66344b9b: 48 83 f8 38 cmp $0x38,%rax - 66344b9f: 0f 85 7b ff ff ff jne 66344b20 - 66344ba5: 5b pop %rbx - 66344ba6: 5e pop %rsi - 66344ba7: 5f pop %rdi - 66344ba8: 41 5e pop %r14 - 66344baa: c3 retq - 66344bab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344bb0: 48 83 c2 3c add $0x3c,%rdx - 66344bb4: b8 78 00 00 00 mov $0x78,%eax - 66344bb9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344bc0: 44 8b 02 mov (%rdx),%r8d - 66344bc3: 45 85 c0 test %r8d,%r8d - 66344bc6: 74 59 je 66344c21 - 66344bc8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66344bcc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344bd0: 45 29 01 sub %r8d,(%r9) - 66344bd3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344bd9: 45 8b 09 mov (%r9),%r9d - 66344bdc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66344be0: 45 85 c9 test %r9d,%r9d - 66344be3: 41 0f 9f c1 setg %r9b - 66344be7: 45 0f b6 c9 movzbl %r9b,%r9d - 66344beb: 45 3b 08 cmp (%r8),%r9d - 66344bee: 74 31 je 66344c21 - 66344bf0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344bf4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344bf8: 45 8b 00 mov (%r8),%r8d - 66344bfb: 45 85 c0 test %r8d,%r8d - 66344bfe: 75 21 jne 66344c21 - 66344c00: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344c04: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344c08: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344c0c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344c13: 4c 63 06 movslq (%rsi),%r8 - 66344c16: 45 8d 50 01 lea 0x1(%r8),%r10d - 66344c1a: 44 89 16 mov %r10d,(%rsi) - 66344c1d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344c21: 48 83 c0 08 add $0x8,%rax - 66344c25: 48 83 c2 04 add $0x4,%rdx - 66344c29: 48 3d e8 00 00 00 cmp $0xe8,%rax - 66344c2f: 75 8f jne 66344bc0 - 66344c31: 5b pop %rbx - 66344c32: 5e pop %rsi - 66344c33: 5f pop %rdi - 66344c34: 41 5e pop %r14 - 66344c36: c3 retq - 66344c37: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66344c3e: 00 00 +0000000066344ae0 : + 66344ae0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66344ae4: 48 8b 42 08 mov 0x8(%rdx),%rax + 66344ae8: 8b 00 mov (%rax),%eax + 66344aea: 85 c0 test %eax,%eax + 66344aec: 0f 85 8e 00 00 00 jne 66344b80 + 66344af2: 4c 8b 42 10 mov 0x10(%rdx),%r8 + 66344af6: 45 8b 00 mov (%r8),%r8d + 66344af9: 45 85 c0 test %r8d,%r8d + 66344afc: 0f 84 8e 00 00 00 je 66344b90 + 66344b02: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66344b06: 45 8b 48 14 mov 0x14(%r8),%r9d + 66344b0a: 44 39 c8 cmp %r9d,%eax + 66344b0d: 74 67 je 66344b76 + 66344b0f: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344b13: 41 89 c3 mov %eax,%r11d + 66344b16: 45 29 cb sub %r9d,%r11d + 66344b19: 4d 8b 52 28 mov 0x28(%r10),%r10 + 66344b1d: 45 01 1a add %r11d,(%r10) + 66344b20: 41 89 40 14 mov %eax,0x14(%r8) + 66344b24: 45 31 c0 xor %r8d,%r8d + 66344b27: 45 8b 0a mov (%r10),%r9d + 66344b2a: 48 8b 42 28 mov 0x28(%rdx),%rax + 66344b2e: 45 85 c9 test %r9d,%r9d + 66344b31: 41 0f 9f c0 setg %r8b + 66344b35: 44 3b 00 cmp (%rax),%r8d + 66344b38: 74 3c je 66344b76 + 66344b3a: 48 8b 41 20 mov 0x20(%rcx),%rax + 66344b3e: 48 8b 40 28 mov 0x28(%rax),%rax + 66344b42: 8b 00 mov (%rax),%eax + 66344b44: 85 c0 test %eax,%eax + 66344b46: 75 2e jne 66344b76 + 66344b48: 48 8b 41 28 mov 0x28(%rcx),%rax + 66344b4c: 48 8b 0d dd 1d 01 00 mov 0x11ddd(%rip),%rcx # 66356930 + 66344b53: 4c 8b 05 c6 1d 01 00 mov 0x11dc6(%rip),%r8 # 66356920 + 66344b5a: 48 8b 50 28 mov 0x28(%rax),%rdx + 66344b5e: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344b62: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344b68: 48 63 01 movslq (%rcx),%rax + 66344b6b: 44 8d 48 01 lea 0x1(%rax),%r9d + 66344b6f: 44 89 09 mov %r9d,(%rcx) + 66344b72: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66344b76: c3 retq + 66344b77: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66344b7e: 00 00 + 66344b80: 31 c0 xor %eax,%eax + 66344b82: e9 7b ff ff ff jmpq 66344b02 + 66344b87: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66344b8e: 00 00 + 66344b90: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66344b94: 45 8b 18 mov (%r8),%r11d + 66344b97: 45 85 db test %r11d,%r11d + 66344b9a: 0f 85 62 ff ff ff jne 66344b02 + 66344ba0: 48 8b 42 20 mov 0x20(%rdx),%rax + 66344ba4: 44 8b 10 mov (%rax),%r10d + 66344ba7: 31 c0 xor %eax,%eax + 66344ba9: 45 85 d2 test %r10d,%r10d + 66344bac: 0f 94 c0 sete %al + 66344baf: e9 4e ff ff ff jmpq 66344b02 + 66344bb4: 66 90 xchg %ax,%ax + 66344bb6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66344bbd: 00 00 00 -0000000066344c40 : - 66344c40: 41 56 push %r14 - 66344c42: 57 push %rdi - 66344c43: 56 push %rsi - 66344c44: 53 push %rbx - 66344c45: 48 8b 3d d4 2c 01 00 mov 0x12cd4(%rip),%rdi # 66357920 - 66344c4c: 48 8b 35 dd 2c 01 00 mov 0x12cdd(%rip),%rsi # 66357930 - 66344c53: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66344c57: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66344c5b: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax - 66344c62: 8b 00 mov (%rax),%eax - 66344c64: 85 c0 test %eax,%eax - 66344c66: 0f 84 94 00 00 00 je 66344d00 - 66344c6c: 31 c0 xor %eax,%eax - 66344c6e: 66 90 xchg %ax,%ax - 66344c70: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66344c75: 44 8b 4c 02 38 mov 0x38(%rdx,%rax,1),%r9d - 66344c7a: 45 8b 00 mov (%r8),%r8d - 66344c7d: 45 39 c8 cmp %r9d,%r8d - 66344c80: 74 65 je 66344ce7 - 66344c82: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344c86: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66344c8a: 45 89 c6 mov %r8d,%r14d - 66344c8d: 45 29 ce sub %r9d,%r14d - 66344c90: 45 31 c9 xor %r9d,%r9d - 66344c93: 4d 8b 54 1a 70 mov 0x70(%r10,%rbx,1),%r10 - 66344c98: 45 01 32 add %r14d,(%r10) - 66344c9b: 44 89 44 02 38 mov %r8d,0x38(%rdx,%rax,1) - 66344ca0: 45 8b 32 mov (%r10),%r14d - 66344ca3: 4d 8b 44 43 70 mov 0x70(%r11,%rax,2),%r8 - 66344ca8: 45 85 f6 test %r14d,%r14d - 66344cab: 41 0f 9f c1 setg %r9b - 66344caf: 45 3b 08 cmp (%r8),%r9d - 66344cb2: 74 33 je 66344ce7 - 66344cb4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344cb8: 4d 8b 44 18 70 mov 0x70(%r8,%rbx,1),%r8 - 66344cbd: 45 8b 10 mov (%r8),%r10d - 66344cc0: 45 85 d2 test %r10d,%r10d - 66344cc3: 75 22 jne 66344ce7 - 66344cc5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344cc9: 4d 8b 4c 18 70 mov 0x70(%r8,%rbx,1),%r9 - 66344cce: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344cd2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344cd9: 4c 63 06 movslq (%rsi),%r8 - 66344cdc: 45 8d 50 01 lea 0x1(%r8),%r10d - 66344ce0: 44 89 16 mov %r10d,(%rsi) - 66344ce3: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344ce7: 48 83 c0 04 add $0x4,%rax - 66344ceb: 48 83 f8 34 cmp $0x34,%rax - 66344cef: 0f 85 7b ff ff ff jne 66344c70 - 66344cf5: 5b pop %rbx - 66344cf6: 5e pop %rsi - 66344cf7: 5f pop %rdi - 66344cf8: 41 5e pop %r14 - 66344cfa: c3 retq - 66344cfb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344d00: 48 83 c2 38 add $0x38,%rdx - 66344d04: b8 70 00 00 00 mov $0x70,%eax - 66344d09: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344d10: 44 8b 02 mov (%rdx),%r8d - 66344d13: 45 85 c0 test %r8d,%r8d - 66344d16: 74 59 je 66344d71 - 66344d18: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66344d1c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344d20: 45 29 01 sub %r8d,(%r9) - 66344d23: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344d29: 45 8b 09 mov (%r9),%r9d - 66344d2c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 - 66344d30: 45 85 c9 test %r9d,%r9d - 66344d33: 41 0f 9f c1 setg %r9b - 66344d37: 45 0f b6 c9 movzbl %r9b,%r9d - 66344d3b: 45 3b 08 cmp (%r8),%r9d - 66344d3e: 74 31 je 66344d71 - 66344d40: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344d44: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344d48: 45 8b 00 mov (%r8),%r8d - 66344d4b: 45 85 c0 test %r8d,%r8d - 66344d4e: 75 21 jne 66344d71 - 66344d50: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344d54: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344d58: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344d5c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344d63: 4c 63 06 movslq (%rsi),%r8 - 66344d66: 45 8d 50 01 lea 0x1(%r8),%r10d - 66344d6a: 44 89 16 mov %r10d,(%rsi) - 66344d6d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344d71: 48 83 c0 08 add $0x8,%rax - 66344d75: 48 83 c2 04 add $0x4,%rdx - 66344d79: 48 3d d8 00 00 00 cmp $0xd8,%rax - 66344d7f: 75 8f jne 66344d10 - 66344d81: 5b pop %rbx - 66344d82: 5e pop %rsi - 66344d83: 5f pop %rdi - 66344d84: 41 5e pop %r14 - 66344d86: c3 retq - 66344d87: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66344d8e: 00 00 +0000000066344bc0 : + 66344bc0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66344bc4: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66344bc8: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344bcc: 8b 00 mov (%rax),%eax + 66344bce: 41 33 00 xor (%r8),%eax + 66344bd1: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66344bd5: 41 33 00 xor (%r8),%eax + 66344bd8: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 66344bdc: 41 33 00 xor (%r8),%eax + 66344bdf: 4c 8b 42 28 mov 0x28(%rdx),%r8 + 66344be3: 41 33 00 xor (%r8),%eax + 66344be6: 4c 8b 42 30 mov 0x30(%rdx),%r8 + 66344bea: 41 33 00 xor (%r8),%eax + 66344bed: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66344bf1: 45 8b 48 1c mov 0x1c(%r8),%r9d + 66344bf5: 44 39 c8 cmp %r9d,%eax + 66344bf8: 74 67 je 66344c61 + 66344bfa: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344bfe: 41 89 c3 mov %eax,%r11d + 66344c01: 45 29 cb sub %r9d,%r11d + 66344c04: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66344c08: 45 01 1a add %r11d,(%r10) + 66344c0b: 41 89 40 1c mov %eax,0x1c(%r8) + 66344c0f: 45 31 c0 xor %r8d,%r8d + 66344c12: 45 8b 0a mov (%r10),%r9d + 66344c15: 48 8b 42 38 mov 0x38(%rdx),%rax + 66344c19: 45 85 c9 test %r9d,%r9d + 66344c1c: 41 0f 9f c0 setg %r8b + 66344c20: 44 3b 00 cmp (%rax),%r8d + 66344c23: 74 3c je 66344c61 + 66344c25: 48 8b 41 20 mov 0x20(%rcx),%rax + 66344c29: 48 8b 40 38 mov 0x38(%rax),%rax + 66344c2d: 8b 00 mov (%rax),%eax + 66344c2f: 85 c0 test %eax,%eax + 66344c31: 75 2e jne 66344c61 + 66344c33: 48 8b 41 28 mov 0x28(%rcx),%rax + 66344c37: 48 8b 0d f2 1c 01 00 mov 0x11cf2(%rip),%rcx # 66356930 + 66344c3e: 4c 8b 05 db 1c 01 00 mov 0x11cdb(%rip),%r8 # 66356920 + 66344c45: 48 8b 50 38 mov 0x38(%rax),%rdx + 66344c49: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344c4d: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344c53: 48 63 01 movslq (%rcx),%rax + 66344c56: 44 8d 48 01 lea 0x1(%rax),%r9d + 66344c5a: 44 89 09 mov %r9d,(%rcx) + 66344c5d: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66344c61: c3 retq + 66344c62: 0f 1f 40 00 nopl 0x0(%rax) + 66344c66: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66344c6d: 00 00 00 -0000000066344d90 : - 66344d90: 41 56 push %r14 - 66344d92: 57 push %rdi - 66344d93: 56 push %rsi - 66344d94: 53 push %rbx - 66344d95: 48 8b 3d 84 2b 01 00 mov 0x12b84(%rip),%rdi # 66357920 - 66344d9c: 48 8b 35 8d 2b 01 00 mov 0x12b8d(%rip),%rsi # 66357930 - 66344da3: 4c 8b 59 10 mov 0x10(%rcx),%r11 - 66344da7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66344dab: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax - 66344db2: 8b 00 mov (%rax),%eax - 66344db4: 85 c0 test %eax,%eax - 66344db6: 0f 84 94 00 00 00 je 66344e50 - 66344dbc: 31 c0 xor %eax,%eax - 66344dbe: 66 90 xchg %ax,%ax - 66344dc0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 - 66344dc5: 44 8b 4c 02 38 mov 0x38(%rdx,%rax,1),%r9d - 66344dca: 45 8b 00 mov (%r8),%r8d - 66344dcd: 45 39 c8 cmp %r9d,%r8d - 66344dd0: 74 65 je 66344e37 - 66344dd2: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 66344dd6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66344dda: 45 89 c6 mov %r8d,%r14d - 66344ddd: 45 29 ce sub %r9d,%r14d - 66344de0: 45 31 c9 xor %r9d,%r9d - 66344de3: 4d 8b 54 1a 70 mov 0x70(%r10,%rbx,1),%r10 - 66344de8: 45 01 32 add %r14d,(%r10) - 66344deb: 44 89 44 02 38 mov %r8d,0x38(%rdx,%rax,1) - 66344df0: 45 8b 32 mov (%r10),%r14d - 66344df3: 4d 8b 44 43 70 mov 0x70(%r11,%rax,2),%r8 - 66344df8: 45 85 f6 test %r14d,%r14d - 66344dfb: 41 0f 9f c1 setg %r9b - 66344dff: 45 3b 08 cmp (%r8),%r9d - 66344e02: 74 33 je 66344e37 - 66344e04: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344e08: 4d 8b 44 18 70 mov 0x70(%r8,%rbx,1),%r8 - 66344e0d: 45 8b 10 mov (%r8),%r10d - 66344e10: 45 85 d2 test %r10d,%r10d - 66344e13: 75 22 jne 66344e37 - 66344e15: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344e19: 4d 8b 4c 18 70 mov 0x70(%r8,%rbx,1),%r9 - 66344e1e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344e22: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344e29: 4c 63 06 movslq (%rsi),%r8 - 66344e2c: 45 8d 50 01 lea 0x1(%r8),%r10d - 66344e30: 44 89 16 mov %r10d,(%rsi) - 66344e33: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344e37: 48 83 c0 04 add $0x4,%rax - 66344e3b: 48 83 f8 34 cmp $0x34,%rax - 66344e3f: 0f 85 7b ff ff ff jne 66344dc0 - 66344e45: 5b pop %rbx - 66344e46: 5e pop %rsi - 66344e47: 5f pop %rdi - 66344e48: 41 5e pop %r14 - 66344e4a: c3 retq - 66344e4b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344e50: 48 83 c2 38 add $0x38,%rdx - 66344e54: b8 70 00 00 00 mov $0x70,%eax - 66344e59: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344e60: 44 8b 02 mov (%rdx),%r8d - 66344e63: 45 85 c0 test %r8d,%r8d - 66344e66: 74 59 je 66344ec1 - 66344e68: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66344e6c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344e70: 45 29 01 sub %r8d,(%r9) - 66344e73: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344e79: 45 8b 09 mov (%r9),%r9d - 66344e7c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 +0000000066344c70 : + 66344c70: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66344c74: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66344c78: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344c7c: 8b 00 mov (%rax),%eax + 66344c7e: 41 33 00 xor (%r8),%eax + 66344c81: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66344c85: 41 33 00 xor (%r8),%eax + 66344c88: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 66344c8c: 41 33 00 xor (%r8),%eax + 66344c8f: 4c 8b 42 28 mov 0x28(%rdx),%r8 + 66344c93: 41 33 00 xor (%r8),%eax + 66344c96: 4c 8b 42 30 mov 0x30(%rdx),%r8 + 66344c9a: 41 3b 00 cmp (%r8),%eax + 66344c9d: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66344ca1: 0f 94 c0 sete %al + 66344ca4: 45 8b 48 1c mov 0x1c(%r8),%r9d + 66344ca8: 0f b6 c0 movzbl %al,%eax + 66344cab: 44 39 c8 cmp %r9d,%eax + 66344cae: 74 67 je 66344d17 + 66344cb0: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344cb4: 41 89 c3 mov %eax,%r11d + 66344cb7: 45 29 cb sub %r9d,%r11d + 66344cba: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66344cbe: 45 01 1a add %r11d,(%r10) + 66344cc1: 41 89 40 1c mov %eax,0x1c(%r8) + 66344cc5: 45 31 c0 xor %r8d,%r8d + 66344cc8: 45 8b 0a mov (%r10),%r9d + 66344ccb: 48 8b 42 38 mov 0x38(%rdx),%rax + 66344ccf: 45 85 c9 test %r9d,%r9d + 66344cd2: 41 0f 9f c0 setg %r8b + 66344cd6: 44 3b 00 cmp (%rax),%r8d + 66344cd9: 74 3c je 66344d17 + 66344cdb: 48 8b 41 20 mov 0x20(%rcx),%rax + 66344cdf: 48 8b 40 38 mov 0x38(%rax),%rax + 66344ce3: 8b 00 mov (%rax),%eax + 66344ce5: 85 c0 test %eax,%eax + 66344ce7: 75 2e jne 66344d17 + 66344ce9: 48 8b 41 28 mov 0x28(%rcx),%rax + 66344ced: 48 8b 0d 3c 1c 01 00 mov 0x11c3c(%rip),%rcx # 66356930 + 66344cf4: 4c 8b 05 25 1c 01 00 mov 0x11c25(%rip),%r8 # 66356920 + 66344cfb: 48 8b 50 38 mov 0x38(%rax),%rdx + 66344cff: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344d03: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344d09: 48 63 01 movslq (%rcx),%rax + 66344d0c: 44 8d 48 01 lea 0x1(%rax),%r9d + 66344d10: 44 89 09 mov %r9d,(%rcx) + 66344d13: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66344d17: c3 retq + 66344d18: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66344d1f: 00 + +0000000066344d20 : + 66344d20: 56 push %rsi + 66344d21: 53 push %rbx + 66344d22: 48 8b 41 10 mov 0x10(%rcx),%rax + 66344d26: 48 8b 50 28 mov 0x28(%rax),%rdx + 66344d2a: 44 8b 1a mov (%rdx),%r11d + 66344d2d: 45 85 db test %r11d,%r11d + 66344d30: 0f 84 e3 00 00 00 je 66344e19 + 66344d36: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66344d3a: 4c 8b 40 08 mov 0x8(%rax),%r8 + 66344d3e: 48 8b 1d db 1b 01 00 mov 0x11bdb(%rip),%rbx # 66356920 + 66344d45: 4c 8b 1d e4 1b 01 00 mov 0x11be4(%rip),%r11 # 66356930 + 66344d4c: 44 8b 4a 0c mov 0xc(%rdx),%r9d + 66344d50: 45 8b 00 mov (%r8),%r8d + 66344d53: 45 39 c8 cmp %r9d,%r8d + 66344d56: 74 5c je 66344db4 + 66344d58: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344d5c: 44 89 c6 mov %r8d,%esi + 66344d5f: 44 29 ce sub %r9d,%esi + 66344d62: 45 31 c9 xor %r9d,%r9d + 66344d65: 4d 8b 52 18 mov 0x18(%r10),%r10 + 66344d69: 41 01 32 add %esi,(%r10) + 66344d6c: 44 89 42 0c mov %r8d,0xc(%rdx) + 66344d70: 45 8b 12 mov (%r10),%r10d + 66344d73: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66344d77: 45 85 d2 test %r10d,%r10d + 66344d7a: 41 0f 9f c1 setg %r9b + 66344d7e: 45 3b 08 cmp (%r8),%r9d + 66344d81: 74 31 je 66344db4 + 66344d83: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66344d87: 4d 8b 40 18 mov 0x18(%r8),%r8 + 66344d8b: 45 8b 08 mov (%r8),%r9d + 66344d8e: 45 85 c9 test %r9d,%r9d + 66344d91: 75 21 jne 66344db4 + 66344d93: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66344d97: 4d 8b 48 18 mov 0x18(%r8),%r9 + 66344d9b: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66344d9f: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66344da6: 4d 63 03 movslq (%r11),%r8 + 66344da9: 45 8d 50 01 lea 0x1(%r8),%r10d + 66344dad: 45 89 13 mov %r10d,(%r11) + 66344db0: 4e 89 0c c3 mov %r9,(%rbx,%r8,8) + 66344db4: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66344db8: 44 8b 4a 10 mov 0x10(%rdx),%r9d + 66344dbc: 45 8b 00 mov (%r8),%r8d + 66344dbf: 45 39 c8 cmp %r9d,%r8d + 66344dc2: 74 55 je 66344e19 + 66344dc4: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344dc8: 44 89 c6 mov %r8d,%esi + 66344dcb: 44 29 ce sub %r9d,%esi + 66344dce: 48 8b 40 20 mov 0x20(%rax),%rax + 66344dd2: 4d 8b 52 20 mov 0x20(%r10),%r10 + 66344dd6: 41 01 32 add %esi,(%r10) + 66344dd9: 44 89 42 10 mov %r8d,0x10(%rdx) + 66344ddd: 31 d2 xor %edx,%edx + 66344ddf: 45 8b 02 mov (%r10),%r8d + 66344de2: 45 85 c0 test %r8d,%r8d + 66344de5: 0f 9f c2 setg %dl + 66344de8: 3b 10 cmp (%rax),%edx + 66344dea: 74 2d je 66344e19 + 66344dec: 48 8b 41 20 mov 0x20(%rcx),%rax + 66344df0: 48 8b 40 20 mov 0x20(%rax),%rax + 66344df4: 8b 00 mov (%rax),%eax + 66344df6: 85 c0 test %eax,%eax + 66344df8: 75 1f jne 66344e19 + 66344dfa: 48 8b 41 28 mov 0x28(%rcx),%rax + 66344dfe: 48 8b 50 20 mov 0x20(%rax),%rdx + 66344e02: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344e06: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344e0c: 49 63 03 movslq (%r11),%rax + 66344e0f: 8d 48 01 lea 0x1(%rax),%ecx + 66344e12: 41 89 0b mov %ecx,(%r11) + 66344e15: 48 89 14 c3 mov %rdx,(%rbx,%rax,8) + 66344e19: 5b pop %rbx + 66344e1a: 5e pop %rsi + 66344e1b: c3 retq + 66344e1c: 0f 1f 40 00 nopl 0x0(%rax) + +0000000066344e20 : + 66344e20: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66344e24: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66344e28: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344e2c: 8b 00 mov (%rax),%eax + 66344e2e: 41 33 00 xor (%r8),%eax + 66344e31: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66344e35: 41 33 00 xor (%r8),%eax + 66344e38: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 66344e3c: 41 33 00 xor (%r8),%eax + 66344e3f: 4c 8b 42 28 mov 0x28(%rdx),%r8 + 66344e43: 41 33 00 xor (%r8),%eax + 66344e46: 4c 8b 42 30 mov 0x30(%rdx),%r8 + 66344e4a: 41 33 00 xor (%r8),%eax + 66344e4d: 4c 8b 42 38 mov 0x38(%rdx),%r8 + 66344e51: 41 33 00 xor (%r8),%eax + 66344e54: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66344e58: 45 8b 48 20 mov 0x20(%r8),%r9d + 66344e5c: 44 39 c8 cmp %r9d,%eax + 66344e5f: 74 67 je 66344ec8 + 66344e61: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344e65: 41 89 c3 mov %eax,%r11d + 66344e68: 45 29 cb sub %r9d,%r11d + 66344e6b: 4d 8b 52 40 mov 0x40(%r10),%r10 + 66344e6f: 45 01 1a add %r11d,(%r10) + 66344e72: 41 89 40 20 mov %eax,0x20(%r8) + 66344e76: 45 31 c0 xor %r8d,%r8d + 66344e79: 45 8b 0a mov (%r10),%r9d + 66344e7c: 48 8b 42 40 mov 0x40(%rdx),%rax 66344e80: 45 85 c9 test %r9d,%r9d - 66344e83: 41 0f 9f c1 setg %r9b - 66344e87: 45 0f b6 c9 movzbl %r9b,%r9d - 66344e8b: 45 3b 08 cmp (%r8),%r9d - 66344e8e: 74 31 je 66344ec1 - 66344e90: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344e94: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344e98: 45 8b 00 mov (%r8),%r8d - 66344e9b: 45 85 c0 test %r8d,%r8d - 66344e9e: 75 21 jne 66344ec1 - 66344ea0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344ea4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344ea8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344eac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344eb3: 4c 63 06 movslq (%rsi),%r8 - 66344eb6: 45 8d 50 01 lea 0x1(%r8),%r10d - 66344eba: 44 89 16 mov %r10d,(%rsi) - 66344ebd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344ec1: 48 83 c0 08 add $0x8,%rax - 66344ec5: 48 83 c2 04 add $0x4,%rdx - 66344ec9: 48 3d d8 00 00 00 cmp $0xd8,%rax - 66344ecf: 75 8f jne 66344e60 - 66344ed1: 5b pop %rbx - 66344ed2: 5e pop %rsi - 66344ed3: 5f pop %rdi - 66344ed4: 41 5e pop %r14 - 66344ed6: c3 retq - 66344ed7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66344ede: 00 00 + 66344e83: 41 0f 9f c0 setg %r8b + 66344e87: 44 3b 00 cmp (%rax),%r8d + 66344e8a: 74 3c je 66344ec8 + 66344e8c: 48 8b 41 20 mov 0x20(%rcx),%rax + 66344e90: 48 8b 40 40 mov 0x40(%rax),%rax + 66344e94: 8b 00 mov (%rax),%eax + 66344e96: 85 c0 test %eax,%eax + 66344e98: 75 2e jne 66344ec8 + 66344e9a: 48 8b 41 28 mov 0x28(%rcx),%rax + 66344e9e: 48 8b 0d 8b 1a 01 00 mov 0x11a8b(%rip),%rcx # 66356930 + 66344ea5: 4c 8b 05 74 1a 01 00 mov 0x11a74(%rip),%r8 # 66356920 + 66344eac: 48 8b 50 40 mov 0x40(%rax),%rdx + 66344eb0: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344eb4: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344eba: 48 63 01 movslq (%rcx),%rax + 66344ebd: 44 8d 48 01 lea 0x1(%rax),%r9d + 66344ec1: 44 89 09 mov %r9d,(%rcx) + 66344ec4: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66344ec8: c3 retq + 66344ec9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) -0000000066344ee0 : - 66344ee0: 41 56 push %r14 - 66344ee2: 57 push %rdi - 66344ee3: 56 push %rsi - 66344ee4: 53 push %rbx - 66344ee5: 48 8b 3d 34 2a 01 00 mov 0x12a34(%rip),%rdi # 66357920 - 66344eec: 48 8b 35 3d 2a 01 00 mov 0x12a3d(%rip),%rsi # 66357930 - 66344ef3: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66344ef7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66344efb: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax - 66344f02: 8b 00 mov (%rax),%eax - 66344f04: 85 c0 test %eax,%eax - 66344f06: 0f 84 94 00 00 00 je 66344fa0 - 66344f0c: 31 c0 xor %eax,%eax - 66344f0e: 66 90 xchg %ax,%ax - 66344f10: 4d 8b 44 42 08 mov 0x8(%r10,%rax,2),%r8 - 66344f15: 44 8b 4c 02 34 mov 0x34(%rdx,%rax,1),%r9d - 66344f1a: 45 8b 00 mov (%r8),%r8d - 66344f1d: 45 39 c8 cmp %r9d,%r8d - 66344f20: 74 65 je 66344f87 - 66344f22: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66344f26: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66344f2a: 45 89 c6 mov %r8d,%r14d - 66344f2d: 45 29 ce sub %r9d,%r14d - 66344f30: 45 31 c9 xor %r9d,%r9d - 66344f33: 4d 8b 5c 1b 68 mov 0x68(%r11,%rbx,1),%r11 - 66344f38: 45 01 33 add %r14d,(%r11) - 66344f3b: 44 89 44 02 34 mov %r8d,0x34(%rdx,%rax,1) - 66344f40: 45 8b 33 mov (%r11),%r14d - 66344f43: 4d 8b 44 42 68 mov 0x68(%r10,%rax,2),%r8 - 66344f48: 45 85 f6 test %r14d,%r14d - 66344f4b: 41 0f 9f c1 setg %r9b - 66344f4f: 45 3b 08 cmp (%r8),%r9d - 66344f52: 74 33 je 66344f87 - 66344f54: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344f58: 4d 8b 44 18 68 mov 0x68(%r8,%rbx,1),%r8 - 66344f5d: 45 8b 18 mov (%r8),%r11d - 66344f60: 45 85 db test %r11d,%r11d - 66344f63: 75 22 jne 66344f87 - 66344f65: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344f69: 4d 8b 4c 18 68 mov 0x68(%r8,%rbx,1),%r9 - 66344f6e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344f72: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66344f79: 4c 63 06 movslq (%rsi),%r8 - 66344f7c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66344f80: 44 89 1e mov %r11d,(%rsi) - 66344f83: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66344f87: 48 83 c0 04 add $0x4,%rax - 66344f8b: 48 83 f8 30 cmp $0x30,%rax - 66344f8f: 0f 85 7b ff ff ff jne 66344f10 - 66344f95: 5b pop %rbx - 66344f96: 5e pop %rsi - 66344f97: 5f pop %rdi - 66344f98: 41 5e pop %r14 - 66344f9a: c3 retq - 66344f9b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66344fa0: 48 83 c2 34 add $0x34,%rdx - 66344fa4: b8 68 00 00 00 mov $0x68,%eax - 66344fa9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66344fb0: 44 8b 02 mov (%rdx),%r8d - 66344fb3: 45 85 c0 test %r8d,%r8d - 66344fb6: 74 59 je 66345011 - 66344fb8: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 66344fbc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66344fc0: 45 29 01 sub %r8d,(%r9) - 66344fc3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66344fc9: 45 8b 09 mov (%r9),%r9d - 66344fcc: 4d 8b 04 02 mov (%r10,%rax,1),%r8 - 66344fd0: 45 85 c9 test %r9d,%r9d - 66344fd3: 41 0f 9f c1 setg %r9b - 66344fd7: 45 0f b6 c9 movzbl %r9b,%r9d - 66344fdb: 45 3b 08 cmp (%r8),%r9d - 66344fde: 74 31 je 66345011 - 66344fe0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66344fe4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66344fe8: 45 8b 00 mov (%r8),%r8d - 66344feb: 45 85 c0 test %r8d,%r8d - 66344fee: 75 21 jne 66345011 - 66344ff0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66344ff4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66344ff8: 4d 8b 41 10 mov 0x10(%r9),%r8 - 66344ffc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345003: 4c 63 06 movslq (%rsi),%r8 - 66345006: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634500a: 44 89 1e mov %r11d,(%rsi) - 6634500d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66345011: 48 83 c0 08 add $0x8,%rax - 66345015: 48 83 c2 04 add $0x4,%rdx - 66345019: 48 3d c8 00 00 00 cmp $0xc8,%rax - 6634501f: 75 8f jne 66344fb0 - 66345021: 5b pop %rbx - 66345022: 5e pop %rsi - 66345023: 5f pop %rdi - 66345024: 41 5e pop %r14 - 66345026: c3 retq - 66345027: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634502e: 00 00 +0000000066344ed0 : + 66344ed0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66344ed4: 48 8b 42 08 mov 0x8(%rdx),%rax + 66344ed8: 8b 00 mov (%rax),%eax + 66344eda: 85 c0 test %eax,%eax + 66344edc: 0f 85 8e 00 00 00 jne 66344f70 + 66344ee2: 4c 8b 42 10 mov 0x10(%rdx),%r8 + 66344ee6: 45 8b 00 mov (%r8),%r8d + 66344ee9: 45 85 c0 test %r8d,%r8d + 66344eec: 74 75 je 66344f63 + 66344eee: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66344ef2: 45 8b 48 18 mov 0x18(%r8),%r9d + 66344ef6: 44 39 c8 cmp %r9d,%eax + 66344ef9: 74 67 je 66344f62 + 66344efb: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344eff: 41 89 c3 mov %eax,%r11d + 66344f02: 45 29 cb sub %r9d,%r11d + 66344f05: 4d 8b 52 30 mov 0x30(%r10),%r10 + 66344f09: 45 01 1a add %r11d,(%r10) + 66344f0c: 41 89 40 18 mov %eax,0x18(%r8) + 66344f10: 45 31 c0 xor %r8d,%r8d + 66344f13: 45 8b 0a mov (%r10),%r9d + 66344f16: 48 8b 42 30 mov 0x30(%rdx),%rax + 66344f1a: 45 85 c9 test %r9d,%r9d + 66344f1d: 41 0f 9f c0 setg %r8b + 66344f21: 44 3b 00 cmp (%rax),%r8d + 66344f24: 74 3c je 66344f62 + 66344f26: 48 8b 41 20 mov 0x20(%rcx),%rax + 66344f2a: 48 8b 40 30 mov 0x30(%rax),%rax + 66344f2e: 8b 00 mov (%rax),%eax + 66344f30: 85 c0 test %eax,%eax + 66344f32: 75 2e jne 66344f62 + 66344f34: 48 8b 41 28 mov 0x28(%rcx),%rax + 66344f38: 48 8b 0d f1 19 01 00 mov 0x119f1(%rip),%rcx # 66356930 + 66344f3f: 4c 8b 05 da 19 01 00 mov 0x119da(%rip),%r8 # 66356920 + 66344f46: 48 8b 50 30 mov 0x30(%rax),%rdx + 66344f4a: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344f4e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66344f54: 48 63 01 movslq (%rcx),%rax + 66344f57: 44 8d 48 01 lea 0x1(%rax),%r9d + 66344f5b: 44 89 09 mov %r9d,(%rcx) + 66344f5e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66344f62: c3 retq + 66344f63: 48 8b 42 18 mov 0x18(%rdx),%rax + 66344f67: 8b 00 mov (%rax),%eax + 66344f69: 85 c0 test %eax,%eax + 66344f6b: 74 13 je 66344f80 + 66344f6d: 0f 1f 00 nopl (%rax) + 66344f70: 31 c0 xor %eax,%eax + 66344f72: e9 77 ff ff ff jmpq 66344eee + 66344f77: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66344f7e: 00 00 + 66344f80: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 66344f84: 45 8b 18 mov (%r8),%r11d + 66344f87: 45 85 db test %r11d,%r11d + 66344f8a: 0f 85 5e ff ff ff jne 66344eee + 66344f90: 48 8b 42 28 mov 0x28(%rdx),%rax + 66344f94: 44 8b 10 mov (%rax),%r10d + 66344f97: 31 c0 xor %eax,%eax + 66344f99: 45 85 d2 test %r10d,%r10d + 66344f9c: 0f 94 c0 sete %al + 66344f9f: e9 4a ff ff ff jmpq 66344eee + 66344fa4: 66 90 xchg %ax,%ax + 66344fa6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66344fad: 00 00 00 -0000000066345030 : - 66345030: 41 56 push %r14 - 66345032: 57 push %rdi - 66345033: 56 push %rsi - 66345034: 53 push %rbx - 66345035: 48 8b 3d e4 28 01 00 mov 0x128e4(%rip),%rdi # 66357920 - 6634503c: 48 8b 35 ed 28 01 00 mov 0x128ed(%rip),%rsi # 66357930 - 66345043: 4c 8b 51 10 mov 0x10(%rcx),%r10 - 66345047: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634504b: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax - 66345052: 8b 00 mov (%rax),%eax - 66345054: 85 c0 test %eax,%eax - 66345056: 0f 84 94 00 00 00 je 663450f0 - 6634505c: 31 c0 xor %eax,%eax - 6634505e: 66 90 xchg %ax,%ax - 66345060: 4d 8b 44 42 08 mov 0x8(%r10,%rax,2),%r8 - 66345065: 44 8b 4c 02 34 mov 0x34(%rdx,%rax,1),%r9d - 6634506a: 45 8b 00 mov (%r8),%r8d - 6634506d: 45 39 c8 cmp %r9d,%r8d - 66345070: 74 65 je 663450d7 - 66345072: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345076: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634507a: 45 89 c6 mov %r8d,%r14d - 6634507d: 45 29 ce sub %r9d,%r14d - 66345080: 45 31 c9 xor %r9d,%r9d - 66345083: 4d 8b 5c 1b 68 mov 0x68(%r11,%rbx,1),%r11 - 66345088: 45 01 33 add %r14d,(%r11) - 6634508b: 44 89 44 02 34 mov %r8d,0x34(%rdx,%rax,1) - 66345090: 45 8b 33 mov (%r11),%r14d - 66345093: 4d 8b 44 42 68 mov 0x68(%r10,%rax,2),%r8 - 66345098: 45 85 f6 test %r14d,%r14d - 6634509b: 41 0f 9f c1 setg %r9b - 6634509f: 45 3b 08 cmp (%r8),%r9d - 663450a2: 74 33 je 663450d7 - 663450a4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663450a8: 4d 8b 44 18 68 mov 0x68(%r8,%rbx,1),%r8 - 663450ad: 45 8b 18 mov (%r8),%r11d - 663450b0: 45 85 db test %r11d,%r11d - 663450b3: 75 22 jne 663450d7 - 663450b5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663450b9: 4d 8b 4c 18 68 mov 0x68(%r8,%rbx,1),%r9 - 663450be: 4d 8b 41 10 mov 0x10(%r9),%r8 - 663450c2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663450c9: 4c 63 06 movslq (%rsi),%r8 - 663450cc: 45 8d 58 01 lea 0x1(%r8),%r11d - 663450d0: 44 89 1e mov %r11d,(%rsi) - 663450d3: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 663450d7: 48 83 c0 04 add $0x4,%rax - 663450db: 48 83 f8 30 cmp $0x30,%rax - 663450df: 0f 85 7b ff ff ff jne 66345060 - 663450e5: 5b pop %rbx - 663450e6: 5e pop %rsi - 663450e7: 5f pop %rdi - 663450e8: 41 5e pop %r14 - 663450ea: c3 retq - 663450eb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663450f0: 48 83 c2 34 add $0x34,%rdx - 663450f4: b8 68 00 00 00 mov $0x68,%eax - 663450f9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66345100: 44 8b 02 mov (%rdx),%r8d - 66345103: 45 85 c0 test %r8d,%r8d - 66345106: 74 59 je 66345161 - 66345108: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634510c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 - 66345110: 45 29 01 sub %r8d,(%r9) - 66345113: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66345119: 45 8b 09 mov (%r9),%r9d - 6634511c: 4d 8b 04 02 mov (%r10,%rax,1),%r8 - 66345120: 45 85 c9 test %r9d,%r9d - 66345123: 41 0f 9f c1 setg %r9b - 66345127: 45 0f b6 c9 movzbl %r9b,%r9d - 6634512b: 45 3b 08 cmp (%r8),%r9d - 6634512e: 74 31 je 66345161 - 66345130: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66345134: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66345138: 45 8b 00 mov (%r8),%r8d - 6634513b: 45 85 c0 test %r8d,%r8d - 6634513e: 75 21 jne 66345161 - 66345140: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66345144: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 - 66345148: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634514c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345153: 4c 63 06 movslq (%rsi),%r8 - 66345156: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634515a: 44 89 1e mov %r11d,(%rsi) - 6634515d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) - 66345161: 48 83 c0 08 add $0x8,%rax - 66345165: 48 83 c2 04 add $0x4,%rdx - 66345169: 48 3d c8 00 00 00 cmp $0xc8,%rax - 6634516f: 75 8f jne 66345100 - 66345171: 5b pop %rbx - 66345172: 5e pop %rsi - 66345173: 5f pop %rdi - 66345174: 41 5e pop %r14 - 66345176: c3 retq - 66345177: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634517e: 00 00 +0000000066344fb0 : + 66344fb0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66344fb4: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66344fb8: 48 8b 42 10 mov 0x10(%rdx),%rax + 66344fbc: 8b 00 mov (%rax),%eax + 66344fbe: 41 33 00 xor (%r8),%eax + 66344fc1: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66344fc5: 41 33 00 xor (%r8),%eax + 66344fc8: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 66344fcc: 41 33 00 xor (%r8),%eax + 66344fcf: 4c 8b 42 28 mov 0x28(%rdx),%r8 + 66344fd3: 41 33 00 xor (%r8),%eax + 66344fd6: 4c 8b 42 30 mov 0x30(%rdx),%r8 + 66344fda: 41 33 00 xor (%r8),%eax + 66344fdd: 4c 8b 42 38 mov 0x38(%rdx),%r8 + 66344fe1: 41 3b 00 cmp (%r8),%eax + 66344fe4: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66344fe8: 0f 94 c0 sete %al + 66344feb: 45 8b 48 20 mov 0x20(%r8),%r9d + 66344fef: 0f b6 c0 movzbl %al,%eax + 66344ff2: 44 39 c8 cmp %r9d,%eax + 66344ff5: 74 67 je 6634505e + 66344ff7: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66344ffb: 41 89 c3 mov %eax,%r11d + 66344ffe: 45 29 cb sub %r9d,%r11d + 66345001: 4d 8b 52 40 mov 0x40(%r10),%r10 + 66345005: 45 01 1a add %r11d,(%r10) + 66345008: 41 89 40 20 mov %eax,0x20(%r8) + 6634500c: 45 31 c0 xor %r8d,%r8d + 6634500f: 45 8b 0a mov (%r10),%r9d + 66345012: 48 8b 42 40 mov 0x40(%rdx),%rax + 66345016: 45 85 c9 test %r9d,%r9d + 66345019: 41 0f 9f c0 setg %r8b + 6634501d: 44 3b 00 cmp (%rax),%r8d + 66345020: 74 3c je 6634505e + 66345022: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345026: 48 8b 40 40 mov 0x40(%rax),%rax + 6634502a: 8b 00 mov (%rax),%eax + 6634502c: 85 c0 test %eax,%eax + 6634502e: 75 2e jne 6634505e + 66345030: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345034: 48 8b 0d f5 18 01 00 mov 0x118f5(%rip),%rcx # 66356930 + 6634503b: 4c 8b 05 de 18 01 00 mov 0x118de(%rip),%r8 # 66356920 + 66345042: 48 8b 50 40 mov 0x40(%rax),%rdx + 66345046: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634504a: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345050: 48 63 01 movslq (%rcx),%rax + 66345053: 44 8d 48 01 lea 0x1(%rax),%r9d + 66345057: 44 89 09 mov %r9d,(%rcx) + 6634505a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634505e: c3 retq + 6634505f: 90 nop -0000000066345180 : - 66345180: 41 56 push %r14 - 66345182: 57 push %rdi - 66345183: 56 push %rsi - 66345184: 53 push %rbx - 66345185: 48 8b 3d 94 27 01 00 mov 0x12794(%rip),%rdi # 66357920 - 6634518c: 48 8b 35 9d 27 01 00 mov 0x1279d(%rip),%rsi # 66357930 - 66345193: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66345197: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634519b: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax - 663451a2: 8b 00 mov (%rax),%eax - 663451a4: 85 c0 test %eax,%eax - 663451a6: 0f 84 94 00 00 00 je 66345240 - 663451ac: 31 c0 xor %eax,%eax - 663451ae: 66 90 xchg %ax,%ax - 663451b0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 663451b5: 44 8b 54 02 30 mov 0x30(%rdx,%rax,1),%r10d - 663451ba: 45 8b 00 mov (%r8),%r8d - 663451bd: 45 39 d0 cmp %r10d,%r8d - 663451c0: 74 65 je 66345227 - 663451c2: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663451c6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663451ca: 45 89 c6 mov %r8d,%r14d - 663451cd: 45 29 d6 sub %r10d,%r14d - 663451d0: 45 31 d2 xor %r10d,%r10d - 663451d3: 4d 8b 5c 1b 60 mov 0x60(%r11,%rbx,1),%r11 - 663451d8: 45 01 33 add %r14d,(%r11) - 663451db: 44 89 44 02 30 mov %r8d,0x30(%rdx,%rax,1) - 663451e0: 45 8b 33 mov (%r11),%r14d - 663451e3: 4d 8b 44 41 60 mov 0x60(%r9,%rax,2),%r8 - 663451e8: 45 85 f6 test %r14d,%r14d - 663451eb: 41 0f 9f c2 setg %r10b - 663451ef: 45 3b 10 cmp (%r8),%r10d - 663451f2: 74 33 je 66345227 - 663451f4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663451f8: 4d 8b 44 18 60 mov 0x60(%r8,%rbx,1),%r8 - 663451fd: 45 8b 18 mov (%r8),%r11d - 66345200: 45 85 db test %r11d,%r11d - 66345203: 75 22 jne 66345227 - 66345205: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66345209: 4d 8b 54 18 60 mov 0x60(%r8,%rbx,1),%r10 - 6634520e: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66345212: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345219: 4c 63 06 movslq (%rsi),%r8 - 6634521c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66345220: 44 89 1e mov %r11d,(%rsi) - 66345223: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66345227: 48 83 c0 04 add $0x4,%rax - 6634522b: 48 83 f8 2c cmp $0x2c,%rax - 6634522f: 0f 85 7b ff ff ff jne 663451b0 - 66345235: 5b pop %rbx - 66345236: 5e pop %rsi - 66345237: 5f pop %rdi - 66345238: 41 5e pop %r14 - 6634523a: c3 retq - 6634523b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66345240: 48 83 c2 30 add $0x30,%rdx - 66345244: b8 60 00 00 00 mov $0x60,%eax - 66345249: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66345250: 44 8b 02 mov (%rdx),%r8d - 66345253: 45 85 c0 test %r8d,%r8d - 66345256: 74 59 je 663452b1 - 66345258: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634525c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 66345260: 45 29 02 sub %r8d,(%r10) - 66345263: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66345269: 45 8b 12 mov (%r10),%r10d - 6634526c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 66345270: 45 85 d2 test %r10d,%r10d - 66345273: 41 0f 9f c2 setg %r10b - 66345277: 45 0f b6 d2 movzbl %r10b,%r10d - 6634527b: 45 3b 10 cmp (%r8),%r10d - 6634527e: 74 31 je 663452b1 - 66345280: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66345284: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66345288: 45 8b 00 mov (%r8),%r8d - 6634528b: 45 85 c0 test %r8d,%r8d - 6634528e: 75 21 jne 663452b1 - 66345290: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66345294: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 66345298: 4d 8b 42 10 mov 0x10(%r10),%r8 - 6634529c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663452a3: 4c 63 06 movslq (%rsi),%r8 - 663452a6: 45 8d 58 01 lea 0x1(%r8),%r11d - 663452aa: 44 89 1e mov %r11d,(%rsi) - 663452ad: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 663452b1: 48 83 c0 08 add $0x8,%rax - 663452b5: 48 83 c2 04 add $0x4,%rdx - 663452b9: 48 3d b8 00 00 00 cmp $0xb8,%rax - 663452bf: 75 8f jne 66345250 - 663452c1: 5b pop %rbx - 663452c2: 5e pop %rsi - 663452c3: 5f pop %rdi - 663452c4: 41 5e pop %r14 - 663452c6: c3 retq - 663452c7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663452ce: 00 00 +0000000066345060 : + 66345060: ba 01 00 00 00 mov $0x1,%edx + 66345065: 48 8b 41 10 mov 0x10(%rcx),%rax + 66345069: 4c 8b 40 08 mov 0x8(%rax),%r8 + 6634506d: 45 8b 08 mov (%r8),%r9d + 66345070: 45 85 c9 test %r9d,%r9d + 66345073: 74 0c je 66345081 + 66345075: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66345079: 45 8b 00 mov (%r8),%r8d + 6634507c: 45 85 c0 test %r8d,%r8d + 6634507f: 75 72 jne 663450f3 + 66345081: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66345085: 45 8b 48 18 mov 0x18(%r8),%r9d + 66345089: 44 39 ca cmp %r9d,%edx + 6634508c: 74 64 je 663450f2 + 6634508e: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66345092: 41 89 d3 mov %edx,%r11d + 66345095: 45 29 cb sub %r9d,%r11d + 66345098: 48 8b 40 30 mov 0x30(%rax),%rax + 6634509c: 4d 8b 52 30 mov 0x30(%r10),%r10 + 663450a0: 45 01 1a add %r11d,(%r10) + 663450a3: 41 89 50 18 mov %edx,0x18(%r8) + 663450a7: 31 d2 xor %edx,%edx + 663450a9: 45 8b 02 mov (%r10),%r8d + 663450ac: 45 85 c0 test %r8d,%r8d + 663450af: 0f 9f c2 setg %dl + 663450b2: 3b 10 cmp (%rax),%edx + 663450b4: 74 3c je 663450f2 + 663450b6: 48 8b 41 20 mov 0x20(%rcx),%rax + 663450ba: 48 8b 40 30 mov 0x30(%rax),%rax + 663450be: 8b 00 mov (%rax),%eax + 663450c0: 85 c0 test %eax,%eax + 663450c2: 75 2e jne 663450f2 + 663450c4: 48 8b 41 28 mov 0x28(%rcx),%rax + 663450c8: 48 8b 0d 61 18 01 00 mov 0x11861(%rip),%rcx # 66356930 + 663450cf: 4c 8b 05 4a 18 01 00 mov 0x1184a(%rip),%r8 # 66356920 + 663450d6: 48 8b 50 30 mov 0x30(%rax),%rdx + 663450da: 48 8b 42 10 mov 0x10(%rdx),%rax + 663450de: c7 00 01 00 00 00 movl $0x1,(%rax) + 663450e4: 48 63 01 movslq (%rcx),%rax + 663450e7: 44 8d 48 01 lea 0x1(%rax),%r9d + 663450eb: 44 89 09 mov %r9d,(%rcx) + 663450ee: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663450f2: c3 retq + 663450f3: 4c 8b 40 18 mov 0x18(%rax),%r8 + 663450f7: 45 8b 18 mov (%r8),%r11d + 663450fa: 45 85 db test %r11d,%r11d + 663450fd: 74 82 je 66345081 + 663450ff: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66345103: 45 8b 10 mov (%r8),%r10d + 66345106: 45 85 d2 test %r10d,%r10d + 66345109: 0f 84 72 ff ff ff je 66345081 + 6634510f: 48 8b 50 28 mov 0x28(%rax),%rdx + 66345113: 44 8b 0a mov (%rdx),%r9d + 66345116: 31 d2 xor %edx,%edx + 66345118: 45 85 c9 test %r9d,%r9d + 6634511b: 0f 94 c2 sete %dl + 6634511e: e9 5e ff ff ff jmpq 66345081 + 66345123: 0f 1f 00 nopl (%rax) + 66345126: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634512d: 00 00 00 -00000000663452d0 : - 663452d0: 41 56 push %r14 - 663452d2: 57 push %rdi - 663452d3: 56 push %rsi - 663452d4: 53 push %rbx - 663452d5: 48 8b 3d 44 26 01 00 mov 0x12644(%rip),%rdi # 66357920 - 663452dc: 48 8b 35 4d 26 01 00 mov 0x1264d(%rip),%rsi # 66357930 - 663452e3: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663452e7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663452eb: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax - 663452f2: 8b 00 mov (%rax),%eax - 663452f4: 85 c0 test %eax,%eax - 663452f6: 0f 84 94 00 00 00 je 66345390 - 663452fc: 31 c0 xor %eax,%eax - 663452fe: 66 90 xchg %ax,%ax - 66345300: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66345305: 44 8b 54 02 30 mov 0x30(%rdx,%rax,1),%r10d - 6634530a: 45 8b 00 mov (%r8),%r8d - 6634530d: 45 39 d0 cmp %r10d,%r8d - 66345310: 74 65 je 66345377 - 66345312: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345316: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634531a: 45 89 c6 mov %r8d,%r14d - 6634531d: 45 29 d6 sub %r10d,%r14d - 66345320: 45 31 d2 xor %r10d,%r10d - 66345323: 4d 8b 5c 1b 60 mov 0x60(%r11,%rbx,1),%r11 - 66345328: 45 01 33 add %r14d,(%r11) - 6634532b: 44 89 44 02 30 mov %r8d,0x30(%rdx,%rax,1) - 66345330: 45 8b 33 mov (%r11),%r14d - 66345333: 4d 8b 44 41 60 mov 0x60(%r9,%rax,2),%r8 - 66345338: 45 85 f6 test %r14d,%r14d - 6634533b: 41 0f 9f c2 setg %r10b - 6634533f: 45 3b 10 cmp (%r8),%r10d - 66345342: 74 33 je 66345377 - 66345344: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66345348: 4d 8b 44 18 60 mov 0x60(%r8,%rbx,1),%r8 - 6634534d: 45 8b 18 mov (%r8),%r11d - 66345350: 45 85 db test %r11d,%r11d - 66345353: 75 22 jne 66345377 - 66345355: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66345359: 4d 8b 54 18 60 mov 0x60(%r8,%rbx,1),%r10 - 6634535e: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66345362: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345369: 4c 63 06 movslq (%rsi),%r8 - 6634536c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66345370: 44 89 1e mov %r11d,(%rsi) - 66345373: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66345377: 48 83 c0 04 add $0x4,%rax - 6634537b: 48 83 f8 2c cmp $0x2c,%rax - 6634537f: 0f 85 7b ff ff ff jne 66345300 - 66345385: 5b pop %rbx - 66345386: 5e pop %rsi - 66345387: 5f pop %rdi - 66345388: 41 5e pop %r14 - 6634538a: c3 retq - 6634538b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66345390: 48 83 c2 30 add $0x30,%rdx - 66345394: b8 60 00 00 00 mov $0x60,%eax - 66345399: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663453a0: 44 8b 02 mov (%rdx),%r8d - 663453a3: 45 85 c0 test %r8d,%r8d - 663453a6: 74 59 je 66345401 - 663453a8: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663453ac: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 663453b0: 45 29 02 sub %r8d,(%r10) - 663453b3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663453b9: 45 8b 12 mov (%r10),%r10d - 663453bc: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 663453c0: 45 85 d2 test %r10d,%r10d - 663453c3: 41 0f 9f c2 setg %r10b - 663453c7: 45 0f b6 d2 movzbl %r10b,%r10d - 663453cb: 45 3b 10 cmp (%r8),%r10d - 663453ce: 74 31 je 66345401 - 663453d0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663453d4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663453d8: 45 8b 00 mov (%r8),%r8d - 663453db: 45 85 c0 test %r8d,%r8d - 663453de: 75 21 jne 66345401 - 663453e0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663453e4: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 663453e8: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663453ec: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663453f3: 4c 63 06 movslq (%rsi),%r8 - 663453f6: 45 8d 58 01 lea 0x1(%r8),%r11d - 663453fa: 44 89 1e mov %r11d,(%rsi) - 663453fd: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66345401: 48 83 c0 08 add $0x8,%rax - 66345405: 48 83 c2 04 add $0x4,%rdx - 66345409: 48 3d b8 00 00 00 cmp $0xb8,%rax - 6634540f: 75 8f jne 663453a0 - 66345411: 5b pop %rbx - 66345412: 5e pop %rsi - 66345413: 5f pop %rdi - 66345414: 41 5e pop %r14 - 66345416: c3 retq - 66345417: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634541e: 00 00 +0000000066345130 : + 66345130: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66345134: 48 8b 42 08 mov 0x8(%rdx),%rax + 66345138: 8b 00 mov (%rax),%eax + 6634513a: 85 c0 test %eax,%eax + 6634513c: 74 0a je 66345148 + 6634513e: 48 8b 42 10 mov 0x10(%rdx),%rax + 66345142: 8b 00 mov (%rax),%eax + 66345144: 85 c0 test %eax,%eax + 66345146: 75 78 jne 663451c0 + 66345148: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634514c: 45 8b 48 18 mov 0x18(%r8),%r9d + 66345150: 44 39 c8 cmp %r9d,%eax + 66345153: 74 67 je 663451bc + 66345155: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66345159: 41 89 c3 mov %eax,%r11d + 6634515c: 45 29 cb sub %r9d,%r11d + 6634515f: 4d 8b 52 30 mov 0x30(%r10),%r10 + 66345163: 45 01 1a add %r11d,(%r10) + 66345166: 41 89 40 18 mov %eax,0x18(%r8) + 6634516a: 45 31 c0 xor %r8d,%r8d + 6634516d: 45 8b 0a mov (%r10),%r9d + 66345170: 48 8b 42 30 mov 0x30(%rdx),%rax + 66345174: 45 85 c9 test %r9d,%r9d + 66345177: 41 0f 9f c0 setg %r8b + 6634517b: 44 3b 00 cmp (%rax),%r8d + 6634517e: 74 3c je 663451bc + 66345180: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345184: 48 8b 40 30 mov 0x30(%rax),%rax + 66345188: 8b 00 mov (%rax),%eax + 6634518a: 85 c0 test %eax,%eax + 6634518c: 75 2e jne 663451bc + 6634518e: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345192: 48 8b 0d 97 17 01 00 mov 0x11797(%rip),%rcx # 66356930 + 66345199: 4c 8b 05 80 17 01 00 mov 0x11780(%rip),%r8 # 66356920 + 663451a0: 48 8b 50 30 mov 0x30(%rax),%rdx + 663451a4: 48 8b 42 10 mov 0x10(%rdx),%rax + 663451a8: c7 00 01 00 00 00 movl $0x1,(%rax) + 663451ae: 48 63 01 movslq (%rcx),%rax + 663451b1: 44 8d 48 01 lea 0x1(%rax),%r9d + 663451b5: 44 89 09 mov %r9d,(%rcx) + 663451b8: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663451bc: c3 retq + 663451bd: 0f 1f 00 nopl (%rax) + 663451c0: 48 8b 42 18 mov 0x18(%rdx),%rax + 663451c4: 8b 00 mov (%rax),%eax + 663451c6: 85 c0 test %eax,%eax + 663451c8: 0f 84 7a ff ff ff je 66345148 + 663451ce: 48 8b 42 20 mov 0x20(%rdx),%rax + 663451d2: 8b 00 mov (%rax),%eax + 663451d4: 85 c0 test %eax,%eax + 663451d6: 0f 84 6c ff ff ff je 66345148 + 663451dc: 48 8b 42 28 mov 0x28(%rdx),%rax + 663451e0: 44 8b 10 mov (%rax),%r10d + 663451e3: 31 c0 xor %eax,%eax + 663451e5: 45 85 d2 test %r10d,%r10d + 663451e8: 0f 95 c0 setne %al + 663451eb: e9 58 ff ff ff jmpq 66345148 -0000000066345420 : - 66345420: 41 56 push %r14 - 66345422: 57 push %rdi - 66345423: 56 push %rsi - 66345424: 53 push %rbx - 66345425: 48 8b 3d f4 24 01 00 mov 0x124f4(%rip),%rdi # 66357920 - 6634542c: 48 8b 35 fd 24 01 00 mov 0x124fd(%rip),%rsi # 66357930 - 66345433: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66345437: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634543b: 49 8b 81 a8 00 00 00 mov 0xa8(%r9),%rax - 66345442: 8b 00 mov (%rax),%eax - 66345444: 85 c0 test %eax,%eax - 66345446: 0f 84 94 00 00 00 je 663454e0 - 6634544c: 31 c0 xor %eax,%eax - 6634544e: 66 90 xchg %ax,%ax - 66345450: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66345455: 44 8b 54 02 2c mov 0x2c(%rdx,%rax,1),%r10d - 6634545a: 45 8b 00 mov (%r8),%r8d - 6634545d: 45 39 d0 cmp %r10d,%r8d - 66345460: 74 65 je 663454c7 - 66345462: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345466: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634546a: 45 89 c6 mov %r8d,%r14d - 6634546d: 45 29 d6 sub %r10d,%r14d - 66345470: 45 31 d2 xor %r10d,%r10d - 66345473: 4d 8b 5c 1b 58 mov 0x58(%r11,%rbx,1),%r11 - 66345478: 45 01 33 add %r14d,(%r11) - 6634547b: 44 89 44 02 2c mov %r8d,0x2c(%rdx,%rax,1) - 66345480: 45 8b 33 mov (%r11),%r14d - 66345483: 4d 8b 44 41 58 mov 0x58(%r9,%rax,2),%r8 - 66345488: 45 85 f6 test %r14d,%r14d - 6634548b: 41 0f 9f c2 setg %r10b - 6634548f: 45 3b 10 cmp (%r8),%r10d - 66345492: 74 33 je 663454c7 - 66345494: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66345498: 4d 8b 44 18 58 mov 0x58(%r8,%rbx,1),%r8 - 6634549d: 45 8b 18 mov (%r8),%r11d - 663454a0: 45 85 db test %r11d,%r11d - 663454a3: 75 22 jne 663454c7 - 663454a5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663454a9: 4d 8b 54 18 58 mov 0x58(%r8,%rbx,1),%r10 - 663454ae: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663454b2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663454b9: 4c 63 06 movslq (%rsi),%r8 - 663454bc: 45 8d 58 01 lea 0x1(%r8),%r11d - 663454c0: 44 89 1e mov %r11d,(%rsi) - 663454c3: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 663454c7: 48 83 c0 04 add $0x4,%rax - 663454cb: 48 83 f8 28 cmp $0x28,%rax - 663454cf: 0f 85 7b ff ff ff jne 66345450 - 663454d5: 5b pop %rbx - 663454d6: 5e pop %rsi - 663454d7: 5f pop %rdi - 663454d8: 41 5e pop %r14 - 663454da: c3 retq - 663454db: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663454e0: 48 83 c2 2c add $0x2c,%rdx - 663454e4: b8 58 00 00 00 mov $0x58,%eax - 663454e9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663454f0: 44 8b 02 mov (%rdx),%r8d - 663454f3: 45 85 c0 test %r8d,%r8d - 663454f6: 74 59 je 66345551 - 663454f8: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663454fc: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 66345500: 45 29 02 sub %r8d,(%r10) - 66345503: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66345509: 45 8b 12 mov (%r10),%r10d - 6634550c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 66345510: 45 85 d2 test %r10d,%r10d - 66345513: 41 0f 9f c2 setg %r10b - 66345517: 45 0f b6 d2 movzbl %r10b,%r10d - 6634551b: 45 3b 10 cmp (%r8),%r10d - 6634551e: 74 31 je 66345551 - 66345520: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66345524: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66345528: 45 8b 00 mov (%r8),%r8d - 6634552b: 45 85 c0 test %r8d,%r8d - 6634552e: 75 21 jne 66345551 - 66345530: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66345534: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 66345538: 4d 8b 42 10 mov 0x10(%r10),%r8 - 6634553c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345543: 4c 63 06 movslq (%rsi),%r8 - 66345546: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634554a: 44 89 1e mov %r11d,(%rsi) - 6634554d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66345551: 48 83 c0 08 add $0x8,%rax - 66345555: 48 83 c2 04 add $0x4,%rdx - 66345559: 48 3d a8 00 00 00 cmp $0xa8,%rax - 6634555f: 75 8f jne 663454f0 - 66345561: 5b pop %rbx - 66345562: 5e pop %rsi - 66345563: 5f pop %rdi - 66345564: 41 5e pop %r14 - 66345566: c3 retq - 66345567: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634556e: 00 00 +00000000663451f0 : + 663451f0: ba 01 00 00 00 mov $0x1,%edx + 663451f5: 48 8b 41 10 mov 0x10(%rcx),%rax + 663451f9: 4c 8b 40 08 mov 0x8(%rax),%r8 + 663451fd: 45 8b 08 mov (%r8),%r9d + 66345200: 45 85 c9 test %r9d,%r9d + 66345203: 75 0c jne 66345211 + 66345205: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66345209: 45 8b 00 mov (%r8),%r8d + 6634520c: 45 85 c0 test %r8d,%r8d + 6634520f: 74 72 je 66345283 + 66345211: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66345215: 45 8b 48 18 mov 0x18(%r8),%r9d + 66345219: 44 39 ca cmp %r9d,%edx + 6634521c: 74 64 je 66345282 + 6634521e: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66345222: 41 89 d3 mov %edx,%r11d + 66345225: 45 29 cb sub %r9d,%r11d + 66345228: 48 8b 40 30 mov 0x30(%rax),%rax + 6634522c: 4d 8b 52 30 mov 0x30(%r10),%r10 + 66345230: 45 01 1a add %r11d,(%r10) + 66345233: 41 89 50 18 mov %edx,0x18(%r8) + 66345237: 31 d2 xor %edx,%edx + 66345239: 45 8b 02 mov (%r10),%r8d + 6634523c: 45 85 c0 test %r8d,%r8d + 6634523f: 0f 9f c2 setg %dl + 66345242: 3b 10 cmp (%rax),%edx + 66345244: 74 3c je 66345282 + 66345246: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634524a: 48 8b 40 30 mov 0x30(%rax),%rax + 6634524e: 8b 00 mov (%rax),%eax + 66345250: 85 c0 test %eax,%eax + 66345252: 75 2e jne 66345282 + 66345254: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345258: 48 8b 0d d1 16 01 00 mov 0x116d1(%rip),%rcx # 66356930 + 6634525f: 4c 8b 05 ba 16 01 00 mov 0x116ba(%rip),%r8 # 66356920 + 66345266: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634526a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634526e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345274: 48 63 01 movslq (%rcx),%rax + 66345277: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634527b: 44 89 09 mov %r9d,(%rcx) + 6634527e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66345282: c3 retq + 66345283: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66345287: 45 8b 18 mov (%r8),%r11d + 6634528a: 45 85 db test %r11d,%r11d + 6634528d: 75 82 jne 66345211 + 6634528f: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66345293: 45 8b 10 mov (%r8),%r10d + 66345296: 45 85 d2 test %r10d,%r10d + 66345299: 0f 85 72 ff ff ff jne 66345211 + 6634529f: 48 8b 50 28 mov 0x28(%rax),%rdx + 663452a3: 44 8b 0a mov (%rdx),%r9d + 663452a6: 31 d2 xor %edx,%edx + 663452a8: 45 85 c9 test %r9d,%r9d + 663452ab: 0f 95 c2 setne %dl + 663452ae: e9 5e ff ff ff jmpq 66345211 + 663452b3: 0f 1f 00 nopl (%rax) + 663452b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663452bd: 00 00 00 -0000000066345570 : - 66345570: 41 56 push %r14 - 66345572: 57 push %rdi - 66345573: 56 push %rsi - 66345574: 53 push %rbx - 66345575: 48 8b 3d a4 23 01 00 mov 0x123a4(%rip),%rdi # 66357920 - 6634557c: 48 8b 35 ad 23 01 00 mov 0x123ad(%rip),%rsi # 66357930 - 66345583: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66345587: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634558b: 49 8b 81 a8 00 00 00 mov 0xa8(%r9),%rax - 66345592: 8b 00 mov (%rax),%eax - 66345594: 85 c0 test %eax,%eax - 66345596: 0f 84 94 00 00 00 je 66345630 - 6634559c: 31 c0 xor %eax,%eax - 6634559e: 66 90 xchg %ax,%ax - 663455a0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 663455a5: 44 8b 54 02 2c mov 0x2c(%rdx,%rax,1),%r10d - 663455aa: 45 8b 00 mov (%r8),%r8d - 663455ad: 45 39 d0 cmp %r10d,%r8d - 663455b0: 74 65 je 66345617 - 663455b2: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663455b6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663455ba: 45 89 c6 mov %r8d,%r14d - 663455bd: 45 29 d6 sub %r10d,%r14d - 663455c0: 45 31 d2 xor %r10d,%r10d - 663455c3: 4d 8b 5c 1b 58 mov 0x58(%r11,%rbx,1),%r11 - 663455c8: 45 01 33 add %r14d,(%r11) - 663455cb: 44 89 44 02 2c mov %r8d,0x2c(%rdx,%rax,1) - 663455d0: 45 8b 33 mov (%r11),%r14d - 663455d3: 4d 8b 44 41 58 mov 0x58(%r9,%rax,2),%r8 - 663455d8: 45 85 f6 test %r14d,%r14d - 663455db: 41 0f 9f c2 setg %r10b - 663455df: 45 3b 10 cmp (%r8),%r10d - 663455e2: 74 33 je 66345617 - 663455e4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663455e8: 4d 8b 44 18 58 mov 0x58(%r8,%rbx,1),%r8 - 663455ed: 45 8b 18 mov (%r8),%r11d - 663455f0: 45 85 db test %r11d,%r11d - 663455f3: 75 22 jne 66345617 - 663455f5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663455f9: 4d 8b 54 18 58 mov 0x58(%r8,%rbx,1),%r10 - 663455fe: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66345602: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345609: 4c 63 06 movslq (%rsi),%r8 - 6634560c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66345610: 44 89 1e mov %r11d,(%rsi) - 66345613: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66345617: 48 83 c0 04 add $0x4,%rax - 6634561b: 48 83 f8 28 cmp $0x28,%rax - 6634561f: 0f 85 7b ff ff ff jne 663455a0 - 66345625: 5b pop %rbx - 66345626: 5e pop %rsi - 66345627: 5f pop %rdi - 66345628: 41 5e pop %r14 - 6634562a: c3 retq - 6634562b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66345630: 48 83 c2 2c add $0x2c,%rdx - 66345634: b8 58 00 00 00 mov $0x58,%eax - 66345639: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66345640: 44 8b 02 mov (%rdx),%r8d - 66345643: 45 85 c0 test %r8d,%r8d - 66345646: 74 59 je 663456a1 - 66345648: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634564c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 66345650: 45 29 02 sub %r8d,(%r10) - 66345653: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66345659: 45 8b 12 mov (%r10),%r10d - 6634565c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 66345660: 45 85 d2 test %r10d,%r10d - 66345663: 41 0f 9f c2 setg %r10b - 66345667: 45 0f b6 d2 movzbl %r10b,%r10d - 6634566b: 45 3b 10 cmp (%r8),%r10d - 6634566e: 74 31 je 663456a1 - 66345670: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66345674: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66345678: 45 8b 00 mov (%r8),%r8d - 6634567b: 45 85 c0 test %r8d,%r8d - 6634567e: 75 21 jne 663456a1 - 66345680: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66345684: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 66345688: 4d 8b 42 10 mov 0x10(%r10),%r8 - 6634568c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345693: 4c 63 06 movslq (%rsi),%r8 - 66345696: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634569a: 44 89 1e mov %r11d,(%rsi) - 6634569d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 663456a1: 48 83 c0 08 add $0x8,%rax - 663456a5: 48 83 c2 04 add $0x4,%rdx - 663456a9: 48 3d a8 00 00 00 cmp $0xa8,%rax - 663456af: 75 8f jne 66345640 - 663456b1: 5b pop %rbx - 663456b2: 5e pop %rsi - 663456b3: 5f pop %rdi - 663456b4: 41 5e pop %r14 - 663456b6: c3 retq - 663456b7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 663456be: 00 00 +00000000663452c0 : + 663452c0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663452c4: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 663452c8: 48 8b 42 10 mov 0x10(%rdx),%rax + 663452cc: 8b 00 mov (%rax),%eax + 663452ce: 41 33 00 xor (%r8),%eax + 663452d1: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 663452d5: 41 33 00 xor (%r8),%eax + 663452d8: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 663452dc: 41 33 00 xor (%r8),%eax + 663452df: 4c 8b 42 28 mov 0x28(%rdx),%r8 + 663452e3: 41 33 00 xor (%r8),%eax + 663452e6: 4c 8b 42 30 mov 0x30(%rdx),%r8 + 663452ea: 41 33 00 xor (%r8),%eax + 663452ed: 4c 8b 42 38 mov 0x38(%rdx),%r8 + 663452f1: 41 33 00 xor (%r8),%eax + 663452f4: 4c 8b 42 40 mov 0x40(%rdx),%r8 + 663452f8: 41 33 00 xor (%r8),%eax + 663452fb: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663452ff: 45 8b 48 24 mov 0x24(%r8),%r9d + 66345303: 44 39 c8 cmp %r9d,%eax + 66345306: 74 67 je 6634536f + 66345308: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634530c: 41 89 c3 mov %eax,%r11d + 6634530f: 45 29 cb sub %r9d,%r11d + 66345312: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66345316: 45 01 1a add %r11d,(%r10) + 66345319: 41 89 40 24 mov %eax,0x24(%r8) + 6634531d: 45 31 c0 xor %r8d,%r8d + 66345320: 45 8b 0a mov (%r10),%r9d + 66345323: 48 8b 42 48 mov 0x48(%rdx),%rax + 66345327: 45 85 c9 test %r9d,%r9d + 6634532a: 41 0f 9f c0 setg %r8b + 6634532e: 44 3b 00 cmp (%rax),%r8d + 66345331: 74 3c je 6634536f + 66345333: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345337: 48 8b 40 48 mov 0x48(%rax),%rax + 6634533b: 8b 00 mov (%rax),%eax + 6634533d: 85 c0 test %eax,%eax + 6634533f: 75 2e jne 6634536f + 66345341: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345345: 48 8b 0d e4 15 01 00 mov 0x115e4(%rip),%rcx # 66356930 + 6634534c: 4c 8b 05 cd 15 01 00 mov 0x115cd(%rip),%r8 # 66356920 + 66345353: 48 8b 50 48 mov 0x48(%rax),%rdx + 66345357: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634535b: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345361: 48 63 01 movslq (%rcx),%rax + 66345364: 44 8d 48 01 lea 0x1(%rax),%r9d + 66345368: 44 89 09 mov %r9d,(%rcx) + 6634536b: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634536f: c3 retq -00000000663456c0 : - 663456c0: 41 56 push %r14 - 663456c2: 57 push %rdi - 663456c3: 56 push %rsi - 663456c4: 53 push %rbx - 663456c5: 48 8b 3d 54 22 01 00 mov 0x12254(%rip),%rdi # 66357920 - 663456cc: 48 8b 35 5d 22 01 00 mov 0x1225d(%rip),%rsi # 66357930 - 663456d3: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663456d7: 48 8b 51 08 mov 0x8(%rcx),%rdx - 663456db: 49 8b 81 98 00 00 00 mov 0x98(%r9),%rax - 663456e2: 8b 00 mov (%rax),%eax - 663456e4: 85 c0 test %eax,%eax - 663456e6: 0f 84 94 00 00 00 je 66345780 - 663456ec: 31 c0 xor %eax,%eax - 663456ee: 66 90 xchg %ax,%ax - 663456f0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 663456f5: 44 8b 54 02 28 mov 0x28(%rdx,%rax,1),%r10d - 663456fa: 45 8b 00 mov (%r8),%r8d - 663456fd: 45 39 d0 cmp %r10d,%r8d - 66345700: 74 65 je 66345767 - 66345702: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345706: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634570a: 45 89 c6 mov %r8d,%r14d - 6634570d: 45 29 d6 sub %r10d,%r14d - 66345710: 45 31 d2 xor %r10d,%r10d - 66345713: 4d 8b 5c 1b 50 mov 0x50(%r11,%rbx,1),%r11 - 66345718: 45 01 33 add %r14d,(%r11) - 6634571b: 44 89 44 02 28 mov %r8d,0x28(%rdx,%rax,1) - 66345720: 45 8b 33 mov (%r11),%r14d - 66345723: 4d 8b 44 41 50 mov 0x50(%r9,%rax,2),%r8 - 66345728: 45 85 f6 test %r14d,%r14d - 6634572b: 41 0f 9f c2 setg %r10b - 6634572f: 45 3b 10 cmp (%r8),%r10d - 66345732: 74 33 je 66345767 - 66345734: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66345738: 4d 8b 44 18 50 mov 0x50(%r8,%rbx,1),%r8 - 6634573d: 45 8b 18 mov (%r8),%r11d - 66345740: 45 85 db test %r11d,%r11d - 66345743: 75 22 jne 66345767 - 66345745: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66345749: 4d 8b 54 18 50 mov 0x50(%r8,%rbx,1),%r10 - 6634574e: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66345752: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345759: 4c 63 06 movslq (%rsi),%r8 - 6634575c: 45 8d 58 01 lea 0x1(%r8),%r11d - 66345760: 44 89 1e mov %r11d,(%rsi) - 66345763: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66345767: 48 83 c0 04 add $0x4,%rax - 6634576b: 48 83 f8 24 cmp $0x24,%rax - 6634576f: 0f 85 7b ff ff ff jne 663456f0 - 66345775: 5b pop %rbx - 66345776: 5e pop %rsi - 66345777: 5f pop %rdi - 66345778: 41 5e pop %r14 - 6634577a: c3 retq - 6634577b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66345780: 48 83 c2 28 add $0x28,%rdx - 66345784: b8 50 00 00 00 mov $0x50,%eax - 66345789: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66345790: 44 8b 02 mov (%rdx),%r8d - 66345793: 45 85 c0 test %r8d,%r8d - 66345796: 74 59 je 663457f1 - 66345798: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634579c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 663457a0: 45 29 02 sub %r8d,(%r10) - 663457a3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663457a9: 45 8b 12 mov (%r10),%r10d - 663457ac: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 663457b0: 45 85 d2 test %r10d,%r10d - 663457b3: 41 0f 9f c2 setg %r10b - 663457b7: 45 0f b6 d2 movzbl %r10b,%r10d - 663457bb: 45 3b 10 cmp (%r8),%r10d - 663457be: 74 31 je 663457f1 - 663457c0: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663457c4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 663457c8: 45 8b 00 mov (%r8),%r8d - 663457cb: 45 85 c0 test %r8d,%r8d - 663457ce: 75 21 jne 663457f1 - 663457d0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663457d4: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 663457d8: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663457dc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663457e3: 4c 63 06 movslq (%rsi),%r8 - 663457e6: 45 8d 58 01 lea 0x1(%r8),%r11d - 663457ea: 44 89 1e mov %r11d,(%rsi) - 663457ed: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 663457f1: 48 83 c0 08 add $0x8,%rax - 663457f5: 48 83 c2 04 add $0x4,%rdx - 663457f9: 48 3d 98 00 00 00 cmp $0x98,%rax - 663457ff: 75 8f jne 66345790 - 66345801: 5b pop %rbx - 66345802: 5e pop %rsi - 66345803: 5f pop %rdi - 66345804: 41 5e pop %r14 - 66345806: c3 retq - 66345807: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634580e: 00 00 +0000000066345370 : + 66345370: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66345374: 4c 8b 42 08 mov 0x8(%rdx),%r8 + 66345378: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634537c: 8b 00 mov (%rax),%eax + 6634537e: 41 33 00 xor (%r8),%eax + 66345381: 4c 8b 42 18 mov 0x18(%rdx),%r8 + 66345385: 41 33 00 xor (%r8),%eax + 66345388: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 6634538c: 41 33 00 xor (%r8),%eax + 6634538f: 4c 8b 42 28 mov 0x28(%rdx),%r8 + 66345393: 41 33 00 xor (%r8),%eax + 66345396: 4c 8b 42 30 mov 0x30(%rdx),%r8 + 6634539a: 41 33 00 xor (%r8),%eax + 6634539d: 4c 8b 42 38 mov 0x38(%rdx),%r8 + 663453a1: 41 33 00 xor (%r8),%eax + 663453a4: 4c 8b 42 40 mov 0x40(%rdx),%r8 + 663453a8: 41 3b 00 cmp (%r8),%eax + 663453ab: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663453af: 0f 94 c0 sete %al + 663453b2: 45 8b 48 24 mov 0x24(%r8),%r9d + 663453b6: 0f b6 c0 movzbl %al,%eax + 663453b9: 44 39 c8 cmp %r9d,%eax + 663453bc: 74 67 je 66345425 + 663453be: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663453c2: 41 89 c3 mov %eax,%r11d + 663453c5: 45 29 cb sub %r9d,%r11d + 663453c8: 4d 8b 52 48 mov 0x48(%r10),%r10 + 663453cc: 45 01 1a add %r11d,(%r10) + 663453cf: 41 89 40 24 mov %eax,0x24(%r8) + 663453d3: 45 31 c0 xor %r8d,%r8d + 663453d6: 45 8b 0a mov (%r10),%r9d + 663453d9: 48 8b 42 48 mov 0x48(%rdx),%rax + 663453dd: 45 85 c9 test %r9d,%r9d + 663453e0: 41 0f 9f c0 setg %r8b + 663453e4: 44 3b 00 cmp (%rax),%r8d + 663453e7: 74 3c je 66345425 + 663453e9: 48 8b 41 20 mov 0x20(%rcx),%rax + 663453ed: 48 8b 40 48 mov 0x48(%rax),%rax + 663453f1: 8b 00 mov (%rax),%eax + 663453f3: 85 c0 test %eax,%eax + 663453f5: 75 2e jne 66345425 + 663453f7: 48 8b 41 28 mov 0x28(%rcx),%rax + 663453fb: 48 8b 0d 2e 15 01 00 mov 0x1152e(%rip),%rcx # 66356930 + 66345402: 4c 8b 05 17 15 01 00 mov 0x11517(%rip),%r8 # 66356920 + 66345409: 48 8b 50 48 mov 0x48(%rax),%rdx + 6634540d: 48 8b 42 10 mov 0x10(%rdx),%rax + 66345411: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345417: 48 63 01 movslq (%rcx),%rax + 6634541a: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634541e: 44 89 09 mov %r9d,(%rcx) + 66345421: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66345425: c3 retq + 66345426: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634542d: 00 00 00 -0000000066345810 : - 66345810: 41 56 push %r14 - 66345812: 57 push %rdi - 66345813: 56 push %rsi - 66345814: 53 push %rbx - 66345815: 48 8b 3d 04 21 01 00 mov 0x12104(%rip),%rdi # 66357920 - 6634581c: 48 8b 35 0d 21 01 00 mov 0x1210d(%rip),%rsi # 66357930 - 66345823: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66345827: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634582b: 49 8b 81 98 00 00 00 mov 0x98(%r9),%rax - 66345832: 8b 00 mov (%rax),%eax - 66345834: 85 c0 test %eax,%eax - 66345836: 0f 84 94 00 00 00 je 663458d0 - 6634583c: 31 c0 xor %eax,%eax - 6634583e: 66 90 xchg %ax,%ax - 66345840: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66345845: 44 8b 54 02 28 mov 0x28(%rdx,%rax,1),%r10d - 6634584a: 45 8b 00 mov (%r8),%r8d - 6634584d: 45 39 d0 cmp %r10d,%r8d - 66345850: 74 65 je 663458b7 - 66345852: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345856: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 6634585a: 45 89 c6 mov %r8d,%r14d - 6634585d: 45 29 d6 sub %r10d,%r14d - 66345860: 45 31 d2 xor %r10d,%r10d - 66345863: 4d 8b 5c 1b 50 mov 0x50(%r11,%rbx,1),%r11 - 66345868: 45 01 33 add %r14d,(%r11) - 6634586b: 44 89 44 02 28 mov %r8d,0x28(%rdx,%rax,1) - 66345870: 45 8b 33 mov (%r11),%r14d - 66345873: 4d 8b 44 41 50 mov 0x50(%r9,%rax,2),%r8 - 66345878: 45 85 f6 test %r14d,%r14d - 6634587b: 41 0f 9f c2 setg %r10b - 6634587f: 45 3b 10 cmp (%r8),%r10d - 66345882: 74 33 je 663458b7 - 66345884: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66345888: 4d 8b 44 18 50 mov 0x50(%r8,%rbx,1),%r8 - 6634588d: 45 8b 18 mov (%r8),%r11d - 66345890: 45 85 db test %r11d,%r11d - 66345893: 75 22 jne 663458b7 - 66345895: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66345899: 4d 8b 54 18 50 mov 0x50(%r8,%rbx,1),%r10 - 6634589e: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663458a2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663458a9: 4c 63 06 movslq (%rsi),%r8 - 663458ac: 45 8d 58 01 lea 0x1(%r8),%r11d - 663458b0: 44 89 1e mov %r11d,(%rsi) - 663458b3: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 663458b7: 48 83 c0 04 add $0x4,%rax - 663458bb: 48 83 f8 24 cmp $0x24,%rax - 663458bf: 0f 85 7b ff ff ff jne 66345840 - 663458c5: 5b pop %rbx - 663458c6: 5e pop %rsi - 663458c7: 5f pop %rdi - 663458c8: 41 5e pop %r14 - 663458ca: c3 retq - 663458cb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663458d0: 48 83 c2 28 add $0x28,%rdx - 663458d4: b8 50 00 00 00 mov $0x50,%eax - 663458d9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 663458e0: 44 8b 02 mov (%rdx),%r8d - 663458e3: 45 85 c0 test %r8d,%r8d - 663458e6: 74 59 je 66345941 - 663458e8: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 663458ec: 4d 8b 14 02 mov (%r10,%rax,1),%r10 - 663458f0: 45 29 02 sub %r8d,(%r10) - 663458f3: c7 02 00 00 00 00 movl $0x0,(%rdx) - 663458f9: 45 8b 12 mov (%r10),%r10d - 663458fc: 4d 8b 04 01 mov (%r9,%rax,1),%r8 - 66345900: 45 85 d2 test %r10d,%r10d - 66345903: 41 0f 9f c2 setg %r10b - 66345907: 45 0f b6 d2 movzbl %r10b,%r10d - 6634590b: 45 3b 10 cmp (%r8),%r10d - 6634590e: 74 31 je 66345941 - 66345910: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66345914: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66345918: 45 8b 00 mov (%r8),%r8d - 6634591b: 45 85 c0 test %r8d,%r8d - 6634591e: 75 21 jne 66345941 - 66345920: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66345924: 4d 8b 14 00 mov (%r8,%rax,1),%r10 - 66345928: 4d 8b 42 10 mov 0x10(%r10),%r8 - 6634592c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345933: 4c 63 06 movslq (%rsi),%r8 - 66345936: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634593a: 44 89 1e mov %r11d,(%rsi) - 6634593d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66345941: 48 83 c0 08 add $0x8,%rax - 66345945: 48 83 c2 04 add $0x4,%rdx - 66345949: 48 3d 98 00 00 00 cmp $0x98,%rax - 6634594f: 75 8f jne 663458e0 - 66345951: 5b pop %rbx - 66345952: 5e pop %rsi - 66345953: 5f pop %rdi - 66345954: 41 5e pop %r14 - 66345956: c3 retq - 66345957: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634595e: 00 00 +0000000066345430 : + 66345430: ba 01 00 00 00 mov $0x1,%edx + 66345435: 48 8b 41 10 mov 0x10(%rcx),%rax + 66345439: 4c 8b 40 08 mov 0x8(%rax),%r8 + 6634543d: 45 8b 10 mov (%r8),%r10d + 66345440: 45 85 d2 test %r10d,%r10d + 66345443: 75 0c jne 66345451 + 66345445: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66345449: 45 8b 08 mov (%r8),%r9d + 6634544c: 45 85 c9 test %r9d,%r9d + 6634544f: 74 72 je 663454c3 + 66345451: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66345455: 45 8b 48 1c mov 0x1c(%r8),%r9d + 66345459: 44 39 ca cmp %r9d,%edx + 6634545c: 74 64 je 663454c2 + 6634545e: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66345462: 41 89 d3 mov %edx,%r11d + 66345465: 45 29 cb sub %r9d,%r11d + 66345468: 48 8b 40 38 mov 0x38(%rax),%rax + 6634546c: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66345470: 45 01 1a add %r11d,(%r10) + 66345473: 41 89 50 1c mov %edx,0x1c(%r8) + 66345477: 31 d2 xor %edx,%edx + 66345479: 45 8b 02 mov (%r10),%r8d + 6634547c: 45 85 c0 test %r8d,%r8d + 6634547f: 0f 9f c2 setg %dl + 66345482: 3b 10 cmp (%rax),%edx + 66345484: 74 3c je 663454c2 + 66345486: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634548a: 48 8b 40 38 mov 0x38(%rax),%rax + 6634548e: 8b 00 mov (%rax),%eax + 66345490: 85 c0 test %eax,%eax + 66345492: 75 2e jne 663454c2 + 66345494: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345498: 48 8b 0d 91 14 01 00 mov 0x11491(%rip),%rcx # 66356930 + 6634549f: 4c 8b 05 7a 14 01 00 mov 0x1147a(%rip),%r8 # 66356920 + 663454a6: 48 8b 50 38 mov 0x38(%rax),%rdx + 663454aa: 48 8b 42 10 mov 0x10(%rdx),%rax + 663454ae: c7 00 01 00 00 00 movl $0x1,(%rax) + 663454b4: 48 63 01 movslq (%rcx),%rax + 663454b7: 44 8d 48 01 lea 0x1(%rax),%r9d + 663454bb: 44 89 09 mov %r9d,(%rcx) + 663454be: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663454c2: c3 retq + 663454c3: 4c 8b 40 18 mov 0x18(%rax),%r8 + 663454c7: 45 8b 00 mov (%r8),%r8d + 663454ca: 45 85 c0 test %r8d,%r8d + 663454cd: 75 82 jne 66345451 + 663454cf: 4c 8b 40 20 mov 0x20(%rax),%r8 + 663454d3: 45 8b 18 mov (%r8),%r11d + 663454d6: 45 85 db test %r11d,%r11d + 663454d9: 0f 85 72 ff ff ff jne 66345451 + 663454df: 4c 8b 40 28 mov 0x28(%rax),%r8 + 663454e3: 45 8b 10 mov (%r8),%r10d + 663454e6: 45 85 d2 test %r10d,%r10d + 663454e9: 0f 85 62 ff ff ff jne 66345451 + 663454ef: 48 8b 50 30 mov 0x30(%rax),%rdx + 663454f3: 44 8b 0a mov (%rdx),%r9d + 663454f6: 31 d2 xor %edx,%edx + 663454f8: 45 85 c9 test %r9d,%r9d + 663454fb: 0f 95 c2 setne %dl + 663454fe: e9 4e ff ff ff jmpq 66345451 + 66345503: 0f 1f 00 nopl (%rax) + 66345506: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634550d: 00 00 00 -0000000066345960 : - 66345960: 41 56 push %r14 - 66345962: 57 push %rdi - 66345963: 56 push %rsi - 66345964: 53 push %rbx - 66345965: 48 8b 3d b4 1f 01 00 mov 0x11fb4(%rip),%rdi # 66357920 - 6634596c: 48 8b 35 bd 1f 01 00 mov 0x11fbd(%rip),%rsi # 66357930 - 66345973: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66345977: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634597b: 49 8b 81 88 00 00 00 mov 0x88(%r9),%rax - 66345982: 44 8b 10 mov (%rax),%r10d - 66345985: 45 85 d2 test %r10d,%r10d - 66345988: 0f 84 92 00 00 00 je 66345a20 - 6634598e: 31 c0 xor %eax,%eax - 66345990: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66345995: 44 8b 54 02 24 mov 0x24(%rdx,%rax,1),%r10d - 6634599a: 45 8b 00 mov (%r8),%r8d - 6634599d: 45 39 d0 cmp %r10d,%r8d - 663459a0: 74 65 je 66345a07 - 663459a2: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663459a6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 663459aa: 45 89 c6 mov %r8d,%r14d - 663459ad: 45 29 d6 sub %r10d,%r14d - 663459b0: 45 31 d2 xor %r10d,%r10d - 663459b3: 4d 8b 5c 1b 48 mov 0x48(%r11,%rbx,1),%r11 - 663459b8: 45 01 33 add %r14d,(%r11) - 663459bb: 44 89 44 02 24 mov %r8d,0x24(%rdx,%rax,1) - 663459c0: 45 8b 03 mov (%r11),%r8d - 663459c3: 45 85 c0 test %r8d,%r8d - 663459c6: 4d 8b 44 41 48 mov 0x48(%r9,%rax,2),%r8 - 663459cb: 41 0f 9f c2 setg %r10b - 663459cf: 45 3b 10 cmp (%r8),%r10d - 663459d2: 74 33 je 66345a07 - 663459d4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 663459d8: 4d 8b 44 18 48 mov 0x48(%r8,%rbx,1),%r8 - 663459dd: 45 8b 30 mov (%r8),%r14d - 663459e0: 45 85 f6 test %r14d,%r14d - 663459e3: 75 22 jne 66345a07 - 663459e5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 663459e9: 4d 8b 54 18 48 mov 0x48(%r8,%rbx,1),%r10 - 663459ee: 4d 8b 42 10 mov 0x10(%r10),%r8 - 663459f2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 663459f9: 4c 63 06 movslq (%rsi),%r8 - 663459fc: 45 8d 58 01 lea 0x1(%r8),%r11d - 66345a00: 44 89 1e mov %r11d,(%rsi) - 66345a03: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66345a07: 48 83 c0 04 add $0x4,%rax - 66345a0b: 48 83 f8 20 cmp $0x20,%rax - 66345a0f: 0f 85 7b ff ff ff jne 66345990 - 66345a15: 5b pop %rbx - 66345a16: 5e pop %rsi - 66345a17: 5f pop %rdi - 66345a18: 41 5e pop %r14 - 66345a1a: c3 retq - 66345a1b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66345a20: 8b 42 24 mov 0x24(%rdx),%eax - 66345a23: 85 c0 test %eax,%eax - 66345a25: 74 57 je 66345a7e - 66345a27: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345a2b: 4d 8b 40 48 mov 0x48(%r8),%r8 - 66345a2f: 41 29 00 sub %eax,(%r8) - 66345a32: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 66345a39: 41 8b 18 mov (%r8),%ebx - 66345a3c: 45 31 c0 xor %r8d,%r8d - 66345a3f: 49 8b 41 48 mov 0x48(%r9),%rax - 66345a43: 85 db test %ebx,%ebx - 66345a45: 41 0f 9f c0 setg %r8b - 66345a49: 44 3b 00 cmp (%rax),%r8d - 66345a4c: 74 30 je 66345a7e - 66345a4e: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345a52: 48 8b 40 48 mov 0x48(%rax),%rax - 66345a56: 44 8b 18 mov (%rax),%r11d - 66345a59: 45 85 db test %r11d,%r11d - 66345a5c: 75 20 jne 66345a7e - 66345a5e: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345a62: 4c 8b 40 48 mov 0x48(%rax),%r8 - 66345a66: 49 8b 40 10 mov 0x10(%r8),%rax - 66345a6a: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345a70: 48 63 06 movslq (%rsi),%rax - 66345a73: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345a77: 44 89 16 mov %r10d,(%rsi) - 66345a7a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345a7e: 8b 42 28 mov 0x28(%rdx),%eax - 66345a81: 85 c0 test %eax,%eax - 66345a83: 74 58 je 66345add - 66345a85: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345a89: 4d 8b 40 50 mov 0x50(%r8),%r8 - 66345a8d: 41 29 00 sub %eax,(%r8) - 66345a90: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 66345a97: 45 8b 10 mov (%r8),%r10d - 66345a9a: 45 31 c0 xor %r8d,%r8d - 66345a9d: 49 8b 41 50 mov 0x50(%r9),%rax - 66345aa1: 45 85 d2 test %r10d,%r10d - 66345aa4: 41 0f 9f c0 setg %r8b - 66345aa8: 44 3b 00 cmp (%rax),%r8d - 66345aab: 74 30 je 66345add - 66345aad: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345ab1: 48 8b 40 50 mov 0x50(%rax),%rax - 66345ab5: 44 8b 00 mov (%rax),%r8d - 66345ab8: 45 85 c0 test %r8d,%r8d - 66345abb: 75 20 jne 66345add - 66345abd: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345ac1: 4c 8b 40 50 mov 0x50(%rax),%r8 - 66345ac5: 49 8b 40 10 mov 0x10(%r8),%rax - 66345ac9: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345acf: 48 63 06 movslq (%rsi),%rax - 66345ad2: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345ad6: 44 89 16 mov %r10d,(%rsi) - 66345ad9: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345add: 8b 42 2c mov 0x2c(%rdx),%eax - 66345ae0: 85 c0 test %eax,%eax - 66345ae2: 74 55 je 66345b39 - 66345ae4: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345ae8: 4d 8b 40 58 mov 0x58(%r8),%r8 - 66345aec: 41 29 00 sub %eax,(%r8) - 66345aef: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 66345af6: 41 8b 00 mov (%r8),%eax - 66345af9: 45 31 c0 xor %r8d,%r8d - 66345afc: 85 c0 test %eax,%eax - 66345afe: 49 8b 41 58 mov 0x58(%r9),%rax - 66345b02: 41 0f 9f c0 setg %r8b - 66345b06: 44 3b 00 cmp (%rax),%r8d - 66345b09: 74 2e je 66345b39 - 66345b0b: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345b0f: 48 8b 40 58 mov 0x58(%rax),%rax - 66345b13: 8b 00 mov (%rax),%eax - 66345b15: 85 c0 test %eax,%eax - 66345b17: 75 20 jne 66345b39 - 66345b19: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345b1d: 4c 8b 40 58 mov 0x58(%rax),%r8 - 66345b21: 49 8b 40 10 mov 0x10(%r8),%rax - 66345b25: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345b2b: 48 63 06 movslq (%rsi),%rax - 66345b2e: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345b32: 44 89 16 mov %r10d,(%rsi) - 66345b35: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345b39: 8b 42 30 mov 0x30(%rdx),%eax - 66345b3c: 85 c0 test %eax,%eax - 66345b3e: 74 55 je 66345b95 - 66345b40: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345b44: 4d 8b 40 60 mov 0x60(%r8),%r8 - 66345b48: 41 29 00 sub %eax,(%r8) - 66345b4b: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 66345b52: 41 8b 00 mov (%r8),%eax - 66345b55: 45 31 c0 xor %r8d,%r8d - 66345b58: 85 c0 test %eax,%eax - 66345b5a: 49 8b 41 60 mov 0x60(%r9),%rax - 66345b5e: 41 0f 9f c0 setg %r8b - 66345b62: 44 3b 00 cmp (%rax),%r8d - 66345b65: 74 2e je 66345b95 - 66345b67: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345b6b: 48 8b 40 60 mov 0x60(%rax),%rax - 66345b6f: 8b 00 mov (%rax),%eax - 66345b71: 85 c0 test %eax,%eax - 66345b73: 75 20 jne 66345b95 - 66345b75: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345b79: 4c 8b 40 60 mov 0x60(%rax),%r8 - 66345b7d: 49 8b 40 10 mov 0x10(%r8),%rax - 66345b81: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345b87: 48 63 06 movslq (%rsi),%rax - 66345b8a: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345b8e: 44 89 16 mov %r10d,(%rsi) - 66345b91: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345b95: 8b 42 34 mov 0x34(%rdx),%eax - 66345b98: 85 c0 test %eax,%eax - 66345b9a: 74 55 je 66345bf1 - 66345b9c: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345ba0: 4d 8b 40 68 mov 0x68(%r8),%r8 - 66345ba4: 41 29 00 sub %eax,(%r8) - 66345ba7: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 66345bae: 41 8b 00 mov (%r8),%eax - 66345bb1: 45 31 c0 xor %r8d,%r8d - 66345bb4: 85 c0 test %eax,%eax - 66345bb6: 49 8b 41 68 mov 0x68(%r9),%rax - 66345bba: 41 0f 9f c0 setg %r8b - 66345bbe: 44 3b 00 cmp (%rax),%r8d - 66345bc1: 74 2e je 66345bf1 - 66345bc3: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345bc7: 48 8b 40 68 mov 0x68(%rax),%rax - 66345bcb: 8b 00 mov (%rax),%eax - 66345bcd: 85 c0 test %eax,%eax - 66345bcf: 75 20 jne 66345bf1 - 66345bd1: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345bd5: 4c 8b 40 68 mov 0x68(%rax),%r8 - 66345bd9: 49 8b 40 10 mov 0x10(%r8),%rax - 66345bdd: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345be3: 48 63 06 movslq (%rsi),%rax - 66345be6: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345bea: 44 89 16 mov %r10d,(%rsi) - 66345bed: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345bf1: 8b 42 38 mov 0x38(%rdx),%eax - 66345bf4: 85 c0 test %eax,%eax - 66345bf6: 74 56 je 66345c4e - 66345bf8: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345bfc: 4d 8b 40 70 mov 0x70(%r8),%r8 - 66345c00: 41 29 00 sub %eax,(%r8) - 66345c03: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 66345c0a: 45 8b 30 mov (%r8),%r14d - 66345c0d: 45 31 c0 xor %r8d,%r8d - 66345c10: 49 8b 41 70 mov 0x70(%r9),%rax - 66345c14: 45 85 f6 test %r14d,%r14d - 66345c17: 41 0f 9f c0 setg %r8b - 66345c1b: 44 3b 00 cmp (%rax),%r8d - 66345c1e: 74 2e je 66345c4e - 66345c20: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345c24: 48 8b 40 70 mov 0x70(%rax),%rax - 66345c28: 8b 18 mov (%rax),%ebx - 66345c2a: 85 db test %ebx,%ebx - 66345c2c: 75 20 jne 66345c4e - 66345c2e: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345c32: 4c 8b 40 70 mov 0x70(%rax),%r8 - 66345c36: 49 8b 40 10 mov 0x10(%r8),%rax - 66345c3a: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345c40: 48 63 06 movslq (%rsi),%rax - 66345c43: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345c47: 44 89 16 mov %r10d,(%rsi) - 66345c4a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345c4e: 8b 42 3c mov 0x3c(%rdx),%eax - 66345c51: 85 c0 test %eax,%eax - 66345c53: 74 58 je 66345cad - 66345c55: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345c59: 4d 8b 40 78 mov 0x78(%r8),%r8 - 66345c5d: 41 29 00 sub %eax,(%r8) - 66345c60: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 66345c67: 45 8b 18 mov (%r8),%r11d - 66345c6a: 45 31 c0 xor %r8d,%r8d - 66345c6d: 49 8b 41 78 mov 0x78(%r9),%rax - 66345c71: 45 85 db test %r11d,%r11d - 66345c74: 41 0f 9f c0 setg %r8b - 66345c78: 44 3b 00 cmp (%rax),%r8d - 66345c7b: 74 30 je 66345cad - 66345c7d: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345c81: 48 8b 40 78 mov 0x78(%rax),%rax - 66345c85: 44 8b 10 mov (%rax),%r10d - 66345c88: 45 85 d2 test %r10d,%r10d - 66345c8b: 75 20 jne 66345cad - 66345c8d: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345c91: 4c 8b 40 78 mov 0x78(%rax),%r8 - 66345c95: 49 8b 40 10 mov 0x10(%r8),%rax - 66345c99: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345c9f: 48 63 06 movslq (%rsi),%rax - 66345ca2: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345ca6: 44 89 16 mov %r10d,(%rsi) - 66345ca9: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345cad: 8b 42 40 mov 0x40(%rdx),%eax - 66345cb0: 85 c0 test %eax,%eax - 66345cb2: 0f 84 5d fd ff ff je 66345a15 - 66345cb8: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345cbc: 4d 8b 80 80 00 00 00 mov 0x80(%r8),%r8 - 66345cc3: 41 29 00 sub %eax,(%r8) - 66345cc6: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 66345ccd: 31 d2 xor %edx,%edx - 66345ccf: 45 8b 00 mov (%r8),%r8d - 66345cd2: 49 8b 81 80 00 00 00 mov 0x80(%r9),%rax - 66345cd9: 45 85 c0 test %r8d,%r8d - 66345cdc: 0f 9f c2 setg %dl - 66345cdf: 3b 10 cmp (%rax),%edx - 66345ce1: 0f 84 2e fd ff ff je 66345a15 - 66345ce7: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345ceb: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax - 66345cf2: 8b 00 mov (%rax),%eax - 66345cf4: 85 c0 test %eax,%eax - 66345cf6: 0f 85 19 fd ff ff jne 66345a15 - 66345cfc: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345d00: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx - 66345d07: 48 8b 42 10 mov 0x10(%rdx),%rax - 66345d0b: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345d11: 48 63 06 movslq (%rsi),%rax - 66345d14: 8d 48 01 lea 0x1(%rax),%ecx - 66345d17: 89 0e mov %ecx,(%rsi) - 66345d19: 48 89 14 c7 mov %rdx,(%rdi,%rax,8) - 66345d1d: 5b pop %rbx - 66345d1e: 5e pop %rsi - 66345d1f: 5f pop %rdi - 66345d20: 41 5e pop %r14 - 66345d22: c3 retq - 66345d23: 0f 1f 00 nopl (%rax) - 66345d26: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66345d2d: 00 00 00 +0000000066345510 : + 66345510: ba 01 00 00 00 mov $0x1,%edx + 66345515: 48 8b 41 10 mov 0x10(%rcx),%rax + 66345519: 4c 8b 40 08 mov 0x8(%rax),%r8 + 6634551d: 45 8b 10 mov (%r8),%r10d + 66345520: 45 85 d2 test %r10d,%r10d + 66345523: 74 0c je 66345531 + 66345525: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66345529: 45 8b 08 mov (%r8),%r9d + 6634552c: 45 85 c9 test %r9d,%r9d + 6634552f: 75 72 jne 663455a3 + 66345531: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66345535: 45 8b 48 1c mov 0x1c(%r8),%r9d + 66345539: 44 39 ca cmp %r9d,%edx + 6634553c: 74 64 je 663455a2 + 6634553e: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66345542: 41 89 d3 mov %edx,%r11d + 66345545: 45 29 cb sub %r9d,%r11d + 66345548: 48 8b 40 38 mov 0x38(%rax),%rax + 6634554c: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66345550: 45 01 1a add %r11d,(%r10) + 66345553: 41 89 50 1c mov %edx,0x1c(%r8) + 66345557: 31 d2 xor %edx,%edx + 66345559: 45 8b 02 mov (%r10),%r8d + 6634555c: 45 85 c0 test %r8d,%r8d + 6634555f: 0f 9f c2 setg %dl + 66345562: 3b 10 cmp (%rax),%edx + 66345564: 74 3c je 663455a2 + 66345566: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634556a: 48 8b 40 38 mov 0x38(%rax),%rax + 6634556e: 8b 00 mov (%rax),%eax + 66345570: 85 c0 test %eax,%eax + 66345572: 75 2e jne 663455a2 + 66345574: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345578: 48 8b 0d b1 13 01 00 mov 0x113b1(%rip),%rcx # 66356930 + 6634557f: 4c 8b 05 9a 13 01 00 mov 0x1139a(%rip),%r8 # 66356920 + 66345586: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634558a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634558e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345594: 48 63 01 movslq (%rcx),%rax + 66345597: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634559b: 44 89 09 mov %r9d,(%rcx) + 6634559e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 663455a2: c3 retq + 663455a3: 4c 8b 40 18 mov 0x18(%rax),%r8 + 663455a7: 45 8b 00 mov (%r8),%r8d + 663455aa: 45 85 c0 test %r8d,%r8d + 663455ad: 74 82 je 66345531 + 663455af: 4c 8b 40 20 mov 0x20(%rax),%r8 + 663455b3: 45 8b 18 mov (%r8),%r11d + 663455b6: 45 85 db test %r11d,%r11d + 663455b9: 0f 84 72 ff ff ff je 66345531 + 663455bf: 4c 8b 40 28 mov 0x28(%rax),%r8 + 663455c3: 45 8b 10 mov (%r8),%r10d + 663455c6: 45 85 d2 test %r10d,%r10d + 663455c9: 0f 84 62 ff ff ff je 66345531 + 663455cf: 48 8b 50 30 mov 0x30(%rax),%rdx + 663455d3: 44 8b 0a mov (%rdx),%r9d + 663455d6: 31 d2 xor %edx,%edx + 663455d8: 45 85 c9 test %r9d,%r9d + 663455db: 0f 94 c2 sete %dl + 663455de: e9 4e ff ff ff jmpq 66345531 + 663455e3: 0f 1f 00 nopl (%rax) + 663455e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663455ed: 00 00 00 -0000000066345d30 : - 66345d30: 41 56 push %r14 - 66345d32: 57 push %rdi - 66345d33: 56 push %rsi - 66345d34: 53 push %rbx - 66345d35: 48 8b 3d e4 1b 01 00 mov 0x11be4(%rip),%rdi # 66357920 - 66345d3c: 48 8b 35 ed 1b 01 00 mov 0x11bed(%rip),%rsi # 66357930 - 66345d43: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66345d47: 48 8b 51 08 mov 0x8(%rcx),%rdx - 66345d4b: 49 8b 81 88 00 00 00 mov 0x88(%r9),%rax - 66345d52: 44 8b 10 mov (%rax),%r10d - 66345d55: 45 85 d2 test %r10d,%r10d - 66345d58: 0f 84 92 00 00 00 je 66345df0 - 66345d5e: 31 c0 xor %eax,%eax - 66345d60: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 - 66345d65: 44 8b 54 02 24 mov 0x24(%rdx,%rax,1),%r10d - 66345d6a: 45 8b 00 mov (%r8),%r8d - 66345d6d: 45 39 d0 cmp %r10d,%r8d - 66345d70: 74 65 je 66345dd7 - 66345d72: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66345d76: 48 8d 1c 00 lea (%rax,%rax,1),%rbx - 66345d7a: 45 89 c6 mov %r8d,%r14d - 66345d7d: 45 29 d6 sub %r10d,%r14d - 66345d80: 45 31 d2 xor %r10d,%r10d - 66345d83: 4d 8b 5c 1b 48 mov 0x48(%r11,%rbx,1),%r11 - 66345d88: 45 01 33 add %r14d,(%r11) - 66345d8b: 44 89 44 02 24 mov %r8d,0x24(%rdx,%rax,1) - 66345d90: 45 8b 03 mov (%r11),%r8d - 66345d93: 45 85 c0 test %r8d,%r8d - 66345d96: 4d 8b 44 41 48 mov 0x48(%r9,%rax,2),%r8 - 66345d9b: 41 0f 9f c2 setg %r10b - 66345d9f: 45 3b 10 cmp (%r8),%r10d - 66345da2: 74 33 je 66345dd7 - 66345da4: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 66345da8: 4d 8b 44 18 48 mov 0x48(%r8,%rbx,1),%r8 - 66345dad: 45 8b 30 mov (%r8),%r14d - 66345db0: 45 85 f6 test %r14d,%r14d - 66345db3: 75 22 jne 66345dd7 - 66345db5: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 66345db9: 4d 8b 54 18 48 mov 0x48(%r8,%rbx,1),%r10 - 66345dbe: 4d 8b 42 10 mov 0x10(%r10),%r8 - 66345dc2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 66345dc9: 4c 63 06 movslq (%rsi),%r8 - 66345dcc: 45 8d 58 01 lea 0x1(%r8),%r11d - 66345dd0: 44 89 1e mov %r11d,(%rsi) - 66345dd3: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) - 66345dd7: 48 83 c0 04 add $0x4,%rax - 66345ddb: 48 83 f8 20 cmp $0x20,%rax - 66345ddf: 0f 85 7b ff ff ff jne 66345d60 - 66345de5: 5b pop %rbx - 66345de6: 5e pop %rsi - 66345de7: 5f pop %rdi - 66345de8: 41 5e pop %r14 - 66345dea: c3 retq - 66345deb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66345df0: 8b 42 24 mov 0x24(%rdx),%eax - 66345df3: 85 c0 test %eax,%eax - 66345df5: 74 57 je 66345e4e - 66345df7: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345dfb: 4d 8b 40 48 mov 0x48(%r8),%r8 - 66345dff: 41 29 00 sub %eax,(%r8) - 66345e02: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 66345e09: 41 8b 18 mov (%r8),%ebx - 66345e0c: 45 31 c0 xor %r8d,%r8d - 66345e0f: 49 8b 41 48 mov 0x48(%r9),%rax - 66345e13: 85 db test %ebx,%ebx - 66345e15: 41 0f 9f c0 setg %r8b - 66345e19: 44 3b 00 cmp (%rax),%r8d - 66345e1c: 74 30 je 66345e4e - 66345e1e: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345e22: 48 8b 40 48 mov 0x48(%rax),%rax - 66345e26: 44 8b 18 mov (%rax),%r11d - 66345e29: 45 85 db test %r11d,%r11d - 66345e2c: 75 20 jne 66345e4e - 66345e2e: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345e32: 4c 8b 40 48 mov 0x48(%rax),%r8 - 66345e36: 49 8b 40 10 mov 0x10(%r8),%rax - 66345e3a: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345e40: 48 63 06 movslq (%rsi),%rax - 66345e43: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345e47: 44 89 16 mov %r10d,(%rsi) - 66345e4a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345e4e: 8b 42 28 mov 0x28(%rdx),%eax - 66345e51: 85 c0 test %eax,%eax - 66345e53: 74 58 je 66345ead - 66345e55: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345e59: 4d 8b 40 50 mov 0x50(%r8),%r8 - 66345e5d: 41 29 00 sub %eax,(%r8) - 66345e60: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 66345e67: 45 8b 10 mov (%r8),%r10d - 66345e6a: 45 31 c0 xor %r8d,%r8d - 66345e6d: 49 8b 41 50 mov 0x50(%r9),%rax - 66345e71: 45 85 d2 test %r10d,%r10d - 66345e74: 41 0f 9f c0 setg %r8b - 66345e78: 44 3b 00 cmp (%rax),%r8d - 66345e7b: 74 30 je 66345ead - 66345e7d: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345e81: 48 8b 40 50 mov 0x50(%rax),%rax - 66345e85: 44 8b 00 mov (%rax),%r8d - 66345e88: 45 85 c0 test %r8d,%r8d - 66345e8b: 75 20 jne 66345ead - 66345e8d: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345e91: 4c 8b 40 50 mov 0x50(%rax),%r8 - 66345e95: 49 8b 40 10 mov 0x10(%r8),%rax - 66345e99: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345e9f: 48 63 06 movslq (%rsi),%rax - 66345ea2: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345ea6: 44 89 16 mov %r10d,(%rsi) - 66345ea9: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345ead: 8b 42 2c mov 0x2c(%rdx),%eax - 66345eb0: 85 c0 test %eax,%eax - 66345eb2: 74 55 je 66345f09 - 66345eb4: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345eb8: 4d 8b 40 58 mov 0x58(%r8),%r8 - 66345ebc: 41 29 00 sub %eax,(%r8) - 66345ebf: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 66345ec6: 41 8b 00 mov (%r8),%eax - 66345ec9: 45 31 c0 xor %r8d,%r8d - 66345ecc: 85 c0 test %eax,%eax - 66345ece: 49 8b 41 58 mov 0x58(%r9),%rax - 66345ed2: 41 0f 9f c0 setg %r8b - 66345ed6: 44 3b 00 cmp (%rax),%r8d - 66345ed9: 74 2e je 66345f09 - 66345edb: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345edf: 48 8b 40 58 mov 0x58(%rax),%rax - 66345ee3: 8b 00 mov (%rax),%eax - 66345ee5: 85 c0 test %eax,%eax - 66345ee7: 75 20 jne 66345f09 - 66345ee9: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345eed: 4c 8b 40 58 mov 0x58(%rax),%r8 - 66345ef1: 49 8b 40 10 mov 0x10(%r8),%rax - 66345ef5: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345efb: 48 63 06 movslq (%rsi),%rax - 66345efe: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345f02: 44 89 16 mov %r10d,(%rsi) - 66345f05: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345f09: 8b 42 30 mov 0x30(%rdx),%eax - 66345f0c: 85 c0 test %eax,%eax - 66345f0e: 74 55 je 66345f65 - 66345f10: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345f14: 4d 8b 40 60 mov 0x60(%r8),%r8 - 66345f18: 41 29 00 sub %eax,(%r8) - 66345f1b: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 66345f22: 41 8b 00 mov (%r8),%eax - 66345f25: 45 31 c0 xor %r8d,%r8d - 66345f28: 85 c0 test %eax,%eax - 66345f2a: 49 8b 41 60 mov 0x60(%r9),%rax - 66345f2e: 41 0f 9f c0 setg %r8b - 66345f32: 44 3b 00 cmp (%rax),%r8d - 66345f35: 74 2e je 66345f65 - 66345f37: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345f3b: 48 8b 40 60 mov 0x60(%rax),%rax - 66345f3f: 8b 00 mov (%rax),%eax - 66345f41: 85 c0 test %eax,%eax - 66345f43: 75 20 jne 66345f65 - 66345f45: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345f49: 4c 8b 40 60 mov 0x60(%rax),%r8 - 66345f4d: 49 8b 40 10 mov 0x10(%r8),%rax - 66345f51: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345f57: 48 63 06 movslq (%rsi),%rax - 66345f5a: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345f5e: 44 89 16 mov %r10d,(%rsi) - 66345f61: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345f65: 8b 42 34 mov 0x34(%rdx),%eax - 66345f68: 85 c0 test %eax,%eax - 66345f6a: 74 55 je 66345fc1 - 66345f6c: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345f70: 4d 8b 40 68 mov 0x68(%r8),%r8 - 66345f74: 41 29 00 sub %eax,(%r8) - 66345f77: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 66345f7e: 41 8b 00 mov (%r8),%eax - 66345f81: 45 31 c0 xor %r8d,%r8d - 66345f84: 85 c0 test %eax,%eax - 66345f86: 49 8b 41 68 mov 0x68(%r9),%rax - 66345f8a: 41 0f 9f c0 setg %r8b - 66345f8e: 44 3b 00 cmp (%rax),%r8d - 66345f91: 74 2e je 66345fc1 - 66345f93: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345f97: 48 8b 40 68 mov 0x68(%rax),%rax - 66345f9b: 8b 00 mov (%rax),%eax - 66345f9d: 85 c0 test %eax,%eax - 66345f9f: 75 20 jne 66345fc1 - 66345fa1: 48 8b 41 28 mov 0x28(%rcx),%rax - 66345fa5: 4c 8b 40 68 mov 0x68(%rax),%r8 - 66345fa9: 49 8b 40 10 mov 0x10(%r8),%rax - 66345fad: c7 00 01 00 00 00 movl $0x1,(%rax) - 66345fb3: 48 63 06 movslq (%rsi),%rax - 66345fb6: 44 8d 50 01 lea 0x1(%rax),%r10d - 66345fba: 44 89 16 mov %r10d,(%rsi) - 66345fbd: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 66345fc1: 8b 42 38 mov 0x38(%rdx),%eax - 66345fc4: 85 c0 test %eax,%eax - 66345fc6: 74 56 je 6634601e - 66345fc8: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66345fcc: 4d 8b 40 70 mov 0x70(%r8),%r8 - 66345fd0: 41 29 00 sub %eax,(%r8) - 66345fd3: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 66345fda: 45 8b 30 mov (%r8),%r14d - 66345fdd: 45 31 c0 xor %r8d,%r8d - 66345fe0: 49 8b 41 70 mov 0x70(%r9),%rax - 66345fe4: 45 85 f6 test %r14d,%r14d - 66345fe7: 41 0f 9f c0 setg %r8b - 66345feb: 44 3b 00 cmp (%rax),%r8d - 66345fee: 74 2e je 6634601e - 66345ff0: 48 8b 41 20 mov 0x20(%rcx),%rax - 66345ff4: 48 8b 40 70 mov 0x70(%rax),%rax - 66345ff8: 8b 18 mov (%rax),%ebx - 66345ffa: 85 db test %ebx,%ebx - 66345ffc: 75 20 jne 6634601e - 66345ffe: 48 8b 41 28 mov 0x28(%rcx),%rax - 66346002: 4c 8b 40 70 mov 0x70(%rax),%r8 - 66346006: 49 8b 40 10 mov 0x10(%r8),%rax - 6634600a: c7 00 01 00 00 00 movl $0x1,(%rax) - 66346010: 48 63 06 movslq (%rsi),%rax - 66346013: 44 8d 50 01 lea 0x1(%rax),%r10d - 66346017: 44 89 16 mov %r10d,(%rsi) - 6634601a: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 6634601e: 8b 42 3c mov 0x3c(%rdx),%eax - 66346021: 85 c0 test %eax,%eax - 66346023: 74 58 je 6634607d - 66346025: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 66346029: 4d 8b 40 78 mov 0x78(%r8),%r8 - 6634602d: 41 29 00 sub %eax,(%r8) - 66346030: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 66346037: 45 8b 18 mov (%r8),%r11d - 6634603a: 45 31 c0 xor %r8d,%r8d - 6634603d: 49 8b 41 78 mov 0x78(%r9),%rax - 66346041: 45 85 db test %r11d,%r11d - 66346044: 41 0f 9f c0 setg %r8b - 66346048: 44 3b 00 cmp (%rax),%r8d - 6634604b: 74 30 je 6634607d - 6634604d: 48 8b 41 20 mov 0x20(%rcx),%rax - 66346051: 48 8b 40 78 mov 0x78(%rax),%rax - 66346055: 44 8b 10 mov (%rax),%r10d - 66346058: 45 85 d2 test %r10d,%r10d - 6634605b: 75 20 jne 6634607d - 6634605d: 48 8b 41 28 mov 0x28(%rcx),%rax - 66346061: 4c 8b 40 78 mov 0x78(%rax),%r8 - 66346065: 49 8b 40 10 mov 0x10(%r8),%rax - 66346069: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634606f: 48 63 06 movslq (%rsi),%rax - 66346072: 44 8d 50 01 lea 0x1(%rax),%r10d - 66346076: 44 89 16 mov %r10d,(%rsi) - 66346079: 4c 89 04 c7 mov %r8,(%rdi,%rax,8) - 6634607d: 8b 42 40 mov 0x40(%rdx),%eax - 66346080: 85 c0 test %eax,%eax - 66346082: 0f 84 5d fd ff ff je 66345de5 - 66346088: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 6634608c: 4d 8b 80 80 00 00 00 mov 0x80(%r8),%r8 - 66346093: 41 29 00 sub %eax,(%r8) - 66346096: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634609d: 31 d2 xor %edx,%edx - 6634609f: 45 8b 00 mov (%r8),%r8d - 663460a2: 49 8b 81 80 00 00 00 mov 0x80(%r9),%rax - 663460a9: 45 85 c0 test %r8d,%r8d - 663460ac: 0f 9f c2 setg %dl - 663460af: 3b 10 cmp (%rax),%edx - 663460b1: 0f 84 2e fd ff ff je 66345de5 - 663460b7: 48 8b 41 20 mov 0x20(%rcx),%rax - 663460bb: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax - 663460c2: 8b 00 mov (%rax),%eax - 663460c4: 85 c0 test %eax,%eax - 663460c6: 0f 85 19 fd ff ff jne 66345de5 - 663460cc: 48 8b 41 28 mov 0x28(%rcx),%rax - 663460d0: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx - 663460d7: 48 8b 42 10 mov 0x10(%rdx),%rax - 663460db: c7 00 01 00 00 00 movl $0x1,(%rax) - 663460e1: 48 63 06 movslq (%rsi),%rax - 663460e4: 8d 48 01 lea 0x1(%rax),%ecx - 663460e7: 89 0e mov %ecx,(%rsi) - 663460e9: 48 89 14 c7 mov %rdx,(%rdi,%rax,8) - 663460ed: 5b pop %rbx - 663460ee: 5e pop %rsi - 663460ef: 5f pop %rdi - 663460f0: 41 5e pop %r14 - 663460f2: c3 retq - 663460f3: 0f 1f 00 nopl (%rax) - 663460f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663460fd: 00 00 00 +00000000663455f0 : + 663455f0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663455f4: 48 8b 42 08 mov 0x8(%rdx),%rax + 663455f8: 8b 00 mov (%rax),%eax + 663455fa: 85 c0 test %eax,%eax + 663455fc: 0f 85 8e 00 00 00 jne 66345690 + 66345602: 4c 8b 42 10 mov 0x10(%rdx),%r8 + 66345606: 45 8b 08 mov (%r8),%r9d + 66345609: 45 85 c9 test %r9d,%r9d + 6634560c: 74 75 je 66345683 + 6634560e: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66345612: 45 8b 48 1c mov 0x1c(%r8),%r9d + 66345616: 44 39 c8 cmp %r9d,%eax + 66345619: 74 67 je 66345682 + 6634561b: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634561f: 41 89 c3 mov %eax,%r11d + 66345622: 45 29 cb sub %r9d,%r11d + 66345625: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66345629: 45 01 1a add %r11d,(%r10) + 6634562c: 41 89 40 1c mov %eax,0x1c(%r8) + 66345630: 45 31 c0 xor %r8d,%r8d + 66345633: 45 8b 0a mov (%r10),%r9d + 66345636: 48 8b 42 38 mov 0x38(%rdx),%rax + 6634563a: 45 85 c9 test %r9d,%r9d + 6634563d: 41 0f 9f c0 setg %r8b + 66345641: 44 3b 00 cmp (%rax),%r8d + 66345644: 74 3c je 66345682 + 66345646: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634564a: 48 8b 40 38 mov 0x38(%rax),%rax + 6634564e: 8b 00 mov (%rax),%eax + 66345650: 85 c0 test %eax,%eax + 66345652: 75 2e jne 66345682 + 66345654: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345658: 48 8b 0d d1 12 01 00 mov 0x112d1(%rip),%rcx # 66356930 + 6634565f: 4c 8b 05 ba 12 01 00 mov 0x112ba(%rip),%r8 # 66356920 + 66345666: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634566a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634566e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345674: 48 63 01 movslq (%rcx),%rax + 66345677: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634567b: 44 89 09 mov %r9d,(%rcx) + 6634567e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66345682: c3 retq + 66345683: 48 8b 42 18 mov 0x18(%rdx),%rax + 66345687: 8b 00 mov (%rax),%eax + 66345689: 85 c0 test %eax,%eax + 6634568b: 74 13 je 663456a0 + 6634568d: 0f 1f 00 nopl (%rax) + 66345690: 31 c0 xor %eax,%eax + 66345692: e9 77 ff ff ff jmpq 6634560e + 66345697: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634569e: 00 00 + 663456a0: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 663456a4: 45 8b 00 mov (%r8),%r8d + 663456a7: 45 85 c0 test %r8d,%r8d + 663456aa: 0f 85 5e ff ff ff jne 6634560e + 663456b0: 4c 8b 42 28 mov 0x28(%rdx),%r8 + 663456b4: 45 8b 18 mov (%r8),%r11d + 663456b7: 45 85 db test %r11d,%r11d + 663456ba: 0f 85 4e ff ff ff jne 6634560e + 663456c0: 48 8b 42 30 mov 0x30(%rdx),%rax + 663456c4: 44 8b 10 mov (%rax),%r10d + 663456c7: 31 c0 xor %eax,%eax + 663456c9: 45 85 d2 test %r10d,%r10d + 663456cc: 0f 94 c0 sete %al + 663456cf: e9 3a ff ff ff jmpq 6634560e + 663456d4: 66 90 xchg %ax,%ax + 663456d6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663456dd: 00 00 00 -0000000066346100 : - 66346100: 56 push %rsi - 66346101: 53 push %rbx - 66346102: 4c 8b 0d 17 18 01 00 mov 0x11817(%rip),%r9 # 66357920 - 66346109: 4c 8b 05 20 18 01 00 mov 0x11820(%rip),%r8 # 66357930 - 66346110: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66346114: 48 8b 41 08 mov 0x8(%rcx),%rax - 66346118: 4c 8b 52 78 mov 0x78(%rdx),%r10 - 6634611c: 41 8b 32 mov (%r10),%esi - 6634611f: 85 f6 test %esi,%esi - 66346121: 0f 84 39 02 00 00 je 66346360 - 66346127: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 6634612b: 44 8b 58 20 mov 0x20(%rax),%r11d - 6634612f: 45 8b 12 mov (%r10),%r10d - 66346132: 45 39 d3 cmp %r10d,%r11d - 66346135: 74 3c je 66346173 - 66346137: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634613b: 44 89 d6 mov %r10d,%esi - 6634613e: 44 29 de sub %r11d,%esi - 66346141: 45 31 db xor %r11d,%r11d - 66346144: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66346148: 01 33 add %esi,(%rbx) - 6634614a: 44 89 50 20 mov %r10d,0x20(%rax) - 6634614e: 8b 1b mov (%rbx),%ebx - 66346150: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66346154: 85 db test %ebx,%ebx - 66346156: 41 0f 9f c3 setg %r11b - 6634615a: 45 3b 1a cmp (%r10),%r11d - 6634615d: 74 14 je 66346173 - 6634615f: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346163: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66346167: 45 8b 1a mov (%r10),%r11d - 6634616a: 45 85 db test %r11d,%r11d - 6634616d: 0f 84 ad 05 00 00 je 66346720 - 66346173: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 66346177: 44 8b 58 24 mov 0x24(%rax),%r11d - 6634617b: 45 8b 12 mov (%r10),%r10d - 6634617e: 45 39 da cmp %r11d,%r10d - 66346181: 74 3d je 663461c0 - 66346183: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346187: 44 89 d6 mov %r10d,%esi - 6634618a: 44 29 de sub %r11d,%esi - 6634618d: 45 31 db xor %r11d,%r11d - 66346190: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 66346194: 01 33 add %esi,(%rbx) - 66346196: 44 89 50 24 mov %r10d,0x24(%rax) - 6634619a: 44 8b 13 mov (%rbx),%r10d - 6634619d: 45 85 d2 test %r10d,%r10d - 663461a0: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 663461a4: 41 0f 9f c3 setg %r11b - 663461a8: 45 3b 1a cmp (%r10),%r11d - 663461ab: 74 13 je 663461c0 - 663461ad: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663461b1: 4d 8b 52 48 mov 0x48(%r10),%r10 - 663461b5: 41 8b 32 mov (%r10),%esi - 663461b8: 85 f6 test %esi,%esi - 663461ba: 0f 84 30 05 00 00 je 663466f0 - 663461c0: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 663461c4: 44 8b 58 28 mov 0x28(%rax),%r11d - 663461c8: 45 8b 12 mov (%r10),%r10d - 663461cb: 45 39 da cmp %r11d,%r10d - 663461ce: 74 3c je 6634620c - 663461d0: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663461d4: 44 89 d6 mov %r10d,%esi - 663461d7: 44 29 de sub %r11d,%esi - 663461da: 45 31 db xor %r11d,%r11d - 663461dd: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 663461e1: 01 33 add %esi,(%rbx) - 663461e3: 44 89 50 28 mov %r10d,0x28(%rax) - 663461e7: 8b 1b mov (%rbx),%ebx - 663461e9: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 663461ed: 85 db test %ebx,%ebx - 663461ef: 41 0f 9f c3 setg %r11b - 663461f3: 45 3b 1a cmp (%r10),%r11d - 663461f6: 74 14 je 6634620c - 663461f8: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663461fc: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66346200: 45 8b 1a mov (%r10),%r11d - 66346203: 45 85 db test %r11d,%r11d - 66346206: 0f 84 b4 04 00 00 je 663466c0 - 6634620c: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66346210: 44 8b 58 2c mov 0x2c(%rax),%r11d - 66346214: 45 8b 12 mov (%r10),%r10d - 66346217: 45 39 da cmp %r11d,%r10d - 6634621a: 74 3d je 66346259 - 6634621c: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346220: 44 89 d6 mov %r10d,%esi - 66346223: 44 29 de sub %r11d,%esi - 66346226: 45 31 db xor %r11d,%r11d - 66346229: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 6634622d: 01 33 add %esi,(%rbx) - 6634622f: 44 89 50 2c mov %r10d,0x2c(%rax) - 66346233: 44 8b 13 mov (%rbx),%r10d - 66346236: 45 85 d2 test %r10d,%r10d - 66346239: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 6634623d: 41 0f 9f c3 setg %r11b - 66346241: 45 3b 1a cmp (%r10),%r11d - 66346244: 74 13 je 66346259 - 66346246: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634624a: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634624e: 41 8b 32 mov (%r10),%esi - 66346251: 85 f6 test %esi,%esi - 66346253: 0f 84 37 04 00 00 je 66346690 - 66346259: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 6634625d: 44 8b 58 30 mov 0x30(%rax),%r11d - 66346261: 45 8b 12 mov (%r10),%r10d - 66346264: 45 39 da cmp %r11d,%r10d - 66346267: 74 3c je 663462a5 - 66346269: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634626d: 44 89 d6 mov %r10d,%esi - 66346270: 44 29 de sub %r11d,%esi - 66346273: 45 31 db xor %r11d,%r11d - 66346276: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 6634627a: 01 33 add %esi,(%rbx) - 6634627c: 44 89 50 30 mov %r10d,0x30(%rax) - 66346280: 8b 1b mov (%rbx),%ebx - 66346282: 4c 8b 52 60 mov 0x60(%rdx),%r10 - 66346286: 85 db test %ebx,%ebx - 66346288: 41 0f 9f c3 setg %r11b - 6634628c: 45 3b 1a cmp (%r10),%r11d - 6634628f: 74 14 je 663462a5 - 66346291: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346295: 4d 8b 52 60 mov 0x60(%r10),%r10 - 66346299: 45 8b 12 mov (%r10),%r10d - 6634629c: 45 85 d2 test %r10d,%r10d - 6634629f: 0f 84 bb 03 00 00 je 66346660 - 663462a5: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 663462a9: 44 8b 58 34 mov 0x34(%rax),%r11d - 663462ad: 45 8b 12 mov (%r10),%r10d - 663462b0: 45 39 da cmp %r11d,%r10d - 663462b3: 74 3b je 663462f0 - 663462b5: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663462b9: 44 89 d6 mov %r10d,%esi - 663462bc: 44 29 de sub %r11d,%esi - 663462bf: 45 31 db xor %r11d,%r11d - 663462c2: 48 8b 5b 68 mov 0x68(%rbx),%rbx - 663462c6: 01 33 add %esi,(%rbx) - 663462c8: 44 89 50 34 mov %r10d,0x34(%rax) - 663462cc: 8b 33 mov (%rbx),%esi - 663462ce: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 663462d2: 85 f6 test %esi,%esi - 663462d4: 41 0f 9f c3 setg %r11b - 663462d8: 45 3b 1a cmp (%r10),%r11d - 663462db: 74 13 je 663462f0 - 663462dd: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663462e1: 4d 8b 52 68 mov 0x68(%r10),%r10 - 663462e5: 41 8b 1a mov (%r10),%ebx - 663462e8: 85 db test %ebx,%ebx - 663462ea: 0f 84 40 03 00 00 je 66346630 - 663462f0: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 663462f4: 44 8b 58 38 mov 0x38(%rax),%r11d - 663462f8: 45 8b 12 mov (%r10),%r10d - 663462fb: 45 39 da cmp %r11d,%r10d - 663462fe: 74 58 je 66346358 - 66346300: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346304: 44 89 d6 mov %r10d,%esi - 66346307: 44 29 de sub %r11d,%esi - 6634630a: 48 8b 5b 70 mov 0x70(%rbx),%rbx - 6634630e: 01 33 add %esi,(%rbx) - 66346310: 44 89 50 38 mov %r10d,0x38(%rax) - 66346314: 44 8b 1b mov (%rbx),%r11d - 66346317: 45 85 db test %r11d,%r11d - 6634631a: 48 8b 42 70 mov 0x70(%rdx),%rax - 6634631e: 41 0f 9f c2 setg %r10b - 66346322: 45 0f b6 d2 movzbl %r10b,%r10d - 66346326: 44 3b 10 cmp (%rax),%r10d - 66346329: 74 2d je 66346358 - 6634632b: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634632f: 48 8b 40 70 mov 0x70(%rax),%rax - 66346333: 8b 00 mov (%rax),%eax - 66346335: 85 c0 test %eax,%eax - 66346337: 75 1f jne 66346358 - 66346339: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634633d: 48 8b 50 70 mov 0x70(%rax),%rdx - 66346341: 48 8b 42 10 mov 0x10(%rdx),%rax - 66346345: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634634b: 49 63 00 movslq (%r8),%rax - 6634634e: 8d 48 01 lea 0x1(%rax),%ecx - 66346351: 41 89 08 mov %ecx,(%r8) - 66346354: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 66346358: 5b pop %rbx - 66346359: 5e pop %rsi - 6634635a: c3 retq - 6634635b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66346360: 44 8b 50 20 mov 0x20(%rax),%r10d - 66346364: 45 85 d2 test %r10d,%r10d - 66346367: 74 3b je 663463a4 - 66346369: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634636d: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66346371: 45 29 13 sub %r10d,(%r11) - 66346374: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 6634637b: 45 8b 13 mov (%r11),%r10d - 6634637e: 45 31 db xor %r11d,%r11d - 66346381: 45 85 d2 test %r10d,%r10d - 66346384: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66346388: 41 0f 9f c3 setg %r11b - 6634638c: 45 3b 1a cmp (%r10),%r11d - 6634638f: 74 13 je 663463a4 - 66346391: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346395: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66346399: 41 8b 32 mov (%r10),%esi - 6634639c: 85 f6 test %esi,%esi - 6634639e: 0f 84 5c 02 00 00 je 66346600 - 663463a4: 44 8b 50 24 mov 0x24(%rax),%r10d - 663463a8: 45 85 d2 test %r10d,%r10d - 663463ab: 74 3b je 663463e8 - 663463ad: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663463b1: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 663463b5: 45 29 13 sub %r10d,(%r11) - 663463b8: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 663463bf: 41 8b 1b mov (%r11),%ebx - 663463c2: 45 31 db xor %r11d,%r11d - 663463c5: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 663463c9: 85 db test %ebx,%ebx - 663463cb: 41 0f 9f c3 setg %r11b - 663463cf: 45 3b 1a cmp (%r10),%r11d - 663463d2: 74 14 je 663463e8 - 663463d4: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663463d8: 4d 8b 52 48 mov 0x48(%r10),%r10 - 663463dc: 45 8b 1a mov (%r10),%r11d - 663463df: 45 85 db test %r11d,%r11d - 663463e2: 0f 84 e8 01 00 00 je 663465d0 - 663463e8: 44 8b 50 28 mov 0x28(%rax),%r10d - 663463ec: 45 85 d2 test %r10d,%r10d - 663463ef: 74 3b je 6634642c - 663463f1: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663463f5: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 663463f9: 45 29 13 sub %r10d,(%r11) - 663463fc: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66346403: 45 8b 13 mov (%r11),%r10d - 66346406: 45 31 db xor %r11d,%r11d - 66346409: 45 85 d2 test %r10d,%r10d - 6634640c: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66346410: 41 0f 9f c3 setg %r11b - 66346414: 45 3b 1a cmp (%r10),%r11d - 66346417: 74 13 je 6634642c - 66346419: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634641d: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66346421: 41 8b 32 mov (%r10),%esi - 66346424: 85 f6 test %esi,%esi - 66346426: 0f 84 74 01 00 00 je 663465a0 - 6634642c: 44 8b 50 2c mov 0x2c(%rax),%r10d - 66346430: 45 85 d2 test %r10d,%r10d - 66346433: 74 3b je 66346470 - 66346435: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346439: 4d 8b 5b 58 mov 0x58(%r11),%r11 - 6634643d: 45 29 13 sub %r10d,(%r11) - 66346440: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 66346447: 41 8b 1b mov (%r11),%ebx - 6634644a: 45 31 db xor %r11d,%r11d - 6634644d: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66346451: 85 db test %ebx,%ebx - 66346453: 41 0f 9f c3 setg %r11b - 66346457: 45 3b 1a cmp (%r10),%r11d - 6634645a: 74 14 je 66346470 - 6634645c: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346460: 4d 8b 52 58 mov 0x58(%r10),%r10 - 66346464: 45 8b 1a mov (%r10),%r11d - 66346467: 45 85 db test %r11d,%r11d - 6634646a: 0f 84 00 01 00 00 je 66346570 - 66346470: 44 8b 50 30 mov 0x30(%rax),%r10d - 66346474: 45 85 d2 test %r10d,%r10d - 66346477: 74 3b je 663464b4 - 66346479: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634647d: 4d 8b 5b 60 mov 0x60(%r11),%r11 - 66346481: 45 29 13 sub %r10d,(%r11) - 66346484: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 6634648b: 45 8b 13 mov (%r11),%r10d - 6634648e: 45 31 db xor %r11d,%r11d - 66346491: 45 85 d2 test %r10d,%r10d - 66346494: 4c 8b 52 60 mov 0x60(%rdx),%r10 - 66346498: 41 0f 9f c3 setg %r11b - 6634649c: 45 3b 1a cmp (%r10),%r11d - 6634649f: 74 13 je 663464b4 - 663464a1: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663464a5: 4d 8b 52 60 mov 0x60(%r10),%r10 - 663464a9: 41 8b 32 mov (%r10),%esi - 663464ac: 85 f6 test %esi,%esi - 663464ae: 0f 84 8f 00 00 00 je 66346543 - 663464b4: 44 8b 50 34 mov 0x34(%rax),%r10d - 663464b8: 45 85 d2 test %r10d,%r10d - 663464bb: 74 37 je 663464f4 - 663464bd: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663464c1: 4d 8b 5b 68 mov 0x68(%r11),%r11 - 663464c5: 45 29 13 sub %r10d,(%r11) - 663464c8: c7 40 34 00 00 00 00 movl $0x0,0x34(%rax) - 663464cf: 41 8b 1b mov (%r11),%ebx - 663464d2: 45 31 db xor %r11d,%r11d - 663464d5: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 663464d9: 85 db test %ebx,%ebx - 663464db: 41 0f 9f c3 setg %r11b - 663464df: 45 3b 1a cmp (%r10),%r11d - 663464e2: 74 10 je 663464f4 - 663464e4: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663464e8: 4d 8b 52 68 mov 0x68(%r10),%r10 - 663464ec: 45 8b 1a mov (%r10),%r11d - 663464ef: 45 85 db test %r11d,%r11d - 663464f2: 74 2c je 66346520 - 663464f4: 44 8b 50 38 mov 0x38(%rax),%r10d - 663464f8: 45 85 d2 test %r10d,%r10d - 663464fb: 0f 84 57 fe ff ff je 66346358 - 66346501: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346505: 4d 8b 5b 70 mov 0x70(%r11),%r11 - 66346509: 45 29 13 sub %r10d,(%r11) - 6634650c: c7 40 38 00 00 00 00 movl $0x0,0x38(%rax) - 66346513: 45 8b 13 mov (%r11),%r10d - 66346516: 45 85 d2 test %r10d,%r10d - 66346519: e9 fc fd ff ff jmpq 6634631a - 6634651e: 66 90 xchg %ax,%ax - 66346520: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346524: 4d 8b 5a 68 mov 0x68(%r10),%r11 - 66346528: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634652c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346533: 4d 63 10 movslq (%r8),%r10 - 66346536: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634653a: 41 89 18 mov %ebx,(%r8) - 6634653d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346541: eb b1 jmp 663464f4 - 66346543: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346547: 4d 8b 5a 60 mov 0x60(%r10),%r11 - 6634654b: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634654f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346556: 4d 63 10 movslq (%r8),%r10 - 66346559: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634655d: 41 89 18 mov %ebx,(%r8) - 66346560: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346564: e9 4b ff ff ff jmpq 663464b4 - 66346569: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66346570: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346574: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66346578: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634657c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346583: 4d 63 10 movslq (%r8),%r10 - 66346586: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634658a: 41 89 18 mov %ebx,(%r8) - 6634658d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346591: e9 da fe ff ff jmpq 66346470 - 66346596: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634659d: 00 00 00 - 663465a0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663465a4: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 663465a8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663465ac: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663465b3: 4d 63 10 movslq (%r8),%r10 - 663465b6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663465ba: 41 89 18 mov %ebx,(%r8) - 663465bd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663465c1: e9 66 fe ff ff jmpq 6634642c - 663465c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663465cd: 00 00 00 - 663465d0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663465d4: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 663465d8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663465dc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663465e3: 4d 63 10 movslq (%r8),%r10 - 663465e6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663465ea: 41 89 18 mov %ebx,(%r8) - 663465ed: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663465f1: e9 f2 fd ff ff jmpq 663463e8 - 663465f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663465fd: 00 00 00 - 66346600: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346604: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66346608: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634660c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346613: 4d 63 10 movslq (%r8),%r10 - 66346616: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634661a: 41 89 18 mov %ebx,(%r8) - 6634661d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346621: e9 7e fd ff ff jmpq 663463a4 - 66346626: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634662d: 00 00 00 - 66346630: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346634: 4d 8b 5a 68 mov 0x68(%r10),%r11 - 66346638: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634663c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346643: 4d 63 10 movslq (%r8),%r10 - 66346646: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634664a: 41 89 18 mov %ebx,(%r8) - 6634664d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346651: e9 9a fc ff ff jmpq 663462f0 - 66346656: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634665d: 00 00 00 - 66346660: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346664: 4d 8b 5a 60 mov 0x60(%r10),%r11 - 66346668: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634666c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346673: 4d 63 10 movslq (%r8),%r10 - 66346676: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634667a: 41 89 18 mov %ebx,(%r8) - 6634667d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346681: e9 1f fc ff ff jmpq 663462a5 - 66346686: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634668d: 00 00 00 - 66346690: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346694: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66346698: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634669c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663466a3: 4d 63 10 movslq (%r8),%r10 - 663466a6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663466aa: 41 89 18 mov %ebx,(%r8) - 663466ad: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663466b1: e9 a3 fb ff ff jmpq 66346259 - 663466b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663466bd: 00 00 00 - 663466c0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663466c4: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 663466c8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663466cc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663466d3: 4d 63 10 movslq (%r8),%r10 - 663466d6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663466da: 41 89 18 mov %ebx,(%r8) - 663466dd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663466e1: e9 26 fb ff ff jmpq 6634620c - 663466e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663466ed: 00 00 00 - 663466f0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663466f4: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 663466f8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663466fc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346703: 4d 63 10 movslq (%r8),%r10 - 66346706: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634670a: 41 89 18 mov %ebx,(%r8) - 6634670d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346711: e9 aa fa ff ff jmpq 663461c0 - 66346716: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634671d: 00 00 00 - 66346720: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346724: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66346728: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634672c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346733: 4d 63 10 movslq (%r8),%r10 - 66346736: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634673a: 41 89 18 mov %ebx,(%r8) - 6634673d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346741: e9 2d fa ff ff jmpq 66346173 - 66346746: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634674d: 00 00 00 +00000000663456e0 : + 663456e0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663456e4: 48 8b 42 08 mov 0x8(%rdx),%rax + 663456e8: 8b 00 mov (%rax),%eax + 663456ea: 85 c0 test %eax,%eax + 663456ec: 74 0a je 663456f8 + 663456ee: 48 8b 42 10 mov 0x10(%rdx),%rax + 663456f2: 8b 00 mov (%rax),%eax + 663456f4: 85 c0 test %eax,%eax + 663456f6: 75 78 jne 66345770 + 663456f8: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663456fc: 45 8b 48 1c mov 0x1c(%r8),%r9d + 66345700: 44 39 c8 cmp %r9d,%eax + 66345703: 74 67 je 6634576c + 66345705: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66345709: 41 89 c3 mov %eax,%r11d + 6634570c: 45 29 cb sub %r9d,%r11d + 6634570f: 4d 8b 52 38 mov 0x38(%r10),%r10 + 66345713: 45 01 1a add %r11d,(%r10) + 66345716: 41 89 40 1c mov %eax,0x1c(%r8) + 6634571a: 45 31 c0 xor %r8d,%r8d + 6634571d: 45 8b 0a mov (%r10),%r9d + 66345720: 48 8b 42 38 mov 0x38(%rdx),%rax + 66345724: 45 85 c9 test %r9d,%r9d + 66345727: 41 0f 9f c0 setg %r8b + 6634572b: 44 3b 00 cmp (%rax),%r8d + 6634572e: 74 3c je 6634576c + 66345730: 48 8b 41 20 mov 0x20(%rcx),%rax + 66345734: 48 8b 40 38 mov 0x38(%rax),%rax + 66345738: 8b 00 mov (%rax),%eax + 6634573a: 85 c0 test %eax,%eax + 6634573c: 75 2e jne 6634576c + 6634573e: 48 8b 41 28 mov 0x28(%rcx),%rax + 66345742: 48 8b 0d e7 11 01 00 mov 0x111e7(%rip),%rcx # 66356930 + 66345749: 4c 8b 05 d0 11 01 00 mov 0x111d0(%rip),%r8 # 66356920 + 66345750: 48 8b 50 38 mov 0x38(%rax),%rdx + 66345754: 48 8b 42 10 mov 0x10(%rdx),%rax + 66345758: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634575e: 48 63 01 movslq (%rcx),%rax + 66345761: 44 8d 48 01 lea 0x1(%rax),%r9d + 66345765: 44 89 09 mov %r9d,(%rcx) + 66345768: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634576c: c3 retq + 6634576d: 0f 1f 00 nopl (%rax) + 66345770: 48 8b 42 18 mov 0x18(%rdx),%rax + 66345774: 8b 00 mov (%rax),%eax + 66345776: 85 c0 test %eax,%eax + 66345778: 0f 84 7a ff ff ff je 663456f8 + 6634577e: 48 8b 42 20 mov 0x20(%rdx),%rax + 66345782: 8b 00 mov (%rax),%eax + 66345784: 85 c0 test %eax,%eax + 66345786: 0f 84 6c ff ff ff je 663456f8 + 6634578c: 48 8b 42 28 mov 0x28(%rdx),%rax + 66345790: 8b 00 mov (%rax),%eax + 66345792: 85 c0 test %eax,%eax + 66345794: 0f 84 5e ff ff ff je 663456f8 + 6634579a: 48 8b 42 30 mov 0x30(%rdx),%rax + 6634579e: 44 8b 10 mov (%rax),%r10d + 663457a1: 31 c0 xor %eax,%eax + 663457a3: 45 85 d2 test %r10d,%r10d + 663457a6: 0f 95 c0 setne %al + 663457a9: e9 4a ff ff ff jmpq 663456f8 + 663457ae: 66 90 xchg %ax,%ax -0000000066346750 : - 66346750: 56 push %rsi - 66346751: 53 push %rbx - 66346752: 4c 8b 0d c7 11 01 00 mov 0x111c7(%rip),%r9 # 66357920 - 66346759: 4c 8b 05 d0 11 01 00 mov 0x111d0(%rip),%r8 # 66357930 - 66346760: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66346764: 48 8b 41 08 mov 0x8(%rcx),%rax - 66346768: 4c 8b 52 78 mov 0x78(%rdx),%r10 - 6634676c: 41 8b 32 mov (%r10),%esi - 6634676f: 85 f6 test %esi,%esi - 66346771: 0f 84 39 02 00 00 je 663469b0 - 66346777: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 6634677b: 44 8b 58 20 mov 0x20(%rax),%r11d - 6634677f: 45 8b 12 mov (%r10),%r10d - 66346782: 45 39 d3 cmp %r10d,%r11d - 66346785: 74 3c je 663467c3 - 66346787: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634678b: 44 89 d6 mov %r10d,%esi - 6634678e: 44 29 de sub %r11d,%esi - 66346791: 45 31 db xor %r11d,%r11d - 66346794: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66346798: 01 33 add %esi,(%rbx) - 6634679a: 44 89 50 20 mov %r10d,0x20(%rax) - 6634679e: 8b 1b mov (%rbx),%ebx - 663467a0: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 663467a4: 85 db test %ebx,%ebx - 663467a6: 41 0f 9f c3 setg %r11b - 663467aa: 45 3b 1a cmp (%r10),%r11d - 663467ad: 74 14 je 663467c3 - 663467af: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663467b3: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663467b7: 45 8b 1a mov (%r10),%r11d - 663467ba: 45 85 db test %r11d,%r11d - 663467bd: 0f 84 ad 05 00 00 je 66346d70 - 663467c3: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 663467c7: 44 8b 58 24 mov 0x24(%rax),%r11d - 663467cb: 45 8b 12 mov (%r10),%r10d - 663467ce: 45 39 da cmp %r11d,%r10d - 663467d1: 74 3d je 66346810 - 663467d3: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663467d7: 44 89 d6 mov %r10d,%esi - 663467da: 44 29 de sub %r11d,%esi - 663467dd: 45 31 db xor %r11d,%r11d - 663467e0: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 663467e4: 01 33 add %esi,(%rbx) - 663467e6: 44 89 50 24 mov %r10d,0x24(%rax) - 663467ea: 44 8b 13 mov (%rbx),%r10d - 663467ed: 45 85 d2 test %r10d,%r10d - 663467f0: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 663467f4: 41 0f 9f c3 setg %r11b - 663467f8: 45 3b 1a cmp (%r10),%r11d - 663467fb: 74 13 je 66346810 - 663467fd: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346801: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66346805: 41 8b 32 mov (%r10),%esi - 66346808: 85 f6 test %esi,%esi - 6634680a: 0f 84 30 05 00 00 je 66346d40 - 66346810: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 66346814: 44 8b 58 28 mov 0x28(%rax),%r11d - 66346818: 45 8b 12 mov (%r10),%r10d - 6634681b: 45 39 da cmp %r11d,%r10d - 6634681e: 74 3c je 6634685c - 66346820: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346824: 44 89 d6 mov %r10d,%esi - 66346827: 44 29 de sub %r11d,%esi - 6634682a: 45 31 db xor %r11d,%r11d - 6634682d: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66346831: 01 33 add %esi,(%rbx) - 66346833: 44 89 50 28 mov %r10d,0x28(%rax) - 66346837: 8b 1b mov (%rbx),%ebx - 66346839: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 6634683d: 85 db test %ebx,%ebx - 6634683f: 41 0f 9f c3 setg %r11b - 66346843: 45 3b 1a cmp (%r10),%r11d - 66346846: 74 14 je 6634685c - 66346848: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634684c: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66346850: 45 8b 1a mov (%r10),%r11d - 66346853: 45 85 db test %r11d,%r11d - 66346856: 0f 84 b4 04 00 00 je 66346d10 - 6634685c: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66346860: 44 8b 58 2c mov 0x2c(%rax),%r11d - 66346864: 45 8b 12 mov (%r10),%r10d - 66346867: 45 39 da cmp %r11d,%r10d - 6634686a: 74 3d je 663468a9 - 6634686c: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346870: 44 89 d6 mov %r10d,%esi - 66346873: 44 29 de sub %r11d,%esi - 66346876: 45 31 db xor %r11d,%r11d - 66346879: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 6634687d: 01 33 add %esi,(%rbx) - 6634687f: 44 89 50 2c mov %r10d,0x2c(%rax) - 66346883: 44 8b 13 mov (%rbx),%r10d - 66346886: 45 85 d2 test %r10d,%r10d - 66346889: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 6634688d: 41 0f 9f c3 setg %r11b - 66346891: 45 3b 1a cmp (%r10),%r11d - 66346894: 74 13 je 663468a9 - 66346896: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634689a: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634689e: 41 8b 32 mov (%r10),%esi - 663468a1: 85 f6 test %esi,%esi - 663468a3: 0f 84 37 04 00 00 je 66346ce0 - 663468a9: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 663468ad: 44 8b 58 30 mov 0x30(%rax),%r11d - 663468b1: 45 8b 12 mov (%r10),%r10d - 663468b4: 45 39 da cmp %r11d,%r10d - 663468b7: 74 3c je 663468f5 - 663468b9: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663468bd: 44 89 d6 mov %r10d,%esi - 663468c0: 44 29 de sub %r11d,%esi - 663468c3: 45 31 db xor %r11d,%r11d - 663468c6: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 663468ca: 01 33 add %esi,(%rbx) - 663468cc: 44 89 50 30 mov %r10d,0x30(%rax) - 663468d0: 8b 1b mov (%rbx),%ebx - 663468d2: 4c 8b 52 60 mov 0x60(%rdx),%r10 - 663468d6: 85 db test %ebx,%ebx - 663468d8: 41 0f 9f c3 setg %r11b - 663468dc: 45 3b 1a cmp (%r10),%r11d - 663468df: 74 14 je 663468f5 - 663468e1: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663468e5: 4d 8b 52 60 mov 0x60(%r10),%r10 - 663468e9: 45 8b 12 mov (%r10),%r10d - 663468ec: 45 85 d2 test %r10d,%r10d - 663468ef: 0f 84 bb 03 00 00 je 66346cb0 - 663468f5: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 663468f9: 44 8b 58 34 mov 0x34(%rax),%r11d - 663468fd: 45 8b 12 mov (%r10),%r10d - 66346900: 45 39 da cmp %r11d,%r10d - 66346903: 74 3b je 66346940 - 66346905: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346909: 44 89 d6 mov %r10d,%esi - 6634690c: 44 29 de sub %r11d,%esi - 6634690f: 45 31 db xor %r11d,%r11d - 66346912: 48 8b 5b 68 mov 0x68(%rbx),%rbx - 66346916: 01 33 add %esi,(%rbx) - 66346918: 44 89 50 34 mov %r10d,0x34(%rax) - 6634691c: 8b 33 mov (%rbx),%esi - 6634691e: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 66346922: 85 f6 test %esi,%esi - 66346924: 41 0f 9f c3 setg %r11b - 66346928: 45 3b 1a cmp (%r10),%r11d - 6634692b: 74 13 je 66346940 - 6634692d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346931: 4d 8b 52 68 mov 0x68(%r10),%r10 - 66346935: 41 8b 1a mov (%r10),%ebx - 66346938: 85 db test %ebx,%ebx - 6634693a: 0f 84 40 03 00 00 je 66346c80 - 66346940: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66346944: 44 8b 58 38 mov 0x38(%rax),%r11d - 66346948: 45 8b 12 mov (%r10),%r10d - 6634694b: 45 39 da cmp %r11d,%r10d - 6634694e: 74 58 je 663469a8 - 66346950: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346954: 44 89 d6 mov %r10d,%esi - 66346957: 44 29 de sub %r11d,%esi - 6634695a: 48 8b 5b 70 mov 0x70(%rbx),%rbx - 6634695e: 01 33 add %esi,(%rbx) - 66346960: 44 89 50 38 mov %r10d,0x38(%rax) - 66346964: 44 8b 1b mov (%rbx),%r11d - 66346967: 45 85 db test %r11d,%r11d - 6634696a: 48 8b 42 70 mov 0x70(%rdx),%rax - 6634696e: 41 0f 9f c2 setg %r10b - 66346972: 45 0f b6 d2 movzbl %r10b,%r10d - 66346976: 44 3b 10 cmp (%rax),%r10d - 66346979: 74 2d je 663469a8 - 6634697b: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634697f: 48 8b 40 70 mov 0x70(%rax),%rax - 66346983: 8b 00 mov (%rax),%eax - 66346985: 85 c0 test %eax,%eax - 66346987: 75 1f jne 663469a8 - 66346989: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634698d: 48 8b 50 70 mov 0x70(%rax),%rdx - 66346991: 48 8b 42 10 mov 0x10(%rdx),%rax - 66346995: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634699b: 49 63 00 movslq (%r8),%rax - 6634699e: 8d 48 01 lea 0x1(%rax),%ecx - 663469a1: 41 89 08 mov %ecx,(%r8) - 663469a4: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 663469a8: 5b pop %rbx - 663469a9: 5e pop %rsi - 663469aa: c3 retq - 663469ab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663469b0: 44 8b 50 20 mov 0x20(%rax),%r10d - 663469b4: 45 85 d2 test %r10d,%r10d - 663469b7: 74 3b je 663469f4 - 663469b9: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663469bd: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 663469c1: 45 29 13 sub %r10d,(%r11) - 663469c4: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 663469cb: 45 8b 13 mov (%r11),%r10d - 663469ce: 45 31 db xor %r11d,%r11d - 663469d1: 45 85 d2 test %r10d,%r10d - 663469d4: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 663469d8: 41 0f 9f c3 setg %r11b - 663469dc: 45 3b 1a cmp (%r10),%r11d - 663469df: 74 13 je 663469f4 - 663469e1: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663469e5: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663469e9: 41 8b 32 mov (%r10),%esi - 663469ec: 85 f6 test %esi,%esi - 663469ee: 0f 84 5c 02 00 00 je 66346c50 - 663469f4: 44 8b 50 24 mov 0x24(%rax),%r10d - 663469f8: 45 85 d2 test %r10d,%r10d - 663469fb: 74 3b je 66346a38 - 663469fd: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346a01: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 66346a05: 45 29 13 sub %r10d,(%r11) - 66346a08: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 66346a0f: 41 8b 1b mov (%r11),%ebx - 66346a12: 45 31 db xor %r11d,%r11d - 66346a15: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66346a19: 85 db test %ebx,%ebx - 66346a1b: 41 0f 9f c3 setg %r11b - 66346a1f: 45 3b 1a cmp (%r10),%r11d - 66346a22: 74 14 je 66346a38 - 66346a24: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346a28: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66346a2c: 45 8b 1a mov (%r10),%r11d - 66346a2f: 45 85 db test %r11d,%r11d - 66346a32: 0f 84 e8 01 00 00 je 66346c20 - 66346a38: 44 8b 50 28 mov 0x28(%rax),%r10d - 66346a3c: 45 85 d2 test %r10d,%r10d - 66346a3f: 74 3b je 66346a7c - 66346a41: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346a45: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 66346a49: 45 29 13 sub %r10d,(%r11) - 66346a4c: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66346a53: 45 8b 13 mov (%r11),%r10d - 66346a56: 45 31 db xor %r11d,%r11d - 66346a59: 45 85 d2 test %r10d,%r10d - 66346a5c: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66346a60: 41 0f 9f c3 setg %r11b - 66346a64: 45 3b 1a cmp (%r10),%r11d - 66346a67: 74 13 je 66346a7c - 66346a69: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346a6d: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66346a71: 41 8b 32 mov (%r10),%esi - 66346a74: 85 f6 test %esi,%esi - 66346a76: 0f 84 74 01 00 00 je 66346bf0 - 66346a7c: 44 8b 50 2c mov 0x2c(%rax),%r10d - 66346a80: 45 85 d2 test %r10d,%r10d - 66346a83: 74 3b je 66346ac0 - 66346a85: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346a89: 4d 8b 5b 58 mov 0x58(%r11),%r11 - 66346a8d: 45 29 13 sub %r10d,(%r11) - 66346a90: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 66346a97: 41 8b 1b mov (%r11),%ebx - 66346a9a: 45 31 db xor %r11d,%r11d - 66346a9d: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66346aa1: 85 db test %ebx,%ebx - 66346aa3: 41 0f 9f c3 setg %r11b - 66346aa7: 45 3b 1a cmp (%r10),%r11d - 66346aaa: 74 14 je 66346ac0 - 66346aac: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346ab0: 4d 8b 52 58 mov 0x58(%r10),%r10 - 66346ab4: 45 8b 1a mov (%r10),%r11d - 66346ab7: 45 85 db test %r11d,%r11d - 66346aba: 0f 84 00 01 00 00 je 66346bc0 - 66346ac0: 44 8b 50 30 mov 0x30(%rax),%r10d - 66346ac4: 45 85 d2 test %r10d,%r10d - 66346ac7: 74 3b je 66346b04 - 66346ac9: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346acd: 4d 8b 5b 60 mov 0x60(%r11),%r11 - 66346ad1: 45 29 13 sub %r10d,(%r11) - 66346ad4: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 66346adb: 45 8b 13 mov (%r11),%r10d - 66346ade: 45 31 db xor %r11d,%r11d - 66346ae1: 45 85 d2 test %r10d,%r10d - 66346ae4: 4c 8b 52 60 mov 0x60(%rdx),%r10 - 66346ae8: 41 0f 9f c3 setg %r11b - 66346aec: 45 3b 1a cmp (%r10),%r11d - 66346aef: 74 13 je 66346b04 - 66346af1: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346af5: 4d 8b 52 60 mov 0x60(%r10),%r10 - 66346af9: 41 8b 32 mov (%r10),%esi - 66346afc: 85 f6 test %esi,%esi - 66346afe: 0f 84 8f 00 00 00 je 66346b93 - 66346b04: 44 8b 50 34 mov 0x34(%rax),%r10d - 66346b08: 45 85 d2 test %r10d,%r10d - 66346b0b: 74 37 je 66346b44 - 66346b0d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346b11: 4d 8b 5b 68 mov 0x68(%r11),%r11 - 66346b15: 45 29 13 sub %r10d,(%r11) - 66346b18: c7 40 34 00 00 00 00 movl $0x0,0x34(%rax) - 66346b1f: 41 8b 1b mov (%r11),%ebx - 66346b22: 45 31 db xor %r11d,%r11d - 66346b25: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 66346b29: 85 db test %ebx,%ebx - 66346b2b: 41 0f 9f c3 setg %r11b - 66346b2f: 45 3b 1a cmp (%r10),%r11d - 66346b32: 74 10 je 66346b44 - 66346b34: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346b38: 4d 8b 52 68 mov 0x68(%r10),%r10 - 66346b3c: 45 8b 1a mov (%r10),%r11d - 66346b3f: 45 85 db test %r11d,%r11d - 66346b42: 74 2c je 66346b70 - 66346b44: 44 8b 50 38 mov 0x38(%rax),%r10d - 66346b48: 45 85 d2 test %r10d,%r10d - 66346b4b: 0f 84 57 fe ff ff je 663469a8 - 66346b51: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66346b55: 4d 8b 5b 70 mov 0x70(%r11),%r11 - 66346b59: 45 29 13 sub %r10d,(%r11) - 66346b5c: c7 40 38 00 00 00 00 movl $0x0,0x38(%rax) - 66346b63: 45 8b 13 mov (%r11),%r10d - 66346b66: 45 85 d2 test %r10d,%r10d - 66346b69: e9 fc fd ff ff jmpq 6634696a - 66346b6e: 66 90 xchg %ax,%ax - 66346b70: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346b74: 4d 8b 5a 68 mov 0x68(%r10),%r11 - 66346b78: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346b7c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346b83: 4d 63 10 movslq (%r8),%r10 - 66346b86: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346b8a: 41 89 18 mov %ebx,(%r8) - 66346b8d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346b91: eb b1 jmp 66346b44 - 66346b93: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346b97: 4d 8b 5a 60 mov 0x60(%r10),%r11 - 66346b9b: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346b9f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346ba6: 4d 63 10 movslq (%r8),%r10 - 66346ba9: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346bad: 41 89 18 mov %ebx,(%r8) - 66346bb0: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346bb4: e9 4b ff ff ff jmpq 66346b04 - 66346bb9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66346bc0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346bc4: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66346bc8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346bcc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346bd3: 4d 63 10 movslq (%r8),%r10 - 66346bd6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346bda: 41 89 18 mov %ebx,(%r8) - 66346bdd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346be1: e9 da fe ff ff jmpq 66346ac0 - 66346be6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66346bed: 00 00 00 - 66346bf0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346bf4: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66346bf8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346bfc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346c03: 4d 63 10 movslq (%r8),%r10 - 66346c06: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346c0a: 41 89 18 mov %ebx,(%r8) - 66346c0d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346c11: e9 66 fe ff ff jmpq 66346a7c - 66346c16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66346c1d: 00 00 00 - 66346c20: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346c24: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66346c28: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346c2c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346c33: 4d 63 10 movslq (%r8),%r10 - 66346c36: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346c3a: 41 89 18 mov %ebx,(%r8) - 66346c3d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346c41: e9 f2 fd ff ff jmpq 66346a38 - 66346c46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66346c4d: 00 00 00 - 66346c50: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346c54: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66346c58: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346c5c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346c63: 4d 63 10 movslq (%r8),%r10 - 66346c66: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346c6a: 41 89 18 mov %ebx,(%r8) - 66346c6d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346c71: e9 7e fd ff ff jmpq 663469f4 - 66346c76: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66346c7d: 00 00 00 - 66346c80: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346c84: 4d 8b 5a 68 mov 0x68(%r10),%r11 - 66346c88: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346c8c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346c93: 4d 63 10 movslq (%r8),%r10 - 66346c96: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346c9a: 41 89 18 mov %ebx,(%r8) - 66346c9d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346ca1: e9 9a fc ff ff jmpq 66346940 - 66346ca6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66346cad: 00 00 00 - 66346cb0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346cb4: 4d 8b 5a 60 mov 0x60(%r10),%r11 - 66346cb8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346cbc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346cc3: 4d 63 10 movslq (%r8),%r10 - 66346cc6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346cca: 41 89 18 mov %ebx,(%r8) - 66346ccd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346cd1: e9 1f fc ff ff jmpq 663468f5 - 66346cd6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66346cdd: 00 00 00 - 66346ce0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346ce4: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66346ce8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346cec: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346cf3: 4d 63 10 movslq (%r8),%r10 - 66346cf6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346cfa: 41 89 18 mov %ebx,(%r8) - 66346cfd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346d01: e9 a3 fb ff ff jmpq 663468a9 - 66346d06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66346d0d: 00 00 00 - 66346d10: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346d14: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66346d18: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346d1c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346d23: 4d 63 10 movslq (%r8),%r10 - 66346d26: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346d2a: 41 89 18 mov %ebx,(%r8) - 66346d2d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346d31: e9 26 fb ff ff jmpq 6634685c - 66346d36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66346d3d: 00 00 00 - 66346d40: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346d44: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66346d48: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346d4c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346d53: 4d 63 10 movslq (%r8),%r10 - 66346d56: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346d5a: 41 89 18 mov %ebx,(%r8) - 66346d5d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346d61: e9 aa fa ff ff jmpq 66346810 - 66346d66: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66346d6d: 00 00 00 - 66346d70: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346d74: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66346d78: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346d7c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346d83: 4d 63 10 movslq (%r8),%r10 - 66346d86: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346d8a: 41 89 18 mov %ebx,(%r8) - 66346d8d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346d91: e9 2d fa ff ff jmpq 663467c3 - 66346d96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66346d9d: 00 00 00 +00000000663457b0 : + 663457b0: 56 push %rsi + 663457b1: 53 push %rbx + 663457b2: 48 83 ec 28 sub $0x28,%rsp + 663457b6: 48 89 cb mov %rcx,%rbx + 663457b9: 48 8b 49 10 mov 0x10(%rcx),%rcx + 663457bd: 48 8b 81 a8 00 00 00 mov 0xa8(%rcx),%rax + 663457c4: 44 8b 10 mov (%rax),%r10d + 663457c7: 45 85 d2 test %r10d,%r10d + 663457ca: 74 34 je 66345800 + 663457cc: 31 d2 xor %edx,%edx + 663457ce: eb 04 jmp 663457d4 + 663457d0: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 663457d4: 48 8d 72 01 lea 0x1(%rdx),%rsi + 663457d8: 83 c2 0b add $0xb,%edx + 663457db: 48 8b 04 f1 mov (%rcx,%rsi,8),%rax + 663457df: 48 89 d9 mov %rbx,%rcx + 663457e2: 44 8b 00 mov (%rax),%r8d + 663457e5: e8 c6 bb ff ff callq 663413b0 + 663457ea: 48 83 fe 0a cmp $0xa,%rsi + 663457ee: 48 89 f2 mov %rsi,%rdx + 663457f1: 75 dd jne 663457d0 + 663457f3: 48 83 c4 28 add $0x28,%rsp + 663457f7: 5b pop %rbx + 663457f8: 5e pop %rsi + 663457f9: c3 retq + 663457fa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66345800: 48 8b 43 08 mov 0x8(%rbx),%rax + 66345804: 4c 8b 1d 15 11 01 00 mov 0x11115(%rip),%r11 # 66356920 + 6634580b: 4c 8b 15 1e 11 01 00 mov 0x1111e(%rip),%r10 # 66356930 + 66345812: 48 8d 50 2c lea 0x2c(%rax),%rdx + 66345816: b8 58 00 00 00 mov $0x58,%eax + 6634581b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66345820: 44 8b 02 mov (%rdx),%r8d + 66345823: 45 85 c0 test %r8d,%r8d + 66345826: 74 59 je 66345881 + 66345828: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634582c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66345830: 45 29 01 sub %r8d,(%r9) + 66345833: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66345839: 45 8b 09 mov (%r9),%r9d + 6634583c: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66345840: 45 85 c9 test %r9d,%r9d + 66345843: 41 0f 9f c1 setg %r9b + 66345847: 45 0f b6 c9 movzbl %r9b,%r9d + 6634584b: 45 3b 08 cmp (%r8),%r9d + 6634584e: 74 31 je 66345881 + 66345850: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66345854: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66345858: 45 8b 00 mov (%r8),%r8d + 6634585b: 45 85 c0 test %r8d,%r8d + 6634585e: 75 21 jne 66345881 + 66345860: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66345864: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66345868: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634586c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345873: 4d 63 02 movslq (%r10),%r8 + 66345876: 41 8d 70 01 lea 0x1(%r8),%esi + 6634587a: 41 89 32 mov %esi,(%r10) + 6634587d: 4f 89 0c c3 mov %r9,(%r11,%r8,8) + 66345881: 48 83 c0 08 add $0x8,%rax + 66345885: 48 83 c2 04 add $0x4,%rdx + 66345889: 48 3d a8 00 00 00 cmp $0xa8,%rax + 6634588f: 75 8f jne 66345820 + 66345891: 48 83 c4 28 add $0x28,%rsp + 66345895: 5b pop %rbx + 66345896: 5e pop %rsi + 66345897: c3 retq + 66345898: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634589f: 00 -0000000066346da0 : - 66346da0: 56 push %rsi - 66346da1: 53 push %rbx - 66346da2: 4c 8b 0d 77 0b 01 00 mov 0x10b77(%rip),%r9 # 66357920 - 66346da9: 4c 8b 05 80 0b 01 00 mov 0x10b80(%rip),%r8 # 66357930 - 66346db0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66346db4: 48 8b 41 08 mov 0x8(%rcx),%rax - 66346db8: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 66346dbc: 41 8b 32 mov (%r10),%esi - 66346dbf: 85 f6 test %esi,%esi - 66346dc1: 0f 84 79 02 00 00 je 66347040 - 66346dc7: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 66346dcb: 44 8b 58 1c mov 0x1c(%rax),%r11d - 66346dcf: 45 8b 12 mov (%r10),%r10d - 66346dd2: 45 39 d3 cmp %r10d,%r11d - 66346dd5: 74 59 je 66346e30 - 66346dd7: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346ddb: 44 89 d6 mov %r10d,%esi - 66346dde: 44 29 de sub %r11d,%esi - 66346de1: 45 31 db xor %r11d,%r11d - 66346de4: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 66346de8: 01 33 add %esi,(%rbx) - 66346dea: 44 89 50 1c mov %r10d,0x1c(%rax) - 66346dee: 8b 1b mov (%rbx),%ebx - 66346df0: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66346df4: 85 db test %ebx,%ebx - 66346df6: 41 0f 9f c3 setg %r11b - 66346dfa: 45 3b 1a cmp (%r10),%r11d - 66346dfd: 74 31 je 66346e30 - 66346dff: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346e03: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66346e07: 45 8b 1a mov (%r10),%r11d - 66346e0a: 45 85 db test %r11d,%r11d - 66346e0d: 75 21 jne 66346e30 - 66346e0f: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346e13: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66346e17: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346e1b: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346e22: 4d 63 10 movslq (%r8),%r10 - 66346e25: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346e29: 41 89 18 mov %ebx,(%r8) - 66346e2c: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346e30: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 66346e34: 44 8b 58 20 mov 0x20(%rax),%r11d - 66346e38: 45 8b 12 mov (%r10),%r10d - 66346e3b: 45 39 da cmp %r11d,%r10d - 66346e3e: 74 5a je 66346e9a - 66346e40: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346e44: 44 89 d6 mov %r10d,%esi - 66346e47: 44 29 de sub %r11d,%esi - 66346e4a: 45 31 db xor %r11d,%r11d - 66346e4d: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66346e51: 01 33 add %esi,(%rbx) - 66346e53: 44 89 50 20 mov %r10d,0x20(%rax) - 66346e57: 44 8b 13 mov (%rbx),%r10d - 66346e5a: 45 85 d2 test %r10d,%r10d - 66346e5d: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66346e61: 41 0f 9f c3 setg %r11b - 66346e65: 45 3b 1a cmp (%r10),%r11d - 66346e68: 74 30 je 66346e9a - 66346e6a: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346e6e: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66346e72: 41 8b 32 mov (%r10),%esi - 66346e75: 85 f6 test %esi,%esi - 66346e77: 75 21 jne 66346e9a - 66346e79: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346e7d: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66346e81: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346e85: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346e8c: 4d 63 10 movslq (%r8),%r10 - 66346e8f: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346e93: 41 89 18 mov %ebx,(%r8) - 66346e96: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346e9a: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 66346e9e: 44 8b 58 24 mov 0x24(%rax),%r11d - 66346ea2: 45 8b 12 mov (%r10),%r10d - 66346ea5: 45 39 da cmp %r11d,%r10d - 66346ea8: 74 59 je 66346f03 - 66346eaa: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346eae: 44 89 d6 mov %r10d,%esi - 66346eb1: 44 29 de sub %r11d,%esi - 66346eb4: 45 31 db xor %r11d,%r11d - 66346eb7: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 66346ebb: 01 33 add %esi,(%rbx) - 66346ebd: 44 89 50 24 mov %r10d,0x24(%rax) - 66346ec1: 8b 1b mov (%rbx),%ebx - 66346ec3: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66346ec7: 85 db test %ebx,%ebx - 66346ec9: 41 0f 9f c3 setg %r11b - 66346ecd: 45 3b 1a cmp (%r10),%r11d - 66346ed0: 74 31 je 66346f03 - 66346ed2: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346ed6: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66346eda: 45 8b 1a mov (%r10),%r11d - 66346edd: 45 85 db test %r11d,%r11d - 66346ee0: 75 21 jne 66346f03 - 66346ee2: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346ee6: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66346eea: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346eee: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346ef5: 4d 63 10 movslq (%r8),%r10 - 66346ef8: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346efc: 41 89 18 mov %ebx,(%r8) - 66346eff: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346f03: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66346f07: 44 8b 58 28 mov 0x28(%rax),%r11d - 66346f0b: 45 8b 12 mov (%r10),%r10d - 66346f0e: 45 39 da cmp %r11d,%r10d - 66346f11: 74 5a je 66346f6d - 66346f13: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346f17: 44 89 d6 mov %r10d,%esi - 66346f1a: 44 29 de sub %r11d,%esi - 66346f1d: 45 31 db xor %r11d,%r11d - 66346f20: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66346f24: 01 33 add %esi,(%rbx) - 66346f26: 44 89 50 28 mov %r10d,0x28(%rax) - 66346f2a: 44 8b 13 mov (%rbx),%r10d - 66346f2d: 45 85 d2 test %r10d,%r10d - 66346f30: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66346f34: 41 0f 9f c3 setg %r11b - 66346f38: 45 3b 1a cmp (%r10),%r11d - 66346f3b: 74 30 je 66346f6d - 66346f3d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346f41: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66346f45: 41 8b 32 mov (%r10),%esi - 66346f48: 85 f6 test %esi,%esi - 66346f4a: 75 21 jne 66346f6d - 66346f4c: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346f50: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66346f54: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346f58: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346f5f: 4d 63 10 movslq (%r8),%r10 - 66346f62: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346f66: 41 89 18 mov %ebx,(%r8) - 66346f69: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346f6d: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 66346f71: 44 8b 58 2c mov 0x2c(%rax),%r11d - 66346f75: 45 8b 12 mov (%r10),%r10d - 66346f78: 45 39 da cmp %r11d,%r10d - 66346f7b: 74 59 je 66346fd6 - 66346f7d: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346f81: 44 89 d6 mov %r10d,%esi - 66346f84: 44 29 de sub %r11d,%esi - 66346f87: 45 31 db xor %r11d,%r11d - 66346f8a: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 66346f8e: 01 33 add %esi,(%rbx) - 66346f90: 44 89 50 2c mov %r10d,0x2c(%rax) - 66346f94: 8b 1b mov (%rbx),%ebx - 66346f96: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66346f9a: 85 db test %ebx,%ebx - 66346f9c: 41 0f 9f c3 setg %r11b - 66346fa0: 45 3b 1a cmp (%r10),%r11d - 66346fa3: 74 31 je 66346fd6 - 66346fa5: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66346fa9: 4d 8b 52 58 mov 0x58(%r10),%r10 - 66346fad: 45 8b 12 mov (%r10),%r10d - 66346fb0: 45 85 d2 test %r10d,%r10d - 66346fb3: 75 21 jne 66346fd6 - 66346fb5: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66346fb9: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 66346fbd: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66346fc1: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66346fc8: 4d 63 10 movslq (%r8),%r10 - 66346fcb: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66346fcf: 41 89 18 mov %ebx,(%r8) - 66346fd2: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66346fd6: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 66346fda: 44 8b 58 30 mov 0x30(%rax),%r11d - 66346fde: 45 8b 12 mov (%r10),%r10d - 66346fe1: 45 39 da cmp %r11d,%r10d - 66346fe4: 74 56 je 6634703c - 66346fe6: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66346fea: 44 89 d6 mov %r10d,%esi - 66346fed: 44 29 de sub %r11d,%esi - 66346ff0: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 66346ff4: 01 33 add %esi,(%rbx) - 66346ff6: 44 89 50 30 mov %r10d,0x30(%rax) - 66346ffa: 8b 33 mov (%rbx),%esi - 66346ffc: 85 f6 test %esi,%esi - 66346ffe: 48 8b 42 60 mov 0x60(%rdx),%rax - 66347002: 41 0f 9f c2 setg %r10b - 66347006: 45 0f b6 d2 movzbl %r10b,%r10d - 6634700a: 44 3b 10 cmp (%rax),%r10d - 6634700d: 74 2d je 6634703c - 6634700f: 48 8b 41 20 mov 0x20(%rcx),%rax - 66347013: 48 8b 40 60 mov 0x60(%rax),%rax - 66347017: 8b 00 mov (%rax),%eax - 66347019: 85 c0 test %eax,%eax - 6634701b: 75 1f jne 6634703c - 6634701d: 48 8b 41 28 mov 0x28(%rcx),%rax - 66347021: 48 8b 50 60 mov 0x60(%rax),%rdx - 66347025: 48 8b 42 10 mov 0x10(%rdx),%rax - 66347029: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634702f: 49 63 00 movslq (%r8),%rax - 66347032: 8d 48 01 lea 0x1(%rax),%ecx - 66347035: 41 89 08 mov %ecx,(%r8) - 66347038: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6634703c: 5b pop %rbx - 6634703d: 5e pop %rsi - 6634703e: c3 retq - 6634703f: 90 nop - 66347040: 44 8b 50 1c mov 0x1c(%rax),%r10d - 66347044: 45 85 d2 test %r10d,%r10d - 66347047: 74 3b je 66347084 - 66347049: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634704d: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66347051: 45 29 13 sub %r10d,(%r11) - 66347054: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 6634705b: 41 8b 1b mov (%r11),%ebx - 6634705e: 45 31 db xor %r11d,%r11d - 66347061: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66347065: 85 db test %ebx,%ebx - 66347067: 41 0f 9f c3 setg %r11b - 6634706b: 45 3b 1a cmp (%r10),%r11d - 6634706e: 74 14 je 66347084 - 66347070: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347074: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66347078: 45 8b 1a mov (%r10),%r11d - 6634707b: 45 85 db test %r11d,%r11d - 6634707e: 0f 84 ec 01 00 00 je 66347270 - 66347084: 44 8b 50 20 mov 0x20(%rax),%r10d - 66347088: 45 85 d2 test %r10d,%r10d - 6634708b: 74 3b je 663470c8 - 6634708d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347091: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66347095: 45 29 13 sub %r10d,(%r11) - 66347098: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 6634709f: 45 8b 13 mov (%r11),%r10d - 663470a2: 45 31 db xor %r11d,%r11d - 663470a5: 45 85 d2 test %r10d,%r10d - 663470a8: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 663470ac: 41 0f 9f c3 setg %r11b - 663470b0: 45 3b 1a cmp (%r10),%r11d - 663470b3: 74 13 je 663470c8 - 663470b5: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663470b9: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663470bd: 41 8b 32 mov (%r10),%esi - 663470c0: 85 f6 test %esi,%esi - 663470c2: 0f 84 78 01 00 00 je 66347240 - 663470c8: 44 8b 50 24 mov 0x24(%rax),%r10d - 663470cc: 45 85 d2 test %r10d,%r10d - 663470cf: 74 3b je 6634710c - 663470d1: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663470d5: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 663470d9: 45 29 13 sub %r10d,(%r11) - 663470dc: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 663470e3: 41 8b 1b mov (%r11),%ebx - 663470e6: 45 31 db xor %r11d,%r11d - 663470e9: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 663470ed: 85 db test %ebx,%ebx - 663470ef: 41 0f 9f c3 setg %r11b - 663470f3: 45 3b 1a cmp (%r10),%r11d - 663470f6: 74 14 je 6634710c - 663470f8: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663470fc: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66347100: 45 8b 1a mov (%r10),%r11d - 66347103: 45 85 db test %r11d,%r11d - 66347106: 0f 84 04 01 00 00 je 66347210 - 6634710c: 44 8b 50 28 mov 0x28(%rax),%r10d - 66347110: 45 85 d2 test %r10d,%r10d - 66347113: 74 3b je 66347150 - 66347115: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347119: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 6634711d: 45 29 13 sub %r10d,(%r11) - 66347120: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66347127: 45 8b 13 mov (%r11),%r10d - 6634712a: 45 31 db xor %r11d,%r11d - 6634712d: 45 85 d2 test %r10d,%r10d - 66347130: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66347134: 41 0f 9f c3 setg %r11b - 66347138: 45 3b 1a cmp (%r10),%r11d - 6634713b: 74 13 je 66347150 - 6634713d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347141: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66347145: 41 8b 32 mov (%r10),%esi - 66347148: 85 f6 test %esi,%esi - 6634714a: 0f 84 93 00 00 00 je 663471e3 - 66347150: 44 8b 50 2c mov 0x2c(%rax),%r10d - 66347154: 45 85 d2 test %r10d,%r10d - 66347157: 74 37 je 66347190 - 66347159: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634715d: 4d 8b 5b 58 mov 0x58(%r11),%r11 - 66347161: 45 29 13 sub %r10d,(%r11) - 66347164: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 6634716b: 41 8b 1b mov (%r11),%ebx - 6634716e: 45 31 db xor %r11d,%r11d - 66347171: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66347175: 85 db test %ebx,%ebx - 66347177: 41 0f 9f c3 setg %r11b - 6634717b: 45 3b 1a cmp (%r10),%r11d - 6634717e: 74 10 je 66347190 - 66347180: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347184: 4d 8b 52 58 mov 0x58(%r10),%r10 - 66347188: 45 8b 1a mov (%r10),%r11d - 6634718b: 45 85 db test %r11d,%r11d - 6634718e: 74 30 je 663471c0 - 66347190: 44 8b 50 30 mov 0x30(%rax),%r10d - 66347194: 45 85 d2 test %r10d,%r10d - 66347197: 0f 84 9f fe ff ff je 6634703c - 6634719d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663471a1: 4d 8b 5b 60 mov 0x60(%r11),%r11 - 663471a5: 45 29 13 sub %r10d,(%r11) - 663471a8: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 663471af: 45 8b 13 mov (%r11),%r10d - 663471b2: 45 85 d2 test %r10d,%r10d - 663471b5: e9 44 fe ff ff jmpq 66346ffe - 663471ba: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 663471c0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663471c4: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 663471c8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663471cc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663471d3: 4d 63 10 movslq (%r8),%r10 - 663471d6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663471da: 41 89 18 mov %ebx,(%r8) - 663471dd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663471e1: eb ad jmp 66347190 - 663471e3: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663471e7: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 663471eb: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663471ef: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663471f6: 4d 63 10 movslq (%r8),%r10 - 663471f9: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663471fd: 41 89 18 mov %ebx,(%r8) - 66347200: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347204: e9 47 ff ff ff jmpq 66347150 - 66347209: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66347210: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347214: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66347218: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634721c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347223: 4d 63 10 movslq (%r8),%r10 - 66347226: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634722a: 41 89 18 mov %ebx,(%r8) - 6634722d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347231: e9 d6 fe ff ff jmpq 6634710c - 66347236: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634723d: 00 00 00 - 66347240: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347244: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66347248: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634724c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347253: 4d 63 10 movslq (%r8),%r10 - 66347256: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634725a: 41 89 18 mov %ebx,(%r8) - 6634725d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347261: e9 62 fe ff ff jmpq 663470c8 - 66347266: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634726d: 00 00 00 - 66347270: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347274: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66347278: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634727c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347283: 4d 63 10 movslq (%r8),%r10 - 66347286: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634728a: 41 89 18 mov %ebx,(%r8) - 6634728d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347291: e9 ee fd ff ff jmpq 66347084 - 66347296: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634729d: 00 00 00 +00000000663458a0 : + 663458a0: 56 push %rsi + 663458a1: 53 push %rbx + 663458a2: 48 83 ec 28 sub $0x28,%rsp + 663458a6: 48 89 cb mov %rcx,%rbx + 663458a9: 48 8b 49 10 mov 0x10(%rcx),%rcx + 663458ad: 48 8b 81 a8 00 00 00 mov 0xa8(%rcx),%rax + 663458b4: 44 8b 10 mov (%rax),%r10d + 663458b7: 45 85 d2 test %r10d,%r10d + 663458ba: 74 34 je 663458f0 + 663458bc: 31 d2 xor %edx,%edx + 663458be: eb 04 jmp 663458c4 + 663458c0: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 663458c4: 48 8d 72 01 lea 0x1(%rdx),%rsi + 663458c8: 83 c2 0b add $0xb,%edx + 663458cb: 48 8b 04 f1 mov (%rcx,%rsi,8),%rax + 663458cf: 48 89 d9 mov %rbx,%rcx + 663458d2: 44 8b 00 mov (%rax),%r8d + 663458d5: e8 d6 ba ff ff callq 663413b0 + 663458da: 48 83 fe 0a cmp $0xa,%rsi + 663458de: 48 89 f2 mov %rsi,%rdx + 663458e1: 75 dd jne 663458c0 + 663458e3: 48 83 c4 28 add $0x28,%rsp + 663458e7: 5b pop %rbx + 663458e8: 5e pop %rsi + 663458e9: c3 retq + 663458ea: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 663458f0: 48 8b 43 08 mov 0x8(%rbx),%rax + 663458f4: 4c 8b 1d 25 10 01 00 mov 0x11025(%rip),%r11 # 66356920 + 663458fb: 4c 8b 15 2e 10 01 00 mov 0x1102e(%rip),%r10 # 66356930 + 66345902: 48 8d 50 2c lea 0x2c(%rax),%rdx + 66345906: b8 58 00 00 00 mov $0x58,%eax + 6634590b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66345910: 44 8b 02 mov (%rdx),%r8d + 66345913: 45 85 c0 test %r8d,%r8d + 66345916: 74 59 je 66345971 + 66345918: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634591c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66345920: 45 29 01 sub %r8d,(%r9) + 66345923: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66345929: 45 8b 09 mov (%r9),%r9d + 6634592c: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66345930: 45 85 c9 test %r9d,%r9d + 66345933: 41 0f 9f c1 setg %r9b + 66345937: 45 0f b6 c9 movzbl %r9b,%r9d + 6634593b: 45 3b 08 cmp (%r8),%r9d + 6634593e: 74 31 je 66345971 + 66345940: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66345944: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66345948: 45 8b 00 mov (%r8),%r8d + 6634594b: 45 85 c0 test %r8d,%r8d + 6634594e: 75 21 jne 66345971 + 66345950: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66345954: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66345958: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634595c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345963: 4d 63 02 movslq (%r10),%r8 + 66345966: 41 8d 70 01 lea 0x1(%r8),%esi + 6634596a: 41 89 32 mov %esi,(%r10) + 6634596d: 4f 89 0c c3 mov %r9,(%r11,%r8,8) + 66345971: 48 83 c0 08 add $0x8,%rax + 66345975: 48 83 c2 04 add $0x4,%rdx + 66345979: 48 3d a8 00 00 00 cmp $0xa8,%rax + 6634597f: 75 8f jne 66345910 + 66345981: 48 83 c4 28 add $0x28,%rsp + 66345985: 5b pop %rbx + 66345986: 5e pop %rsi + 66345987: c3 retq + 66345988: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634598f: 00 -00000000663472a0 : - 663472a0: 56 push %rsi - 663472a1: 53 push %rbx - 663472a2: 4c 8b 0d 77 06 01 00 mov 0x10677(%rip),%r9 # 66357920 - 663472a9: 4c 8b 05 80 06 01 00 mov 0x10680(%rip),%r8 # 66357930 - 663472b0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663472b4: 48 8b 41 08 mov 0x8(%rcx),%rax - 663472b8: 4c 8b 52 68 mov 0x68(%rdx),%r10 - 663472bc: 41 8b 32 mov (%r10),%esi - 663472bf: 85 f6 test %esi,%esi - 663472c1: 0f 84 79 02 00 00 je 66347540 - 663472c7: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 663472cb: 44 8b 58 1c mov 0x1c(%rax),%r11d - 663472cf: 45 8b 12 mov (%r10),%r10d - 663472d2: 45 39 d3 cmp %r10d,%r11d - 663472d5: 74 59 je 66347330 - 663472d7: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663472db: 44 89 d6 mov %r10d,%esi - 663472de: 44 29 de sub %r11d,%esi - 663472e1: 45 31 db xor %r11d,%r11d - 663472e4: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 663472e8: 01 33 add %esi,(%rbx) - 663472ea: 44 89 50 1c mov %r10d,0x1c(%rax) - 663472ee: 8b 1b mov (%rbx),%ebx - 663472f0: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 663472f4: 85 db test %ebx,%ebx - 663472f6: 41 0f 9f c3 setg %r11b - 663472fa: 45 3b 1a cmp (%r10),%r11d - 663472fd: 74 31 je 66347330 - 663472ff: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347303: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66347307: 45 8b 1a mov (%r10),%r11d - 6634730a: 45 85 db test %r11d,%r11d - 6634730d: 75 21 jne 66347330 - 6634730f: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347313: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66347317: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634731b: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347322: 4d 63 10 movslq (%r8),%r10 - 66347325: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347329: 41 89 18 mov %ebx,(%r8) - 6634732c: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347330: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 66347334: 44 8b 58 20 mov 0x20(%rax),%r11d - 66347338: 45 8b 12 mov (%r10),%r10d - 6634733b: 45 39 da cmp %r11d,%r10d - 6634733e: 74 5a je 6634739a - 66347340: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347344: 44 89 d6 mov %r10d,%esi - 66347347: 44 29 de sub %r11d,%esi - 6634734a: 45 31 db xor %r11d,%r11d - 6634734d: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66347351: 01 33 add %esi,(%rbx) - 66347353: 44 89 50 20 mov %r10d,0x20(%rax) - 66347357: 44 8b 13 mov (%rbx),%r10d - 6634735a: 45 85 d2 test %r10d,%r10d - 6634735d: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66347361: 41 0f 9f c3 setg %r11b - 66347365: 45 3b 1a cmp (%r10),%r11d - 66347368: 74 30 je 6634739a - 6634736a: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634736e: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66347372: 41 8b 32 mov (%r10),%esi - 66347375: 85 f6 test %esi,%esi - 66347377: 75 21 jne 6634739a - 66347379: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 6634737d: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66347381: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347385: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 6634738c: 4d 63 10 movslq (%r8),%r10 - 6634738f: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347393: 41 89 18 mov %ebx,(%r8) - 66347396: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 6634739a: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 6634739e: 44 8b 58 24 mov 0x24(%rax),%r11d - 663473a2: 45 8b 12 mov (%r10),%r10d - 663473a5: 45 39 da cmp %r11d,%r10d - 663473a8: 74 59 je 66347403 - 663473aa: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663473ae: 44 89 d6 mov %r10d,%esi - 663473b1: 44 29 de sub %r11d,%esi - 663473b4: 45 31 db xor %r11d,%r11d - 663473b7: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 663473bb: 01 33 add %esi,(%rbx) - 663473bd: 44 89 50 24 mov %r10d,0x24(%rax) - 663473c1: 8b 1b mov (%rbx),%ebx - 663473c3: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 663473c7: 85 db test %ebx,%ebx - 663473c9: 41 0f 9f c3 setg %r11b - 663473cd: 45 3b 1a cmp (%r10),%r11d - 663473d0: 74 31 je 66347403 - 663473d2: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663473d6: 4d 8b 52 48 mov 0x48(%r10),%r10 - 663473da: 45 8b 1a mov (%r10),%r11d - 663473dd: 45 85 db test %r11d,%r11d - 663473e0: 75 21 jne 66347403 - 663473e2: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663473e6: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 663473ea: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663473ee: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663473f5: 4d 63 10 movslq (%r8),%r10 - 663473f8: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663473fc: 41 89 18 mov %ebx,(%r8) - 663473ff: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347403: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66347407: 44 8b 58 28 mov 0x28(%rax),%r11d - 6634740b: 45 8b 12 mov (%r10),%r10d - 6634740e: 45 39 da cmp %r11d,%r10d - 66347411: 74 5a je 6634746d - 66347413: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347417: 44 89 d6 mov %r10d,%esi - 6634741a: 44 29 de sub %r11d,%esi - 6634741d: 45 31 db xor %r11d,%r11d - 66347420: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66347424: 01 33 add %esi,(%rbx) - 66347426: 44 89 50 28 mov %r10d,0x28(%rax) - 6634742a: 44 8b 13 mov (%rbx),%r10d - 6634742d: 45 85 d2 test %r10d,%r10d - 66347430: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66347434: 41 0f 9f c3 setg %r11b - 66347438: 45 3b 1a cmp (%r10),%r11d - 6634743b: 74 30 je 6634746d - 6634743d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347441: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66347445: 41 8b 32 mov (%r10),%esi - 66347448: 85 f6 test %esi,%esi - 6634744a: 75 21 jne 6634746d - 6634744c: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347450: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 66347454: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347458: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 6634745f: 4d 63 10 movslq (%r8),%r10 - 66347462: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347466: 41 89 18 mov %ebx,(%r8) - 66347469: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 6634746d: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 66347471: 44 8b 58 2c mov 0x2c(%rax),%r11d - 66347475: 45 8b 12 mov (%r10),%r10d - 66347478: 45 39 da cmp %r11d,%r10d - 6634747b: 74 59 je 663474d6 - 6634747d: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347481: 44 89 d6 mov %r10d,%esi - 66347484: 44 29 de sub %r11d,%esi - 66347487: 45 31 db xor %r11d,%r11d - 6634748a: 48 8b 5b 58 mov 0x58(%rbx),%rbx - 6634748e: 01 33 add %esi,(%rbx) - 66347490: 44 89 50 2c mov %r10d,0x2c(%rax) - 66347494: 8b 1b mov (%rbx),%ebx - 66347496: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 6634749a: 85 db test %ebx,%ebx - 6634749c: 41 0f 9f c3 setg %r11b - 663474a0: 45 3b 1a cmp (%r10),%r11d - 663474a3: 74 31 je 663474d6 - 663474a5: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663474a9: 4d 8b 52 58 mov 0x58(%r10),%r10 - 663474ad: 45 8b 12 mov (%r10),%r10d - 663474b0: 45 85 d2 test %r10d,%r10d - 663474b3: 75 21 jne 663474d6 - 663474b5: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663474b9: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 663474bd: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663474c1: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663474c8: 4d 63 10 movslq (%r8),%r10 - 663474cb: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663474cf: 41 89 18 mov %ebx,(%r8) - 663474d2: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663474d6: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 663474da: 44 8b 58 30 mov 0x30(%rax),%r11d - 663474de: 45 8b 12 mov (%r10),%r10d - 663474e1: 45 39 da cmp %r11d,%r10d - 663474e4: 74 56 je 6634753c - 663474e6: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663474ea: 44 89 d6 mov %r10d,%esi - 663474ed: 44 29 de sub %r11d,%esi - 663474f0: 48 8b 5b 60 mov 0x60(%rbx),%rbx - 663474f4: 01 33 add %esi,(%rbx) - 663474f6: 44 89 50 30 mov %r10d,0x30(%rax) - 663474fa: 8b 33 mov (%rbx),%esi - 663474fc: 85 f6 test %esi,%esi - 663474fe: 48 8b 42 60 mov 0x60(%rdx),%rax - 66347502: 41 0f 9f c2 setg %r10b - 66347506: 45 0f b6 d2 movzbl %r10b,%r10d - 6634750a: 44 3b 10 cmp (%rax),%r10d - 6634750d: 74 2d je 6634753c - 6634750f: 48 8b 41 20 mov 0x20(%rcx),%rax - 66347513: 48 8b 40 60 mov 0x60(%rax),%rax - 66347517: 8b 00 mov (%rax),%eax - 66347519: 85 c0 test %eax,%eax - 6634751b: 75 1f jne 6634753c - 6634751d: 48 8b 41 28 mov 0x28(%rcx),%rax - 66347521: 48 8b 50 60 mov 0x60(%rax),%rdx - 66347525: 48 8b 42 10 mov 0x10(%rdx),%rax - 66347529: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634752f: 49 63 00 movslq (%r8),%rax - 66347532: 8d 48 01 lea 0x1(%rax),%ecx - 66347535: 41 89 08 mov %ecx,(%r8) - 66347538: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6634753c: 5b pop %rbx - 6634753d: 5e pop %rsi - 6634753e: c3 retq - 6634753f: 90 nop - 66347540: 44 8b 50 1c mov 0x1c(%rax),%r10d - 66347544: 45 85 d2 test %r10d,%r10d - 66347547: 74 3b je 66347584 - 66347549: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634754d: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66347551: 45 29 13 sub %r10d,(%r11) - 66347554: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 6634755b: 41 8b 1b mov (%r11),%ebx - 6634755e: 45 31 db xor %r11d,%r11d - 66347561: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66347565: 85 db test %ebx,%ebx - 66347567: 41 0f 9f c3 setg %r11b - 6634756b: 45 3b 1a cmp (%r10),%r11d - 6634756e: 74 14 je 66347584 - 66347570: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347574: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66347578: 45 8b 1a mov (%r10),%r11d - 6634757b: 45 85 db test %r11d,%r11d - 6634757e: 0f 84 ec 01 00 00 je 66347770 - 66347584: 44 8b 50 20 mov 0x20(%rax),%r10d - 66347588: 45 85 d2 test %r10d,%r10d - 6634758b: 74 3b je 663475c8 - 6634758d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347591: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66347595: 45 29 13 sub %r10d,(%r11) - 66347598: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 6634759f: 45 8b 13 mov (%r11),%r10d - 663475a2: 45 31 db xor %r11d,%r11d - 663475a5: 45 85 d2 test %r10d,%r10d - 663475a8: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 663475ac: 41 0f 9f c3 setg %r11b - 663475b0: 45 3b 1a cmp (%r10),%r11d - 663475b3: 74 13 je 663475c8 - 663475b5: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663475b9: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663475bd: 41 8b 32 mov (%r10),%esi - 663475c0: 85 f6 test %esi,%esi - 663475c2: 0f 84 78 01 00 00 je 66347740 - 663475c8: 44 8b 50 24 mov 0x24(%rax),%r10d - 663475cc: 45 85 d2 test %r10d,%r10d - 663475cf: 74 3b je 6634760c - 663475d1: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663475d5: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 663475d9: 45 29 13 sub %r10d,(%r11) - 663475dc: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 663475e3: 41 8b 1b mov (%r11),%ebx - 663475e6: 45 31 db xor %r11d,%r11d - 663475e9: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 663475ed: 85 db test %ebx,%ebx - 663475ef: 41 0f 9f c3 setg %r11b - 663475f3: 45 3b 1a cmp (%r10),%r11d - 663475f6: 74 14 je 6634760c - 663475f8: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663475fc: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66347600: 45 8b 1a mov (%r10),%r11d - 66347603: 45 85 db test %r11d,%r11d - 66347606: 0f 84 04 01 00 00 je 66347710 - 6634760c: 44 8b 50 28 mov 0x28(%rax),%r10d - 66347610: 45 85 d2 test %r10d,%r10d - 66347613: 74 3b je 66347650 - 66347615: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347619: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 6634761d: 45 29 13 sub %r10d,(%r11) - 66347620: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66347627: 45 8b 13 mov (%r11),%r10d - 6634762a: 45 31 db xor %r11d,%r11d - 6634762d: 45 85 d2 test %r10d,%r10d - 66347630: 4c 8b 52 50 mov 0x50(%rdx),%r10 - 66347634: 41 0f 9f c3 setg %r11b - 66347638: 45 3b 1a cmp (%r10),%r11d - 6634763b: 74 13 je 66347650 - 6634763d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347641: 4d 8b 52 50 mov 0x50(%r10),%r10 - 66347645: 41 8b 32 mov (%r10),%esi - 66347648: 85 f6 test %esi,%esi - 6634764a: 0f 84 93 00 00 00 je 663476e3 - 66347650: 44 8b 50 2c mov 0x2c(%rax),%r10d - 66347654: 45 85 d2 test %r10d,%r10d - 66347657: 74 37 je 66347690 - 66347659: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634765d: 4d 8b 5b 58 mov 0x58(%r11),%r11 - 66347661: 45 29 13 sub %r10d,(%r11) - 66347664: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 6634766b: 41 8b 1b mov (%r11),%ebx - 6634766e: 45 31 db xor %r11d,%r11d - 66347671: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66347675: 85 db test %ebx,%ebx - 66347677: 41 0f 9f c3 setg %r11b - 6634767b: 45 3b 1a cmp (%r10),%r11d - 6634767e: 74 10 je 66347690 - 66347680: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347684: 4d 8b 52 58 mov 0x58(%r10),%r10 - 66347688: 45 8b 1a mov (%r10),%r11d - 6634768b: 45 85 db test %r11d,%r11d - 6634768e: 74 30 je 663476c0 - 66347690: 44 8b 50 30 mov 0x30(%rax),%r10d - 66347694: 45 85 d2 test %r10d,%r10d - 66347697: 0f 84 9f fe ff ff je 6634753c - 6634769d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663476a1: 4d 8b 5b 60 mov 0x60(%r11),%r11 - 663476a5: 45 29 13 sub %r10d,(%r11) - 663476a8: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 663476af: 45 8b 13 mov (%r11),%r10d - 663476b2: 45 85 d2 test %r10d,%r10d - 663476b5: e9 44 fe ff ff jmpq 663474fe - 663476ba: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 663476c0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663476c4: 4d 8b 5a 58 mov 0x58(%r10),%r11 - 663476c8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663476cc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663476d3: 4d 63 10 movslq (%r8),%r10 - 663476d6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663476da: 41 89 18 mov %ebx,(%r8) - 663476dd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 663476e1: eb ad jmp 66347690 - 663476e3: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 663476e7: 4d 8b 5a 50 mov 0x50(%r10),%r11 - 663476eb: 4d 8b 53 10 mov 0x10(%r11),%r10 - 663476ef: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 663476f6: 4d 63 10 movslq (%r8),%r10 - 663476f9: 41 8d 5a 01 lea 0x1(%r10),%ebx - 663476fd: 41 89 18 mov %ebx,(%r8) - 66347700: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347704: e9 47 ff ff ff jmpq 66347650 - 66347709: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66347710: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347714: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66347718: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634771c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347723: 4d 63 10 movslq (%r8),%r10 - 66347726: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634772a: 41 89 18 mov %ebx,(%r8) - 6634772d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347731: e9 d6 fe ff ff jmpq 6634760c - 66347736: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634773d: 00 00 00 - 66347740: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347744: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66347748: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634774c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347753: 4d 63 10 movslq (%r8),%r10 - 66347756: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634775a: 41 89 18 mov %ebx,(%r8) - 6634775d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347761: e9 62 fe ff ff jmpq 663475c8 - 66347766: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634776d: 00 00 00 - 66347770: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347774: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66347778: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634777c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347783: 4d 63 10 movslq (%r8),%r10 - 66347786: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634778a: 41 89 18 mov %ebx,(%r8) - 6634778d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347791: e9 ee fd ff ff jmpq 66347584 - 66347796: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634779d: 00 00 00 +0000000066345990 : + 66345990: 56 push %rsi + 66345991: 53 push %rbx + 66345992: 48 83 ec 28 sub $0x28,%rsp + 66345996: 48 89 cb mov %rcx,%rbx + 66345999: 48 8b 49 10 mov 0x10(%rcx),%rcx + 6634599d: 48 8b 81 98 00 00 00 mov 0x98(%rcx),%rax + 663459a4: 44 8b 10 mov (%rax),%r10d + 663459a7: 45 85 d2 test %r10d,%r10d + 663459aa: 74 34 je 663459e0 + 663459ac: 31 d2 xor %edx,%edx + 663459ae: eb 04 jmp 663459b4 + 663459b0: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 663459b4: 48 8d 72 01 lea 0x1(%rdx),%rsi + 663459b8: 83 c2 0a add $0xa,%edx + 663459bb: 48 8b 04 f1 mov (%rcx,%rsi,8),%rax + 663459bf: 48 89 d9 mov %rbx,%rcx + 663459c2: 44 8b 00 mov (%rax),%r8d + 663459c5: e8 e6 b9 ff ff callq 663413b0 + 663459ca: 48 83 fe 09 cmp $0x9,%rsi + 663459ce: 48 89 f2 mov %rsi,%rdx + 663459d1: 75 dd jne 663459b0 + 663459d3: 48 83 c4 28 add $0x28,%rsp + 663459d7: 5b pop %rbx + 663459d8: 5e pop %rsi + 663459d9: c3 retq + 663459da: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 663459e0: 48 8b 43 08 mov 0x8(%rbx),%rax + 663459e4: 4c 8b 1d 35 0f 01 00 mov 0x10f35(%rip),%r11 # 66356920 + 663459eb: 4c 8b 15 3e 0f 01 00 mov 0x10f3e(%rip),%r10 # 66356930 + 663459f2: 48 8d 50 28 lea 0x28(%rax),%rdx + 663459f6: b8 50 00 00 00 mov $0x50,%eax + 663459fb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66345a00: 44 8b 02 mov (%rdx),%r8d + 66345a03: 45 85 c0 test %r8d,%r8d + 66345a06: 74 59 je 66345a61 + 66345a08: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66345a0c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66345a10: 45 29 01 sub %r8d,(%r9) + 66345a13: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66345a19: 45 8b 09 mov (%r9),%r9d + 66345a1c: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66345a20: 45 85 c9 test %r9d,%r9d + 66345a23: 41 0f 9f c1 setg %r9b + 66345a27: 45 0f b6 c9 movzbl %r9b,%r9d + 66345a2b: 45 3b 08 cmp (%r8),%r9d + 66345a2e: 74 31 je 66345a61 + 66345a30: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66345a34: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66345a38: 45 8b 00 mov (%r8),%r8d + 66345a3b: 45 85 c0 test %r8d,%r8d + 66345a3e: 75 21 jne 66345a61 + 66345a40: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66345a44: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66345a48: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66345a4c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345a53: 4d 63 02 movslq (%r10),%r8 + 66345a56: 41 8d 70 01 lea 0x1(%r8),%esi + 66345a5a: 41 89 32 mov %esi,(%r10) + 66345a5d: 4f 89 0c c3 mov %r9,(%r11,%r8,8) + 66345a61: 48 83 c0 08 add $0x8,%rax + 66345a65: 48 83 c2 04 add $0x4,%rdx + 66345a69: 48 3d 98 00 00 00 cmp $0x98,%rax + 66345a6f: 75 8f jne 66345a00 + 66345a71: 48 83 c4 28 add $0x28,%rsp + 66345a75: 5b pop %rbx + 66345a76: 5e pop %rsi + 66345a77: c3 retq + 66345a78: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66345a7f: 00 -00000000663477a0 : - 663477a0: 56 push %rsi - 663477a1: 53 push %rbx - 663477a2: 4c 8b 0d 77 01 01 00 mov 0x10177(%rip),%r9 # 66357920 - 663477a9: 4c 8b 05 80 01 01 00 mov 0x10180(%rip),%r8 # 66357930 - 663477b0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663477b4: 48 8b 41 08 mov 0x8(%rcx),%rax - 663477b8: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 663477bc: 41 8b 32 mov (%r10),%esi - 663477bf: 85 f6 test %esi,%esi - 663477c1: 0f 84 9b 01 00 00 je 66347962 - 663477c7: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 663477cb: 44 8b 58 18 mov 0x18(%rax),%r11d - 663477cf: 45 8b 12 mov (%r10),%r10d - 663477d2: 45 39 d3 cmp %r10d,%r11d - 663477d5: 74 3c je 66347813 - 663477d7: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663477db: 44 89 d6 mov %r10d,%esi - 663477de: 44 29 de sub %r11d,%esi - 663477e1: 45 31 db xor %r11d,%r11d - 663477e4: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 663477e8: 01 33 add %esi,(%rbx) - 663477ea: 44 89 50 18 mov %r10d,0x18(%rax) - 663477ee: 8b 1b mov (%rbx),%ebx - 663477f0: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 663477f4: 85 db test %ebx,%ebx - 663477f6: 41 0f 9f c3 setg %r11b - 663477fa: 45 3b 1a cmp (%r10),%r11d - 663477fd: 74 14 je 66347813 - 663477ff: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347803: 4d 8b 52 30 mov 0x30(%r10),%r10 - 66347807: 45 8b 1a mov (%r10),%r11d - 6634780a: 45 85 db test %r11d,%r11d - 6634780d: 0f 84 cd 03 00 00 je 66347be0 - 66347813: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 66347817: 44 8b 58 1c mov 0x1c(%rax),%r11d - 6634781b: 45 8b 12 mov (%r10),%r10d - 6634781e: 45 39 da cmp %r11d,%r10d - 66347821: 74 3d je 66347860 - 66347823: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347827: 44 89 d6 mov %r10d,%esi - 6634782a: 44 29 de sub %r11d,%esi - 6634782d: 45 31 db xor %r11d,%r11d - 66347830: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 66347834: 01 33 add %esi,(%rbx) - 66347836: 44 89 50 1c mov %r10d,0x1c(%rax) - 6634783a: 44 8b 13 mov (%rbx),%r10d - 6634783d: 45 85 d2 test %r10d,%r10d - 66347840: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66347844: 41 0f 9f c3 setg %r11b - 66347848: 45 3b 1a cmp (%r10),%r11d - 6634784b: 74 13 je 66347860 - 6634784d: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347851: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66347855: 41 8b 32 mov (%r10),%esi - 66347858: 85 f6 test %esi,%esi - 6634785a: 0f 84 50 03 00 00 je 66347bb0 - 66347860: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 66347864: 44 8b 58 20 mov 0x20(%rax),%r11d - 66347868: 45 8b 12 mov (%r10),%r10d - 6634786b: 45 39 da cmp %r11d,%r10d - 6634786e: 74 3c je 663478ac - 66347870: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347874: 44 89 d6 mov %r10d,%esi - 66347877: 44 29 de sub %r11d,%esi - 6634787a: 45 31 db xor %r11d,%r11d - 6634787d: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66347881: 01 33 add %esi,(%rbx) - 66347883: 44 89 50 20 mov %r10d,0x20(%rax) - 66347887: 8b 1b mov (%rbx),%ebx - 66347889: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 6634788d: 85 db test %ebx,%ebx - 6634788f: 41 0f 9f c3 setg %r11b - 66347893: 45 3b 1a cmp (%r10),%r11d - 66347896: 74 14 je 663478ac - 66347898: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 6634789c: 4d 8b 52 40 mov 0x40(%r10),%r10 - 663478a0: 45 8b 12 mov (%r10),%r10d - 663478a3: 45 85 d2 test %r10d,%r10d - 663478a6: 0f 84 d4 02 00 00 je 66347b80 - 663478ac: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 663478b0: 44 8b 58 24 mov 0x24(%rax),%r11d - 663478b4: 45 8b 12 mov (%r10),%r10d - 663478b7: 45 39 da cmp %r11d,%r10d - 663478ba: 74 3b je 663478f7 - 663478bc: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663478c0: 44 89 d6 mov %r10d,%esi - 663478c3: 44 29 de sub %r11d,%esi - 663478c6: 45 31 db xor %r11d,%r11d - 663478c9: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 663478cd: 01 33 add %esi,(%rbx) - 663478cf: 44 89 50 24 mov %r10d,0x24(%rax) - 663478d3: 8b 33 mov (%rbx),%esi - 663478d5: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 663478d9: 85 f6 test %esi,%esi - 663478db: 41 0f 9f c3 setg %r11b - 663478df: 45 3b 1a cmp (%r10),%r11d - 663478e2: 74 13 je 663478f7 - 663478e4: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663478e8: 4d 8b 52 48 mov 0x48(%r10),%r10 - 663478ec: 41 8b 1a mov (%r10),%ebx - 663478ef: 85 db test %ebx,%ebx - 663478f1: 0f 84 59 02 00 00 je 66347b50 - 663478f7: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 663478fb: 44 8b 58 28 mov 0x28(%rax),%r11d - 663478ff: 45 8b 12 mov (%r10),%r10d - 66347902: 45 39 da cmp %r11d,%r10d - 66347905: 74 58 je 6634795f - 66347907: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634790b: 44 89 d6 mov %r10d,%esi - 6634790e: 44 29 de sub %r11d,%esi - 66347911: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66347915: 01 33 add %esi,(%rbx) - 66347917: 44 89 50 28 mov %r10d,0x28(%rax) - 6634791b: 44 8b 1b mov (%rbx),%r11d - 6634791e: 45 85 db test %r11d,%r11d - 66347921: 48 8b 42 50 mov 0x50(%rdx),%rax - 66347925: 41 0f 9f c2 setg %r10b - 66347929: 45 0f b6 d2 movzbl %r10b,%r10d - 6634792d: 44 3b 10 cmp (%rax),%r10d - 66347930: 74 2d je 6634795f - 66347932: 48 8b 41 20 mov 0x20(%rcx),%rax - 66347936: 48 8b 40 50 mov 0x50(%rax),%rax - 6634793a: 8b 00 mov (%rax),%eax - 6634793c: 85 c0 test %eax,%eax - 6634793e: 75 1f jne 6634795f - 66347940: 48 8b 41 28 mov 0x28(%rcx),%rax - 66347944: 48 8b 50 50 mov 0x50(%rax),%rdx - 66347948: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634794c: c7 00 01 00 00 00 movl $0x1,(%rax) - 66347952: 49 63 00 movslq (%r8),%rax - 66347955: 8d 48 01 lea 0x1(%rax),%ecx - 66347958: 41 89 08 mov %ecx,(%r8) - 6634795b: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 6634795f: 5b pop %rbx - 66347960: 5e pop %rsi - 66347961: c3 retq - 66347962: 44 8b 50 18 mov 0x18(%rax),%r10d - 66347966: 45 85 d2 test %r10d,%r10d - 66347969: 74 3b je 663479a6 - 6634796b: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634796f: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66347973: 45 29 13 sub %r10d,(%r11) - 66347976: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 6634797d: 45 8b 13 mov (%r11),%r10d - 66347980: 45 31 db xor %r11d,%r11d - 66347983: 45 85 d2 test %r10d,%r10d - 66347986: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 6634798a: 41 0f 9f c3 setg %r11b - 6634798e: 45 3b 1a cmp (%r10),%r11d - 66347991: 74 13 je 663479a6 - 66347993: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347997: 4d 8b 52 30 mov 0x30(%r10),%r10 - 6634799b: 41 8b 32 mov (%r10),%esi - 6634799e: 85 f6 test %esi,%esi - 663479a0: 0f 84 7a 01 00 00 je 66347b20 - 663479a6: 44 8b 50 1c mov 0x1c(%rax),%r10d - 663479aa: 45 85 d2 test %r10d,%r10d - 663479ad: 74 3b je 663479ea - 663479af: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663479b3: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 663479b7: 45 29 13 sub %r10d,(%r11) - 663479ba: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 663479c1: 41 8b 1b mov (%r11),%ebx - 663479c4: 45 31 db xor %r11d,%r11d - 663479c7: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 663479cb: 85 db test %ebx,%ebx - 663479cd: 41 0f 9f c3 setg %r11b - 663479d1: 45 3b 1a cmp (%r10),%r11d - 663479d4: 74 14 je 663479ea - 663479d6: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 663479da: 4d 8b 52 38 mov 0x38(%r10),%r10 - 663479de: 45 8b 1a mov (%r10),%r11d - 663479e1: 45 85 db test %r11d,%r11d - 663479e4: 0f 84 06 01 00 00 je 66347af0 - 663479ea: 44 8b 50 20 mov 0x20(%rax),%r10d - 663479ee: 45 85 d2 test %r10d,%r10d - 663479f1: 74 3b je 66347a2e - 663479f3: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663479f7: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 663479fb: 45 29 13 sub %r10d,(%r11) - 663479fe: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 66347a05: 45 8b 13 mov (%r11),%r10d - 66347a08: 45 31 db xor %r11d,%r11d - 66347a0b: 45 85 d2 test %r10d,%r10d - 66347a0e: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66347a12: 41 0f 9f c3 setg %r11b - 66347a16: 45 3b 1a cmp (%r10),%r11d - 66347a19: 74 13 je 66347a2e - 66347a1b: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347a1f: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66347a23: 41 8b 32 mov (%r10),%esi - 66347a26: 85 f6 test %esi,%esi - 66347a28: 0f 84 95 00 00 00 je 66347ac3 - 66347a2e: 44 8b 50 24 mov 0x24(%rax),%r10d - 66347a32: 45 85 d2 test %r10d,%r10d - 66347a35: 74 37 je 66347a6e - 66347a37: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347a3b: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 66347a3f: 45 29 13 sub %r10d,(%r11) - 66347a42: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 66347a49: 41 8b 1b mov (%r11),%ebx - 66347a4c: 45 31 db xor %r11d,%r11d - 66347a4f: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66347a53: 85 db test %ebx,%ebx - 66347a55: 41 0f 9f c3 setg %r11b - 66347a59: 45 3b 1a cmp (%r10),%r11d - 66347a5c: 74 10 je 66347a6e - 66347a5e: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347a62: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66347a66: 45 8b 1a mov (%r10),%r11d +0000000066345a80 : + 66345a80: 56 push %rsi + 66345a81: 53 push %rbx + 66345a82: 48 83 ec 28 sub $0x28,%rsp + 66345a86: 48 89 cb mov %rcx,%rbx + 66345a89: 48 8b 49 10 mov 0x10(%rcx),%rcx + 66345a8d: 48 8b 81 98 00 00 00 mov 0x98(%rcx),%rax + 66345a94: 44 8b 10 mov (%rax),%r10d + 66345a97: 45 85 d2 test %r10d,%r10d + 66345a9a: 74 34 je 66345ad0 + 66345a9c: 31 d2 xor %edx,%edx + 66345a9e: eb 04 jmp 66345aa4 + 66345aa0: 48 8b 4b 10 mov 0x10(%rbx),%rcx + 66345aa4: 48 8d 72 01 lea 0x1(%rdx),%rsi + 66345aa8: 83 c2 0a add $0xa,%edx + 66345aab: 48 8b 04 f1 mov (%rcx,%rsi,8),%rax + 66345aaf: 48 89 d9 mov %rbx,%rcx + 66345ab2: 44 8b 00 mov (%rax),%r8d + 66345ab5: e8 f6 b8 ff ff callq 663413b0 + 66345aba: 48 83 fe 09 cmp $0x9,%rsi + 66345abe: 48 89 f2 mov %rsi,%rdx + 66345ac1: 75 dd jne 66345aa0 + 66345ac3: 48 83 c4 28 add $0x28,%rsp + 66345ac7: 5b pop %rbx + 66345ac8: 5e pop %rsi + 66345ac9: c3 retq + 66345aca: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66345ad0: 48 8b 43 08 mov 0x8(%rbx),%rax + 66345ad4: 4c 8b 1d 45 0e 01 00 mov 0x10e45(%rip),%r11 # 66356920 + 66345adb: 4c 8b 15 4e 0e 01 00 mov 0x10e4e(%rip),%r10 # 66356930 + 66345ae2: 48 8d 50 28 lea 0x28(%rax),%rdx + 66345ae6: b8 50 00 00 00 mov $0x50,%eax + 66345aeb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66345af0: 44 8b 02 mov (%rdx),%r8d + 66345af3: 45 85 c0 test %r8d,%r8d + 66345af6: 74 59 je 66345b51 + 66345af8: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66345afc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 66345b00: 45 29 01 sub %r8d,(%r9) + 66345b03: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66345b09: 45 8b 09 mov (%r9),%r9d + 66345b0c: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66345b10: 45 85 c9 test %r9d,%r9d + 66345b13: 41 0f 9f c1 setg %r9b + 66345b17: 45 0f b6 c9 movzbl %r9b,%r9d + 66345b1b: 45 3b 08 cmp (%r8),%r9d + 66345b1e: 74 31 je 66345b51 + 66345b20: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66345b24: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66345b28: 45 8b 00 mov (%r8),%r8d + 66345b2b: 45 85 c0 test %r8d,%r8d + 66345b2e: 75 21 jne 66345b51 + 66345b30: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66345b34: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 66345b38: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66345b3c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66345b43: 4d 63 02 movslq (%r10),%r8 + 66345b46: 41 8d 70 01 lea 0x1(%r8),%esi + 66345b4a: 41 89 32 mov %esi,(%r10) + 66345b4d: 4f 89 0c c3 mov %r9,(%r11,%r8,8) + 66345b51: 48 83 c0 08 add $0x8,%rax + 66345b55: 48 83 c2 04 add $0x4,%rdx + 66345b59: 48 3d 98 00 00 00 cmp $0x98,%rax + 66345b5f: 75 8f jne 66345af0 + 66345b61: 48 83 c4 28 add $0x28,%rsp + 66345b65: 5b pop %rbx + 66345b66: 5e pop %rsi + 66345b67: c3 retq + 66345b68: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66345b6f: 00 + +0000000066345b70 : + 66345b70: 56 push %rsi + 66345b71: 53 push %rbx + 66345b72: 48 83 ec 28 sub $0x28,%rsp + 66345b76: 48 8b 41 10 mov 0x10(%rcx),%rax + 66345b7a: 48 8b 90 88 00 00 00 mov 0x88(%rax),%rdx + 66345b81: 48 89 cb mov %rcx,%rbx + 66345b84: 8b 32 mov (%rdx),%esi + 66345b86: 85 f6 test %esi,%esi + 66345b88: 74 36 je 66345bc0 + 66345b8a: 31 d2 xor %edx,%edx + 66345b8c: eb 06 jmp 66345b94 + 66345b8e: 66 90 xchg %ax,%ax + 66345b90: 48 8b 43 10 mov 0x10(%rbx),%rax + 66345b94: 48 8d 72 01 lea 0x1(%rdx),%rsi + 66345b98: 48 89 d9 mov %rbx,%rcx + 66345b9b: 83 c2 09 add $0x9,%edx + 66345b9e: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 66345ba2: 44 8b 00 mov (%rax),%r8d + 66345ba5: e8 06 b8 ff ff callq 663413b0 + 66345baa: 48 83 fe 08 cmp $0x8,%rsi + 66345bae: 48 89 f2 mov %rsi,%rdx + 66345bb1: 75 dd jne 66345b90 + 66345bb3: 48 83 c4 28 add $0x28,%rsp + 66345bb7: 5b pop %rbx + 66345bb8: 5e pop %rsi + 66345bb9: c3 retq + 66345bba: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66345bc0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66345bc4: 4c 8b 05 55 0d 01 00 mov 0x10d55(%rip),%r8 # 66356920 + 66345bcb: 48 8b 0d 5e 0d 01 00 mov 0x10d5e(%rip),%rcx # 66356930 + 66345bd2: 44 8b 4a 24 mov 0x24(%rdx),%r9d + 66345bd6: 45 85 c9 test %r9d,%r9d + 66345bd9: 74 59 je 66345c34 + 66345bdb: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66345bdf: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66345be3: 45 29 0a sub %r9d,(%r10) + 66345be6: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 66345bed: 45 8b 1a mov (%r10),%r11d + 66345bf0: 45 31 d2 xor %r10d,%r10d + 66345bf3: 4c 8b 48 48 mov 0x48(%rax),%r9 + 66345bf7: 45 85 db test %r11d,%r11d + 66345bfa: 41 0f 9f c2 setg %r10b + 66345bfe: 45 3b 11 cmp (%r9),%r10d + 66345c01: 74 31 je 66345c34 + 66345c03: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 66345c07: 4d 8b 49 48 mov 0x48(%r9),%r9 + 66345c0b: 45 8b 11 mov (%r9),%r10d + 66345c0e: 45 85 d2 test %r10d,%r10d + 66345c11: 75 21 jne 66345c34 + 66345c13: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 66345c17: 4d 8b 51 48 mov 0x48(%r9),%r10 + 66345c1b: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66345c1f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66345c26: 4c 63 09 movslq (%rcx),%r9 + 66345c29: 45 8d 59 01 lea 0x1(%r9),%r11d + 66345c2d: 44 89 19 mov %r11d,(%rcx) + 66345c30: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 66345c34: 44 8b 4a 28 mov 0x28(%rdx),%r9d + 66345c38: 45 85 c9 test %r9d,%r9d + 66345c3b: 74 58 je 66345c95 + 66345c3d: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66345c41: 4d 8b 52 50 mov 0x50(%r10),%r10 + 66345c45: 45 29 0a sub %r9d,(%r10) + 66345c48: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 66345c4f: 45 8b 0a mov (%r10),%r9d + 66345c52: 45 31 d2 xor %r10d,%r10d + 66345c55: 45 85 c9 test %r9d,%r9d + 66345c58: 4c 8b 48 50 mov 0x50(%rax),%r9 + 66345c5c: 41 0f 9f c2 setg %r10b + 66345c60: 45 3b 11 cmp (%r9),%r10d + 66345c63: 74 30 je 66345c95 + 66345c65: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 66345c69: 4d 8b 49 50 mov 0x50(%r9),%r9 + 66345c6d: 41 8b 31 mov (%r9),%esi + 66345c70: 85 f6 test %esi,%esi + 66345c72: 75 21 jne 66345c95 + 66345c74: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 66345c78: 4d 8b 51 50 mov 0x50(%r9),%r10 + 66345c7c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66345c80: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66345c87: 4c 63 09 movslq (%rcx),%r9 + 66345c8a: 45 8d 59 01 lea 0x1(%r9),%r11d + 66345c8e: 44 89 19 mov %r11d,(%rcx) + 66345c91: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 66345c95: 44 8b 4a 2c mov 0x2c(%rdx),%r9d + 66345c99: 45 85 c9 test %r9d,%r9d + 66345c9c: 74 59 je 66345cf7 + 66345c9e: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66345ca2: 4d 8b 52 58 mov 0x58(%r10),%r10 + 66345ca6: 45 29 0a sub %r9d,(%r10) + 66345ca9: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 66345cb0: 45 8b 1a mov (%r10),%r11d + 66345cb3: 45 31 d2 xor %r10d,%r10d + 66345cb6: 4c 8b 48 58 mov 0x58(%rax),%r9 + 66345cba: 45 85 db test %r11d,%r11d + 66345cbd: 41 0f 9f c2 setg %r10b + 66345cc1: 45 3b 11 cmp (%r9),%r10d + 66345cc4: 74 31 je 66345cf7 + 66345cc6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 66345cca: 4d 8b 49 58 mov 0x58(%r9),%r9 + 66345cce: 45 8b 11 mov (%r9),%r10d + 66345cd1: 45 85 d2 test %r10d,%r10d + 66345cd4: 75 21 jne 66345cf7 + 66345cd6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 66345cda: 4d 8b 51 58 mov 0x58(%r9),%r10 + 66345cde: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66345ce2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66345ce9: 4c 63 09 movslq (%rcx),%r9 + 66345cec: 45 8d 59 01 lea 0x1(%r9),%r11d + 66345cf0: 44 89 19 mov %r11d,(%rcx) + 66345cf3: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 66345cf7: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 66345cfb: 45 85 c9 test %r9d,%r9d + 66345cfe: 74 58 je 66345d58 + 66345d00: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66345d04: 4d 8b 52 60 mov 0x60(%r10),%r10 + 66345d08: 45 29 0a sub %r9d,(%r10) + 66345d0b: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 66345d12: 45 8b 0a mov (%r10),%r9d + 66345d15: 45 31 d2 xor %r10d,%r10d + 66345d18: 45 85 c9 test %r9d,%r9d + 66345d1b: 4c 8b 48 60 mov 0x60(%rax),%r9 + 66345d1f: 41 0f 9f c2 setg %r10b + 66345d23: 45 3b 11 cmp (%r9),%r10d + 66345d26: 74 30 je 66345d58 + 66345d28: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 66345d2c: 4d 8b 49 60 mov 0x60(%r9),%r9 + 66345d30: 41 8b 31 mov (%r9),%esi + 66345d33: 85 f6 test %esi,%esi + 66345d35: 75 21 jne 66345d58 + 66345d37: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 66345d3b: 4d 8b 51 60 mov 0x60(%r9),%r10 + 66345d3f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66345d43: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66345d4a: 4c 63 09 movslq (%rcx),%r9 + 66345d4d: 45 8d 59 01 lea 0x1(%r9),%r11d + 66345d51: 44 89 19 mov %r11d,(%rcx) + 66345d54: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 66345d58: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 66345d5c: 45 85 c9 test %r9d,%r9d + 66345d5f: 74 59 je 66345dba + 66345d61: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66345d65: 4d 8b 52 68 mov 0x68(%r10),%r10 + 66345d69: 45 29 0a sub %r9d,(%r10) + 66345d6c: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 66345d73: 45 8b 1a mov (%r10),%r11d + 66345d76: 45 31 d2 xor %r10d,%r10d + 66345d79: 4c 8b 48 68 mov 0x68(%rax),%r9 + 66345d7d: 45 85 db test %r11d,%r11d + 66345d80: 41 0f 9f c2 setg %r10b + 66345d84: 45 3b 11 cmp (%r9),%r10d + 66345d87: 74 31 je 66345dba + 66345d89: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 66345d8d: 4d 8b 49 68 mov 0x68(%r9),%r9 + 66345d91: 45 8b 11 mov (%r9),%r10d + 66345d94: 45 85 d2 test %r10d,%r10d + 66345d97: 75 21 jne 66345dba + 66345d99: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 66345d9d: 4d 8b 51 68 mov 0x68(%r9),%r10 + 66345da1: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66345da5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66345dac: 4c 63 09 movslq (%rcx),%r9 + 66345daf: 45 8d 59 01 lea 0x1(%r9),%r11d + 66345db3: 44 89 19 mov %r11d,(%rcx) + 66345db6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 66345dba: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 66345dbe: 45 85 c9 test %r9d,%r9d + 66345dc1: 74 58 je 66345e1b + 66345dc3: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66345dc7: 4d 8b 52 70 mov 0x70(%r10),%r10 + 66345dcb: 45 29 0a sub %r9d,(%r10) + 66345dce: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 66345dd5: 45 8b 0a mov (%r10),%r9d + 66345dd8: 45 31 d2 xor %r10d,%r10d + 66345ddb: 45 85 c9 test %r9d,%r9d + 66345dde: 4c 8b 48 70 mov 0x70(%rax),%r9 + 66345de2: 41 0f 9f c2 setg %r10b + 66345de6: 45 3b 11 cmp (%r9),%r10d + 66345de9: 74 30 je 66345e1b + 66345deb: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 66345def: 4d 8b 49 70 mov 0x70(%r9),%r9 + 66345df3: 41 8b 31 mov (%r9),%esi + 66345df6: 85 f6 test %esi,%esi + 66345df8: 75 21 jne 66345e1b + 66345dfa: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 66345dfe: 4d 8b 51 70 mov 0x70(%r9),%r10 + 66345e02: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66345e06: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66345e0d: 4c 63 09 movslq (%rcx),%r9 + 66345e10: 45 8d 59 01 lea 0x1(%r9),%r11d + 66345e14: 44 89 19 mov %r11d,(%rcx) + 66345e17: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 66345e1b: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 66345e1f: 45 85 c9 test %r9d,%r9d + 66345e22: 74 59 je 66345e7d + 66345e24: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66345e28: 4d 8b 52 78 mov 0x78(%r10),%r10 + 66345e2c: 45 29 0a sub %r9d,(%r10) + 66345e2f: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 66345e36: 45 8b 1a mov (%r10),%r11d + 66345e39: 45 31 d2 xor %r10d,%r10d + 66345e3c: 4c 8b 48 78 mov 0x78(%rax),%r9 + 66345e40: 45 85 db test %r11d,%r11d + 66345e43: 41 0f 9f c2 setg %r10b + 66345e47: 45 3b 11 cmp (%r9),%r10d + 66345e4a: 74 31 je 66345e7d + 66345e4c: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 66345e50: 4d 8b 49 78 mov 0x78(%r9),%r9 + 66345e54: 45 8b 11 mov (%r9),%r10d + 66345e57: 45 85 d2 test %r10d,%r10d + 66345e5a: 75 21 jne 66345e7d + 66345e5c: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 66345e60: 4d 8b 51 78 mov 0x78(%r9),%r10 + 66345e64: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66345e68: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66345e6f: 4c 63 09 movslq (%rcx),%r9 + 66345e72: 45 8d 59 01 lea 0x1(%r9),%r11d + 66345e76: 44 89 19 mov %r11d,(%rcx) + 66345e79: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 66345e7d: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 66345e81: 45 85 c9 test %r9d,%r9d + 66345e84: 0f 84 29 fd ff ff je 66345bb3 + 66345e8a: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66345e8e: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax + 66345e95: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 66345e9c: 45 29 0a sub %r9d,(%r10) + 66345e9f: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 66345ea6: 31 d2 xor %edx,%edx + 66345ea8: 45 8b 0a mov (%r10),%r9d + 66345eab: 45 85 c9 test %r9d,%r9d + 66345eae: 0f 9f c2 setg %dl + 66345eb1: 3b 10 cmp (%rax),%edx + 66345eb3: 0f 84 fa fc ff ff je 66345bb3 + 66345eb9: 48 8b 43 20 mov 0x20(%rbx),%rax + 66345ebd: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax + 66345ec4: 8b 00 mov (%rax),%eax + 66345ec6: 85 c0 test %eax,%eax + 66345ec8: 0f 85 e5 fc ff ff jne 66345bb3 + 66345ece: 48 8b 43 28 mov 0x28(%rbx),%rax + 66345ed2: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx + 66345ed9: 48 8b 42 10 mov 0x10(%rdx),%rax + 66345edd: c7 00 01 00 00 00 movl $0x1,(%rax) + 66345ee3: 48 63 01 movslq (%rcx),%rax + 66345ee6: 44 8d 48 01 lea 0x1(%rax),%r9d + 66345eea: 44 89 09 mov %r9d,(%rcx) + 66345eed: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66345ef1: 48 83 c4 28 add $0x28,%rsp + 66345ef5: 5b pop %rbx + 66345ef6: 5e pop %rsi + 66345ef7: c3 retq + 66345ef8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66345eff: 00 + +0000000066345f00 : + 66345f00: 56 push %rsi + 66345f01: 53 push %rbx + 66345f02: 48 83 ec 28 sub $0x28,%rsp + 66345f06: 48 8b 41 10 mov 0x10(%rcx),%rax + 66345f0a: 48 8b 90 88 00 00 00 mov 0x88(%rax),%rdx + 66345f11: 48 89 cb mov %rcx,%rbx + 66345f14: 8b 32 mov (%rdx),%esi + 66345f16: 85 f6 test %esi,%esi + 66345f18: 74 36 je 66345f50 + 66345f1a: 31 d2 xor %edx,%edx + 66345f1c: eb 06 jmp 66345f24 + 66345f1e: 66 90 xchg %ax,%ax + 66345f20: 48 8b 43 10 mov 0x10(%rbx),%rax + 66345f24: 48 8d 72 01 lea 0x1(%rdx),%rsi + 66345f28: 48 89 d9 mov %rbx,%rcx + 66345f2b: 83 c2 09 add $0x9,%edx + 66345f2e: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 66345f32: 44 8b 00 mov (%rax),%r8d + 66345f35: e8 76 b4 ff ff callq 663413b0 + 66345f3a: 48 83 fe 08 cmp $0x8,%rsi + 66345f3e: 48 89 f2 mov %rsi,%rdx + 66345f41: 75 dd jne 66345f20 + 66345f43: 48 83 c4 28 add $0x28,%rsp + 66345f47: 5b pop %rbx + 66345f48: 5e pop %rsi + 66345f49: c3 retq + 66345f4a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66345f50: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66345f54: 4c 8b 05 c5 09 01 00 mov 0x109c5(%rip),%r8 # 66356920 + 66345f5b: 48 8b 0d ce 09 01 00 mov 0x109ce(%rip),%rcx # 66356930 + 66345f62: 44 8b 4a 24 mov 0x24(%rdx),%r9d + 66345f66: 45 85 c9 test %r9d,%r9d + 66345f69: 74 59 je 66345fc4 + 66345f6b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66345f6f: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66345f73: 45 29 0a sub %r9d,(%r10) + 66345f76: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 66345f7d: 45 8b 1a mov (%r10),%r11d + 66345f80: 45 31 d2 xor %r10d,%r10d + 66345f83: 4c 8b 48 48 mov 0x48(%rax),%r9 + 66345f87: 45 85 db test %r11d,%r11d + 66345f8a: 41 0f 9f c2 setg %r10b + 66345f8e: 45 3b 11 cmp (%r9),%r10d + 66345f91: 74 31 je 66345fc4 + 66345f93: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 66345f97: 4d 8b 49 48 mov 0x48(%r9),%r9 + 66345f9b: 45 8b 11 mov (%r9),%r10d + 66345f9e: 45 85 d2 test %r10d,%r10d + 66345fa1: 75 21 jne 66345fc4 + 66345fa3: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 66345fa7: 4d 8b 51 48 mov 0x48(%r9),%r10 + 66345fab: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66345faf: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66345fb6: 4c 63 09 movslq (%rcx),%r9 + 66345fb9: 45 8d 59 01 lea 0x1(%r9),%r11d + 66345fbd: 44 89 19 mov %r11d,(%rcx) + 66345fc0: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 66345fc4: 44 8b 4a 28 mov 0x28(%rdx),%r9d + 66345fc8: 45 85 c9 test %r9d,%r9d + 66345fcb: 74 58 je 66346025 + 66345fcd: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66345fd1: 4d 8b 52 50 mov 0x50(%r10),%r10 + 66345fd5: 45 29 0a sub %r9d,(%r10) + 66345fd8: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 66345fdf: 45 8b 0a mov (%r10),%r9d + 66345fe2: 45 31 d2 xor %r10d,%r10d + 66345fe5: 45 85 c9 test %r9d,%r9d + 66345fe8: 4c 8b 48 50 mov 0x50(%rax),%r9 + 66345fec: 41 0f 9f c2 setg %r10b + 66345ff0: 45 3b 11 cmp (%r9),%r10d + 66345ff3: 74 30 je 66346025 + 66345ff5: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 66345ff9: 4d 8b 49 50 mov 0x50(%r9),%r9 + 66345ffd: 41 8b 31 mov (%r9),%esi + 66346000: 85 f6 test %esi,%esi + 66346002: 75 21 jne 66346025 + 66346004: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 66346008: 4d 8b 51 50 mov 0x50(%r9),%r10 + 6634600c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66346010: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66346017: 4c 63 09 movslq (%rcx),%r9 + 6634601a: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634601e: 44 89 19 mov %r11d,(%rcx) + 66346021: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 66346025: 44 8b 4a 2c mov 0x2c(%rdx),%r9d + 66346029: 45 85 c9 test %r9d,%r9d + 6634602c: 74 59 je 66346087 + 6634602e: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66346032: 4d 8b 52 58 mov 0x58(%r10),%r10 + 66346036: 45 29 0a sub %r9d,(%r10) + 66346039: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 66346040: 45 8b 1a mov (%r10),%r11d + 66346043: 45 31 d2 xor %r10d,%r10d + 66346046: 4c 8b 48 58 mov 0x58(%rax),%r9 + 6634604a: 45 85 db test %r11d,%r11d + 6634604d: 41 0f 9f c2 setg %r10b + 66346051: 45 3b 11 cmp (%r9),%r10d + 66346054: 74 31 je 66346087 + 66346056: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634605a: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634605e: 45 8b 11 mov (%r9),%r10d + 66346061: 45 85 d2 test %r10d,%r10d + 66346064: 75 21 jne 66346087 + 66346066: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634606a: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634606e: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66346072: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 66346079: 4c 63 09 movslq (%rcx),%r9 + 6634607c: 45 8d 59 01 lea 0x1(%r9),%r11d + 66346080: 44 89 19 mov %r11d,(%rcx) + 66346083: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 66346087: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634608b: 45 85 c9 test %r9d,%r9d + 6634608e: 74 58 je 663460e8 + 66346090: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66346094: 4d 8b 52 60 mov 0x60(%r10),%r10 + 66346098: 45 29 0a sub %r9d,(%r10) + 6634609b: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 663460a2: 45 8b 0a mov (%r10),%r9d + 663460a5: 45 31 d2 xor %r10d,%r10d + 663460a8: 45 85 c9 test %r9d,%r9d + 663460ab: 4c 8b 48 60 mov 0x60(%rax),%r9 + 663460af: 41 0f 9f c2 setg %r10b + 663460b3: 45 3b 11 cmp (%r9),%r10d + 663460b6: 74 30 je 663460e8 + 663460b8: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 663460bc: 4d 8b 49 60 mov 0x60(%r9),%r9 + 663460c0: 41 8b 31 mov (%r9),%esi + 663460c3: 85 f6 test %esi,%esi + 663460c5: 75 21 jne 663460e8 + 663460c7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 663460cb: 4d 8b 51 60 mov 0x60(%r9),%r10 + 663460cf: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663460d3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663460da: 4c 63 09 movslq (%rcx),%r9 + 663460dd: 45 8d 59 01 lea 0x1(%r9),%r11d + 663460e1: 44 89 19 mov %r11d,(%rcx) + 663460e4: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 663460e8: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 663460ec: 45 85 c9 test %r9d,%r9d + 663460ef: 74 59 je 6634614a + 663460f1: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 663460f5: 4d 8b 52 68 mov 0x68(%r10),%r10 + 663460f9: 45 29 0a sub %r9d,(%r10) + 663460fc: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 66346103: 45 8b 1a mov (%r10),%r11d + 66346106: 45 31 d2 xor %r10d,%r10d + 66346109: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634610d: 45 85 db test %r11d,%r11d + 66346110: 41 0f 9f c2 setg %r10b + 66346114: 45 3b 11 cmp (%r9),%r10d + 66346117: 74 31 je 6634614a + 66346119: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634611d: 4d 8b 49 68 mov 0x68(%r9),%r9 + 66346121: 45 8b 11 mov (%r9),%r10d + 66346124: 45 85 d2 test %r10d,%r10d + 66346127: 75 21 jne 6634614a + 66346129: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634612d: 4d 8b 51 68 mov 0x68(%r9),%r10 + 66346131: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66346135: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634613c: 4c 63 09 movslq (%rcx),%r9 + 6634613f: 45 8d 59 01 lea 0x1(%r9),%r11d + 66346143: 44 89 19 mov %r11d,(%rcx) + 66346146: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634614a: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634614e: 45 85 c9 test %r9d,%r9d + 66346151: 74 58 je 663461ab + 66346153: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 66346157: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634615b: 45 29 0a sub %r9d,(%r10) + 6634615e: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 66346165: 45 8b 0a mov (%r10),%r9d + 66346168: 45 31 d2 xor %r10d,%r10d + 6634616b: 45 85 c9 test %r9d,%r9d + 6634616e: 4c 8b 48 70 mov 0x70(%rax),%r9 + 66346172: 41 0f 9f c2 setg %r10b + 66346176: 45 3b 11 cmp (%r9),%r10d + 66346179: 74 30 je 663461ab + 6634617b: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634617f: 4d 8b 49 70 mov 0x70(%r9),%r9 + 66346183: 41 8b 31 mov (%r9),%esi + 66346186: 85 f6 test %esi,%esi + 66346188: 75 21 jne 663461ab + 6634618a: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634618e: 4d 8b 51 70 mov 0x70(%r9),%r10 + 66346192: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 66346196: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634619d: 4c 63 09 movslq (%rcx),%r9 + 663461a0: 45 8d 59 01 lea 0x1(%r9),%r11d + 663461a4: 44 89 19 mov %r11d,(%rcx) + 663461a7: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 663461ab: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 663461af: 45 85 c9 test %r9d,%r9d + 663461b2: 74 59 je 6634620d + 663461b4: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 663461b8: 4d 8b 52 78 mov 0x78(%r10),%r10 + 663461bc: 45 29 0a sub %r9d,(%r10) + 663461bf: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 663461c6: 45 8b 1a mov (%r10),%r11d + 663461c9: 45 31 d2 xor %r10d,%r10d + 663461cc: 4c 8b 48 78 mov 0x78(%rax),%r9 + 663461d0: 45 85 db test %r11d,%r11d + 663461d3: 41 0f 9f c2 setg %r10b + 663461d7: 45 3b 11 cmp (%r9),%r10d + 663461da: 74 31 je 6634620d + 663461dc: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 663461e0: 4d 8b 49 78 mov 0x78(%r9),%r9 + 663461e4: 45 8b 11 mov (%r9),%r10d + 663461e7: 45 85 d2 test %r10d,%r10d + 663461ea: 75 21 jne 6634620d + 663461ec: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 663461f0: 4d 8b 51 78 mov 0x78(%r9),%r10 + 663461f4: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 663461f8: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 663461ff: 4c 63 09 movslq (%rcx),%r9 + 66346202: 45 8d 59 01 lea 0x1(%r9),%r11d + 66346206: 44 89 19 mov %r11d,(%rcx) + 66346209: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634620d: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 66346211: 45 85 c9 test %r9d,%r9d + 66346214: 0f 84 29 fd ff ff je 66345f43 + 6634621a: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634621e: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax + 66346225: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634622c: 45 29 0a sub %r9d,(%r10) + 6634622f: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 66346236: 31 d2 xor %edx,%edx + 66346238: 45 8b 0a mov (%r10),%r9d + 6634623b: 45 85 c9 test %r9d,%r9d + 6634623e: 0f 9f c2 setg %dl + 66346241: 3b 10 cmp (%rax),%edx + 66346243: 0f 84 fa fc ff ff je 66345f43 + 66346249: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634624d: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax + 66346254: 8b 00 mov (%rax),%eax + 66346256: 85 c0 test %eax,%eax + 66346258: 0f 85 e5 fc ff ff jne 66345f43 + 6634625e: 48 8b 43 28 mov 0x28(%rbx),%rax + 66346262: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx + 66346269: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634626d: c7 00 01 00 00 00 movl $0x1,(%rax) + 66346273: 48 63 01 movslq (%rcx),%rax + 66346276: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634627a: 44 89 09 mov %r9d,(%rcx) + 6634627d: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66346281: 48 83 c4 28 add $0x28,%rsp + 66346285: 5b pop %rbx + 66346286: 5e pop %rsi + 66346287: c3 retq + 66346288: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634628f: 00 + +0000000066346290 : + 66346290: 56 push %rsi + 66346291: 53 push %rbx + 66346292: 48 83 ec 28 sub $0x28,%rsp + 66346296: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634629a: 48 8b 50 78 mov 0x78(%rax),%rdx + 6634629e: 48 89 cb mov %rcx,%rbx + 663462a1: 44 8b 0a mov (%rdx),%r9d + 663462a4: 45 85 c9 test %r9d,%r9d + 663462a7: 74 37 je 663462e0 + 663462a9: 31 d2 xor %edx,%edx + 663462ab: eb 07 jmp 663462b4 + 663462ad: 0f 1f 00 nopl (%rax) + 663462b0: 48 8b 43 10 mov 0x10(%rbx),%rax + 663462b4: 48 8d 72 01 lea 0x1(%rdx),%rsi + 663462b8: 48 89 d9 mov %rbx,%rcx + 663462bb: 83 c2 08 add $0x8,%edx + 663462be: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 663462c2: 44 8b 00 mov (%rax),%r8d + 663462c5: e8 e6 b0 ff ff callq 663413b0 + 663462ca: 48 83 fe 07 cmp $0x7,%rsi + 663462ce: 48 89 f2 mov %rsi,%rdx + 663462d1: 75 dd jne 663462b0 + 663462d3: 48 83 c4 28 add $0x28,%rsp + 663462d7: 5b pop %rbx + 663462d8: 5e pop %rsi + 663462d9: c3 retq + 663462da: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 663462e0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663462e4: 4c 8b 15 35 06 01 00 mov 0x10635(%rip),%r10 # 66356920 + 663462eb: 48 8b 0d 3e 06 01 00 mov 0x1063e(%rip),%rcx # 66356930 + 663462f2: 44 8b 42 20 mov 0x20(%rdx),%r8d + 663462f6: 45 85 c0 test %r8d,%r8d + 663462f9: 74 3b je 66346336 + 663462fb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 663462ff: 4d 8b 49 40 mov 0x40(%r9),%r9 + 66346303: 45 29 01 sub %r8d,(%r9) + 66346306: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 6634630d: 45 8b 01 mov (%r9),%r8d + 66346310: 45 31 c9 xor %r9d,%r9d + 66346313: 45 85 c0 test %r8d,%r8d + 66346316: 4c 8b 40 40 mov 0x40(%rax),%r8 + 6634631a: 41 0f 9f c1 setg %r9b + 6634631e: 45 3b 08 cmp (%r8),%r9d + 66346321: 74 13 je 66346336 + 66346323: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346327: 4d 8b 40 40 mov 0x40(%r8),%r8 + 6634632b: 41 8b 30 mov (%r8),%esi + 6634632e: 85 f6 test %esi,%esi + 66346330: 0f 84 ba 02 00 00 je 663465f0 + 66346336: 44 8b 42 24 mov 0x24(%rdx),%r8d + 6634633a: 45 85 c0 test %r8d,%r8d + 6634633d: 74 3c je 6634637b + 6634633f: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346343: 4d 8b 49 48 mov 0x48(%r9),%r9 + 66346347: 45 29 01 sub %r8d,(%r9) + 6634634a: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 66346351: 45 8b 19 mov (%r9),%r11d + 66346354: 45 31 c9 xor %r9d,%r9d + 66346357: 4c 8b 40 48 mov 0x48(%rax),%r8 + 6634635b: 45 85 db test %r11d,%r11d + 6634635e: 41 0f 9f c1 setg %r9b + 66346362: 45 3b 08 cmp (%r8),%r9d + 66346365: 74 14 je 6634637b + 66346367: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634636b: 4d 8b 40 48 mov 0x48(%r8),%r8 + 6634636f: 45 8b 08 mov (%r8),%r9d + 66346372: 45 85 c9 test %r9d,%r9d + 66346375: 0f 84 45 02 00 00 je 663465c0 + 6634637b: 44 8b 42 28 mov 0x28(%rdx),%r8d + 6634637f: 45 85 c0 test %r8d,%r8d + 66346382: 74 3b je 663463bf + 66346384: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346388: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634638c: 45 29 01 sub %r8d,(%r9) + 6634638f: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 66346396: 45 8b 01 mov (%r9),%r8d + 66346399: 45 31 c9 xor %r9d,%r9d + 6634639c: 45 85 c0 test %r8d,%r8d + 6634639f: 4c 8b 40 50 mov 0x50(%rax),%r8 + 663463a3: 41 0f 9f c1 setg %r9b + 663463a7: 45 3b 08 cmp (%r8),%r9d + 663463aa: 74 13 je 663463bf + 663463ac: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 663463b0: 4d 8b 40 50 mov 0x50(%r8),%r8 + 663463b4: 41 8b 30 mov (%r8),%esi + 663463b7: 85 f6 test %esi,%esi + 663463b9: 0f 84 d1 01 00 00 je 66346590 + 663463bf: 44 8b 42 2c mov 0x2c(%rdx),%r8d + 663463c3: 45 85 c0 test %r8d,%r8d + 663463c6: 74 3c je 66346404 + 663463c8: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 663463cc: 4d 8b 49 58 mov 0x58(%r9),%r9 + 663463d0: 45 29 01 sub %r8d,(%r9) + 663463d3: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 663463da: 45 8b 19 mov (%r9),%r11d + 663463dd: 45 31 c9 xor %r9d,%r9d + 663463e0: 4c 8b 40 58 mov 0x58(%rax),%r8 + 663463e4: 45 85 db test %r11d,%r11d + 663463e7: 41 0f 9f c1 setg %r9b + 663463eb: 45 3b 08 cmp (%r8),%r9d + 663463ee: 74 14 je 66346404 + 663463f0: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 663463f4: 4d 8b 40 58 mov 0x58(%r8),%r8 + 663463f8: 45 8b 08 mov (%r8),%r9d + 663463fb: 45 85 c9 test %r9d,%r9d + 663463fe: 0f 84 5c 01 00 00 je 66346560 + 66346404: 44 8b 42 30 mov 0x30(%rdx),%r8d + 66346408: 45 85 c0 test %r8d,%r8d + 6634640b: 74 3b je 66346448 + 6634640d: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346411: 4d 8b 49 60 mov 0x60(%r9),%r9 + 66346415: 45 29 01 sub %r8d,(%r9) + 66346418: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634641f: 45 8b 01 mov (%r9),%r8d + 66346422: 45 31 c9 xor %r9d,%r9d + 66346425: 45 85 c0 test %r8d,%r8d + 66346428: 4c 8b 40 60 mov 0x60(%rax),%r8 + 6634642c: 41 0f 9f c1 setg %r9b + 66346430: 45 3b 08 cmp (%r8),%r9d + 66346433: 74 13 je 66346448 + 66346435: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346439: 4d 8b 40 60 mov 0x60(%r8),%r8 + 6634643d: 41 8b 30 mov (%r8),%esi + 66346440: 85 f6 test %esi,%esi + 66346442: 0f 84 e8 00 00 00 je 66346530 + 66346448: 44 8b 42 34 mov 0x34(%rdx),%r8d + 6634644c: 45 85 c0 test %r8d,%r8d + 6634644f: 74 38 je 66346489 + 66346451: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346455: 4d 8b 49 68 mov 0x68(%r9),%r9 + 66346459: 45 29 01 sub %r8d,(%r9) + 6634645c: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 66346463: 45 8b 19 mov (%r9),%r11d + 66346466: 45 31 c9 xor %r9d,%r9d + 66346469: 4c 8b 40 68 mov 0x68(%rax),%r8 + 6634646d: 45 85 db test %r11d,%r11d + 66346470: 41 0f 9f c1 setg %r9b + 66346474: 45 3b 08 cmp (%r8),%r9d + 66346477: 74 10 je 66346489 + 66346479: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634647d: 4d 8b 40 68 mov 0x68(%r8),%r8 + 66346481: 45 8b 08 mov (%r8),%r9d + 66346484: 45 85 c9 test %r9d,%r9d + 66346487: 74 77 je 66346500 + 66346489: 44 8b 42 38 mov 0x38(%rdx),%r8d + 6634648d: 45 85 c0 test %r8d,%r8d + 66346490: 0f 84 3d fe ff ff je 663462d3 + 66346496: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634649a: 48 8b 40 70 mov 0x70(%rax),%rax + 6634649e: 4d 8b 49 70 mov 0x70(%r9),%r9 + 663464a2: 45 29 01 sub %r8d,(%r9) + 663464a5: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 663464ac: 31 d2 xor %edx,%edx + 663464ae: 45 8b 01 mov (%r9),%r8d + 663464b1: 45 85 c0 test %r8d,%r8d + 663464b4: 0f 9f c2 setg %dl + 663464b7: 3b 10 cmp (%rax),%edx + 663464b9: 0f 84 14 fe ff ff je 663462d3 + 663464bf: 48 8b 43 20 mov 0x20(%rbx),%rax + 663464c3: 48 8b 40 70 mov 0x70(%rax),%rax + 663464c7: 8b 00 mov (%rax),%eax + 663464c9: 85 c0 test %eax,%eax + 663464cb: 0f 85 02 fe ff ff jne 663462d3 + 663464d1: 48 8b 43 28 mov 0x28(%rbx),%rax + 663464d5: 48 8b 50 70 mov 0x70(%rax),%rdx + 663464d9: 48 8b 42 10 mov 0x10(%rdx),%rax + 663464dd: c7 00 01 00 00 00 movl $0x1,(%rax) + 663464e3: 48 63 01 movslq (%rcx),%rax + 663464e6: 44 8d 40 01 lea 0x1(%rax),%r8d + 663464ea: 44 89 01 mov %r8d,(%rcx) + 663464ed: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 663464f1: 48 83 c4 28 add $0x28,%rsp + 663464f5: 5b pop %rbx + 663464f6: 5e pop %rsi + 663464f7: c3 retq + 663464f8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663464ff: 00 + 66346500: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346504: 4d 8b 48 68 mov 0x68(%r8),%r9 + 66346508: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634650c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346513: 4c 63 01 movslq (%rcx),%r8 + 66346516: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634651a: 44 89 19 mov %r11d,(%rcx) + 6634651d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346521: e9 63 ff ff ff jmpq 66346489 + 66346526: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634652d: 00 00 00 + 66346530: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346534: 4d 8b 48 60 mov 0x60(%r8),%r9 + 66346538: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634653c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346543: 4c 63 01 movslq (%rcx),%r8 + 66346546: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634654a: 44 89 19 mov %r11d,(%rcx) + 6634654d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346551: e9 f2 fe ff ff jmpq 66346448 + 66346556: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634655d: 00 00 00 + 66346560: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346564: 4d 8b 48 58 mov 0x58(%r8),%r9 + 66346568: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634656c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346573: 4c 63 01 movslq (%rcx),%r8 + 66346576: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634657a: 44 89 19 mov %r11d,(%rcx) + 6634657d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346581: e9 7e fe ff ff jmpq 66346404 + 66346586: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634658d: 00 00 00 + 66346590: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346594: 4d 8b 48 50 mov 0x50(%r8),%r9 + 66346598: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634659c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663465a3: 4c 63 01 movslq (%rcx),%r8 + 663465a6: 45 8d 58 01 lea 0x1(%r8),%r11d + 663465aa: 44 89 19 mov %r11d,(%rcx) + 663465ad: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 663465b1: e9 09 fe ff ff jmpq 663463bf + 663465b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663465bd: 00 00 00 + 663465c0: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 663465c4: 4d 8b 48 48 mov 0x48(%r8),%r9 + 663465c8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663465cc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663465d3: 4c 63 01 movslq (%rcx),%r8 + 663465d6: 45 8d 58 01 lea 0x1(%r8),%r11d + 663465da: 44 89 19 mov %r11d,(%rcx) + 663465dd: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 663465e1: e9 95 fd ff ff jmpq 6634637b + 663465e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663465ed: 00 00 00 + 663465f0: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 663465f4: 4d 8b 48 40 mov 0x40(%r8),%r9 + 663465f8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663465fc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346603: 4c 63 01 movslq (%rcx),%r8 + 66346606: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634660a: 44 89 19 mov %r11d,(%rcx) + 6634660d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346611: e9 20 fd ff ff jmpq 66346336 + 66346616: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634661d: 00 00 00 + +0000000066346620 : + 66346620: 56 push %rsi + 66346621: 53 push %rbx + 66346622: 48 83 ec 28 sub $0x28,%rsp + 66346626: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634662a: 48 8b 50 78 mov 0x78(%rax),%rdx + 6634662e: 48 89 cb mov %rcx,%rbx + 66346631: 44 8b 0a mov (%rdx),%r9d + 66346634: 45 85 c9 test %r9d,%r9d + 66346637: 74 37 je 66346670 + 66346639: 31 d2 xor %edx,%edx + 6634663b: eb 07 jmp 66346644 + 6634663d: 0f 1f 00 nopl (%rax) + 66346640: 48 8b 43 10 mov 0x10(%rbx),%rax + 66346644: 48 8d 72 01 lea 0x1(%rdx),%rsi + 66346648: 48 89 d9 mov %rbx,%rcx + 6634664b: 83 c2 08 add $0x8,%edx + 6634664e: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 66346652: 44 8b 00 mov (%rax),%r8d + 66346655: e8 56 ad ff ff callq 663413b0 + 6634665a: 48 83 fe 07 cmp $0x7,%rsi + 6634665e: 48 89 f2 mov %rsi,%rdx + 66346661: 75 dd jne 66346640 + 66346663: 48 83 c4 28 add $0x28,%rsp + 66346667: 5b pop %rbx + 66346668: 5e pop %rsi + 66346669: c3 retq + 6634666a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66346670: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66346674: 4c 8b 15 a5 02 01 00 mov 0x102a5(%rip),%r10 # 66356920 + 6634667b: 48 8b 0d ae 02 01 00 mov 0x102ae(%rip),%rcx # 66356930 + 66346682: 44 8b 42 20 mov 0x20(%rdx),%r8d + 66346686: 45 85 c0 test %r8d,%r8d + 66346689: 74 3b je 663466c6 + 6634668b: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634668f: 4d 8b 49 40 mov 0x40(%r9),%r9 + 66346693: 45 29 01 sub %r8d,(%r9) + 66346696: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 6634669d: 45 8b 01 mov (%r9),%r8d + 663466a0: 45 31 c9 xor %r9d,%r9d + 663466a3: 45 85 c0 test %r8d,%r8d + 663466a6: 4c 8b 40 40 mov 0x40(%rax),%r8 + 663466aa: 41 0f 9f c1 setg %r9b + 663466ae: 45 3b 08 cmp (%r8),%r9d + 663466b1: 74 13 je 663466c6 + 663466b3: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 663466b7: 4d 8b 40 40 mov 0x40(%r8),%r8 + 663466bb: 41 8b 30 mov (%r8),%esi + 663466be: 85 f6 test %esi,%esi + 663466c0: 0f 84 ba 02 00 00 je 66346980 + 663466c6: 44 8b 42 24 mov 0x24(%rdx),%r8d + 663466ca: 45 85 c0 test %r8d,%r8d + 663466cd: 74 3c je 6634670b + 663466cf: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 663466d3: 4d 8b 49 48 mov 0x48(%r9),%r9 + 663466d7: 45 29 01 sub %r8d,(%r9) + 663466da: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 663466e1: 45 8b 19 mov (%r9),%r11d + 663466e4: 45 31 c9 xor %r9d,%r9d + 663466e7: 4c 8b 40 48 mov 0x48(%rax),%r8 + 663466eb: 45 85 db test %r11d,%r11d + 663466ee: 41 0f 9f c1 setg %r9b + 663466f2: 45 3b 08 cmp (%r8),%r9d + 663466f5: 74 14 je 6634670b + 663466f7: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 663466fb: 4d 8b 40 48 mov 0x48(%r8),%r8 + 663466ff: 45 8b 08 mov (%r8),%r9d + 66346702: 45 85 c9 test %r9d,%r9d + 66346705: 0f 84 45 02 00 00 je 66346950 + 6634670b: 44 8b 42 28 mov 0x28(%rdx),%r8d + 6634670f: 45 85 c0 test %r8d,%r8d + 66346712: 74 3b je 6634674f + 66346714: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346718: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634671c: 45 29 01 sub %r8d,(%r9) + 6634671f: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 66346726: 45 8b 01 mov (%r9),%r8d + 66346729: 45 31 c9 xor %r9d,%r9d + 6634672c: 45 85 c0 test %r8d,%r8d + 6634672f: 4c 8b 40 50 mov 0x50(%rax),%r8 + 66346733: 41 0f 9f c1 setg %r9b + 66346737: 45 3b 08 cmp (%r8),%r9d + 6634673a: 74 13 je 6634674f + 6634673c: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346740: 4d 8b 40 50 mov 0x50(%r8),%r8 + 66346744: 41 8b 30 mov (%r8),%esi + 66346747: 85 f6 test %esi,%esi + 66346749: 0f 84 d1 01 00 00 je 66346920 + 6634674f: 44 8b 42 2c mov 0x2c(%rdx),%r8d + 66346753: 45 85 c0 test %r8d,%r8d + 66346756: 74 3c je 66346794 + 66346758: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634675c: 4d 8b 49 58 mov 0x58(%r9),%r9 + 66346760: 45 29 01 sub %r8d,(%r9) + 66346763: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634676a: 45 8b 19 mov (%r9),%r11d + 6634676d: 45 31 c9 xor %r9d,%r9d + 66346770: 4c 8b 40 58 mov 0x58(%rax),%r8 + 66346774: 45 85 db test %r11d,%r11d + 66346777: 41 0f 9f c1 setg %r9b + 6634677b: 45 3b 08 cmp (%r8),%r9d + 6634677e: 74 14 je 66346794 + 66346780: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346784: 4d 8b 40 58 mov 0x58(%r8),%r8 + 66346788: 45 8b 08 mov (%r8),%r9d + 6634678b: 45 85 c9 test %r9d,%r9d + 6634678e: 0f 84 5c 01 00 00 je 663468f0 + 66346794: 44 8b 42 30 mov 0x30(%rdx),%r8d + 66346798: 45 85 c0 test %r8d,%r8d + 6634679b: 74 3b je 663467d8 + 6634679d: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 663467a1: 4d 8b 49 60 mov 0x60(%r9),%r9 + 663467a5: 45 29 01 sub %r8d,(%r9) + 663467a8: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 663467af: 45 8b 01 mov (%r9),%r8d + 663467b2: 45 31 c9 xor %r9d,%r9d + 663467b5: 45 85 c0 test %r8d,%r8d + 663467b8: 4c 8b 40 60 mov 0x60(%rax),%r8 + 663467bc: 41 0f 9f c1 setg %r9b + 663467c0: 45 3b 08 cmp (%r8),%r9d + 663467c3: 74 13 je 663467d8 + 663467c5: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 663467c9: 4d 8b 40 60 mov 0x60(%r8),%r8 + 663467cd: 41 8b 30 mov (%r8),%esi + 663467d0: 85 f6 test %esi,%esi + 663467d2: 0f 84 e8 00 00 00 je 663468c0 + 663467d8: 44 8b 42 34 mov 0x34(%rdx),%r8d + 663467dc: 45 85 c0 test %r8d,%r8d + 663467df: 74 38 je 66346819 + 663467e1: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 663467e5: 4d 8b 49 68 mov 0x68(%r9),%r9 + 663467e9: 45 29 01 sub %r8d,(%r9) + 663467ec: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 663467f3: 45 8b 19 mov (%r9),%r11d + 663467f6: 45 31 c9 xor %r9d,%r9d + 663467f9: 4c 8b 40 68 mov 0x68(%rax),%r8 + 663467fd: 45 85 db test %r11d,%r11d + 66346800: 41 0f 9f c1 setg %r9b + 66346804: 45 3b 08 cmp (%r8),%r9d + 66346807: 74 10 je 66346819 + 66346809: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634680d: 4d 8b 40 68 mov 0x68(%r8),%r8 + 66346811: 45 8b 08 mov (%r8),%r9d + 66346814: 45 85 c9 test %r9d,%r9d + 66346817: 74 77 je 66346890 + 66346819: 44 8b 42 38 mov 0x38(%rdx),%r8d + 6634681d: 45 85 c0 test %r8d,%r8d + 66346820: 0f 84 3d fe ff ff je 66346663 + 66346826: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634682a: 48 8b 40 70 mov 0x70(%rax),%rax + 6634682e: 4d 8b 49 70 mov 0x70(%r9),%r9 + 66346832: 45 29 01 sub %r8d,(%r9) + 66346835: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634683c: 31 d2 xor %edx,%edx + 6634683e: 45 8b 01 mov (%r9),%r8d + 66346841: 45 85 c0 test %r8d,%r8d + 66346844: 0f 9f c2 setg %dl + 66346847: 3b 10 cmp (%rax),%edx + 66346849: 0f 84 14 fe ff ff je 66346663 + 6634684f: 48 8b 43 20 mov 0x20(%rbx),%rax + 66346853: 48 8b 40 70 mov 0x70(%rax),%rax + 66346857: 8b 00 mov (%rax),%eax + 66346859: 85 c0 test %eax,%eax + 6634685b: 0f 85 02 fe ff ff jne 66346663 + 66346861: 48 8b 43 28 mov 0x28(%rbx),%rax + 66346865: 48 8b 50 70 mov 0x70(%rax),%rdx + 66346869: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634686d: c7 00 01 00 00 00 movl $0x1,(%rax) + 66346873: 48 63 01 movslq (%rcx),%rax + 66346876: 44 8d 40 01 lea 0x1(%rax),%r8d + 6634687a: 44 89 01 mov %r8d,(%rcx) + 6634687d: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66346881: 48 83 c4 28 add $0x28,%rsp + 66346885: 5b pop %rbx + 66346886: 5e pop %rsi + 66346887: c3 retq + 66346888: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634688f: 00 + 66346890: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346894: 4d 8b 48 68 mov 0x68(%r8),%r9 + 66346898: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634689c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663468a3: 4c 63 01 movslq (%rcx),%r8 + 663468a6: 45 8d 58 01 lea 0x1(%r8),%r11d + 663468aa: 44 89 19 mov %r11d,(%rcx) + 663468ad: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 663468b1: e9 63 ff ff ff jmpq 66346819 + 663468b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663468bd: 00 00 00 + 663468c0: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 663468c4: 4d 8b 48 60 mov 0x60(%r8),%r9 + 663468c8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663468cc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663468d3: 4c 63 01 movslq (%rcx),%r8 + 663468d6: 45 8d 58 01 lea 0x1(%r8),%r11d + 663468da: 44 89 19 mov %r11d,(%rcx) + 663468dd: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 663468e1: e9 f2 fe ff ff jmpq 663467d8 + 663468e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663468ed: 00 00 00 + 663468f0: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 663468f4: 4d 8b 48 58 mov 0x58(%r8),%r9 + 663468f8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663468fc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346903: 4c 63 01 movslq (%rcx),%r8 + 66346906: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634690a: 44 89 19 mov %r11d,(%rcx) + 6634690d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346911: e9 7e fe ff ff jmpq 66346794 + 66346916: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634691d: 00 00 00 + 66346920: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346924: 4d 8b 48 50 mov 0x50(%r8),%r9 + 66346928: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634692c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346933: 4c 63 01 movslq (%rcx),%r8 + 66346936: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634693a: 44 89 19 mov %r11d,(%rcx) + 6634693d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346941: e9 09 fe ff ff jmpq 6634674f + 66346946: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634694d: 00 00 00 + 66346950: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346954: 4d 8b 48 48 mov 0x48(%r8),%r9 + 66346958: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634695c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346963: 4c 63 01 movslq (%rcx),%r8 + 66346966: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634696a: 44 89 19 mov %r11d,(%rcx) + 6634696d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346971: e9 95 fd ff ff jmpq 6634670b + 66346976: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634697d: 00 00 00 + 66346980: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346984: 4d 8b 48 40 mov 0x40(%r8),%r9 + 66346988: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634698c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346993: 4c 63 01 movslq (%rcx),%r8 + 66346996: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634699a: 44 89 19 mov %r11d,(%rcx) + 6634699d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 663469a1: e9 20 fd ff ff jmpq 663466c6 + 663469a6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663469ad: 00 00 00 + +00000000663469b0 : + 663469b0: 56 push %rsi + 663469b1: 53 push %rbx + 663469b2: 48 83 ec 28 sub $0x28,%rsp + 663469b6: 48 8b 41 10 mov 0x10(%rcx),%rax + 663469ba: 48 8b 50 68 mov 0x68(%rax),%rdx + 663469be: 48 89 cb mov %rcx,%rbx + 663469c1: 8b 32 mov (%rdx),%esi + 663469c3: 85 f6 test %esi,%esi + 663469c5: 74 39 je 66346a00 + 663469c7: 31 d2 xor %edx,%edx + 663469c9: eb 09 jmp 663469d4 + 663469cb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663469d0: 48 8b 43 10 mov 0x10(%rbx),%rax + 663469d4: 48 8d 72 01 lea 0x1(%rdx),%rsi + 663469d8: 48 89 d9 mov %rbx,%rcx + 663469db: 83 c2 07 add $0x7,%edx + 663469de: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 663469e2: 44 8b 00 mov (%rax),%r8d + 663469e5: e8 c6 a9 ff ff callq 663413b0 + 663469ea: 48 83 fe 06 cmp $0x6,%rsi + 663469ee: 48 89 f2 mov %rsi,%rdx + 663469f1: 75 dd jne 663469d0 + 663469f3: 48 83 c4 28 add $0x28,%rsp + 663469f7: 5b pop %rbx + 663469f8: 5e pop %rsi + 663469f9: c3 retq + 663469fa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66346a00: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66346a04: 4c 8b 15 15 ff 00 00 mov 0xff15(%rip),%r10 # 66356920 + 66346a0b: 48 8b 0d 1e ff 00 00 mov 0xff1e(%rip),%rcx # 66356930 + 66346a12: 44 8b 42 1c mov 0x1c(%rdx),%r8d + 66346a16: 45 85 c0 test %r8d,%r8d + 66346a19: 74 3c je 66346a57 + 66346a1b: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346a1f: 4d 8b 49 38 mov 0x38(%r9),%r9 + 66346a23: 45 29 01 sub %r8d,(%r9) + 66346a26: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 66346a2d: 45 8b 19 mov (%r9),%r11d + 66346a30: 45 31 c9 xor %r9d,%r9d + 66346a33: 4c 8b 40 38 mov 0x38(%rax),%r8 + 66346a37: 45 85 db test %r11d,%r11d + 66346a3a: 41 0f 9f c1 setg %r9b + 66346a3e: 45 3b 08 cmp (%r8),%r9d + 66346a41: 74 14 je 66346a57 + 66346a43: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346a47: 4d 8b 40 38 mov 0x38(%r8),%r8 + 66346a4b: 45 8b 08 mov (%r8),%r9d + 66346a4e: 45 85 c9 test %r9d,%r9d + 66346a51: 0f 84 39 02 00 00 je 66346c90 + 66346a57: 44 8b 42 20 mov 0x20(%rdx),%r8d + 66346a5b: 45 85 c0 test %r8d,%r8d + 66346a5e: 74 3b je 66346a9b + 66346a60: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346a64: 4d 8b 49 40 mov 0x40(%r9),%r9 + 66346a68: 45 29 01 sub %r8d,(%r9) + 66346a6b: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 66346a72: 45 8b 01 mov (%r9),%r8d + 66346a75: 45 31 c9 xor %r9d,%r9d + 66346a78: 45 85 c0 test %r8d,%r8d + 66346a7b: 4c 8b 40 40 mov 0x40(%rax),%r8 + 66346a7f: 41 0f 9f c1 setg %r9b + 66346a83: 45 3b 08 cmp (%r8),%r9d + 66346a86: 74 13 je 66346a9b + 66346a88: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346a8c: 4d 8b 40 40 mov 0x40(%r8),%r8 + 66346a90: 41 8b 30 mov (%r8),%esi + 66346a93: 85 f6 test %esi,%esi + 66346a95: 0f 84 c5 01 00 00 je 66346c60 + 66346a9b: 44 8b 42 24 mov 0x24(%rdx),%r8d + 66346a9f: 45 85 c0 test %r8d,%r8d + 66346aa2: 74 3c je 66346ae0 + 66346aa4: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346aa8: 4d 8b 49 48 mov 0x48(%r9),%r9 + 66346aac: 45 29 01 sub %r8d,(%r9) + 66346aaf: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 66346ab6: 45 8b 19 mov (%r9),%r11d + 66346ab9: 45 31 c9 xor %r9d,%r9d + 66346abc: 4c 8b 40 48 mov 0x48(%rax),%r8 + 66346ac0: 45 85 db test %r11d,%r11d + 66346ac3: 41 0f 9f c1 setg %r9b + 66346ac7: 45 3b 08 cmp (%r8),%r9d + 66346aca: 74 14 je 66346ae0 + 66346acc: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346ad0: 4d 8b 40 48 mov 0x48(%r8),%r8 + 66346ad4: 45 8b 08 mov (%r8),%r9d + 66346ad7: 45 85 c9 test %r9d,%r9d + 66346ada: 0f 84 50 01 00 00 je 66346c30 + 66346ae0: 44 8b 42 28 mov 0x28(%rdx),%r8d + 66346ae4: 45 85 c0 test %r8d,%r8d + 66346ae7: 74 3b je 66346b24 + 66346ae9: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346aed: 4d 8b 49 50 mov 0x50(%r9),%r9 + 66346af1: 45 29 01 sub %r8d,(%r9) + 66346af4: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 66346afb: 45 8b 01 mov (%r9),%r8d + 66346afe: 45 31 c9 xor %r9d,%r9d + 66346b01: 45 85 c0 test %r8d,%r8d + 66346b04: 4c 8b 40 50 mov 0x50(%rax),%r8 + 66346b08: 41 0f 9f c1 setg %r9b + 66346b0c: 45 3b 08 cmp (%r8),%r9d + 66346b0f: 74 13 je 66346b24 + 66346b11: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346b15: 4d 8b 40 50 mov 0x50(%r8),%r8 + 66346b19: 41 8b 30 mov (%r8),%esi + 66346b1c: 85 f6 test %esi,%esi + 66346b1e: 0f 84 dc 00 00 00 je 66346c00 + 66346b24: 44 8b 42 2c mov 0x2c(%rdx),%r8d + 66346b28: 45 85 c0 test %r8d,%r8d + 66346b2b: 74 38 je 66346b65 + 66346b2d: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346b31: 4d 8b 49 58 mov 0x58(%r9),%r9 + 66346b35: 45 29 01 sub %r8d,(%r9) + 66346b38: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 66346b3f: 45 8b 19 mov (%r9),%r11d + 66346b42: 45 31 c9 xor %r9d,%r9d + 66346b45: 4c 8b 40 58 mov 0x58(%rax),%r8 + 66346b49: 45 85 db test %r11d,%r11d + 66346b4c: 41 0f 9f c1 setg %r9b + 66346b50: 45 3b 08 cmp (%r8),%r9d + 66346b53: 74 10 je 66346b65 + 66346b55: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346b59: 4d 8b 40 58 mov 0x58(%r8),%r8 + 66346b5d: 45 8b 08 mov (%r8),%r9d + 66346b60: 45 85 c9 test %r9d,%r9d + 66346b63: 74 6f je 66346bd4 + 66346b65: 44 8b 42 30 mov 0x30(%rdx),%r8d + 66346b69: 45 85 c0 test %r8d,%r8d + 66346b6c: 0f 84 81 fe ff ff je 663469f3 + 66346b72: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346b76: 48 8b 40 60 mov 0x60(%rax),%rax + 66346b7a: 4d 8b 49 60 mov 0x60(%r9),%r9 + 66346b7e: 45 29 01 sub %r8d,(%r9) + 66346b81: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 66346b88: 31 d2 xor %edx,%edx + 66346b8a: 45 8b 01 mov (%r9),%r8d + 66346b8d: 45 85 c0 test %r8d,%r8d + 66346b90: 0f 9f c2 setg %dl + 66346b93: 3b 10 cmp (%rax),%edx + 66346b95: 0f 84 58 fe ff ff je 663469f3 + 66346b9b: 48 8b 43 20 mov 0x20(%rbx),%rax + 66346b9f: 48 8b 40 60 mov 0x60(%rax),%rax + 66346ba3: 8b 00 mov (%rax),%eax + 66346ba5: 85 c0 test %eax,%eax + 66346ba7: 0f 85 46 fe ff ff jne 663469f3 + 66346bad: 48 8b 43 28 mov 0x28(%rbx),%rax + 66346bb1: 48 8b 50 60 mov 0x60(%rax),%rdx + 66346bb5: 48 8b 42 10 mov 0x10(%rdx),%rax + 66346bb9: c7 00 01 00 00 00 movl $0x1,(%rax) + 66346bbf: 48 63 01 movslq (%rcx),%rax + 66346bc2: 44 8d 40 01 lea 0x1(%rax),%r8d + 66346bc6: 44 89 01 mov %r8d,(%rcx) + 66346bc9: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66346bcd: 48 83 c4 28 add $0x28,%rsp + 66346bd1: 5b pop %rbx + 66346bd2: 5e pop %rsi + 66346bd3: c3 retq + 66346bd4: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346bd8: 4d 8b 48 58 mov 0x58(%r8),%r9 + 66346bdc: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66346be0: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346be7: 4c 63 01 movslq (%rcx),%r8 + 66346bea: 45 8d 58 01 lea 0x1(%r8),%r11d + 66346bee: 44 89 19 mov %r11d,(%rcx) + 66346bf1: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346bf5: e9 6b ff ff ff jmpq 66346b65 + 66346bfa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66346c00: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346c04: 4d 8b 48 50 mov 0x50(%r8),%r9 + 66346c08: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66346c0c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346c13: 4c 63 01 movslq (%rcx),%r8 + 66346c16: 45 8d 58 01 lea 0x1(%r8),%r11d + 66346c1a: 44 89 19 mov %r11d,(%rcx) + 66346c1d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346c21: e9 fe fe ff ff jmpq 66346b24 + 66346c26: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346c2d: 00 00 00 + 66346c30: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346c34: 4d 8b 48 48 mov 0x48(%r8),%r9 + 66346c38: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66346c3c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346c43: 4c 63 01 movslq (%rcx),%r8 + 66346c46: 45 8d 58 01 lea 0x1(%r8),%r11d + 66346c4a: 44 89 19 mov %r11d,(%rcx) + 66346c4d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346c51: e9 8a fe ff ff jmpq 66346ae0 + 66346c56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346c5d: 00 00 00 + 66346c60: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346c64: 4d 8b 48 40 mov 0x40(%r8),%r9 + 66346c68: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66346c6c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346c73: 4c 63 01 movslq (%rcx),%r8 + 66346c76: 45 8d 58 01 lea 0x1(%r8),%r11d + 66346c7a: 44 89 19 mov %r11d,(%rcx) + 66346c7d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346c81: e9 15 fe ff ff jmpq 66346a9b + 66346c86: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346c8d: 00 00 00 + 66346c90: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346c94: 4d 8b 48 38 mov 0x38(%r8),%r9 + 66346c98: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66346c9c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346ca3: 4c 63 01 movslq (%rcx),%r8 + 66346ca6: 45 8d 58 01 lea 0x1(%r8),%r11d + 66346caa: 44 89 19 mov %r11d,(%rcx) + 66346cad: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346cb1: e9 a1 fd ff ff jmpq 66346a57 + 66346cb6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346cbd: 00 00 00 + +0000000066346cc0 : + 66346cc0: 56 push %rsi + 66346cc1: 53 push %rbx + 66346cc2: 48 83 ec 28 sub $0x28,%rsp + 66346cc6: 48 8b 41 10 mov 0x10(%rcx),%rax + 66346cca: 48 8b 50 68 mov 0x68(%rax),%rdx + 66346cce: 48 89 cb mov %rcx,%rbx + 66346cd1: 8b 32 mov (%rdx),%esi + 66346cd3: 85 f6 test %esi,%esi + 66346cd5: 74 39 je 66346d10 + 66346cd7: 31 d2 xor %edx,%edx + 66346cd9: eb 09 jmp 66346ce4 + 66346cdb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66346ce0: 48 8b 43 10 mov 0x10(%rbx),%rax + 66346ce4: 48 8d 72 01 lea 0x1(%rdx),%rsi + 66346ce8: 48 89 d9 mov %rbx,%rcx + 66346ceb: 83 c2 07 add $0x7,%edx + 66346cee: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 66346cf2: 44 8b 00 mov (%rax),%r8d + 66346cf5: e8 b6 a6 ff ff callq 663413b0 + 66346cfa: 48 83 fe 06 cmp $0x6,%rsi + 66346cfe: 48 89 f2 mov %rsi,%rdx + 66346d01: 75 dd jne 66346ce0 + 66346d03: 48 83 c4 28 add $0x28,%rsp + 66346d07: 5b pop %rbx + 66346d08: 5e pop %rsi + 66346d09: c3 retq + 66346d0a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66346d10: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66346d14: 4c 8b 15 05 fc 00 00 mov 0xfc05(%rip),%r10 # 66356920 + 66346d1b: 48 8b 0d 0e fc 00 00 mov 0xfc0e(%rip),%rcx # 66356930 + 66346d22: 44 8b 42 1c mov 0x1c(%rdx),%r8d + 66346d26: 45 85 c0 test %r8d,%r8d + 66346d29: 74 3c je 66346d67 + 66346d2b: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346d2f: 4d 8b 49 38 mov 0x38(%r9),%r9 + 66346d33: 45 29 01 sub %r8d,(%r9) + 66346d36: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 66346d3d: 45 8b 19 mov (%r9),%r11d + 66346d40: 45 31 c9 xor %r9d,%r9d + 66346d43: 4c 8b 40 38 mov 0x38(%rax),%r8 + 66346d47: 45 85 db test %r11d,%r11d + 66346d4a: 41 0f 9f c1 setg %r9b + 66346d4e: 45 3b 08 cmp (%r8),%r9d + 66346d51: 74 14 je 66346d67 + 66346d53: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346d57: 4d 8b 40 38 mov 0x38(%r8),%r8 + 66346d5b: 45 8b 08 mov (%r8),%r9d + 66346d5e: 45 85 c9 test %r9d,%r9d + 66346d61: 0f 84 39 02 00 00 je 66346fa0 + 66346d67: 44 8b 42 20 mov 0x20(%rdx),%r8d + 66346d6b: 45 85 c0 test %r8d,%r8d + 66346d6e: 74 3b je 66346dab + 66346d70: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346d74: 4d 8b 49 40 mov 0x40(%r9),%r9 + 66346d78: 45 29 01 sub %r8d,(%r9) + 66346d7b: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 66346d82: 45 8b 01 mov (%r9),%r8d + 66346d85: 45 31 c9 xor %r9d,%r9d + 66346d88: 45 85 c0 test %r8d,%r8d + 66346d8b: 4c 8b 40 40 mov 0x40(%rax),%r8 + 66346d8f: 41 0f 9f c1 setg %r9b + 66346d93: 45 3b 08 cmp (%r8),%r9d + 66346d96: 74 13 je 66346dab + 66346d98: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346d9c: 4d 8b 40 40 mov 0x40(%r8),%r8 + 66346da0: 41 8b 30 mov (%r8),%esi + 66346da3: 85 f6 test %esi,%esi + 66346da5: 0f 84 c5 01 00 00 je 66346f70 + 66346dab: 44 8b 42 24 mov 0x24(%rdx),%r8d + 66346daf: 45 85 c0 test %r8d,%r8d + 66346db2: 74 3c je 66346df0 + 66346db4: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346db8: 4d 8b 49 48 mov 0x48(%r9),%r9 + 66346dbc: 45 29 01 sub %r8d,(%r9) + 66346dbf: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 66346dc6: 45 8b 19 mov (%r9),%r11d + 66346dc9: 45 31 c9 xor %r9d,%r9d + 66346dcc: 4c 8b 40 48 mov 0x48(%rax),%r8 + 66346dd0: 45 85 db test %r11d,%r11d + 66346dd3: 41 0f 9f c1 setg %r9b + 66346dd7: 45 3b 08 cmp (%r8),%r9d + 66346dda: 74 14 je 66346df0 + 66346ddc: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346de0: 4d 8b 40 48 mov 0x48(%r8),%r8 + 66346de4: 45 8b 08 mov (%r8),%r9d + 66346de7: 45 85 c9 test %r9d,%r9d + 66346dea: 0f 84 50 01 00 00 je 66346f40 + 66346df0: 44 8b 42 28 mov 0x28(%rdx),%r8d + 66346df4: 45 85 c0 test %r8d,%r8d + 66346df7: 74 3b je 66346e34 + 66346df9: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346dfd: 4d 8b 49 50 mov 0x50(%r9),%r9 + 66346e01: 45 29 01 sub %r8d,(%r9) + 66346e04: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 66346e0b: 45 8b 01 mov (%r9),%r8d + 66346e0e: 45 31 c9 xor %r9d,%r9d + 66346e11: 45 85 c0 test %r8d,%r8d + 66346e14: 4c 8b 40 50 mov 0x50(%rax),%r8 + 66346e18: 41 0f 9f c1 setg %r9b + 66346e1c: 45 3b 08 cmp (%r8),%r9d + 66346e1f: 74 13 je 66346e34 + 66346e21: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346e25: 4d 8b 40 50 mov 0x50(%r8),%r8 + 66346e29: 41 8b 30 mov (%r8),%esi + 66346e2c: 85 f6 test %esi,%esi + 66346e2e: 0f 84 dc 00 00 00 je 66346f10 + 66346e34: 44 8b 42 2c mov 0x2c(%rdx),%r8d + 66346e38: 45 85 c0 test %r8d,%r8d + 66346e3b: 74 38 je 66346e75 + 66346e3d: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346e41: 4d 8b 49 58 mov 0x58(%r9),%r9 + 66346e45: 45 29 01 sub %r8d,(%r9) + 66346e48: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 66346e4f: 45 8b 19 mov (%r9),%r11d + 66346e52: 45 31 c9 xor %r9d,%r9d + 66346e55: 4c 8b 40 58 mov 0x58(%rax),%r8 + 66346e59: 45 85 db test %r11d,%r11d + 66346e5c: 41 0f 9f c1 setg %r9b + 66346e60: 45 3b 08 cmp (%r8),%r9d + 66346e63: 74 10 je 66346e75 + 66346e65: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66346e69: 4d 8b 40 58 mov 0x58(%r8),%r8 + 66346e6d: 45 8b 08 mov (%r8),%r9d + 66346e70: 45 85 c9 test %r9d,%r9d + 66346e73: 74 6f je 66346ee4 + 66346e75: 44 8b 42 30 mov 0x30(%rdx),%r8d + 66346e79: 45 85 c0 test %r8d,%r8d + 66346e7c: 0f 84 81 fe ff ff je 66346d03 + 66346e82: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66346e86: 48 8b 40 60 mov 0x60(%rax),%rax + 66346e8a: 4d 8b 49 60 mov 0x60(%r9),%r9 + 66346e8e: 45 29 01 sub %r8d,(%r9) + 66346e91: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 66346e98: 31 d2 xor %edx,%edx + 66346e9a: 45 8b 01 mov (%r9),%r8d + 66346e9d: 45 85 c0 test %r8d,%r8d + 66346ea0: 0f 9f c2 setg %dl + 66346ea3: 3b 10 cmp (%rax),%edx + 66346ea5: 0f 84 58 fe ff ff je 66346d03 + 66346eab: 48 8b 43 20 mov 0x20(%rbx),%rax + 66346eaf: 48 8b 40 60 mov 0x60(%rax),%rax + 66346eb3: 8b 00 mov (%rax),%eax + 66346eb5: 85 c0 test %eax,%eax + 66346eb7: 0f 85 46 fe ff ff jne 66346d03 + 66346ebd: 48 8b 43 28 mov 0x28(%rbx),%rax + 66346ec1: 48 8b 50 60 mov 0x60(%rax),%rdx + 66346ec5: 48 8b 42 10 mov 0x10(%rdx),%rax + 66346ec9: c7 00 01 00 00 00 movl $0x1,(%rax) + 66346ecf: 48 63 01 movslq (%rcx),%rax + 66346ed2: 44 8d 40 01 lea 0x1(%rax),%r8d + 66346ed6: 44 89 01 mov %r8d,(%rcx) + 66346ed9: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66346edd: 48 83 c4 28 add $0x28,%rsp + 66346ee1: 5b pop %rbx + 66346ee2: 5e pop %rsi + 66346ee3: c3 retq + 66346ee4: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346ee8: 4d 8b 48 58 mov 0x58(%r8),%r9 + 66346eec: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66346ef0: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346ef7: 4c 63 01 movslq (%rcx),%r8 + 66346efa: 45 8d 58 01 lea 0x1(%r8),%r11d + 66346efe: 44 89 19 mov %r11d,(%rcx) + 66346f01: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346f05: e9 6b ff ff ff jmpq 66346e75 + 66346f0a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66346f10: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346f14: 4d 8b 48 50 mov 0x50(%r8),%r9 + 66346f18: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66346f1c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346f23: 4c 63 01 movslq (%rcx),%r8 + 66346f26: 45 8d 58 01 lea 0x1(%r8),%r11d + 66346f2a: 44 89 19 mov %r11d,(%rcx) + 66346f2d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346f31: e9 fe fe ff ff jmpq 66346e34 + 66346f36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346f3d: 00 00 00 + 66346f40: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346f44: 4d 8b 48 48 mov 0x48(%r8),%r9 + 66346f48: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66346f4c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346f53: 4c 63 01 movslq (%rcx),%r8 + 66346f56: 45 8d 58 01 lea 0x1(%r8),%r11d + 66346f5a: 44 89 19 mov %r11d,(%rcx) + 66346f5d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346f61: e9 8a fe ff ff jmpq 66346df0 + 66346f66: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346f6d: 00 00 00 + 66346f70: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346f74: 4d 8b 48 40 mov 0x40(%r8),%r9 + 66346f78: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66346f7c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346f83: 4c 63 01 movslq (%rcx),%r8 + 66346f86: 45 8d 58 01 lea 0x1(%r8),%r11d + 66346f8a: 44 89 19 mov %r11d,(%rcx) + 66346f8d: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346f91: e9 15 fe ff ff jmpq 66346dab + 66346f96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346f9d: 00 00 00 + 66346fa0: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66346fa4: 4d 8b 48 38 mov 0x38(%r8),%r9 + 66346fa8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66346fac: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66346fb3: 4c 63 01 movslq (%rcx),%r8 + 66346fb6: 45 8d 58 01 lea 0x1(%r8),%r11d + 66346fba: 44 89 19 mov %r11d,(%rcx) + 66346fbd: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66346fc1: e9 a1 fd ff ff jmpq 66346d67 + 66346fc6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66346fcd: 00 00 00 + +0000000066346fd0 : + 66346fd0: ba 01 00 00 00 mov $0x1,%edx + 66346fd5: 48 8b 41 10 mov 0x10(%rcx),%rax + 66346fd9: 4c 8b 40 08 mov 0x8(%rax),%r8 + 66346fdd: 45 8b 18 mov (%r8),%r11d + 66346fe0: 45 85 db test %r11d,%r11d + 66346fe3: 74 0c je 66346ff1 + 66346fe5: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66346fe9: 45 8b 10 mov (%r8),%r10d + 66346fec: 45 85 d2 test %r10d,%r10d + 66346fef: 75 72 jne 66347063 + 66346ff1: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66346ff5: 45 8b 48 20 mov 0x20(%r8),%r9d + 66346ff9: 44 39 ca cmp %r9d,%edx + 66346ffc: 74 64 je 66347062 + 66346ffe: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66347002: 41 89 d3 mov %edx,%r11d + 66347005: 45 29 cb sub %r9d,%r11d + 66347008: 48 8b 40 40 mov 0x40(%rax),%rax + 6634700c: 4d 8b 52 40 mov 0x40(%r10),%r10 + 66347010: 45 01 1a add %r11d,(%r10) + 66347013: 41 89 50 20 mov %edx,0x20(%r8) + 66347017: 31 d2 xor %edx,%edx + 66347019: 45 8b 02 mov (%r10),%r8d + 6634701c: 45 85 c0 test %r8d,%r8d + 6634701f: 0f 9f c2 setg %dl + 66347022: 3b 10 cmp (%rax),%edx + 66347024: 74 3c je 66347062 + 66347026: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634702a: 48 8b 40 40 mov 0x40(%rax),%rax + 6634702e: 8b 00 mov (%rax),%eax + 66347030: 85 c0 test %eax,%eax + 66347032: 75 2e jne 66347062 + 66347034: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347038: 48 8b 0d f1 f8 00 00 mov 0xf8f1(%rip),%rcx # 66356930 + 6634703f: 4c 8b 05 da f8 00 00 mov 0xf8da(%rip),%r8 # 66356920 + 66347046: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634704a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634704e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66347054: 48 63 01 movslq (%rcx),%rax + 66347057: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634705b: 44 89 09 mov %r9d,(%rcx) + 6634705e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66347062: c3 retq + 66347063: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66347067: 45 8b 08 mov (%r8),%r9d + 6634706a: 45 85 c9 test %r9d,%r9d + 6634706d: 74 82 je 66346ff1 + 6634706f: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66347073: 45 8b 00 mov (%r8),%r8d + 66347076: 45 85 c0 test %r8d,%r8d + 66347079: 0f 84 72 ff ff ff je 66346ff1 + 6634707f: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66347083: 45 8b 18 mov (%r8),%r11d + 66347086: 45 85 db test %r11d,%r11d + 66347089: 0f 84 62 ff ff ff je 66346ff1 + 6634708f: 4c 8b 40 30 mov 0x30(%rax),%r8 + 66347093: 45 8b 10 mov (%r8),%r10d + 66347096: 45 85 d2 test %r10d,%r10d + 66347099: 0f 84 52 ff ff ff je 66346ff1 + 6634709f: 48 8b 50 38 mov 0x38(%rax),%rdx + 663470a3: 44 8b 0a mov (%rdx),%r9d + 663470a6: 31 d2 xor %edx,%edx + 663470a8: 45 85 c9 test %r9d,%r9d + 663470ab: 0f 94 c2 sete %dl + 663470ae: e9 3e ff ff ff jmpq 66346ff1 + 663470b3: 0f 1f 00 nopl (%rax) + 663470b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663470bd: 00 00 00 + +00000000663470c0 : + 663470c0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663470c4: 48 8b 42 08 mov 0x8(%rdx),%rax + 663470c8: 8b 00 mov (%rax),%eax + 663470ca: 85 c0 test %eax,%eax + 663470cc: 0f 85 ae 00 00 00 jne 66347180 + 663470d2: 4c 8b 42 10 mov 0x10(%rdx),%r8 + 663470d6: 45 8b 08 mov (%r8),%r9d + 663470d9: 45 85 c9 test %r9d,%r9d + 663470dc: 74 75 je 66347153 + 663470de: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663470e2: 45 8b 48 20 mov 0x20(%r8),%r9d + 663470e6: 44 39 c8 cmp %r9d,%eax + 663470e9: 74 67 je 66347152 + 663470eb: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663470ef: 41 89 c3 mov %eax,%r11d + 663470f2: 45 29 cb sub %r9d,%r11d + 663470f5: 4d 8b 52 40 mov 0x40(%r10),%r10 + 663470f9: 45 01 1a add %r11d,(%r10) + 663470fc: 41 89 40 20 mov %eax,0x20(%r8) + 66347100: 45 31 c0 xor %r8d,%r8d + 66347103: 45 8b 0a mov (%r10),%r9d + 66347106: 48 8b 42 40 mov 0x40(%rdx),%rax + 6634710a: 45 85 c9 test %r9d,%r9d + 6634710d: 41 0f 9f c0 setg %r8b + 66347111: 44 3b 00 cmp (%rax),%r8d + 66347114: 74 3c je 66347152 + 66347116: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634711a: 48 8b 40 40 mov 0x40(%rax),%rax + 6634711e: 8b 00 mov (%rax),%eax + 66347120: 85 c0 test %eax,%eax + 66347122: 75 2e jne 66347152 + 66347124: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347128: 48 8b 0d 01 f8 00 00 mov 0xf801(%rip),%rcx # 66356930 + 6634712f: 4c 8b 05 ea f7 00 00 mov 0xf7ea(%rip),%r8 # 66356920 + 66347136: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634713a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634713e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66347144: 48 63 01 movslq (%rcx),%rax + 66347147: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634714b: 44 89 09 mov %r9d,(%rcx) + 6634714e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66347152: c3 retq + 66347153: 48 8b 42 18 mov 0x18(%rdx),%rax + 66347157: 8b 00 mov (%rax),%eax + 66347159: 85 c0 test %eax,%eax + 6634715b: 75 23 jne 66347180 + 6634715d: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 66347161: 45 8b 00 mov (%r8),%r8d + 66347164: 45 85 c0 test %r8d,%r8d + 66347167: 0f 85 71 ff ff ff jne 663470de + 6634716d: 48 8b 42 28 mov 0x28(%rdx),%rax + 66347171: 8b 00 mov (%rax),%eax + 66347173: 85 c0 test %eax,%eax + 66347175: 74 19 je 66347190 + 66347177: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634717e: 00 00 + 66347180: 31 c0 xor %eax,%eax + 66347182: e9 57 ff ff ff jmpq 663470de + 66347187: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634718e: 00 00 + 66347190: 4c 8b 42 30 mov 0x30(%rdx),%r8 + 66347194: 45 8b 18 mov (%r8),%r11d + 66347197: 45 85 db test %r11d,%r11d + 6634719a: 0f 85 3e ff ff ff jne 663470de + 663471a0: 48 8b 42 38 mov 0x38(%rdx),%rax + 663471a4: 44 8b 10 mov (%rax),%r10d + 663471a7: 31 c0 xor %eax,%eax + 663471a9: 45 85 d2 test %r10d,%r10d + 663471ac: 0f 94 c0 sete %al + 663471af: e9 2a ff ff ff jmpq 663470de + 663471b4: 66 90 xchg %ax,%ax + 663471b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663471bd: 00 00 00 + +00000000663471c0 : + 663471c0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 663471c4: 48 8b 42 08 mov 0x8(%rdx),%rax + 663471c8: 8b 00 mov (%rax),%eax + 663471ca: 85 c0 test %eax,%eax + 663471cc: 74 0a je 663471d8 + 663471ce: 48 8b 42 10 mov 0x10(%rdx),%rax + 663471d2: 8b 00 mov (%rax),%eax + 663471d4: 85 c0 test %eax,%eax + 663471d6: 75 78 jne 66347250 + 663471d8: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663471dc: 45 8b 48 20 mov 0x20(%r8),%r9d + 663471e0: 44 39 c8 cmp %r9d,%eax + 663471e3: 74 67 je 6634724c + 663471e5: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663471e9: 41 89 c3 mov %eax,%r11d + 663471ec: 45 29 cb sub %r9d,%r11d + 663471ef: 4d 8b 52 40 mov 0x40(%r10),%r10 + 663471f3: 45 01 1a add %r11d,(%r10) + 663471f6: 41 89 40 20 mov %eax,0x20(%r8) + 663471fa: 45 31 c0 xor %r8d,%r8d + 663471fd: 45 8b 0a mov (%r10),%r9d + 66347200: 48 8b 42 40 mov 0x40(%rdx),%rax + 66347204: 45 85 c9 test %r9d,%r9d + 66347207: 41 0f 9f c0 setg %r8b + 6634720b: 44 3b 00 cmp (%rax),%r8d + 6634720e: 74 3c je 6634724c + 66347210: 48 8b 41 20 mov 0x20(%rcx),%rax + 66347214: 48 8b 40 40 mov 0x40(%rax),%rax + 66347218: 8b 00 mov (%rax),%eax + 6634721a: 85 c0 test %eax,%eax + 6634721c: 75 2e jne 6634724c + 6634721e: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347222: 48 8b 0d 07 f7 00 00 mov 0xf707(%rip),%rcx # 66356930 + 66347229: 4c 8b 05 f0 f6 00 00 mov 0xf6f0(%rip),%r8 # 66356920 + 66347230: 48 8b 50 40 mov 0x40(%rax),%rdx + 66347234: 48 8b 42 10 mov 0x10(%rdx),%rax + 66347238: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634723e: 48 63 01 movslq (%rcx),%rax + 66347241: 44 8d 48 01 lea 0x1(%rax),%r9d + 66347245: 44 89 09 mov %r9d,(%rcx) + 66347248: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634724c: c3 retq + 6634724d: 0f 1f 00 nopl (%rax) + 66347250: 48 8b 42 18 mov 0x18(%rdx),%rax + 66347254: 8b 00 mov (%rax),%eax + 66347256: 85 c0 test %eax,%eax + 66347258: 0f 84 7a ff ff ff je 663471d8 + 6634725e: 48 8b 42 20 mov 0x20(%rdx),%rax + 66347262: 8b 00 mov (%rax),%eax + 66347264: 85 c0 test %eax,%eax + 66347266: 0f 84 6c ff ff ff je 663471d8 + 6634726c: 48 8b 42 28 mov 0x28(%rdx),%rax + 66347270: 8b 00 mov (%rax),%eax + 66347272: 85 c0 test %eax,%eax + 66347274: 0f 84 5e ff ff ff je 663471d8 + 6634727a: 48 8b 42 30 mov 0x30(%rdx),%rax + 6634727e: 8b 00 mov (%rax),%eax + 66347280: 85 c0 test %eax,%eax + 66347282: 0f 84 50 ff ff ff je 663471d8 + 66347288: 48 8b 42 38 mov 0x38(%rdx),%rax + 6634728c: 44 8b 10 mov (%rax),%r10d + 6634728f: 31 c0 xor %eax,%eax + 66347291: 45 85 d2 test %r10d,%r10d + 66347294: 0f 95 c0 setne %al + 66347297: e9 3c ff ff ff jmpq 663471d8 + 6634729c: 0f 1f 40 00 nopl 0x0(%rax) + +00000000663472a0 : + 663472a0: ba 01 00 00 00 mov $0x1,%edx + 663472a5: 48 8b 41 10 mov 0x10(%rcx),%rax + 663472a9: 4c 8b 40 08 mov 0x8(%rax),%r8 + 663472ad: 45 8b 18 mov (%r8),%r11d + 663472b0: 45 85 db test %r11d,%r11d + 663472b3: 75 0c jne 663472c1 + 663472b5: 4c 8b 40 10 mov 0x10(%rax),%r8 + 663472b9: 45 8b 10 mov (%r8),%r10d + 663472bc: 45 85 d2 test %r10d,%r10d + 663472bf: 74 72 je 66347333 + 663472c1: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 663472c5: 45 8b 48 20 mov 0x20(%r8),%r9d + 663472c9: 44 39 ca cmp %r9d,%edx + 663472cc: 74 64 je 66347332 + 663472ce: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 663472d2: 41 89 d3 mov %edx,%r11d + 663472d5: 45 29 cb sub %r9d,%r11d + 663472d8: 48 8b 40 40 mov 0x40(%rax),%rax + 663472dc: 4d 8b 52 40 mov 0x40(%r10),%r10 + 663472e0: 45 01 1a add %r11d,(%r10) + 663472e3: 41 89 50 20 mov %edx,0x20(%r8) + 663472e7: 31 d2 xor %edx,%edx + 663472e9: 45 8b 02 mov (%r10),%r8d + 663472ec: 45 85 c0 test %r8d,%r8d + 663472ef: 0f 9f c2 setg %dl + 663472f2: 3b 10 cmp (%rax),%edx + 663472f4: 74 3c je 66347332 + 663472f6: 48 8b 41 20 mov 0x20(%rcx),%rax + 663472fa: 48 8b 40 40 mov 0x40(%rax),%rax + 663472fe: 8b 00 mov (%rax),%eax + 66347300: 85 c0 test %eax,%eax + 66347302: 75 2e jne 66347332 + 66347304: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347308: 48 8b 0d 21 f6 00 00 mov 0xf621(%rip),%rcx # 66356930 + 6634730f: 4c 8b 05 0a f6 00 00 mov 0xf60a(%rip),%r8 # 66356920 + 66347316: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634731a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634731e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66347324: 48 63 01 movslq (%rcx),%rax + 66347327: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634732b: 44 89 09 mov %r9d,(%rcx) + 6634732e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66347332: c3 retq + 66347333: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66347337: 45 8b 08 mov (%r8),%r9d + 6634733a: 45 85 c9 test %r9d,%r9d + 6634733d: 75 82 jne 663472c1 + 6634733f: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66347343: 45 8b 00 mov (%r8),%r8d + 66347346: 45 85 c0 test %r8d,%r8d + 66347349: 0f 85 72 ff ff ff jne 663472c1 + 6634734f: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66347353: 45 8b 18 mov (%r8),%r11d + 66347356: 45 85 db test %r11d,%r11d + 66347359: 0f 85 62 ff ff ff jne 663472c1 + 6634735f: 4c 8b 40 30 mov 0x30(%rax),%r8 + 66347363: 45 8b 10 mov (%r8),%r10d + 66347366: 45 85 d2 test %r10d,%r10d + 66347369: 0f 85 52 ff ff ff jne 663472c1 + 6634736f: 48 8b 50 38 mov 0x38(%rax),%rdx + 66347373: 44 8b 0a mov (%rdx),%r9d + 66347376: 31 d2 xor %edx,%edx + 66347378: 45 85 c9 test %r9d,%r9d + 6634737b: 0f 95 c2 setne %dl + 6634737e: e9 3e ff ff ff jmpq 663472c1 + 66347383: 0f 1f 00 nopl (%rax) + 66347386: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634738d: 00 00 00 + +0000000066347390 : + 66347390: 56 push %rsi + 66347391: 53 push %rbx + 66347392: 48 83 ec 28 sub $0x28,%rsp + 66347396: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634739a: 48 8b 50 58 mov 0x58(%rax),%rdx + 6634739e: 48 89 cb mov %rcx,%rbx + 663473a1: 44 8b 0a mov (%rdx),%r9d + 663473a4: 45 85 c9 test %r9d,%r9d + 663473a7: 74 2b je 663473d4 + 663473a9: 31 d2 xor %edx,%edx + 663473ab: 48 8d 72 01 lea 0x1(%rdx),%rsi + 663473af: 48 89 d9 mov %rbx,%rcx + 663473b2: 83 c2 06 add $0x6,%edx + 663473b5: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 663473b9: 44 8b 00 mov (%rax),%r8d + 663473bc: e8 ef 9f ff ff callq 663413b0 + 663473c1: 48 83 fe 05 cmp $0x5,%rsi + 663473c5: 48 89 f2 mov %rsi,%rdx + 663473c8: 0f 84 fa 01 00 00 je 663475c8 + 663473ce: 48 8b 43 10 mov 0x10(%rbx),%rax + 663473d2: eb d7 jmp 663473ab + 663473d4: 48 8b 51 08 mov 0x8(%rcx),%rdx + 663473d8: 4c 8b 15 41 f5 00 00 mov 0xf541(%rip),%r10 # 66356920 + 663473df: 48 8b 0d 4a f5 00 00 mov 0xf54a(%rip),%rcx # 66356930 + 663473e6: 44 8b 42 18 mov 0x18(%rdx),%r8d + 663473ea: 45 85 c0 test %r8d,%r8d + 663473ed: 74 58 je 66347447 + 663473ef: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 663473f3: 4d 8b 49 30 mov 0x30(%r9),%r9 + 663473f7: 45 29 01 sub %r8d,(%r9) + 663473fa: c7 42 18 00 00 00 00 movl $0x0,0x18(%rdx) + 66347401: 45 8b 01 mov (%r9),%r8d + 66347404: 45 31 c9 xor %r9d,%r9d + 66347407: 45 85 c0 test %r8d,%r8d + 6634740a: 4c 8b 40 30 mov 0x30(%rax),%r8 + 6634740e: 41 0f 9f c1 setg %r9b + 66347412: 45 3b 08 cmp (%r8),%r9d + 66347415: 74 30 je 66347447 + 66347417: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634741b: 4d 8b 40 30 mov 0x30(%r8),%r8 + 6634741f: 41 8b 30 mov (%r8),%esi + 66347422: 85 f6 test %esi,%esi + 66347424: 75 21 jne 66347447 + 66347426: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634742a: 4d 8b 48 30 mov 0x30(%r8),%r9 + 6634742e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347432: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66347439: 4c 63 01 movslq (%rcx),%r8 + 6634743c: 45 8d 58 01 lea 0x1(%r8),%r11d + 66347440: 44 89 19 mov %r11d,(%rcx) + 66347443: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66347447: 44 8b 42 1c mov 0x1c(%rdx),%r8d + 6634744b: 45 85 c0 test %r8d,%r8d + 6634744e: 74 59 je 663474a9 + 66347450: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347454: 4d 8b 49 38 mov 0x38(%r9),%r9 + 66347458: 45 29 01 sub %r8d,(%r9) + 6634745b: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 66347462: 45 8b 19 mov (%r9),%r11d + 66347465: 45 31 c9 xor %r9d,%r9d + 66347468: 4c 8b 40 38 mov 0x38(%rax),%r8 + 6634746c: 45 85 db test %r11d,%r11d + 6634746f: 41 0f 9f c1 setg %r9b + 66347473: 45 3b 08 cmp (%r8),%r9d + 66347476: 74 31 je 663474a9 + 66347478: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634747c: 4d 8b 40 38 mov 0x38(%r8),%r8 + 66347480: 45 8b 08 mov (%r8),%r9d + 66347483: 45 85 c9 test %r9d,%r9d + 66347486: 75 21 jne 663474a9 + 66347488: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634748c: 4d 8b 48 38 mov 0x38(%r8),%r9 + 66347490: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347494: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634749b: 4c 63 01 movslq (%rcx),%r8 + 6634749e: 45 8d 58 01 lea 0x1(%r8),%r11d + 663474a2: 44 89 19 mov %r11d,(%rcx) + 663474a5: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 663474a9: 44 8b 42 20 mov 0x20(%rdx),%r8d + 663474ad: 45 85 c0 test %r8d,%r8d + 663474b0: 74 58 je 6634750a + 663474b2: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 663474b6: 4d 8b 49 40 mov 0x40(%r9),%r9 + 663474ba: 45 29 01 sub %r8d,(%r9) + 663474bd: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 663474c4: 45 8b 01 mov (%r9),%r8d + 663474c7: 45 31 c9 xor %r9d,%r9d + 663474ca: 45 85 c0 test %r8d,%r8d + 663474cd: 4c 8b 40 40 mov 0x40(%rax),%r8 + 663474d1: 41 0f 9f c1 setg %r9b + 663474d5: 45 3b 08 cmp (%r8),%r9d + 663474d8: 74 30 je 6634750a + 663474da: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 663474de: 4d 8b 40 40 mov 0x40(%r8),%r8 + 663474e2: 41 8b 30 mov (%r8),%esi + 663474e5: 85 f6 test %esi,%esi + 663474e7: 75 21 jne 6634750a + 663474e9: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 663474ed: 4d 8b 48 40 mov 0x40(%r8),%r9 + 663474f1: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663474f5: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663474fc: 4c 63 01 movslq (%rcx),%r8 + 663474ff: 45 8d 58 01 lea 0x1(%r8),%r11d + 66347503: 44 89 19 mov %r11d,(%rcx) + 66347506: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634750a: 44 8b 42 24 mov 0x24(%rdx),%r8d + 6634750e: 45 85 c0 test %r8d,%r8d + 66347511: 74 59 je 6634756c + 66347513: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347517: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634751b: 45 29 01 sub %r8d,(%r9) + 6634751e: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 66347525: 45 8b 19 mov (%r9),%r11d + 66347528: 45 31 c9 xor %r9d,%r9d + 6634752b: 4c 8b 40 48 mov 0x48(%rax),%r8 + 6634752f: 45 85 db test %r11d,%r11d + 66347532: 41 0f 9f c1 setg %r9b + 66347536: 45 3b 08 cmp (%r8),%r9d + 66347539: 74 31 je 6634756c + 6634753b: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634753f: 4d 8b 40 48 mov 0x48(%r8),%r8 + 66347543: 45 8b 08 mov (%r8),%r9d + 66347546: 45 85 c9 test %r9d,%r9d + 66347549: 75 21 jne 6634756c + 6634754b: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634754f: 4d 8b 48 48 mov 0x48(%r8),%r9 + 66347553: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347557: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634755e: 4c 63 01 movslq (%rcx),%r8 + 66347561: 45 8d 58 01 lea 0x1(%r8),%r11d + 66347565: 44 89 19 mov %r11d,(%rcx) + 66347568: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634756c: 44 8b 42 28 mov 0x28(%rdx),%r8d + 66347570: 45 85 c0 test %r8d,%r8d + 66347573: 74 53 je 663475c8 + 66347575: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347579: 48 8b 40 50 mov 0x50(%rax),%rax + 6634757d: 4d 8b 49 50 mov 0x50(%r9),%r9 + 66347581: 45 29 01 sub %r8d,(%r9) + 66347584: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634758b: 31 d2 xor %edx,%edx + 6634758d: 45 8b 01 mov (%r9),%r8d + 66347590: 45 85 c0 test %r8d,%r8d + 66347593: 0f 9f c2 setg %dl + 66347596: 3b 10 cmp (%rax),%edx + 66347598: 74 2e je 663475c8 + 6634759a: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634759e: 48 8b 40 50 mov 0x50(%rax),%rax + 663475a2: 8b 00 mov (%rax),%eax + 663475a4: 85 c0 test %eax,%eax + 663475a6: 75 20 jne 663475c8 + 663475a8: 48 8b 43 28 mov 0x28(%rbx),%rax + 663475ac: 48 8b 50 50 mov 0x50(%rax),%rdx + 663475b0: 48 8b 42 10 mov 0x10(%rdx),%rax + 663475b4: c7 00 01 00 00 00 movl $0x1,(%rax) + 663475ba: 48 63 01 movslq (%rcx),%rax + 663475bd: 44 8d 40 01 lea 0x1(%rax),%r8d + 663475c1: 44 89 01 mov %r8d,(%rcx) + 663475c4: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 663475c8: 48 83 c4 28 add $0x28,%rsp + 663475cc: 5b pop %rbx + 663475cd: 5e pop %rsi + 663475ce: c3 retq + 663475cf: 90 nop + +00000000663475d0 : + 663475d0: 56 push %rsi + 663475d1: 53 push %rbx + 663475d2: 48 83 ec 28 sub $0x28,%rsp + 663475d6: 48 8b 41 10 mov 0x10(%rcx),%rax + 663475da: 48 8b 50 58 mov 0x58(%rax),%rdx + 663475de: 48 89 cb mov %rcx,%rbx + 663475e1: 44 8b 0a mov (%rdx),%r9d + 663475e4: 45 85 c9 test %r9d,%r9d + 663475e7: 74 2b je 66347614 + 663475e9: 31 d2 xor %edx,%edx + 663475eb: 48 8d 72 01 lea 0x1(%rdx),%rsi + 663475ef: 48 89 d9 mov %rbx,%rcx + 663475f2: 83 c2 06 add $0x6,%edx + 663475f5: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 663475f9: 44 8b 00 mov (%rax),%r8d + 663475fc: e8 af 9d ff ff callq 663413b0 + 66347601: 48 83 fe 05 cmp $0x5,%rsi + 66347605: 48 89 f2 mov %rsi,%rdx + 66347608: 0f 84 fa 01 00 00 je 66347808 + 6634760e: 48 8b 43 10 mov 0x10(%rbx),%rax + 66347612: eb d7 jmp 663475eb + 66347614: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66347618: 4c 8b 15 01 f3 00 00 mov 0xf301(%rip),%r10 # 66356920 + 6634761f: 48 8b 0d 0a f3 00 00 mov 0xf30a(%rip),%rcx # 66356930 + 66347626: 44 8b 42 18 mov 0x18(%rdx),%r8d + 6634762a: 45 85 c0 test %r8d,%r8d + 6634762d: 74 58 je 66347687 + 6634762f: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347633: 4d 8b 49 30 mov 0x30(%r9),%r9 + 66347637: 45 29 01 sub %r8d,(%r9) + 6634763a: c7 42 18 00 00 00 00 movl $0x0,0x18(%rdx) + 66347641: 45 8b 01 mov (%r9),%r8d + 66347644: 45 31 c9 xor %r9d,%r9d + 66347647: 45 85 c0 test %r8d,%r8d + 6634764a: 4c 8b 40 30 mov 0x30(%rax),%r8 + 6634764e: 41 0f 9f c1 setg %r9b + 66347652: 45 3b 08 cmp (%r8),%r9d + 66347655: 74 30 je 66347687 + 66347657: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634765b: 4d 8b 40 30 mov 0x30(%r8),%r8 + 6634765f: 41 8b 30 mov (%r8),%esi + 66347662: 85 f6 test %esi,%esi + 66347664: 75 21 jne 66347687 + 66347666: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634766a: 4d 8b 48 30 mov 0x30(%r8),%r9 + 6634766e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347672: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66347679: 4c 63 01 movslq (%rcx),%r8 + 6634767c: 45 8d 58 01 lea 0x1(%r8),%r11d + 66347680: 44 89 19 mov %r11d,(%rcx) + 66347683: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66347687: 44 8b 42 1c mov 0x1c(%rdx),%r8d + 6634768b: 45 85 c0 test %r8d,%r8d + 6634768e: 74 59 je 663476e9 + 66347690: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347694: 4d 8b 49 38 mov 0x38(%r9),%r9 + 66347698: 45 29 01 sub %r8d,(%r9) + 6634769b: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 663476a2: 45 8b 19 mov (%r9),%r11d + 663476a5: 45 31 c9 xor %r9d,%r9d + 663476a8: 4c 8b 40 38 mov 0x38(%rax),%r8 + 663476ac: 45 85 db test %r11d,%r11d + 663476af: 41 0f 9f c1 setg %r9b + 663476b3: 45 3b 08 cmp (%r8),%r9d + 663476b6: 74 31 je 663476e9 + 663476b8: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 663476bc: 4d 8b 40 38 mov 0x38(%r8),%r8 + 663476c0: 45 8b 08 mov (%r8),%r9d + 663476c3: 45 85 c9 test %r9d,%r9d + 663476c6: 75 21 jne 663476e9 + 663476c8: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 663476cc: 4d 8b 48 38 mov 0x38(%r8),%r9 + 663476d0: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663476d4: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663476db: 4c 63 01 movslq (%rcx),%r8 + 663476de: 45 8d 58 01 lea 0x1(%r8),%r11d + 663476e2: 44 89 19 mov %r11d,(%rcx) + 663476e5: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 663476e9: 44 8b 42 20 mov 0x20(%rdx),%r8d + 663476ed: 45 85 c0 test %r8d,%r8d + 663476f0: 74 58 je 6634774a + 663476f2: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 663476f6: 4d 8b 49 40 mov 0x40(%r9),%r9 + 663476fa: 45 29 01 sub %r8d,(%r9) + 663476fd: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 66347704: 45 8b 01 mov (%r9),%r8d + 66347707: 45 31 c9 xor %r9d,%r9d + 6634770a: 45 85 c0 test %r8d,%r8d + 6634770d: 4c 8b 40 40 mov 0x40(%rax),%r8 + 66347711: 41 0f 9f c1 setg %r9b + 66347715: 45 3b 08 cmp (%r8),%r9d + 66347718: 74 30 je 6634774a + 6634771a: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634771e: 4d 8b 40 40 mov 0x40(%r8),%r8 + 66347722: 41 8b 30 mov (%r8),%esi + 66347725: 85 f6 test %esi,%esi + 66347727: 75 21 jne 6634774a + 66347729: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634772d: 4d 8b 48 40 mov 0x40(%r8),%r9 + 66347731: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347735: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634773c: 4c 63 01 movslq (%rcx),%r8 + 6634773f: 45 8d 58 01 lea 0x1(%r8),%r11d + 66347743: 44 89 19 mov %r11d,(%rcx) + 66347746: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634774a: 44 8b 42 24 mov 0x24(%rdx),%r8d + 6634774e: 45 85 c0 test %r8d,%r8d + 66347751: 74 59 je 663477ac + 66347753: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347757: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634775b: 45 29 01 sub %r8d,(%r9) + 6634775e: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 66347765: 45 8b 19 mov (%r9),%r11d + 66347768: 45 31 c9 xor %r9d,%r9d + 6634776b: 4c 8b 40 48 mov 0x48(%rax),%r8 + 6634776f: 45 85 db test %r11d,%r11d + 66347772: 41 0f 9f c1 setg %r9b + 66347776: 45 3b 08 cmp (%r8),%r9d + 66347779: 74 31 je 663477ac + 6634777b: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634777f: 4d 8b 40 48 mov 0x48(%r8),%r8 + 66347783: 45 8b 08 mov (%r8),%r9d + 66347786: 45 85 c9 test %r9d,%r9d + 66347789: 75 21 jne 663477ac + 6634778b: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634778f: 4d 8b 48 48 mov 0x48(%r8),%r9 + 66347793: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347797: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634779e: 4c 63 01 movslq (%rcx),%r8 + 663477a1: 45 8d 58 01 lea 0x1(%r8),%r11d + 663477a5: 44 89 19 mov %r11d,(%rcx) + 663477a8: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 663477ac: 44 8b 42 28 mov 0x28(%rdx),%r8d + 663477b0: 45 85 c0 test %r8d,%r8d + 663477b3: 74 53 je 66347808 + 663477b5: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 663477b9: 48 8b 40 50 mov 0x50(%rax),%rax + 663477bd: 4d 8b 49 50 mov 0x50(%r9),%r9 + 663477c1: 45 29 01 sub %r8d,(%r9) + 663477c4: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 663477cb: 31 d2 xor %edx,%edx + 663477cd: 45 8b 01 mov (%r9),%r8d + 663477d0: 45 85 c0 test %r8d,%r8d + 663477d3: 0f 9f c2 setg %dl + 663477d6: 3b 10 cmp (%rax),%edx + 663477d8: 74 2e je 66347808 + 663477da: 48 8b 43 20 mov 0x20(%rbx),%rax + 663477de: 48 8b 40 50 mov 0x50(%rax),%rax + 663477e2: 8b 00 mov (%rax),%eax + 663477e4: 85 c0 test %eax,%eax + 663477e6: 75 20 jne 66347808 + 663477e8: 48 8b 43 28 mov 0x28(%rbx),%rax + 663477ec: 48 8b 50 50 mov 0x50(%rax),%rdx + 663477f0: 48 8b 42 10 mov 0x10(%rdx),%rax + 663477f4: c7 00 01 00 00 00 movl $0x1,(%rax) + 663477fa: 48 63 01 movslq (%rcx),%rax + 663477fd: 44 8d 40 01 lea 0x1(%rax),%r8d + 66347801: 44 89 01 mov %r8d,(%rcx) + 66347804: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66347808: 48 83 c4 28 add $0x28,%rsp + 6634780c: 5b pop %rbx + 6634780d: 5e pop %rsi + 6634780e: c3 retq + 6634780f: 90 nop + +0000000066347810 : + 66347810: 56 push %rsi + 66347811: 53 push %rbx + 66347812: 48 83 ec 28 sub $0x28,%rsp + 66347816: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634781a: 48 8b 50 48 mov 0x48(%rax),%rdx + 6634781e: 48 89 cb mov %rcx,%rbx + 66347821: 8b 32 mov (%rdx),%esi + 66347823: 85 f6 test %esi,%esi + 66347825: 74 2b je 66347852 + 66347827: 31 d2 xor %edx,%edx + 66347829: 48 8d 72 01 lea 0x1(%rdx),%rsi + 6634782d: 48 89 d9 mov %rbx,%rcx + 66347830: 83 c2 05 add $0x5,%edx + 66347833: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 66347837: 44 8b 00 mov (%rax),%r8d + 6634783a: e8 71 9b ff ff callq 663413b0 + 6634783f: 48 83 fe 04 cmp $0x4,%rsi + 66347843: 48 89 f2 mov %rsi,%rdx + 66347846: 0f 84 99 01 00 00 je 663479e5 + 6634784c: 48 8b 43 10 mov 0x10(%rbx),%rax + 66347850: eb d7 jmp 66347829 + 66347852: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66347856: 4c 8b 15 c3 f0 00 00 mov 0xf0c3(%rip),%r10 # 66356920 + 6634785d: 48 8b 0d cc f0 00 00 mov 0xf0cc(%rip),%rcx # 66356930 + 66347864: 44 8b 42 14 mov 0x14(%rdx),%r8d + 66347868: 45 85 c0 test %r8d,%r8d + 6634786b: 74 59 je 663478c6 + 6634786d: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347871: 4d 8b 49 28 mov 0x28(%r9),%r9 + 66347875: 45 29 01 sub %r8d,(%r9) + 66347878: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) + 6634787f: 45 8b 19 mov (%r9),%r11d + 66347882: 45 31 c9 xor %r9d,%r9d + 66347885: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66347889: 45 85 db test %r11d,%r11d + 6634788c: 41 0f 9f c1 setg %r9b + 66347890: 45 3b 08 cmp (%r8),%r9d + 66347893: 74 31 je 663478c6 + 66347895: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66347899: 4d 8b 40 28 mov 0x28(%r8),%r8 + 6634789d: 45 8b 08 mov (%r8),%r9d + 663478a0: 45 85 c9 test %r9d,%r9d + 663478a3: 75 21 jne 663478c6 + 663478a5: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 663478a9: 4d 8b 48 28 mov 0x28(%r8),%r9 + 663478ad: 4d 8b 41 10 mov 0x10(%r9),%r8 + 663478b1: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 663478b8: 4c 63 01 movslq (%rcx),%r8 + 663478bb: 45 8d 58 01 lea 0x1(%r8),%r11d + 663478bf: 44 89 19 mov %r11d,(%rcx) + 663478c2: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 663478c6: 44 8b 42 18 mov 0x18(%rdx),%r8d + 663478ca: 45 85 c0 test %r8d,%r8d + 663478cd: 74 58 je 66347927 + 663478cf: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 663478d3: 4d 8b 49 30 mov 0x30(%r9),%r9 + 663478d7: 45 29 01 sub %r8d,(%r9) + 663478da: c7 42 18 00 00 00 00 movl $0x0,0x18(%rdx) + 663478e1: 45 8b 01 mov (%r9),%r8d + 663478e4: 45 31 c9 xor %r9d,%r9d + 663478e7: 45 85 c0 test %r8d,%r8d + 663478ea: 4c 8b 40 30 mov 0x30(%rax),%r8 + 663478ee: 41 0f 9f c1 setg %r9b + 663478f2: 45 3b 08 cmp (%r8),%r9d + 663478f5: 74 30 je 66347927 + 663478f7: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 663478fb: 4d 8b 40 30 mov 0x30(%r8),%r8 + 663478ff: 41 8b 30 mov (%r8),%esi + 66347902: 85 f6 test %esi,%esi + 66347904: 75 21 jne 66347927 + 66347906: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634790a: 4d 8b 48 30 mov 0x30(%r8),%r9 + 6634790e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347912: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66347919: 4c 63 01 movslq (%rcx),%r8 + 6634791c: 45 8d 58 01 lea 0x1(%r8),%r11d + 66347920: 44 89 19 mov %r11d,(%rcx) + 66347923: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66347927: 44 8b 42 1c mov 0x1c(%rdx),%r8d + 6634792b: 45 85 c0 test %r8d,%r8d + 6634792e: 74 59 je 66347989 + 66347930: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347934: 4d 8b 49 38 mov 0x38(%r9),%r9 + 66347938: 45 29 01 sub %r8d,(%r9) + 6634793b: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 66347942: 45 8b 19 mov (%r9),%r11d + 66347945: 45 31 c9 xor %r9d,%r9d + 66347948: 4c 8b 40 38 mov 0x38(%rax),%r8 + 6634794c: 45 85 db test %r11d,%r11d + 6634794f: 41 0f 9f c1 setg %r9b + 66347953: 45 3b 08 cmp (%r8),%r9d + 66347956: 74 31 je 66347989 + 66347958: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634795c: 4d 8b 40 38 mov 0x38(%r8),%r8 + 66347960: 45 8b 08 mov (%r8),%r9d + 66347963: 45 85 c9 test %r9d,%r9d + 66347966: 75 21 jne 66347989 + 66347968: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634796c: 4d 8b 48 38 mov 0x38(%r8),%r9 + 66347970: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347974: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634797b: 4c 63 01 movslq (%rcx),%r8 + 6634797e: 45 8d 58 01 lea 0x1(%r8),%r11d + 66347982: 44 89 19 mov %r11d,(%rcx) + 66347985: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66347989: 44 8b 42 20 mov 0x20(%rdx),%r8d + 6634798d: 45 85 c0 test %r8d,%r8d + 66347990: 74 53 je 663479e5 + 66347992: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347996: 48 8b 40 40 mov 0x40(%rax),%rax + 6634799a: 4d 8b 49 40 mov 0x40(%r9),%r9 + 6634799e: 45 29 01 sub %r8d,(%r9) + 663479a1: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 663479a8: 31 d2 xor %edx,%edx + 663479aa: 45 8b 01 mov (%r9),%r8d + 663479ad: 45 85 c0 test %r8d,%r8d + 663479b0: 0f 9f c2 setg %dl + 663479b3: 3b 10 cmp (%rax),%edx + 663479b5: 74 2e je 663479e5 + 663479b7: 48 8b 43 20 mov 0x20(%rbx),%rax + 663479bb: 48 8b 40 40 mov 0x40(%rax),%rax + 663479bf: 8b 00 mov (%rax),%eax + 663479c1: 85 c0 test %eax,%eax + 663479c3: 75 20 jne 663479e5 + 663479c5: 48 8b 43 28 mov 0x28(%rbx),%rax + 663479c9: 48 8b 50 40 mov 0x40(%rax),%rdx + 663479cd: 48 8b 42 10 mov 0x10(%rdx),%rax + 663479d1: c7 00 01 00 00 00 movl $0x1,(%rax) + 663479d7: 48 63 01 movslq (%rcx),%rax + 663479da: 44 8d 40 01 lea 0x1(%rax),%r8d + 663479de: 44 89 01 mov %r8d,(%rcx) + 663479e1: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 663479e5: 48 83 c4 28 add $0x28,%rsp + 663479e9: 5b pop %rbx + 663479ea: 5e pop %rsi + 663479eb: c3 retq + 663479ec: 0f 1f 40 00 nopl 0x0(%rax) + +00000000663479f0 : + 663479f0: 56 push %rsi + 663479f1: 53 push %rbx + 663479f2: 48 83 ec 28 sub $0x28,%rsp + 663479f6: 48 8b 41 10 mov 0x10(%rcx),%rax + 663479fa: 48 8b 50 48 mov 0x48(%rax),%rdx + 663479fe: 48 89 cb mov %rcx,%rbx + 66347a01: 8b 32 mov (%rdx),%esi + 66347a03: 85 f6 test %esi,%esi + 66347a05: 74 2b je 66347a32 + 66347a07: 31 d2 xor %edx,%edx + 66347a09: 48 8d 72 01 lea 0x1(%rdx),%rsi + 66347a0d: 48 89 d9 mov %rbx,%rcx + 66347a10: 83 c2 05 add $0x5,%edx + 66347a13: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 66347a17: 44 8b 00 mov (%rax),%r8d + 66347a1a: e8 91 99 ff ff callq 663413b0 + 66347a1f: 48 83 fe 04 cmp $0x4,%rsi + 66347a23: 48 89 f2 mov %rsi,%rdx + 66347a26: 0f 84 99 01 00 00 je 66347bc5 + 66347a2c: 48 8b 43 10 mov 0x10(%rbx),%rax + 66347a30: eb d7 jmp 66347a09 + 66347a32: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66347a36: 4c 8b 15 e3 ee 00 00 mov 0xeee3(%rip),%r10 # 66356920 + 66347a3d: 48 8b 0d ec ee 00 00 mov 0xeeec(%rip),%rcx # 66356930 + 66347a44: 44 8b 42 14 mov 0x14(%rdx),%r8d + 66347a48: 45 85 c0 test %r8d,%r8d + 66347a4b: 74 59 je 66347aa6 + 66347a4d: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347a51: 4d 8b 49 28 mov 0x28(%r9),%r9 + 66347a55: 45 29 01 sub %r8d,(%r9) + 66347a58: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) + 66347a5f: 45 8b 19 mov (%r9),%r11d + 66347a62: 45 31 c9 xor %r9d,%r9d + 66347a65: 4c 8b 40 28 mov 0x28(%rax),%r8 66347a69: 45 85 db test %r11d,%r11d - 66347a6c: 74 32 je 66347aa0 - 66347a6e: 44 8b 50 28 mov 0x28(%rax),%r10d - 66347a72: 45 85 d2 test %r10d,%r10d - 66347a75: 0f 84 e4 fe ff ff je 6634795f - 66347a7b: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347a7f: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 66347a83: 45 29 13 sub %r10d,(%r11) - 66347a86: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66347a8d: 45 8b 13 mov (%r11),%r10d - 66347a90: 45 85 d2 test %r10d,%r10d - 66347a93: e9 89 fe ff ff jmpq 66347921 - 66347a98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66347a9f: 00 - 66347aa0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347aa4: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66347aa8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347aac: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347ab3: 4d 63 10 movslq (%r8),%r10 - 66347ab6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347aba: 41 89 18 mov %ebx,(%r8) - 66347abd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347ac1: eb ab jmp 66347a6e - 66347ac3: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347ac7: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66347acb: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347acf: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347ad6: 4d 63 10 movslq (%r8),%r10 - 66347ad9: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347add: 41 89 18 mov %ebx,(%r8) - 66347ae0: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347ae4: e9 45 ff ff ff jmpq 66347a2e - 66347ae9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66347af0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347af4: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66347af8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347afc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347b03: 4d 63 10 movslq (%r8),%r10 - 66347b06: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347b0a: 41 89 18 mov %ebx,(%r8) - 66347b0d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347b11: e9 d4 fe ff ff jmpq 663479ea - 66347b16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347b1d: 00 00 00 - 66347b20: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347b24: 4d 8b 5a 30 mov 0x30(%r10),%r11 - 66347b28: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347b2c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347b33: 4d 63 10 movslq (%r8),%r10 - 66347b36: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347b3a: 41 89 18 mov %ebx,(%r8) - 66347b3d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347b41: e9 60 fe ff ff jmpq 663479a6 - 66347b46: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347b4d: 00 00 00 - 66347b50: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347b54: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66347b58: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347b5c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347b63: 4d 63 10 movslq (%r8),%r10 - 66347b66: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347b6a: 41 89 18 mov %ebx,(%r8) - 66347b6d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347b71: e9 81 fd ff ff jmpq 663478f7 - 66347b76: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347b7d: 00 00 00 - 66347b80: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347b84: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66347b88: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347b8c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347b93: 4d 63 10 movslq (%r8),%r10 - 66347b96: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347b9a: 41 89 18 mov %ebx,(%r8) - 66347b9d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347ba1: e9 06 fd ff ff jmpq 663478ac - 66347ba6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347bad: 00 00 00 - 66347bb0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347bb4: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66347bb8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347bbc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347bc3: 4d 63 10 movslq (%r8),%r10 - 66347bc6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347bca: 41 89 18 mov %ebx,(%r8) - 66347bcd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347bd1: e9 8a fc ff ff jmpq 66347860 - 66347bd6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347bdd: 00 00 00 - 66347be0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347be4: 4d 8b 5a 30 mov 0x30(%r10),%r11 - 66347be8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347bec: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347bf3: 4d 63 10 movslq (%r8),%r10 - 66347bf6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347bfa: 41 89 18 mov %ebx,(%r8) - 66347bfd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347c01: e9 0d fc ff ff jmpq 66347813 - 66347c06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347c0d: 00 00 00 + 66347a6c: 41 0f 9f c1 setg %r9b + 66347a70: 45 3b 08 cmp (%r8),%r9d + 66347a73: 74 31 je 66347aa6 + 66347a75: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66347a79: 4d 8b 40 28 mov 0x28(%r8),%r8 + 66347a7d: 45 8b 08 mov (%r8),%r9d + 66347a80: 45 85 c9 test %r9d,%r9d + 66347a83: 75 21 jne 66347aa6 + 66347a85: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66347a89: 4d 8b 48 28 mov 0x28(%r8),%r9 + 66347a8d: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347a91: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66347a98: 4c 63 01 movslq (%rcx),%r8 + 66347a9b: 45 8d 58 01 lea 0x1(%r8),%r11d + 66347a9f: 44 89 19 mov %r11d,(%rcx) + 66347aa2: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66347aa6: 44 8b 42 18 mov 0x18(%rdx),%r8d + 66347aaa: 45 85 c0 test %r8d,%r8d + 66347aad: 74 58 je 66347b07 + 66347aaf: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347ab3: 4d 8b 49 30 mov 0x30(%r9),%r9 + 66347ab7: 45 29 01 sub %r8d,(%r9) + 66347aba: c7 42 18 00 00 00 00 movl $0x0,0x18(%rdx) + 66347ac1: 45 8b 01 mov (%r9),%r8d + 66347ac4: 45 31 c9 xor %r9d,%r9d + 66347ac7: 45 85 c0 test %r8d,%r8d + 66347aca: 4c 8b 40 30 mov 0x30(%rax),%r8 + 66347ace: 41 0f 9f c1 setg %r9b + 66347ad2: 45 3b 08 cmp (%r8),%r9d + 66347ad5: 74 30 je 66347b07 + 66347ad7: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66347adb: 4d 8b 40 30 mov 0x30(%r8),%r8 + 66347adf: 41 8b 30 mov (%r8),%esi + 66347ae2: 85 f6 test %esi,%esi + 66347ae4: 75 21 jne 66347b07 + 66347ae6: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66347aea: 4d 8b 48 30 mov 0x30(%r8),%r9 + 66347aee: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347af2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66347af9: 4c 63 01 movslq (%rcx),%r8 + 66347afc: 45 8d 58 01 lea 0x1(%r8),%r11d + 66347b00: 44 89 19 mov %r11d,(%rcx) + 66347b03: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66347b07: 44 8b 42 1c mov 0x1c(%rdx),%r8d + 66347b0b: 45 85 c0 test %r8d,%r8d + 66347b0e: 74 59 je 66347b69 + 66347b10: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347b14: 4d 8b 49 38 mov 0x38(%r9),%r9 + 66347b18: 45 29 01 sub %r8d,(%r9) + 66347b1b: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 66347b22: 45 8b 19 mov (%r9),%r11d + 66347b25: 45 31 c9 xor %r9d,%r9d + 66347b28: 4c 8b 40 38 mov 0x38(%rax),%r8 + 66347b2c: 45 85 db test %r11d,%r11d + 66347b2f: 41 0f 9f c1 setg %r9b + 66347b33: 45 3b 08 cmp (%r8),%r9d + 66347b36: 74 31 je 66347b69 + 66347b38: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 66347b3c: 4d 8b 40 38 mov 0x38(%r8),%r8 + 66347b40: 45 8b 08 mov (%r8),%r9d + 66347b43: 45 85 c9 test %r9d,%r9d + 66347b46: 75 21 jne 66347b69 + 66347b48: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 66347b4c: 4d 8b 48 38 mov 0x38(%r8),%r9 + 66347b50: 4d 8b 41 10 mov 0x10(%r9),%r8 + 66347b54: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 66347b5b: 4c 63 01 movslq (%rcx),%r8 + 66347b5e: 45 8d 58 01 lea 0x1(%r8),%r11d + 66347b62: 44 89 19 mov %r11d,(%rcx) + 66347b65: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 66347b69: 44 8b 42 20 mov 0x20(%rdx),%r8d + 66347b6d: 45 85 c0 test %r8d,%r8d + 66347b70: 74 53 je 66347bc5 + 66347b72: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 66347b76: 48 8b 40 40 mov 0x40(%rax),%rax + 66347b7a: 4d 8b 49 40 mov 0x40(%r9),%r9 + 66347b7e: 45 29 01 sub %r8d,(%r9) + 66347b81: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 66347b88: 31 d2 xor %edx,%edx + 66347b8a: 45 8b 01 mov (%r9),%r8d + 66347b8d: 45 85 c0 test %r8d,%r8d + 66347b90: 0f 9f c2 setg %dl + 66347b93: 3b 10 cmp (%rax),%edx + 66347b95: 74 2e je 66347bc5 + 66347b97: 48 8b 43 20 mov 0x20(%rbx),%rax + 66347b9b: 48 8b 40 40 mov 0x40(%rax),%rax + 66347b9f: 8b 00 mov (%rax),%eax + 66347ba1: 85 c0 test %eax,%eax + 66347ba3: 75 20 jne 66347bc5 + 66347ba5: 48 8b 43 28 mov 0x28(%rbx),%rax + 66347ba9: 48 8b 50 40 mov 0x40(%rax),%rdx + 66347bad: 48 8b 42 10 mov 0x10(%rdx),%rax + 66347bb1: c7 00 01 00 00 00 movl $0x1,(%rax) + 66347bb7: 48 63 01 movslq (%rcx),%rax + 66347bba: 44 8d 40 01 lea 0x1(%rax),%r8d + 66347bbe: 44 89 01 mov %r8d,(%rcx) + 66347bc1: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66347bc5: 48 83 c4 28 add $0x28,%rsp + 66347bc9: 5b pop %rbx + 66347bca: 5e pop %rsi + 66347bcb: c3 retq + 66347bcc: 0f 1f 40 00 nopl 0x0(%rax) -0000000066347c10 : - 66347c10: 56 push %rsi - 66347c11: 53 push %rbx - 66347c12: 4c 8b 0d 07 fd 00 00 mov 0xfd07(%rip),%r9 # 66357920 - 66347c19: 4c 8b 05 10 fd 00 00 mov 0xfd10(%rip),%r8 # 66357930 - 66347c20: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66347c24: 48 8b 41 08 mov 0x8(%rcx),%rax - 66347c28: 4c 8b 52 58 mov 0x58(%rdx),%r10 - 66347c2c: 41 8b 32 mov (%r10),%esi - 66347c2f: 85 f6 test %esi,%esi - 66347c31: 0f 84 9b 01 00 00 je 66347dd2 - 66347c37: 4c 8b 52 08 mov 0x8(%rdx),%r10 - 66347c3b: 44 8b 58 18 mov 0x18(%rax),%r11d - 66347c3f: 45 8b 12 mov (%r10),%r10d - 66347c42: 45 39 d3 cmp %r10d,%r11d - 66347c45: 74 3c je 66347c83 - 66347c47: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347c4b: 44 89 d6 mov %r10d,%esi - 66347c4e: 44 29 de sub %r11d,%esi - 66347c51: 45 31 db xor %r11d,%r11d - 66347c54: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 66347c58: 01 33 add %esi,(%rbx) - 66347c5a: 44 89 50 18 mov %r10d,0x18(%rax) - 66347c5e: 8b 1b mov (%rbx),%ebx - 66347c60: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 66347c64: 85 db test %ebx,%ebx - 66347c66: 41 0f 9f c3 setg %r11b - 66347c6a: 45 3b 1a cmp (%r10),%r11d - 66347c6d: 74 14 je 66347c83 - 66347c6f: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347c73: 4d 8b 52 30 mov 0x30(%r10),%r10 - 66347c77: 45 8b 1a mov (%r10),%r11d - 66347c7a: 45 85 db test %r11d,%r11d - 66347c7d: 0f 84 cd 03 00 00 je 66348050 - 66347c83: 4c 8b 52 10 mov 0x10(%rdx),%r10 - 66347c87: 44 8b 58 1c mov 0x1c(%rax),%r11d - 66347c8b: 45 8b 12 mov (%r10),%r10d - 66347c8e: 45 39 da cmp %r11d,%r10d - 66347c91: 74 3d je 66347cd0 - 66347c93: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347c97: 44 89 d6 mov %r10d,%esi - 66347c9a: 44 29 de sub %r11d,%esi - 66347c9d: 45 31 db xor %r11d,%r11d - 66347ca0: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 66347ca4: 01 33 add %esi,(%rbx) - 66347ca6: 44 89 50 1c mov %r10d,0x1c(%rax) - 66347caa: 44 8b 13 mov (%rbx),%r10d - 66347cad: 45 85 d2 test %r10d,%r10d - 66347cb0: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66347cb4: 41 0f 9f c3 setg %r11b - 66347cb8: 45 3b 1a cmp (%r10),%r11d - 66347cbb: 74 13 je 66347cd0 - 66347cbd: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347cc1: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66347cc5: 41 8b 32 mov (%r10),%esi - 66347cc8: 85 f6 test %esi,%esi - 66347cca: 0f 84 50 03 00 00 je 66348020 - 66347cd0: 4c 8b 52 18 mov 0x18(%rdx),%r10 - 66347cd4: 44 8b 58 20 mov 0x20(%rax),%r11d - 66347cd8: 45 8b 12 mov (%r10),%r10d - 66347cdb: 45 39 da cmp %r11d,%r10d - 66347cde: 74 3c je 66347d1c - 66347ce0: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347ce4: 44 89 d6 mov %r10d,%esi - 66347ce7: 44 29 de sub %r11d,%esi - 66347cea: 45 31 db xor %r11d,%r11d - 66347ced: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66347cf1: 01 33 add %esi,(%rbx) - 66347cf3: 44 89 50 20 mov %r10d,0x20(%rax) - 66347cf7: 8b 1b mov (%rbx),%ebx - 66347cf9: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66347cfd: 85 db test %ebx,%ebx - 66347cff: 41 0f 9f c3 setg %r11b - 66347d03: 45 3b 1a cmp (%r10),%r11d - 66347d06: 74 14 je 66347d1c - 66347d08: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347d0c: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66347d10: 45 8b 12 mov (%r10),%r10d - 66347d13: 45 85 d2 test %r10d,%r10d - 66347d16: 0f 84 d4 02 00 00 je 66347ff0 - 66347d1c: 4c 8b 52 20 mov 0x20(%rdx),%r10 - 66347d20: 44 8b 58 24 mov 0x24(%rax),%r11d - 66347d24: 45 8b 12 mov (%r10),%r10d - 66347d27: 45 39 da cmp %r11d,%r10d - 66347d2a: 74 3b je 66347d67 - 66347d2c: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347d30: 44 89 d6 mov %r10d,%esi - 66347d33: 44 29 de sub %r11d,%esi - 66347d36: 45 31 db xor %r11d,%r11d - 66347d39: 48 8b 5b 48 mov 0x48(%rbx),%rbx - 66347d3d: 01 33 add %esi,(%rbx) - 66347d3f: 44 89 50 24 mov %r10d,0x24(%rax) - 66347d43: 8b 33 mov (%rbx),%esi - 66347d45: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66347d49: 85 f6 test %esi,%esi - 66347d4b: 41 0f 9f c3 setg %r11b - 66347d4f: 45 3b 1a cmp (%r10),%r11d - 66347d52: 74 13 je 66347d67 - 66347d54: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347d58: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66347d5c: 41 8b 1a mov (%r10),%ebx - 66347d5f: 85 db test %ebx,%ebx - 66347d61: 0f 84 59 02 00 00 je 66347fc0 - 66347d67: 4c 8b 52 28 mov 0x28(%rdx),%r10 - 66347d6b: 44 8b 58 28 mov 0x28(%rax),%r11d - 66347d6f: 45 8b 12 mov (%r10),%r10d - 66347d72: 45 39 da cmp %r11d,%r10d - 66347d75: 74 58 je 66347dcf - 66347d77: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66347d7b: 44 89 d6 mov %r10d,%esi - 66347d7e: 44 29 de sub %r11d,%esi - 66347d81: 48 8b 5b 50 mov 0x50(%rbx),%rbx - 66347d85: 01 33 add %esi,(%rbx) - 66347d87: 44 89 50 28 mov %r10d,0x28(%rax) - 66347d8b: 44 8b 1b mov (%rbx),%r11d - 66347d8e: 45 85 db test %r11d,%r11d - 66347d91: 48 8b 42 50 mov 0x50(%rdx),%rax - 66347d95: 41 0f 9f c2 setg %r10b - 66347d99: 45 0f b6 d2 movzbl %r10b,%r10d - 66347d9d: 44 3b 10 cmp (%rax),%r10d - 66347da0: 74 2d je 66347dcf - 66347da2: 48 8b 41 20 mov 0x20(%rcx),%rax - 66347da6: 48 8b 40 50 mov 0x50(%rax),%rax - 66347daa: 8b 00 mov (%rax),%eax - 66347dac: 85 c0 test %eax,%eax - 66347dae: 75 1f jne 66347dcf - 66347db0: 48 8b 41 28 mov 0x28(%rcx),%rax - 66347db4: 48 8b 50 50 mov 0x50(%rax),%rdx - 66347db8: 48 8b 42 10 mov 0x10(%rdx),%rax - 66347dbc: c7 00 01 00 00 00 movl $0x1,(%rax) - 66347dc2: 49 63 00 movslq (%r8),%rax - 66347dc5: 8d 48 01 lea 0x1(%rax),%ecx - 66347dc8: 41 89 08 mov %ecx,(%r8) - 66347dcb: 49 89 14 c1 mov %rdx,(%r9,%rax,8) - 66347dcf: 5b pop %rbx - 66347dd0: 5e pop %rsi - 66347dd1: c3 retq - 66347dd2: 44 8b 50 18 mov 0x18(%rax),%r10d - 66347dd6: 45 85 d2 test %r10d,%r10d - 66347dd9: 74 3b je 66347e16 - 66347ddb: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347ddf: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66347de3: 45 29 13 sub %r10d,(%r11) - 66347de6: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 66347ded: 45 8b 13 mov (%r11),%r10d - 66347df0: 45 31 db xor %r11d,%r11d - 66347df3: 45 85 d2 test %r10d,%r10d - 66347df6: 4c 8b 52 30 mov 0x30(%rdx),%r10 - 66347dfa: 41 0f 9f c3 setg %r11b - 66347dfe: 45 3b 1a cmp (%r10),%r11d - 66347e01: 74 13 je 66347e16 - 66347e03: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347e07: 4d 8b 52 30 mov 0x30(%r10),%r10 - 66347e0b: 41 8b 32 mov (%r10),%esi - 66347e0e: 85 f6 test %esi,%esi - 66347e10: 0f 84 7a 01 00 00 je 66347f90 - 66347e16: 44 8b 50 1c mov 0x1c(%rax),%r10d - 66347e1a: 45 85 d2 test %r10d,%r10d - 66347e1d: 74 3b je 66347e5a - 66347e1f: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347e23: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66347e27: 45 29 13 sub %r10d,(%r11) - 66347e2a: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 66347e31: 41 8b 1b mov (%r11),%ebx - 66347e34: 45 31 db xor %r11d,%r11d - 66347e37: 4c 8b 52 38 mov 0x38(%rdx),%r10 - 66347e3b: 85 db test %ebx,%ebx - 66347e3d: 41 0f 9f c3 setg %r11b - 66347e41: 45 3b 1a cmp (%r10),%r11d - 66347e44: 74 14 je 66347e5a - 66347e46: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347e4a: 4d 8b 52 38 mov 0x38(%r10),%r10 - 66347e4e: 45 8b 1a mov (%r10),%r11d - 66347e51: 45 85 db test %r11d,%r11d - 66347e54: 0f 84 06 01 00 00 je 66347f60 - 66347e5a: 44 8b 50 20 mov 0x20(%rax),%r10d - 66347e5e: 45 85 d2 test %r10d,%r10d - 66347e61: 74 3b je 66347e9e - 66347e63: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347e67: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66347e6b: 45 29 13 sub %r10d,(%r11) - 66347e6e: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 66347e75: 45 8b 13 mov (%r11),%r10d - 66347e78: 45 31 db xor %r11d,%r11d - 66347e7b: 45 85 d2 test %r10d,%r10d - 66347e7e: 4c 8b 52 40 mov 0x40(%rdx),%r10 - 66347e82: 41 0f 9f c3 setg %r11b - 66347e86: 45 3b 1a cmp (%r10),%r11d - 66347e89: 74 13 je 66347e9e - 66347e8b: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347e8f: 4d 8b 52 40 mov 0x40(%r10),%r10 - 66347e93: 41 8b 32 mov (%r10),%esi - 66347e96: 85 f6 test %esi,%esi - 66347e98: 0f 84 95 00 00 00 je 66347f33 - 66347e9e: 44 8b 50 24 mov 0x24(%rax),%r10d - 66347ea2: 45 85 d2 test %r10d,%r10d - 66347ea5: 74 37 je 66347ede - 66347ea7: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347eab: 4d 8b 5b 48 mov 0x48(%r11),%r11 - 66347eaf: 45 29 13 sub %r10d,(%r11) - 66347eb2: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 66347eb9: 41 8b 1b mov (%r11),%ebx - 66347ebc: 45 31 db xor %r11d,%r11d - 66347ebf: 4c 8b 52 48 mov 0x48(%rdx),%r10 - 66347ec3: 85 db test %ebx,%ebx - 66347ec5: 41 0f 9f c3 setg %r11b - 66347ec9: 45 3b 1a cmp (%r10),%r11d - 66347ecc: 74 10 je 66347ede - 66347ece: 4c 8b 51 20 mov 0x20(%rcx),%r10 - 66347ed2: 4d 8b 52 48 mov 0x48(%r10),%r10 - 66347ed6: 45 8b 1a mov (%r10),%r11d - 66347ed9: 45 85 db test %r11d,%r11d - 66347edc: 74 32 je 66347f10 - 66347ede: 44 8b 50 28 mov 0x28(%rax),%r10d - 66347ee2: 45 85 d2 test %r10d,%r10d - 66347ee5: 0f 84 e4 fe ff ff je 66347dcf - 66347eeb: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66347eef: 4d 8b 5b 50 mov 0x50(%r11),%r11 - 66347ef3: 45 29 13 sub %r10d,(%r11) - 66347ef6: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 66347efd: 45 8b 13 mov (%r11),%r10d - 66347f00: 45 85 d2 test %r10d,%r10d - 66347f03: e9 89 fe ff ff jmpq 66347d91 - 66347f08: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66347f0f: 00 - 66347f10: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347f14: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66347f18: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347f1c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347f23: 4d 63 10 movslq (%r8),%r10 - 66347f26: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347f2a: 41 89 18 mov %ebx,(%r8) - 66347f2d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347f31: eb ab jmp 66347ede - 66347f33: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347f37: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66347f3b: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347f3f: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347f46: 4d 63 10 movslq (%r8),%r10 - 66347f49: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347f4d: 41 89 18 mov %ebx,(%r8) - 66347f50: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347f54: e9 45 ff ff ff jmpq 66347e9e - 66347f59: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66347f60: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347f64: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66347f68: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347f6c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347f73: 4d 63 10 movslq (%r8),%r10 - 66347f76: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347f7a: 41 89 18 mov %ebx,(%r8) - 66347f7d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347f81: e9 d4 fe ff ff jmpq 66347e5a - 66347f86: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347f8d: 00 00 00 - 66347f90: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347f94: 4d 8b 5a 30 mov 0x30(%r10),%r11 - 66347f98: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347f9c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347fa3: 4d 63 10 movslq (%r8),%r10 - 66347fa6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347faa: 41 89 18 mov %ebx,(%r8) - 66347fad: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347fb1: e9 60 fe ff ff jmpq 66347e16 - 66347fb6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347fbd: 00 00 00 - 66347fc0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347fc4: 4d 8b 5a 48 mov 0x48(%r10),%r11 - 66347fc8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347fcc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66347fd3: 4d 63 10 movslq (%r8),%r10 - 66347fd6: 41 8d 5a 01 lea 0x1(%r10),%ebx - 66347fda: 41 89 18 mov %ebx,(%r8) - 66347fdd: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66347fe1: e9 81 fd ff ff jmpq 66347d67 - 66347fe6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66347fed: 00 00 00 - 66347ff0: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66347ff4: 4d 8b 5a 40 mov 0x40(%r10),%r11 - 66347ff8: 4d 8b 53 10 mov 0x10(%r11),%r10 - 66347ffc: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66348003: 4d 63 10 movslq (%r8),%r10 - 66348006: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634800a: 41 89 18 mov %ebx,(%r8) - 6634800d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66348011: e9 06 fd ff ff jmpq 66347d1c - 66348016: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634801d: 00 00 00 - 66348020: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66348024: 4d 8b 5a 38 mov 0x38(%r10),%r11 - 66348028: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634802c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66348033: 4d 63 10 movslq (%r8),%r10 - 66348036: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634803a: 41 89 18 mov %ebx,(%r8) - 6634803d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66348041: e9 8a fc ff ff jmpq 66347cd0 - 66348046: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634804d: 00 00 00 - 66348050: 4c 8b 51 28 mov 0x28(%rcx),%r10 - 66348054: 4d 8b 5a 30 mov 0x30(%r10),%r11 - 66348058: 4d 8b 53 10 mov 0x10(%r11),%r10 - 6634805c: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66348063: 4d 63 10 movslq (%r8),%r10 - 66348066: 41 8d 5a 01 lea 0x1(%r10),%ebx - 6634806a: 41 89 18 mov %ebx,(%r8) - 6634806d: 4f 89 1c d1 mov %r11,(%r9,%r10,8) - 66348071: e9 0d fc ff ff jmpq 66347c83 - 66348076: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634807d: 00 00 00 +0000000066347bd0 : + 66347bd0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66347bd4: 48 8b 42 08 mov 0x8(%rdx),%rax + 66347bd8: 8b 00 mov (%rax),%eax + 66347bda: 85 c0 test %eax,%eax + 66347bdc: 0f 85 ae 00 00 00 jne 66347c90 + 66347be2: 4c 8b 42 10 mov 0x10(%rdx),%r8 + 66347be6: 45 8b 10 mov (%r8),%r10d + 66347be9: 45 85 d2 test %r10d,%r10d + 66347bec: 74 75 je 66347c63 + 66347bee: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66347bf2: 45 8b 48 24 mov 0x24(%r8),%r9d + 66347bf6: 44 39 c8 cmp %r9d,%eax + 66347bf9: 74 67 je 66347c62 + 66347bfb: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66347bff: 41 89 c3 mov %eax,%r11d + 66347c02: 45 29 cb sub %r9d,%r11d + 66347c05: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66347c09: 45 01 1a add %r11d,(%r10) + 66347c0c: 41 89 40 24 mov %eax,0x24(%r8) + 66347c10: 45 31 c0 xor %r8d,%r8d + 66347c13: 45 8b 0a mov (%r10),%r9d + 66347c16: 48 8b 42 48 mov 0x48(%rdx),%rax + 66347c1a: 45 85 c9 test %r9d,%r9d + 66347c1d: 41 0f 9f c0 setg %r8b + 66347c21: 44 3b 00 cmp (%rax),%r8d + 66347c24: 74 3c je 66347c62 + 66347c26: 48 8b 41 20 mov 0x20(%rcx),%rax + 66347c2a: 48 8b 40 48 mov 0x48(%rax),%rax + 66347c2e: 8b 00 mov (%rax),%eax + 66347c30: 85 c0 test %eax,%eax + 66347c32: 75 2e jne 66347c62 + 66347c34: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347c38: 48 8b 0d f1 ec 00 00 mov 0xecf1(%rip),%rcx # 66356930 + 66347c3f: 4c 8b 05 da ec 00 00 mov 0xecda(%rip),%r8 # 66356920 + 66347c46: 48 8b 50 48 mov 0x48(%rax),%rdx + 66347c4a: 48 8b 42 10 mov 0x10(%rdx),%rax + 66347c4e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66347c54: 48 63 01 movslq (%rcx),%rax + 66347c57: 44 8d 48 01 lea 0x1(%rax),%r9d + 66347c5b: 44 89 09 mov %r9d,(%rcx) + 66347c5e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66347c62: c3 retq + 66347c63: 48 8b 42 18 mov 0x18(%rdx),%rax + 66347c67: 8b 00 mov (%rax),%eax + 66347c69: 85 c0 test %eax,%eax + 66347c6b: 75 23 jne 66347c90 + 66347c6d: 4c 8b 42 20 mov 0x20(%rdx),%r8 + 66347c71: 45 8b 08 mov (%r8),%r9d + 66347c74: 45 85 c9 test %r9d,%r9d + 66347c77: 0f 85 71 ff ff ff jne 66347bee + 66347c7d: 48 8b 42 28 mov 0x28(%rdx),%rax + 66347c81: 8b 00 mov (%rax),%eax + 66347c83: 85 c0 test %eax,%eax + 66347c85: 74 19 je 66347ca0 + 66347c87: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66347c8e: 00 00 + 66347c90: 31 c0 xor %eax,%eax + 66347c92: e9 57 ff ff ff jmpq 66347bee + 66347c97: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66347c9e: 00 00 + 66347ca0: 4c 8b 42 30 mov 0x30(%rdx),%r8 + 66347ca4: 45 8b 00 mov (%r8),%r8d + 66347ca7: 45 85 c0 test %r8d,%r8d + 66347caa: 0f 85 3e ff ff ff jne 66347bee + 66347cb0: 4c 8b 42 38 mov 0x38(%rdx),%r8 + 66347cb4: 45 8b 18 mov (%r8),%r11d + 66347cb7: 45 85 db test %r11d,%r11d + 66347cba: 0f 85 2e ff ff ff jne 66347bee + 66347cc0: 48 8b 42 40 mov 0x40(%rdx),%rax + 66347cc4: 44 8b 10 mov (%rax),%r10d + 66347cc7: 31 c0 xor %eax,%eax + 66347cc9: 45 85 d2 test %r10d,%r10d + 66347ccc: 0f 94 c0 sete %al + 66347ccf: e9 1a ff ff ff jmpq 66347bee + 66347cd4: 66 90 xchg %ax,%ax + 66347cd6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347cdd: 00 00 00 -0000000066348080 : - 66348080: 56 push %rsi - 66348081: 53 push %rbx - 66348082: 4c 8b 15 97 f8 00 00 mov 0xf897(%rip),%r10 # 66357920 - 66348089: 4c 8b 05 a0 f8 00 00 mov 0xf8a0(%rip),%r8 # 66357930 - 66348090: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66348094: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348098: 4c 8b 4a 48 mov 0x48(%rdx),%r9 - 6634809c: 41 8b 31 mov (%r9),%esi - 6634809f: 85 f6 test %esi,%esi - 663480a1: 0f 84 6d 01 00 00 je 66348214 - 663480a7: 4c 8b 4a 08 mov 0x8(%rdx),%r9 - 663480ab: 44 8b 58 14 mov 0x14(%rax),%r11d - 663480af: 45 8b 09 mov (%r9),%r9d - 663480b2: 45 39 cb cmp %r9d,%r11d - 663480b5: 74 59 je 66348110 - 663480b7: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663480bb: 44 89 ce mov %r9d,%esi - 663480be: 44 29 de sub %r11d,%esi - 663480c1: 45 31 db xor %r11d,%r11d - 663480c4: 48 8b 5b 28 mov 0x28(%rbx),%rbx - 663480c8: 01 33 add %esi,(%rbx) - 663480ca: 44 89 48 14 mov %r9d,0x14(%rax) - 663480ce: 8b 1b mov (%rbx),%ebx - 663480d0: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 663480d4: 85 db test %ebx,%ebx - 663480d6: 41 0f 9f c3 setg %r11b - 663480da: 45 3b 19 cmp (%r9),%r11d - 663480dd: 74 31 je 66348110 - 663480df: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663480e3: 4d 8b 49 28 mov 0x28(%r9),%r9 - 663480e7: 45 8b 19 mov (%r9),%r11d - 663480ea: 45 85 db test %r11d,%r11d - 663480ed: 75 21 jne 66348110 - 663480ef: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663480f3: 4d 8b 59 28 mov 0x28(%r9),%r11 - 663480f7: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663480fb: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348102: 4d 63 08 movslq (%r8),%r9 - 66348105: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348109: 41 89 18 mov %ebx,(%r8) - 6634810c: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348110: 4c 8b 4a 10 mov 0x10(%rdx),%r9 - 66348114: 44 8b 58 18 mov 0x18(%rax),%r11d - 66348118: 45 8b 09 mov (%r9),%r9d - 6634811b: 45 39 d9 cmp %r11d,%r9d - 6634811e: 74 5a je 6634817a - 66348120: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66348124: 44 89 ce mov %r9d,%esi - 66348127: 44 29 de sub %r11d,%esi - 6634812a: 45 31 db xor %r11d,%r11d - 6634812d: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 66348131: 01 33 add %esi,(%rbx) - 66348133: 44 89 48 18 mov %r9d,0x18(%rax) - 66348137: 44 8b 0b mov (%rbx),%r9d - 6634813a: 45 85 c9 test %r9d,%r9d - 6634813d: 4c 8b 4a 30 mov 0x30(%rdx),%r9 - 66348141: 41 0f 9f c3 setg %r11b - 66348145: 45 3b 19 cmp (%r9),%r11d - 66348148: 74 30 je 6634817a - 6634814a: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 6634814e: 4d 8b 49 30 mov 0x30(%r9),%r9 - 66348152: 41 8b 31 mov (%r9),%esi - 66348155: 85 f6 test %esi,%esi - 66348157: 75 21 jne 6634817a - 66348159: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 6634815d: 4d 8b 59 30 mov 0x30(%r9),%r11 - 66348161: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66348165: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634816c: 4d 63 08 movslq (%r8),%r9 - 6634816f: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348173: 41 89 18 mov %ebx,(%r8) - 66348176: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 6634817a: 4c 8b 4a 18 mov 0x18(%rdx),%r9 - 6634817e: 44 8b 58 1c mov 0x1c(%rax),%r11d - 66348182: 45 8b 09 mov (%r9),%r9d - 66348185: 45 39 d9 cmp %r11d,%r9d - 66348188: 74 59 je 663481e3 - 6634818a: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634818e: 44 89 ce mov %r9d,%esi - 66348191: 44 29 de sub %r11d,%esi - 66348194: 45 31 db xor %r11d,%r11d - 66348197: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 6634819b: 01 33 add %esi,(%rbx) - 6634819d: 44 89 48 1c mov %r9d,0x1c(%rax) - 663481a1: 8b 1b mov (%rbx),%ebx - 663481a3: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 663481a7: 85 db test %ebx,%ebx - 663481a9: 41 0f 9f c3 setg %r11b - 663481ad: 45 3b 19 cmp (%r9),%r11d - 663481b0: 74 31 je 663481e3 - 663481b2: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663481b6: 4d 8b 49 38 mov 0x38(%r9),%r9 - 663481ba: 45 8b 09 mov (%r9),%r9d - 663481bd: 45 85 c9 test %r9d,%r9d - 663481c0: 75 21 jne 663481e3 - 663481c2: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663481c6: 4d 8b 59 38 mov 0x38(%r9),%r11 - 663481ca: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663481ce: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663481d5: 4d 63 08 movslq (%r8),%r9 - 663481d8: 41 8d 59 01 lea 0x1(%r9),%ebx - 663481dc: 41 89 18 mov %ebx,(%r8) - 663481df: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663481e3: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 663481e7: 44 8b 58 20 mov 0x20(%rax),%r11d - 663481eb: 45 8b 09 mov (%r9),%r9d - 663481ee: 45 39 d9 cmp %r11d,%r9d - 663481f1: 0f 84 9f 01 00 00 je 66348396 - 663481f7: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663481fb: 44 89 ce mov %r9d,%esi - 663481fe: 44 29 de sub %r11d,%esi - 66348201: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66348205: 01 33 add %esi,(%rbx) - 66348207: 44 89 48 20 mov %r9d,0x20(%rax) - 6634820b: 8b 33 mov (%rbx),%esi - 6634820d: 85 f6 test %esi,%esi - 6634820f: e9 44 01 00 00 jmpq 66348358 - 66348214: 44 8b 48 14 mov 0x14(%rax),%r9d - 66348218: 45 85 c9 test %r9d,%r9d - 6634821b: 74 58 je 66348275 - 6634821d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66348221: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 66348225: 45 29 0b sub %r9d,(%r11) - 66348228: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) - 6634822f: 41 8b 1b mov (%r11),%ebx - 66348232: 45 31 db xor %r11d,%r11d - 66348235: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 66348239: 85 db test %ebx,%ebx - 6634823b: 41 0f 9f c3 setg %r11b - 6634823f: 45 3b 19 cmp (%r9),%r11d - 66348242: 74 31 je 66348275 - 66348244: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66348248: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634824c: 45 8b 19 mov (%r9),%r11d - 6634824f: 45 85 db test %r11d,%r11d - 66348252: 75 21 jne 66348275 - 66348254: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66348258: 4d 8b 59 28 mov 0x28(%r9),%r11 - 6634825c: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66348260: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348267: 4d 63 08 movslq (%r8),%r9 - 6634826a: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634826e: 41 89 18 mov %ebx,(%r8) - 66348271: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348275: 44 8b 48 18 mov 0x18(%rax),%r9d - 66348279: 45 85 c9 test %r9d,%r9d - 6634827c: 74 58 je 663482d6 - 6634827e: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66348282: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66348286: 45 29 0b sub %r9d,(%r11) - 66348289: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 66348290: 45 8b 0b mov (%r11),%r9d - 66348293: 45 31 db xor %r11d,%r11d - 66348296: 45 85 c9 test %r9d,%r9d - 66348299: 4c 8b 4a 30 mov 0x30(%rdx),%r9 - 6634829d: 41 0f 9f c3 setg %r11b - 663482a1: 45 3b 19 cmp (%r9),%r11d - 663482a4: 74 30 je 663482d6 - 663482a6: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663482aa: 4d 8b 49 30 mov 0x30(%r9),%r9 - 663482ae: 41 8b 31 mov (%r9),%esi - 663482b1: 85 f6 test %esi,%esi - 663482b3: 75 21 jne 663482d6 - 663482b5: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663482b9: 4d 8b 59 30 mov 0x30(%r9),%r11 - 663482bd: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663482c1: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663482c8: 4d 63 08 movslq (%r8),%r9 - 663482cb: 41 8d 59 01 lea 0x1(%r9),%ebx - 663482cf: 41 89 18 mov %ebx,(%r8) - 663482d2: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663482d6: 44 8b 48 1c mov 0x1c(%rax),%r9d - 663482da: 45 85 c9 test %r9d,%r9d - 663482dd: 74 58 je 66348337 - 663482df: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663482e3: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 663482e7: 45 29 0b sub %r9d,(%r11) - 663482ea: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 663482f1: 41 8b 1b mov (%r11),%ebx - 663482f4: 45 31 db xor %r11d,%r11d - 663482f7: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 663482fb: 85 db test %ebx,%ebx - 663482fd: 41 0f 9f c3 setg %r11b - 66348301: 45 3b 19 cmp (%r9),%r11d - 66348304: 74 31 je 66348337 - 66348306: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 6634830a: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634830e: 45 8b 19 mov (%r9),%r11d - 66348311: 45 85 db test %r11d,%r11d - 66348314: 75 21 jne 66348337 - 66348316: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 6634831a: 4d 8b 59 38 mov 0x38(%r9),%r11 - 6634831e: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66348322: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348329: 4d 63 08 movslq (%r8),%r9 - 6634832c: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348330: 41 89 18 mov %ebx,(%r8) - 66348333: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348337: 44 8b 48 20 mov 0x20(%rax),%r9d - 6634833b: 45 85 c9 test %r9d,%r9d - 6634833e: 74 56 je 66348396 - 66348340: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66348344: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66348348: 45 29 0b sub %r9d,(%r11) - 6634834b: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 66348352: 45 8b 0b mov (%r11),%r9d - 66348355: 45 85 c9 test %r9d,%r9d - 66348358: 48 8b 42 40 mov 0x40(%rdx),%rax - 6634835c: 41 0f 9f c1 setg %r9b - 66348360: 45 0f b6 c9 movzbl %r9b,%r9d - 66348364: 44 3b 08 cmp (%rax),%r9d - 66348367: 74 2d je 66348396 - 66348369: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634836d: 48 8b 40 40 mov 0x40(%rax),%rax - 66348371: 8b 00 mov (%rax),%eax - 66348373: 85 c0 test %eax,%eax - 66348375: 75 1f jne 66348396 - 66348377: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634837b: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634837f: 48 8b 42 10 mov 0x10(%rdx),%rax - 66348383: c7 00 01 00 00 00 movl $0x1,(%rax) - 66348389: 49 63 00 movslq (%r8),%rax - 6634838c: 8d 48 01 lea 0x1(%rax),%ecx - 6634838f: 41 89 08 mov %ecx,(%r8) - 66348392: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 66348396: 5b pop %rbx - 66348397: 5e pop %rsi - 66348398: c3 retq +0000000066347ce0 : + 66347ce0: ba 01 00 00 00 mov $0x1,%edx + 66347ce5: 48 8b 41 10 mov 0x10(%rcx),%rax + 66347ce9: 4c 8b 40 08 mov 0x8(%rax),%r8 + 66347ced: 45 8b 00 mov (%r8),%r8d + 66347cf0: 45 85 c0 test %r8d,%r8d + 66347cf3: 75 0c jne 66347d01 + 66347cf5: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66347cf9: 45 8b 18 mov (%r8),%r11d + 66347cfc: 45 85 db test %r11d,%r11d + 66347cff: 74 72 je 66347d73 + 66347d01: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66347d05: 45 8b 48 24 mov 0x24(%r8),%r9d + 66347d09: 44 39 ca cmp %r9d,%edx + 66347d0c: 74 64 je 66347d72 + 66347d0e: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66347d12: 41 89 d3 mov %edx,%r11d + 66347d15: 45 29 cb sub %r9d,%r11d + 66347d18: 48 8b 40 48 mov 0x48(%rax),%rax + 66347d1c: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66347d20: 45 01 1a add %r11d,(%r10) + 66347d23: 41 89 50 24 mov %edx,0x24(%r8) + 66347d27: 31 d2 xor %edx,%edx + 66347d29: 45 8b 02 mov (%r10),%r8d + 66347d2c: 45 85 c0 test %r8d,%r8d + 66347d2f: 0f 9f c2 setg %dl + 66347d32: 3b 10 cmp (%rax),%edx + 66347d34: 74 3c je 66347d72 + 66347d36: 48 8b 41 20 mov 0x20(%rcx),%rax + 66347d3a: 48 8b 40 48 mov 0x48(%rax),%rax + 66347d3e: 8b 00 mov (%rax),%eax + 66347d40: 85 c0 test %eax,%eax + 66347d42: 75 2e jne 66347d72 + 66347d44: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347d48: 48 8b 0d e1 eb 00 00 mov 0xebe1(%rip),%rcx # 66356930 + 66347d4f: 4c 8b 05 ca eb 00 00 mov 0xebca(%rip),%r8 # 66356920 + 66347d56: 48 8b 50 48 mov 0x48(%rax),%rdx + 66347d5a: 48 8b 42 10 mov 0x10(%rdx),%rax + 66347d5e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66347d64: 48 63 01 movslq (%rcx),%rax + 66347d67: 44 8d 48 01 lea 0x1(%rax),%r9d + 66347d6b: 44 89 09 mov %r9d,(%rcx) + 66347d6e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66347d72: c3 retq + 66347d73: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66347d77: 45 8b 10 mov (%r8),%r10d + 66347d7a: 45 85 d2 test %r10d,%r10d + 66347d7d: 75 82 jne 66347d01 + 66347d7f: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66347d83: 45 8b 08 mov (%r8),%r9d + 66347d86: 45 85 c9 test %r9d,%r9d + 66347d89: 0f 85 72 ff ff ff jne 66347d01 + 66347d8f: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66347d93: 45 8b 00 mov (%r8),%r8d + 66347d96: 45 85 c0 test %r8d,%r8d + 66347d99: 0f 85 62 ff ff ff jne 66347d01 + 66347d9f: 4c 8b 40 30 mov 0x30(%rax),%r8 + 66347da3: 45 8b 18 mov (%r8),%r11d + 66347da6: 45 85 db test %r11d,%r11d + 66347da9: 0f 85 52 ff ff ff jne 66347d01 + 66347daf: 4c 8b 40 38 mov 0x38(%rax),%r8 + 66347db3: 45 8b 10 mov (%r8),%r10d + 66347db6: 45 85 d2 test %r10d,%r10d + 66347db9: 0f 85 42 ff ff ff jne 66347d01 + 66347dbf: 48 8b 50 40 mov 0x40(%rax),%rdx + 66347dc3: 44 8b 0a mov (%rdx),%r9d + 66347dc6: 31 d2 xor %edx,%edx + 66347dc8: 45 85 c9 test %r9d,%r9d + 66347dcb: 0f 95 c2 setne %dl + 66347dce: e9 2e ff ff ff jmpq 66347d01 + 66347dd3: 0f 1f 00 nopl (%rax) + 66347dd6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347ddd: 00 00 00 + +0000000066347de0 : + 66347de0: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66347de4: 48 8b 42 08 mov 0x8(%rdx),%rax + 66347de8: 8b 00 mov (%rax),%eax + 66347dea: 85 c0 test %eax,%eax + 66347dec: 74 0a je 66347df8 + 66347dee: 48 8b 42 10 mov 0x10(%rdx),%rax + 66347df2: 8b 00 mov (%rax),%eax + 66347df4: 85 c0 test %eax,%eax + 66347df6: 75 78 jne 66347e70 + 66347df8: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66347dfc: 45 8b 48 24 mov 0x24(%r8),%r9d + 66347e00: 44 39 c8 cmp %r9d,%eax + 66347e03: 74 67 je 66347e6c + 66347e05: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66347e09: 41 89 c3 mov %eax,%r11d + 66347e0c: 45 29 cb sub %r9d,%r11d + 66347e0f: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66347e13: 45 01 1a add %r11d,(%r10) + 66347e16: 41 89 40 24 mov %eax,0x24(%r8) + 66347e1a: 45 31 c0 xor %r8d,%r8d + 66347e1d: 45 8b 0a mov (%r10),%r9d + 66347e20: 48 8b 42 48 mov 0x48(%rdx),%rax + 66347e24: 45 85 c9 test %r9d,%r9d + 66347e27: 41 0f 9f c0 setg %r8b + 66347e2b: 44 3b 00 cmp (%rax),%r8d + 66347e2e: 74 3c je 66347e6c + 66347e30: 48 8b 41 20 mov 0x20(%rcx),%rax + 66347e34: 48 8b 40 48 mov 0x48(%rax),%rax + 66347e38: 8b 00 mov (%rax),%eax + 66347e3a: 85 c0 test %eax,%eax + 66347e3c: 75 2e jne 66347e6c + 66347e3e: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347e42: 48 8b 0d e7 ea 00 00 mov 0xeae7(%rip),%rcx # 66356930 + 66347e49: 4c 8b 05 d0 ea 00 00 mov 0xead0(%rip),%r8 # 66356920 + 66347e50: 48 8b 50 48 mov 0x48(%rax),%rdx + 66347e54: 48 8b 42 10 mov 0x10(%rdx),%rax + 66347e58: c7 00 01 00 00 00 movl $0x1,(%rax) + 66347e5e: 48 63 01 movslq (%rcx),%rax + 66347e61: 44 8d 48 01 lea 0x1(%rax),%r9d + 66347e65: 44 89 09 mov %r9d,(%rcx) + 66347e68: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66347e6c: c3 retq + 66347e6d: 0f 1f 00 nopl (%rax) + 66347e70: 48 8b 42 18 mov 0x18(%rdx),%rax + 66347e74: 8b 00 mov (%rax),%eax + 66347e76: 85 c0 test %eax,%eax + 66347e78: 0f 84 7a ff ff ff je 66347df8 + 66347e7e: 48 8b 42 20 mov 0x20(%rdx),%rax + 66347e82: 8b 00 mov (%rax),%eax + 66347e84: 85 c0 test %eax,%eax + 66347e86: 0f 84 6c ff ff ff je 66347df8 + 66347e8c: 48 8b 42 28 mov 0x28(%rdx),%rax + 66347e90: 8b 00 mov (%rax),%eax + 66347e92: 85 c0 test %eax,%eax + 66347e94: 0f 84 5e ff ff ff je 66347df8 + 66347e9a: 48 8b 42 30 mov 0x30(%rdx),%rax + 66347e9e: 8b 00 mov (%rax),%eax + 66347ea0: 85 c0 test %eax,%eax + 66347ea2: 0f 84 50 ff ff ff je 66347df8 + 66347ea8: 48 8b 42 38 mov 0x38(%rdx),%rax + 66347eac: 8b 00 mov (%rax),%eax + 66347eae: 85 c0 test %eax,%eax + 66347eb0: 0f 84 42 ff ff ff je 66347df8 + 66347eb6: 48 8b 42 40 mov 0x40(%rdx),%rax + 66347eba: 44 8b 10 mov (%rax),%r10d + 66347ebd: 31 c0 xor %eax,%eax + 66347ebf: 45 85 d2 test %r10d,%r10d + 66347ec2: 0f 95 c0 setne %al + 66347ec5: e9 2e ff ff ff jmpq 66347df8 + 66347eca: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + +0000000066347ed0 : + 66347ed0: ba 01 00 00 00 mov $0x1,%edx + 66347ed5: 48 8b 41 10 mov 0x10(%rcx),%rax + 66347ed9: 4c 8b 40 08 mov 0x8(%rax),%r8 + 66347edd: 45 8b 00 mov (%r8),%r8d + 66347ee0: 45 85 c0 test %r8d,%r8d + 66347ee3: 74 0c je 66347ef1 + 66347ee5: 4c 8b 40 10 mov 0x10(%rax),%r8 + 66347ee9: 45 8b 18 mov (%r8),%r11d + 66347eec: 45 85 db test %r11d,%r11d + 66347eef: 75 72 jne 66347f63 + 66347ef1: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66347ef5: 45 8b 48 24 mov 0x24(%r8),%r9d + 66347ef9: 44 39 ca cmp %r9d,%edx + 66347efc: 74 64 je 66347f62 + 66347efe: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66347f02: 41 89 d3 mov %edx,%r11d + 66347f05: 45 29 cb sub %r9d,%r11d + 66347f08: 48 8b 40 48 mov 0x48(%rax),%rax + 66347f0c: 4d 8b 52 48 mov 0x48(%r10),%r10 + 66347f10: 45 01 1a add %r11d,(%r10) + 66347f13: 41 89 50 24 mov %edx,0x24(%r8) + 66347f17: 31 d2 xor %edx,%edx + 66347f19: 45 8b 02 mov (%r10),%r8d + 66347f1c: 45 85 c0 test %r8d,%r8d + 66347f1f: 0f 9f c2 setg %dl + 66347f22: 3b 10 cmp (%rax),%edx + 66347f24: 74 3c je 66347f62 + 66347f26: 48 8b 41 20 mov 0x20(%rcx),%rax + 66347f2a: 48 8b 40 48 mov 0x48(%rax),%rax + 66347f2e: 8b 00 mov (%rax),%eax + 66347f30: 85 c0 test %eax,%eax + 66347f32: 75 2e jne 66347f62 + 66347f34: 48 8b 41 28 mov 0x28(%rcx),%rax + 66347f38: 48 8b 0d f1 e9 00 00 mov 0xe9f1(%rip),%rcx # 66356930 + 66347f3f: 4c 8b 05 da e9 00 00 mov 0xe9da(%rip),%r8 # 66356920 + 66347f46: 48 8b 50 48 mov 0x48(%rax),%rdx + 66347f4a: 48 8b 42 10 mov 0x10(%rdx),%rax + 66347f4e: c7 00 01 00 00 00 movl $0x1,(%rax) + 66347f54: 48 63 01 movslq (%rcx),%rax + 66347f57: 44 8d 48 01 lea 0x1(%rax),%r9d + 66347f5b: 44 89 09 mov %r9d,(%rcx) + 66347f5e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66347f62: c3 retq + 66347f63: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66347f67: 45 8b 10 mov (%r8),%r10d + 66347f6a: 45 85 d2 test %r10d,%r10d + 66347f6d: 74 82 je 66347ef1 + 66347f6f: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66347f73: 45 8b 08 mov (%r8),%r9d + 66347f76: 45 85 c9 test %r9d,%r9d + 66347f79: 0f 84 72 ff ff ff je 66347ef1 + 66347f7f: 4c 8b 40 28 mov 0x28(%rax),%r8 + 66347f83: 45 8b 00 mov (%r8),%r8d + 66347f86: 45 85 c0 test %r8d,%r8d + 66347f89: 0f 84 62 ff ff ff je 66347ef1 + 66347f8f: 4c 8b 40 30 mov 0x30(%rax),%r8 + 66347f93: 45 8b 18 mov (%r8),%r11d + 66347f96: 45 85 db test %r11d,%r11d + 66347f99: 0f 84 52 ff ff ff je 66347ef1 + 66347f9f: 4c 8b 40 38 mov 0x38(%rax),%r8 + 66347fa3: 45 8b 10 mov (%r8),%r10d + 66347fa6: 45 85 d2 test %r10d,%r10d + 66347fa9: 0f 84 42 ff ff ff je 66347ef1 + 66347faf: 48 8b 50 40 mov 0x40(%rax),%rdx + 66347fb3: 44 8b 0a mov (%rdx),%r9d + 66347fb6: 31 d2 xor %edx,%edx + 66347fb8: 45 85 c9 test %r9d,%r9d + 66347fbb: 0f 94 c2 sete %dl + 66347fbe: e9 2e ff ff ff jmpq 66347ef1 + 66347fc3: 0f 1f 00 nopl (%rax) + 66347fc6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66347fcd: 00 00 00 + +0000000066347fd0 : + 66347fd0: 41 55 push %r13 + 66347fd2: 41 54 push %r12 + 66347fd4: 55 push %rbp + 66347fd5: 57 push %rdi + 66347fd6: 56 push %rsi + 66347fd7: 53 push %rbx + 66347fd8: 48 83 ec 28 sub $0x28,%rsp + 66347fdc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66347fe0: 49 8b 81 48 02 00 00 mov 0x248(%r9),%rax + 66347fe7: 48 89 cb mov %rcx,%rbx + 66347fea: 44 8b 10 mov (%rax),%r10d + 66347fed: 45 85 d2 test %r10d,%r10d + 66347ff0: 0f 84 ba 00 00 00 je 663480b0 + 66347ff6: 49 8b 41 10 mov 0x10(%r9),%rax + 66347ffa: be 09 00 00 00 mov $0x9,%esi + 66347fff: 4c 8d 2d fa af 00 00 lea 0xaffa(%rip),%r13 # 66353000 <.rdata> + 66348006: 4c 8d 25 03 b0 00 00 lea 0xb003(%rip),%r12 # 66353010 <.rdata+0x10> + 6634800d: 8b 10 mov (%rax),%edx + 6634800f: 49 8b 41 08 mov 0x8(%r9),%rax + 66348013: 8b 00 mov (%rax),%eax + 66348015: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348018: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634801c: 8b 12 mov (%rdx),%edx + 6634801e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66348021: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348025: 8b 12 mov (%rdx),%edx + 66348027: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634802a: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634802e: 8b 3a mov (%rdx),%edi + 66348030: 49 8b 51 40 mov 0x40(%r9),%rdx + 66348034: c1 e7 04 shl $0x4,%edi + 66348037: 01 c7 add %eax,%edi + 66348039: 49 8b 41 30 mov 0x30(%r9),%rax + 6634803d: 8b 00 mov (%rax),%eax + 6634803f: c1 e0 05 shl $0x5,%eax + 66348042: 01 c7 add %eax,%edi + 66348044: 49 8b 41 38 mov 0x38(%r9),%rax + 66348048: 8b 00 mov (%rax),%eax + 6634804a: c1 e0 06 shl $0x6,%eax + 6634804d: 01 f8 add %edi,%eax + 6634804f: 8b 3a mov (%rdx),%edi + 66348051: c1 e7 07 shl $0x7,%edi + 66348054: 01 c7 add %eax,%edi + 66348056: 48 63 ef movslq %edi,%rbp + 66348059: 48 c1 e5 02 shl $0x2,%rbp + 6634805d: 0f 1f 00 nopl (%rax) + 66348060: 85 ff test %edi,%edi + 66348062: 78 05 js 66348069 + 66348064: 39 7b 38 cmp %edi,0x38(%rbx) + 66348067: 7f 11 jg 6634807a + 66348069: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634806f: 4c 89 ea mov %r13,%rdx + 66348072: 4c 89 e1 mov %r12,%rcx + 66348075: e8 86 8f 00 00 callq 66351000 <_assert> + 6634807a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634807e: 89 f2 mov %esi,%edx + 66348080: 48 89 d9 mov %rbx,%rcx + 66348083: 83 c6 01 add $0x1,%esi + 66348086: 81 c7 00 01 00 00 add $0x100,%edi + 6634808c: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66348090: 48 81 c5 00 04 00 00 add $0x400,%rbp + 66348097: e8 14 93 ff ff callq 663413b0 + 6634809c: 83 fe 49 cmp $0x49,%esi + 6634809f: 75 bf jne 66348060 + 663480a1: 48 83 c4 28 add $0x28,%rsp + 663480a5: 5b pop %rbx + 663480a6: 5e pop %rsi + 663480a7: 5f pop %rdi + 663480a8: 5d pop %rbp + 663480a9: 41 5c pop %r12 + 663480ab: 41 5d pop %r13 + 663480ad: c3 retq + 663480ae: 66 90 xchg %ax,%ax + 663480b0: 48 8b 41 08 mov 0x8(%rcx),%rax + 663480b4: 4c 8b 1d 65 e8 00 00 mov 0xe865(%rip),%r11 # 66356920 + 663480bb: 4c 8b 15 6e e8 00 00 mov 0xe86e(%rip),%r10 # 66356930 + 663480c2: 48 8d 50 24 lea 0x24(%rax),%rdx + 663480c6: b8 48 00 00 00 mov $0x48,%eax + 663480cb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663480d0: 8b 0a mov (%rdx),%ecx + 663480d2: 85 c9 test %ecx,%ecx + 663480d4: 74 55 je 6634812b + 663480d6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 663480da: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663480de: 41 29 08 sub %ecx,(%r8) + 663480e1: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663480e7: 45 8b 00 mov (%r8),%r8d + 663480ea: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 663480ee: 45 85 c0 test %r8d,%r8d + 663480f1: 41 0f 9f c0 setg %r8b + 663480f5: 45 0f b6 c0 movzbl %r8b,%r8d + 663480f9: 44 3b 01 cmp (%rcx),%r8d + 663480fc: 74 2d je 6634812b + 663480fe: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66348102: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66348106: 8b 09 mov (%rcx),%ecx + 66348108: 85 c9 test %ecx,%ecx + 6634810a: 75 1f jne 6634812b + 6634810c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66348110: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66348114: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348118: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634811e: 49 63 0a movslq (%r10),%rcx + 66348121: 8d 71 01 lea 0x1(%rcx),%esi + 66348124: 41 89 32 mov %esi,(%r10) + 66348127: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634812b: 48 83 c0 08 add $0x8,%rax + 6634812f: 48 83 c2 04 add $0x4,%rdx + 66348133: 48 3d 48 02 00 00 cmp $0x248,%rax + 66348139: 75 95 jne 663480d0 + 6634813b: 48 83 c4 28 add $0x28,%rsp + 6634813f: 5b pop %rbx + 66348140: 5e pop %rsi + 66348141: 5f pop %rdi + 66348142: 5d pop %rbp + 66348143: 41 5c pop %r12 + 66348145: 41 5d pop %r13 + 66348147: c3 retq + 66348148: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634814f: 00 + +0000000066348150 : + 66348150: 41 55 push %r13 + 66348152: 41 54 push %r12 + 66348154: 55 push %rbp + 66348155: 57 push %rdi + 66348156: 56 push %rsi + 66348157: 53 push %rbx + 66348158: 48 83 ec 28 sub $0x28,%rsp + 6634815c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66348160: 49 8b 81 50 02 00 00 mov 0x250(%r9),%rax + 66348167: 48 89 cb mov %rcx,%rbx + 6634816a: 44 8b 10 mov (%rax),%r10d + 6634816d: 45 85 d2 test %r10d,%r10d + 66348170: 0f 84 ca 00 00 00 je 66348240 + 66348176: 49 8b 41 10 mov 0x10(%r9),%rax + 6634817a: be 0a 00 00 00 mov $0xa,%esi + 6634817f: 4c 8d 2d 7a ae 00 00 lea 0xae7a(%rip),%r13 # 66353000 <.rdata> + 66348186: 4c 8d 25 83 ae 00 00 lea 0xae83(%rip),%r12 # 66353010 <.rdata+0x10> + 6634818d: 8b 10 mov (%rax),%edx + 6634818f: 49 8b 41 08 mov 0x8(%r9),%rax + 66348193: 8b 00 mov (%rax),%eax + 66348195: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348198: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634819c: 8b 12 mov (%rdx),%edx + 6634819e: 8d 04 90 lea (%rax,%rdx,4),%eax + 663481a1: 49 8b 51 20 mov 0x20(%r9),%rdx + 663481a5: 8b 12 mov (%rdx),%edx + 663481a7: 8d 3c d0 lea (%rax,%rdx,8),%edi + 663481aa: 49 8b 41 28 mov 0x28(%r9),%rax + 663481ae: 49 8b 51 30 mov 0x30(%r9),%rdx + 663481b2: 8b 00 mov (%rax),%eax + 663481b4: c1 e0 04 shl $0x4,%eax + 663481b7: 01 f8 add %edi,%eax + 663481b9: 8b 3a mov (%rdx),%edi + 663481bb: 49 8b 51 48 mov 0x48(%r9),%rdx + 663481bf: c1 e7 05 shl $0x5,%edi + 663481c2: 01 c7 add %eax,%edi + 663481c4: 49 8b 41 38 mov 0x38(%r9),%rax + 663481c8: 8b 00 mov (%rax),%eax + 663481ca: c1 e0 06 shl $0x6,%eax + 663481cd: 01 c7 add %eax,%edi + 663481cf: 49 8b 41 40 mov 0x40(%r9),%rax + 663481d3: 8b 00 mov (%rax),%eax + 663481d5: c1 e0 07 shl $0x7,%eax + 663481d8: 01 f8 add %edi,%eax + 663481da: 8b 3a mov (%rdx),%edi + 663481dc: c1 e7 08 shl $0x8,%edi + 663481df: 01 c7 add %eax,%edi + 663481e1: 48 63 ef movslq %edi,%rbp + 663481e4: 48 c1 e5 02 shl $0x2,%rbp + 663481e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663481ef: 00 + 663481f0: 85 ff test %edi,%edi + 663481f2: 78 05 js 663481f9 + 663481f4: 39 7b 38 cmp %edi,0x38(%rbx) + 663481f7: 7f 11 jg 6634820a + 663481f9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663481ff: 4c 89 ea mov %r13,%rdx + 66348202: 4c 89 e1 mov %r12,%rcx + 66348205: e8 f6 8d 00 00 callq 66351000 <_assert> + 6634820a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634820e: 89 f2 mov %esi,%edx + 66348210: 48 89 d9 mov %rbx,%rcx + 66348213: 83 c6 01 add $0x1,%esi + 66348216: 81 c7 00 02 00 00 add $0x200,%edi + 6634821c: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66348220: 48 81 c5 00 08 00 00 add $0x800,%rbp + 66348227: e8 84 91 ff ff callq 663413b0 + 6634822c: 83 fe 4a cmp $0x4a,%esi + 6634822f: 75 bf jne 663481f0 + 66348231: 48 83 c4 28 add $0x28,%rsp + 66348235: 5b pop %rbx + 66348236: 5e pop %rsi + 66348237: 5f pop %rdi + 66348238: 5d pop %rbp + 66348239: 41 5c pop %r12 + 6634823b: 41 5d pop %r13 + 6634823d: c3 retq + 6634823e: 66 90 xchg %ax,%ax + 66348240: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348244: 4c 8b 1d d5 e6 00 00 mov 0xe6d5(%rip),%r11 # 66356920 + 6634824b: 4c 8b 15 de e6 00 00 mov 0xe6de(%rip),%r10 # 66356930 + 66348252: 48 8d 50 28 lea 0x28(%rax),%rdx + 66348256: b8 50 00 00 00 mov $0x50,%eax + 6634825b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66348260: 8b 0a mov (%rdx),%ecx + 66348262: 85 c9 test %ecx,%ecx + 66348264: 74 55 je 663482bb + 66348266: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634826a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634826e: 41 29 08 sub %ecx,(%r8) + 66348271: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66348277: 45 8b 00 mov (%r8),%r8d + 6634827a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634827e: 45 85 c0 test %r8d,%r8d + 66348281: 41 0f 9f c0 setg %r8b + 66348285: 45 0f b6 c0 movzbl %r8b,%r8d + 66348289: 44 3b 01 cmp (%rcx),%r8d + 6634828c: 74 2d je 663482bb + 6634828e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66348292: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66348296: 8b 09 mov (%rcx),%ecx + 66348298: 85 c9 test %ecx,%ecx + 6634829a: 75 1f jne 663482bb + 6634829c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 663482a0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 663482a4: 49 8b 48 10 mov 0x10(%r8),%rcx + 663482a8: c7 01 01 00 00 00 movl $0x1,(%rcx) + 663482ae: 49 63 0a movslq (%r10),%rcx + 663482b1: 8d 71 01 lea 0x1(%rcx),%esi + 663482b4: 41 89 32 mov %esi,(%r10) + 663482b7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 663482bb: 48 83 c0 08 add $0x8,%rax + 663482bf: 48 83 c2 04 add $0x4,%rdx + 663482c3: 48 3d 50 02 00 00 cmp $0x250,%rax + 663482c9: 75 95 jne 66348260 + 663482cb: 48 83 c4 28 add $0x28,%rsp + 663482cf: 5b pop %rbx + 663482d0: 5e pop %rsi + 663482d1: 5f pop %rdi + 663482d2: 5d pop %rbp + 663482d3: 41 5c pop %r12 + 663482d5: 41 5d pop %r13 + 663482d7: c3 retq + 663482d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663482df: 00 + +00000000663482e0 : + 663482e0: 41 55 push %r13 + 663482e2: 41 54 push %r12 + 663482e4: 55 push %rbp + 663482e5: 57 push %rdi + 663482e6: 56 push %rsi + 663482e7: 53 push %rbx + 663482e8: 48 83 ec 28 sub $0x28,%rsp + 663482ec: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663482f0: 49 8b 81 68 02 00 00 mov 0x268(%r9),%rax + 663482f7: 48 89 cb mov %rcx,%rbx + 663482fa: 44 8b 10 mov (%rax),%r10d + 663482fd: 45 85 d2 test %r10d,%r10d + 66348300: 0f 84 ea 00 00 00 je 663483f0 + 66348306: 49 8b 41 10 mov 0x10(%r9),%rax + 6634830a: be 0d 00 00 00 mov $0xd,%esi + 6634830f: 4c 8d 2d ea ac 00 00 lea 0xacea(%rip),%r13 # 66353000 <.rdata> + 66348316: 4c 8d 25 f3 ac 00 00 lea 0xacf3(%rip),%r12 # 66353010 <.rdata+0x10> + 6634831d: 8b 10 mov (%rax),%edx + 6634831f: 49 8b 41 08 mov 0x8(%r9),%rax + 66348323: 8b 00 mov (%rax),%eax + 66348325: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348328: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634832c: 8b 12 mov (%rdx),%edx + 6634832e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66348331: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348335: 8b 12 mov (%rdx),%edx + 66348337: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634833a: 49 8b 41 28 mov 0x28(%r9),%rax + 6634833e: 49 8b 51 30 mov 0x30(%r9),%rdx + 66348342: 8b 00 mov (%rax),%eax + 66348344: c1 e0 04 shl $0x4,%eax + 66348347: 01 f8 add %edi,%eax + 66348349: 8b 3a mov (%rdx),%edi + 6634834b: 49 8b 51 48 mov 0x48(%r9),%rdx + 6634834f: c1 e7 05 shl $0x5,%edi + 66348352: 01 c7 add %eax,%edi + 66348354: 49 8b 41 38 mov 0x38(%r9),%rax + 66348358: 8b 00 mov (%rax),%eax + 6634835a: c1 e0 06 shl $0x6,%eax + 6634835d: 01 c7 add %eax,%edi + 6634835f: 49 8b 41 40 mov 0x40(%r9),%rax + 66348363: 8b 00 mov (%rax),%eax + 66348365: c1 e0 07 shl $0x7,%eax + 66348368: 01 f8 add %edi,%eax + 6634836a: 8b 3a mov (%rdx),%edi + 6634836c: 49 8b 51 60 mov 0x60(%r9),%rdx + 66348370: c1 e7 08 shl $0x8,%edi + 66348373: 01 c7 add %eax,%edi + 66348375: 49 8b 41 50 mov 0x50(%r9),%rax + 66348379: 8b 00 mov (%rax),%eax + 6634837b: c1 e0 09 shl $0x9,%eax + 6634837e: 01 c7 add %eax,%edi + 66348380: 49 8b 41 58 mov 0x58(%r9),%rax + 66348384: 8b 00 mov (%rax),%eax + 66348386: c1 e0 0a shl $0xa,%eax + 66348389: 01 f8 add %edi,%eax + 6634838b: 8b 3a mov (%rdx),%edi + 6634838d: c1 e7 0b shl $0xb,%edi + 66348390: 01 c7 add %eax,%edi + 66348392: 48 63 ef movslq %edi,%rbp + 66348395: 48 c1 e5 02 shl $0x2,%rbp 66348399: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 663483a0: 85 ff test %edi,%edi + 663483a2: 78 05 js 663483a9 + 663483a4: 39 7b 38 cmp %edi,0x38(%rbx) + 663483a7: 7f 11 jg 663483ba + 663483a9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663483af: 4c 89 ea mov %r13,%rdx + 663483b2: 4c 89 e1 mov %r12,%rcx + 663483b5: e8 46 8c 00 00 callq 66351000 <_assert> + 663483ba: 48 8b 43 40 mov 0x40(%rbx),%rax + 663483be: 89 f2 mov %esi,%edx + 663483c0: 48 89 d9 mov %rbx,%rcx + 663483c3: 83 c6 01 add $0x1,%esi + 663483c6: 81 c7 00 10 00 00 add $0x1000,%edi + 663483cc: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 663483d0: 48 81 c5 00 40 00 00 add $0x4000,%rbp + 663483d7: e8 d4 8f ff ff callq 663413b0 + 663483dc: 83 fe 4d cmp $0x4d,%esi + 663483df: 75 bf jne 663483a0 + 663483e1: 48 83 c4 28 add $0x28,%rsp + 663483e5: 5b pop %rbx + 663483e6: 5e pop %rsi + 663483e7: 5f pop %rdi + 663483e8: 5d pop %rbp + 663483e9: 41 5c pop %r12 + 663483eb: 41 5d pop %r13 + 663483ed: c3 retq + 663483ee: 66 90 xchg %ax,%ax + 663483f0: 48 8b 41 08 mov 0x8(%rcx),%rax + 663483f4: 4c 8b 1d 25 e5 00 00 mov 0xe525(%rip),%r11 # 66356920 + 663483fb: 4c 8b 15 2e e5 00 00 mov 0xe52e(%rip),%r10 # 66356930 + 66348402: 48 8d 50 34 lea 0x34(%rax),%rdx + 66348406: b8 68 00 00 00 mov $0x68,%eax + 6634840b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66348410: 8b 0a mov (%rdx),%ecx + 66348412: 85 c9 test %ecx,%ecx + 66348414: 74 55 je 6634846b + 66348416: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634841a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634841e: 41 29 08 sub %ecx,(%r8) + 66348421: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66348427: 45 8b 00 mov (%r8),%r8d + 6634842a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634842e: 45 85 c0 test %r8d,%r8d + 66348431: 41 0f 9f c0 setg %r8b + 66348435: 45 0f b6 c0 movzbl %r8b,%r8d + 66348439: 44 3b 01 cmp (%rcx),%r8d + 6634843c: 74 2d je 6634846b + 6634843e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66348442: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66348446: 8b 09 mov (%rcx),%ecx + 66348448: 85 c9 test %ecx,%ecx + 6634844a: 75 1f jne 6634846b + 6634844c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66348450: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66348454: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348458: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634845e: 49 63 0a movslq (%r10),%rcx + 66348461: 8d 71 01 lea 0x1(%rcx),%esi + 66348464: 41 89 32 mov %esi,(%r10) + 66348467: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634846b: 48 83 c0 08 add $0x8,%rax + 6634846f: 48 83 c2 04 add $0x4,%rdx + 66348473: 48 3d 68 02 00 00 cmp $0x268,%rax + 66348479: 75 95 jne 66348410 + 6634847b: 48 83 c4 28 add $0x28,%rsp + 6634847f: 5b pop %rbx + 66348480: 5e pop %rsi + 66348481: 5f pop %rdi + 66348482: 5d pop %rbp + 66348483: 41 5c pop %r12 + 66348485: 41 5d pop %r13 + 66348487: c3 retq + 66348488: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634848f: 00 -00000000663483a0 : - 663483a0: 56 push %rsi - 663483a1: 53 push %rbx - 663483a2: 4c 8b 15 77 f5 00 00 mov 0xf577(%rip),%r10 # 66357920 - 663483a9: 4c 8b 05 80 f5 00 00 mov 0xf580(%rip),%r8 # 66357930 - 663483b0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663483b4: 48 8b 41 08 mov 0x8(%rcx),%rax - 663483b8: 4c 8b 4a 48 mov 0x48(%rdx),%r9 - 663483bc: 41 8b 31 mov (%r9),%esi - 663483bf: 85 f6 test %esi,%esi - 663483c1: 0f 84 6d 01 00 00 je 66348534 - 663483c7: 4c 8b 4a 08 mov 0x8(%rdx),%r9 - 663483cb: 44 8b 58 14 mov 0x14(%rax),%r11d - 663483cf: 45 8b 09 mov (%r9),%r9d - 663483d2: 45 39 cb cmp %r9d,%r11d - 663483d5: 74 59 je 66348430 - 663483d7: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663483db: 44 89 ce mov %r9d,%esi - 663483de: 44 29 de sub %r11d,%esi - 663483e1: 45 31 db xor %r11d,%r11d - 663483e4: 48 8b 5b 28 mov 0x28(%rbx),%rbx - 663483e8: 01 33 add %esi,(%rbx) - 663483ea: 44 89 48 14 mov %r9d,0x14(%rax) - 663483ee: 8b 1b mov (%rbx),%ebx - 663483f0: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 663483f4: 85 db test %ebx,%ebx - 663483f6: 41 0f 9f c3 setg %r11b - 663483fa: 45 3b 19 cmp (%r9),%r11d - 663483fd: 74 31 je 66348430 - 663483ff: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66348403: 4d 8b 49 28 mov 0x28(%r9),%r9 - 66348407: 45 8b 19 mov (%r9),%r11d - 6634840a: 45 85 db test %r11d,%r11d - 6634840d: 75 21 jne 66348430 - 6634840f: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66348413: 4d 8b 59 28 mov 0x28(%r9),%r11 - 66348417: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 6634841b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348422: 4d 63 08 movslq (%r8),%r9 - 66348425: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348429: 41 89 18 mov %ebx,(%r8) - 6634842c: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348430: 4c 8b 4a 10 mov 0x10(%rdx),%r9 - 66348434: 44 8b 58 18 mov 0x18(%rax),%r11d - 66348438: 45 8b 09 mov (%r9),%r9d - 6634843b: 45 39 d9 cmp %r11d,%r9d - 6634843e: 74 5a je 6634849a - 66348440: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66348444: 44 89 ce mov %r9d,%esi - 66348447: 44 29 de sub %r11d,%esi - 6634844a: 45 31 db xor %r11d,%r11d - 6634844d: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 66348451: 01 33 add %esi,(%rbx) - 66348453: 44 89 48 18 mov %r9d,0x18(%rax) - 66348457: 44 8b 0b mov (%rbx),%r9d - 6634845a: 45 85 c9 test %r9d,%r9d - 6634845d: 4c 8b 4a 30 mov 0x30(%rdx),%r9 - 66348461: 41 0f 9f c3 setg %r11b - 66348465: 45 3b 19 cmp (%r9),%r11d - 66348468: 74 30 je 6634849a - 6634846a: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 6634846e: 4d 8b 49 30 mov 0x30(%r9),%r9 - 66348472: 41 8b 31 mov (%r9),%esi - 66348475: 85 f6 test %esi,%esi - 66348477: 75 21 jne 6634849a - 66348479: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 6634847d: 4d 8b 59 30 mov 0x30(%r9),%r11 - 66348481: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66348485: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634848c: 4d 63 08 movslq (%r8),%r9 - 6634848f: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348493: 41 89 18 mov %ebx,(%r8) - 66348496: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 6634849a: 4c 8b 4a 18 mov 0x18(%rdx),%r9 - 6634849e: 44 8b 58 1c mov 0x1c(%rax),%r11d - 663484a2: 45 8b 09 mov (%r9),%r9d - 663484a5: 45 39 d9 cmp %r11d,%r9d - 663484a8: 74 59 je 66348503 - 663484aa: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663484ae: 44 89 ce mov %r9d,%esi - 663484b1: 44 29 de sub %r11d,%esi - 663484b4: 45 31 db xor %r11d,%r11d - 663484b7: 48 8b 5b 38 mov 0x38(%rbx),%rbx - 663484bb: 01 33 add %esi,(%rbx) - 663484bd: 44 89 48 1c mov %r9d,0x1c(%rax) - 663484c1: 8b 1b mov (%rbx),%ebx - 663484c3: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 663484c7: 85 db test %ebx,%ebx - 663484c9: 41 0f 9f c3 setg %r11b - 663484cd: 45 3b 19 cmp (%r9),%r11d - 663484d0: 74 31 je 66348503 - 663484d2: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663484d6: 4d 8b 49 38 mov 0x38(%r9),%r9 - 663484da: 45 8b 09 mov (%r9),%r9d - 663484dd: 45 85 c9 test %r9d,%r9d - 663484e0: 75 21 jne 66348503 - 663484e2: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663484e6: 4d 8b 59 38 mov 0x38(%r9),%r11 - 663484ea: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663484ee: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663484f5: 4d 63 08 movslq (%r8),%r9 - 663484f8: 41 8d 59 01 lea 0x1(%r9),%ebx - 663484fc: 41 89 18 mov %ebx,(%r8) - 663484ff: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348503: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66348507: 44 8b 58 20 mov 0x20(%rax),%r11d - 6634850b: 45 8b 09 mov (%r9),%r9d - 6634850e: 45 39 d9 cmp %r11d,%r9d - 66348511: 0f 84 9f 01 00 00 je 663486b6 - 66348517: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634851b: 44 89 ce mov %r9d,%esi - 6634851e: 44 29 de sub %r11d,%esi - 66348521: 48 8b 5b 40 mov 0x40(%rbx),%rbx - 66348525: 01 33 add %esi,(%rbx) - 66348527: 44 89 48 20 mov %r9d,0x20(%rax) - 6634852b: 8b 33 mov (%rbx),%esi - 6634852d: 85 f6 test %esi,%esi - 6634852f: e9 44 01 00 00 jmpq 66348678 - 66348534: 44 8b 48 14 mov 0x14(%rax),%r9d - 66348538: 45 85 c9 test %r9d,%r9d - 6634853b: 74 58 je 66348595 - 6634853d: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66348541: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 66348545: 45 29 0b sub %r9d,(%r11) - 66348548: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) - 6634854f: 41 8b 1b mov (%r11),%ebx - 66348552: 45 31 db xor %r11d,%r11d - 66348555: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 66348559: 85 db test %ebx,%ebx - 6634855b: 41 0f 9f c3 setg %r11b - 6634855f: 45 3b 19 cmp (%r9),%r11d - 66348562: 74 31 je 66348595 - 66348564: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66348568: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634856c: 45 8b 19 mov (%r9),%r11d - 6634856f: 45 85 db test %r11d,%r11d - 66348572: 75 21 jne 66348595 - 66348574: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66348578: 4d 8b 59 28 mov 0x28(%r9),%r11 - 6634857c: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66348580: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348587: 4d 63 08 movslq (%r8),%r9 - 6634858a: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634858e: 41 89 18 mov %ebx,(%r8) - 66348591: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348595: 44 8b 48 18 mov 0x18(%rax),%r9d - 66348599: 45 85 c9 test %r9d,%r9d - 6634859c: 74 58 je 663485f6 - 6634859e: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663485a2: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 663485a6: 45 29 0b sub %r9d,(%r11) - 663485a9: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 663485b0: 45 8b 0b mov (%r11),%r9d - 663485b3: 45 31 db xor %r11d,%r11d - 663485b6: 45 85 c9 test %r9d,%r9d - 663485b9: 4c 8b 4a 30 mov 0x30(%rdx),%r9 - 663485bd: 41 0f 9f c3 setg %r11b - 663485c1: 45 3b 19 cmp (%r9),%r11d - 663485c4: 74 30 je 663485f6 - 663485c6: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663485ca: 4d 8b 49 30 mov 0x30(%r9),%r9 - 663485ce: 41 8b 31 mov (%r9),%esi - 663485d1: 85 f6 test %esi,%esi - 663485d3: 75 21 jne 663485f6 - 663485d5: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663485d9: 4d 8b 59 30 mov 0x30(%r9),%r11 - 663485dd: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663485e1: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663485e8: 4d 63 08 movslq (%r8),%r9 - 663485eb: 41 8d 59 01 lea 0x1(%r9),%ebx - 663485ef: 41 89 18 mov %ebx,(%r8) - 663485f2: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663485f6: 44 8b 48 1c mov 0x1c(%rax),%r9d - 663485fa: 45 85 c9 test %r9d,%r9d - 663485fd: 74 58 je 66348657 - 663485ff: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66348603: 4d 8b 5b 38 mov 0x38(%r11),%r11 - 66348607: 45 29 0b sub %r9d,(%r11) - 6634860a: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 66348611: 41 8b 1b mov (%r11),%ebx - 66348614: 45 31 db xor %r11d,%r11d - 66348617: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 6634861b: 85 db test %ebx,%ebx - 6634861d: 41 0f 9f c3 setg %r11b - 66348621: 45 3b 19 cmp (%r9),%r11d - 66348624: 74 31 je 66348657 - 66348626: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 6634862a: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634862e: 45 8b 19 mov (%r9),%r11d - 66348631: 45 85 db test %r11d,%r11d - 66348634: 75 21 jne 66348657 - 66348636: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 6634863a: 4d 8b 59 38 mov 0x38(%r9),%r11 - 6634863e: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66348642: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66348649: 4d 63 08 movslq (%r8),%r9 - 6634864c: 41 8d 59 01 lea 0x1(%r9),%ebx - 66348650: 41 89 18 mov %ebx,(%r8) - 66348653: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66348657: 44 8b 48 20 mov 0x20(%rax),%r9d - 6634865b: 45 85 c9 test %r9d,%r9d - 6634865e: 74 56 je 663486b6 - 66348660: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 66348664: 4d 8b 5b 40 mov 0x40(%r11),%r11 - 66348668: 45 29 0b sub %r9d,(%r11) - 6634866b: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 66348672: 45 8b 0b mov (%r11),%r9d - 66348675: 45 85 c9 test %r9d,%r9d - 66348678: 48 8b 42 40 mov 0x40(%rdx),%rax - 6634867c: 41 0f 9f c1 setg %r9b - 66348680: 45 0f b6 c9 movzbl %r9b,%r9d - 66348684: 44 3b 08 cmp (%rax),%r9d - 66348687: 74 2d je 663486b6 - 66348689: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634868d: 48 8b 40 40 mov 0x40(%rax),%rax - 66348691: 8b 00 mov (%rax),%eax - 66348693: 85 c0 test %eax,%eax - 66348695: 75 1f jne 663486b6 - 66348697: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634869b: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634869f: 48 8b 42 10 mov 0x10(%rdx),%rax - 663486a3: c7 00 01 00 00 00 movl $0x1,(%rax) - 663486a9: 49 63 00 movslq (%r8),%rax - 663486ac: 8d 48 01 lea 0x1(%rax),%ecx - 663486af: 41 89 08 mov %ecx,(%r8) - 663486b2: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 663486b6: 5b pop %rbx - 663486b7: 5e pop %rsi - 663486b8: c3 retq - 663486b9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) +0000000066348490 : + 66348490: 41 55 push %r13 + 66348492: 41 54 push %r12 + 66348494: 55 push %rbp + 66348495: 57 push %rdi + 66348496: 56 push %rsi + 66348497: 53 push %rbx + 66348498: 48 83 ec 28 sub $0x28,%rsp + 6634849c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663484a0: 49 8b 81 58 02 00 00 mov 0x258(%r9),%rax + 663484a7: 48 89 cb mov %rcx,%rbx + 663484aa: 44 8b 10 mov (%rax),%r10d + 663484ad: 45 85 d2 test %r10d,%r10d + 663484b0: 0f 84 cb 00 00 00 je 66348581 + 663484b6: 49 8b 41 10 mov 0x10(%r9),%rax + 663484ba: be 0b 00 00 00 mov $0xb,%esi + 663484bf: 4c 8d 2d 3a ab 00 00 lea 0xab3a(%rip),%r13 # 66353000 <.rdata> + 663484c6: 4c 8d 25 43 ab 00 00 lea 0xab43(%rip),%r12 # 66353010 <.rdata+0x10> + 663484cd: 8b 10 mov (%rax),%edx + 663484cf: 49 8b 41 08 mov 0x8(%r9),%rax + 663484d3: 8b 00 mov (%rax),%eax + 663484d5: 8d 04 50 lea (%rax,%rdx,2),%eax + 663484d8: 49 8b 51 18 mov 0x18(%r9),%rdx + 663484dc: 8b 12 mov (%rdx),%edx + 663484de: 8d 04 90 lea (%rax,%rdx,4),%eax + 663484e1: 49 8b 51 20 mov 0x20(%r9),%rdx + 663484e5: 8b 12 mov (%rdx),%edx + 663484e7: 8d 3c d0 lea (%rax,%rdx,8),%edi + 663484ea: 49 8b 41 28 mov 0x28(%r9),%rax + 663484ee: 49 8b 51 38 mov 0x38(%r9),%rdx + 663484f2: 8b 00 mov (%rax),%eax + 663484f4: c1 e0 04 shl $0x4,%eax + 663484f7: 01 c7 add %eax,%edi + 663484f9: 49 8b 41 30 mov 0x30(%r9),%rax + 663484fd: 8b 00 mov (%rax),%eax + 663484ff: c1 e0 05 shl $0x5,%eax + 66348502: 01 f8 add %edi,%eax + 66348504: 8b 3a mov (%rdx),%edi + 66348506: 49 8b 51 50 mov 0x50(%r9),%rdx + 6634850a: c1 e7 06 shl $0x6,%edi + 6634850d: 01 c7 add %eax,%edi + 6634850f: 49 8b 41 40 mov 0x40(%r9),%rax + 66348513: 8b 00 mov (%rax),%eax + 66348515: c1 e0 07 shl $0x7,%eax + 66348518: 01 c7 add %eax,%edi + 6634851a: 49 8b 41 48 mov 0x48(%r9),%rax + 6634851e: 8b 00 mov (%rax),%eax + 66348520: c1 e0 08 shl $0x8,%eax + 66348523: 01 f8 add %edi,%eax + 66348525: 8b 3a mov (%rdx),%edi + 66348527: c1 e7 09 shl $0x9,%edi + 6634852a: 01 c7 add %eax,%edi + 6634852c: 48 63 ef movslq %edi,%rbp + 6634852f: 48 c1 e5 02 shl $0x2,%rbp + 66348533: 85 ff test %edi,%edi + 66348535: 78 05 js 6634853c + 66348537: 39 7b 38 cmp %edi,0x38(%rbx) + 6634853a: 7f 11 jg 6634854d + 6634853c: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66348542: 4c 89 ea mov %r13,%rdx + 66348545: 4c 89 e1 mov %r12,%rcx + 66348548: e8 b3 8a 00 00 callq 66351000 <_assert> + 6634854d: 48 8b 43 40 mov 0x40(%rbx),%rax + 66348551: 89 f2 mov %esi,%edx + 66348553: 48 89 d9 mov %rbx,%rcx + 66348556: 83 c6 01 add $0x1,%esi + 66348559: 81 c7 00 04 00 00 add $0x400,%edi + 6634855f: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66348563: 48 81 c5 00 10 00 00 add $0x1000,%rbp + 6634856a: e8 41 8e ff ff callq 663413b0 + 6634856f: 83 fe 4b cmp $0x4b,%esi + 66348572: 75 bf jne 66348533 + 66348574: 48 83 c4 28 add $0x28,%rsp + 66348578: 5b pop %rbx + 66348579: 5e pop %rsi + 6634857a: 5f pop %rdi + 6634857b: 5d pop %rbp + 6634857c: 41 5c pop %r12 + 6634857e: 41 5d pop %r13 + 66348580: c3 retq + 66348581: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348585: 4c 8b 1d 94 e3 00 00 mov 0xe394(%rip),%r11 # 66356920 + 6634858c: 4c 8b 15 9d e3 00 00 mov 0xe39d(%rip),%r10 # 66356930 + 66348593: 48 8d 50 2c lea 0x2c(%rax),%rdx + 66348597: b8 58 00 00 00 mov $0x58,%eax + 6634859c: 0f 1f 40 00 nopl 0x0(%rax) + 663485a0: 8b 0a mov (%rdx),%ecx + 663485a2: 85 c9 test %ecx,%ecx + 663485a4: 74 55 je 663485fb + 663485a6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 663485aa: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663485ae: 41 29 08 sub %ecx,(%r8) + 663485b1: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663485b7: 45 8b 00 mov (%r8),%r8d + 663485ba: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 663485be: 45 85 c0 test %r8d,%r8d + 663485c1: 41 0f 9f c0 setg %r8b + 663485c5: 45 0f b6 c0 movzbl %r8b,%r8d + 663485c9: 44 3b 01 cmp (%rcx),%r8d + 663485cc: 74 2d je 663485fb + 663485ce: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 663485d2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 663485d6: 8b 09 mov (%rcx),%ecx + 663485d8: 85 c9 test %ecx,%ecx + 663485da: 75 1f jne 663485fb + 663485dc: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 663485e0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 663485e4: 49 8b 48 10 mov 0x10(%r8),%rcx + 663485e8: c7 01 01 00 00 00 movl $0x1,(%rcx) + 663485ee: 49 63 0a movslq (%r10),%rcx + 663485f1: 8d 71 01 lea 0x1(%rcx),%esi + 663485f4: 41 89 32 mov %esi,(%r10) + 663485f7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 663485fb: 48 83 c0 08 add $0x8,%rax + 663485ff: 48 83 c2 04 add $0x4,%rdx + 66348603: 48 3d 58 02 00 00 cmp $0x258,%rax + 66348609: 75 95 jne 663485a0 + 6634860b: 48 83 c4 28 add $0x28,%rsp + 6634860f: 5b pop %rbx + 66348610: 5e pop %rsi + 66348611: 5f pop %rdi + 66348612: 5d pop %rbp + 66348613: 41 5c pop %r12 + 66348615: 41 5d pop %r13 + 66348617: c3 retq + 66348618: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634861f: 00 -00000000663486c0 : - 663486c0: 41 55 push %r13 - 663486c2: 41 54 push %r12 - 663486c4: 55 push %rbp - 663486c5: 57 push %rdi - 663486c6: 56 push %rsi - 663486c7: 53 push %rbx - 663486c8: 48 83 ec 28 sub $0x28,%rsp - 663486cc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663486d0: 49 8b 81 60 02 00 00 mov 0x260(%r9),%rax - 663486d7: 48 89 ce mov %rcx,%rsi - 663486da: 8b 18 mov (%rax),%ebx - 663486dc: 85 db test %ebx,%ebx - 663486de: 0f 84 51 01 00 00 je 66348835 - 663486e4: 49 8b 41 10 mov 0x10(%r9),%rax - 663486e8: bb 30 00 00 00 mov $0x30,%ebx - 663486ed: 4c 8d 2d 0c b9 00 00 lea 0xb90c(%rip),%r13 # 66354000 <.rdata> - 663486f4: 4c 8d 25 15 b9 00 00 lea 0xb915(%rip),%r12 # 66354010 <.rdata+0x10> - 663486fb: 8b 10 mov (%rax),%edx - 663486fd: 49 8b 41 08 mov 0x8(%r9),%rax - 66348701: 8b 00 mov (%rax),%eax - 66348703: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348706: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634870a: 8b 12 mov (%rdx),%edx - 6634870c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634870f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348713: 8b 12 mov (%rdx),%edx - 66348715: 8d 04 d0 lea (%rax,%rdx,8),%eax - 66348718: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634871c: 8b 3a mov (%rdx),%edi - 6634871e: 49 8b 51 40 mov 0x40(%r9),%rdx - 66348722: c1 e7 04 shl $0x4,%edi - 66348725: 01 c7 add %eax,%edi - 66348727: 49 8b 41 30 mov 0x30(%r9),%rax - 6634872b: 8b 00 mov (%rax),%eax - 6634872d: c1 e0 05 shl $0x5,%eax - 66348730: 01 c7 add %eax,%edi - 66348732: 49 8b 41 38 mov 0x38(%r9),%rax - 66348736: 8b 00 mov (%rax),%eax - 66348738: c1 e0 06 shl $0x6,%eax - 6634873b: 01 f8 add %edi,%eax - 6634873d: 8b 3a mov (%rdx),%edi - 6634873f: 49 8b 51 58 mov 0x58(%r9),%rdx - 66348743: c1 e7 07 shl $0x7,%edi - 66348746: 01 c7 add %eax,%edi - 66348748: 49 8b 41 48 mov 0x48(%r9),%rax - 6634874c: 8b 00 mov (%rax),%eax - 6634874e: c1 e0 08 shl $0x8,%eax - 66348751: 01 c7 add %eax,%edi - 66348753: 49 8b 41 50 mov 0x50(%r9),%rax - 66348757: 8b 00 mov (%rax),%eax - 66348759: c1 e0 09 shl $0x9,%eax - 6634875c: 01 f8 add %edi,%eax - 6634875e: 8b 3a mov (%rdx),%edi - 66348760: c1 e7 0a shl $0xa,%edi - 66348763: 01 c7 add %eax,%edi - 66348765: 48 63 ef movslq %edi,%rbp - 66348768: 48 c1 e5 02 shl $0x2,%rbp - 6634876c: 0f 1f 40 00 nopl 0x0(%rax) - 66348770: 85 ff test %edi,%edi - 66348772: 78 05 js 66348779 - 66348774: 39 7e 38 cmp %edi,0x38(%rsi) - 66348777: 7f 11 jg 6634878a - 66348779: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634877f: 4c 89 ea mov %r13,%rdx - 66348782: 4c 89 e1 mov %r12,%rcx - 66348785: e8 86 9a 00 00 callq 66352210 <_assert> - 6634878a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634878e: 48 8b 46 40 mov 0x40(%rsi),%rax - 66348792: 48 01 da add %rbx,%rdx - 66348795: 8b 04 28 mov (%rax,%rbp,1),%eax - 66348798: 8b 0a mov (%rdx),%ecx - 6634879a: 39 c8 cmp %ecx,%eax - 6634879c: 74 6c je 6634880a - 6634879e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663487a2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663487a6: 41 89 c3 mov %eax,%r11d - 663487a9: 41 29 cb sub %ecx,%r11d - 663487ac: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663487b0: 45 01 18 add %r11d,(%r8) - 663487b3: 89 02 mov %eax,(%rdx) - 663487b5: 31 d2 xor %edx,%edx - 663487b7: 48 8b 46 10 mov 0x10(%rsi),%rax - 663487bb: 45 8b 18 mov (%r8),%r11d - 663487be: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663487c2: 45 85 db test %r11d,%r11d - 663487c5: 0f 9f c2 setg %dl - 663487c8: 3b 10 cmp (%rax),%edx - 663487ca: 74 3e je 6634880a - 663487cc: 48 8b 46 20 mov 0x20(%rsi),%rax - 663487d0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663487d4: 44 8b 10 mov (%rax),%r10d - 663487d7: 45 85 d2 test %r10d,%r10d - 663487da: 75 2e jne 6634880a - 663487dc: 48 8b 46 28 mov 0x28(%rsi),%rax - 663487e0: 48 8b 0d 49 f1 00 00 mov 0xf149(%rip),%rcx # 66357930 - 663487e7: 4c 8b 05 32 f1 00 00 mov 0xf132(%rip),%r8 # 66357920 - 663487ee: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 663487f2: 48 8b 42 10 mov 0x10(%rdx),%rax - 663487f6: c7 00 01 00 00 00 movl $0x1,(%rax) - 663487fc: 48 63 01 movslq (%rcx),%rax - 663487ff: 44 8d 48 01 lea 0x1(%rax),%r9d - 66348803: 44 89 09 mov %r9d,(%rcx) - 66348806: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634880a: 48 83 c3 04 add $0x4,%rbx - 6634880e: 81 c7 00 08 00 00 add $0x800,%edi - 66348814: 48 81 c5 00 20 00 00 add $0x2000,%rbp - 6634881b: 48 81 fb 30 01 00 00 cmp $0x130,%rbx - 66348822: 0f 85 48 ff ff ff jne 66348770 - 66348828: 48 83 c4 28 add $0x28,%rsp - 6634882c: 5b pop %rbx - 6634882d: 5e pop %rsi - 6634882e: 5f pop %rdi - 6634882f: 5d pop %rbp - 66348830: 41 5c pop %r12 - 66348832: 41 5d pop %r13 - 66348834: c3 retq - 66348835: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348839: 4c 8b 1d e0 f0 00 00 mov 0xf0e0(%rip),%r11 # 66357920 - 66348840: 4c 8b 15 e9 f0 00 00 mov 0xf0e9(%rip),%r10 # 66357930 - 66348847: 48 8d 50 30 lea 0x30(%rax),%rdx - 6634884b: b8 60 00 00 00 mov $0x60,%eax - 66348850: 8b 0a mov (%rdx),%ecx - 66348852: 85 c9 test %ecx,%ecx - 66348854: 74 55 je 663488ab - 66348856: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634885a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634885e: 41 29 08 sub %ecx,(%r8) - 66348861: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66348867: 45 8b 00 mov (%r8),%r8d - 6634886a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634886e: 45 85 c0 test %r8d,%r8d - 66348871: 41 0f 9f c0 setg %r8b - 66348875: 45 0f b6 c0 movzbl %r8b,%r8d - 66348879: 44 3b 01 cmp (%rcx),%r8d - 6634887c: 74 2d je 663488ab - 6634887e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66348882: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66348886: 8b 09 mov (%rcx),%ecx - 66348888: 85 c9 test %ecx,%ecx - 6634888a: 75 1f jne 663488ab - 6634888c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66348890: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66348894: 49 8b 48 10 mov 0x10(%r8),%rcx - 66348898: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634889e: 49 63 0a movslq (%r10),%rcx - 663488a1: 8d 59 01 lea 0x1(%rcx),%ebx - 663488a4: 41 89 1a mov %ebx,(%r10) - 663488a7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663488ab: 48 83 c0 08 add $0x8,%rax - 663488af: 48 83 c2 04 add $0x4,%rdx - 663488b3: 48 3d 60 02 00 00 cmp $0x260,%rax - 663488b9: 75 95 jne 66348850 - 663488bb: 48 83 c4 28 add $0x28,%rsp - 663488bf: 5b pop %rbx - 663488c0: 5e pop %rsi - 663488c1: 5f pop %rdi - 663488c2: 5d pop %rbp - 663488c3: 41 5c pop %r12 - 663488c5: 41 5d pop %r13 - 663488c7: c3 retq - 663488c8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663488cf: 00 +0000000066348620 : + 66348620: 41 55 push %r13 + 66348622: 41 54 push %r12 + 66348624: 55 push %rbp + 66348625: 57 push %rdi + 66348626: 56 push %rsi + 66348627: 53 push %rbx + 66348628: 48 83 ec 28 sub $0x28,%rsp + 6634862c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66348630: 49 8b 81 60 02 00 00 mov 0x260(%r9),%rax + 66348637: 48 89 cb mov %rcx,%rbx + 6634863a: 44 8b 10 mov (%rax),%r10d + 6634863d: 45 85 d2 test %r10d,%r10d + 66348640: 0f 84 da 00 00 00 je 66348720 + 66348646: 49 8b 41 10 mov 0x10(%r9),%rax + 6634864a: be 0c 00 00 00 mov $0xc,%esi + 6634864f: 4c 8d 2d aa a9 00 00 lea 0xa9aa(%rip),%r13 # 66353000 <.rdata> + 66348656: 4c 8d 25 b3 a9 00 00 lea 0xa9b3(%rip),%r12 # 66353010 <.rdata+0x10> + 6634865d: 8b 10 mov (%rax),%edx + 6634865f: 49 8b 41 08 mov 0x8(%r9),%rax + 66348663: 8b 00 mov (%rax),%eax + 66348665: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348668: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634866c: 8b 12 mov (%rdx),%edx + 6634866e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66348671: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348675: 8b 12 mov (%rdx),%edx + 66348677: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634867a: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634867e: 8b 3a mov (%rdx),%edi + 66348680: 49 8b 51 40 mov 0x40(%r9),%rdx + 66348684: c1 e7 04 shl $0x4,%edi + 66348687: 01 c7 add %eax,%edi + 66348689: 49 8b 41 30 mov 0x30(%r9),%rax + 6634868d: 8b 00 mov (%rax),%eax + 6634868f: c1 e0 05 shl $0x5,%eax + 66348692: 01 c7 add %eax,%edi + 66348694: 49 8b 41 38 mov 0x38(%r9),%rax + 66348698: 8b 00 mov (%rax),%eax + 6634869a: c1 e0 06 shl $0x6,%eax + 6634869d: 01 f8 add %edi,%eax + 6634869f: 8b 3a mov (%rdx),%edi + 663486a1: 49 8b 51 58 mov 0x58(%r9),%rdx + 663486a5: c1 e7 07 shl $0x7,%edi + 663486a8: 01 c7 add %eax,%edi + 663486aa: 49 8b 41 48 mov 0x48(%r9),%rax + 663486ae: 8b 00 mov (%rax),%eax + 663486b0: c1 e0 08 shl $0x8,%eax + 663486b3: 01 c7 add %eax,%edi + 663486b5: 49 8b 41 50 mov 0x50(%r9),%rax + 663486b9: 8b 00 mov (%rax),%eax + 663486bb: c1 e0 09 shl $0x9,%eax + 663486be: 01 f8 add %edi,%eax + 663486c0: 8b 3a mov (%rdx),%edi + 663486c2: c1 e7 0a shl $0xa,%edi + 663486c5: 01 c7 add %eax,%edi + 663486c7: 48 63 ef movslq %edi,%rbp + 663486ca: 48 c1 e5 02 shl $0x2,%rbp + 663486ce: 66 90 xchg %ax,%ax + 663486d0: 85 ff test %edi,%edi + 663486d2: 78 05 js 663486d9 + 663486d4: 39 7b 38 cmp %edi,0x38(%rbx) + 663486d7: 7f 11 jg 663486ea + 663486d9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663486df: 4c 89 ea mov %r13,%rdx + 663486e2: 4c 89 e1 mov %r12,%rcx + 663486e5: e8 16 89 00 00 callq 66351000 <_assert> + 663486ea: 48 8b 43 40 mov 0x40(%rbx),%rax + 663486ee: 89 f2 mov %esi,%edx + 663486f0: 48 89 d9 mov %rbx,%rcx + 663486f3: 83 c6 01 add $0x1,%esi + 663486f6: 81 c7 00 08 00 00 add $0x800,%edi + 663486fc: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66348700: 48 81 c5 00 20 00 00 add $0x2000,%rbp + 66348707: e8 a4 8c ff ff callq 663413b0 + 6634870c: 83 fe 4c cmp $0x4c,%esi + 6634870f: 75 bf jne 663486d0 + 66348711: 48 83 c4 28 add $0x28,%rsp + 66348715: 5b pop %rbx + 66348716: 5e pop %rsi + 66348717: 5f pop %rdi + 66348718: 5d pop %rbp + 66348719: 41 5c pop %r12 + 6634871b: 41 5d pop %r13 + 6634871d: c3 retq + 6634871e: 66 90 xchg %ax,%ax + 66348720: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348724: 4c 8b 1d f5 e1 00 00 mov 0xe1f5(%rip),%r11 # 66356920 + 6634872b: 4c 8b 15 fe e1 00 00 mov 0xe1fe(%rip),%r10 # 66356930 + 66348732: 48 8d 50 30 lea 0x30(%rax),%rdx + 66348736: b8 60 00 00 00 mov $0x60,%eax + 6634873b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66348740: 8b 0a mov (%rdx),%ecx + 66348742: 85 c9 test %ecx,%ecx + 66348744: 74 55 je 6634879b + 66348746: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634874a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634874e: 41 29 08 sub %ecx,(%r8) + 66348751: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66348757: 45 8b 00 mov (%r8),%r8d + 6634875a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634875e: 45 85 c0 test %r8d,%r8d + 66348761: 41 0f 9f c0 setg %r8b + 66348765: 45 0f b6 c0 movzbl %r8b,%r8d + 66348769: 44 3b 01 cmp (%rcx),%r8d + 6634876c: 74 2d je 6634879b + 6634876e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66348772: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66348776: 8b 09 mov (%rcx),%ecx + 66348778: 85 c9 test %ecx,%ecx + 6634877a: 75 1f jne 6634879b + 6634877c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66348780: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66348784: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348788: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634878e: 49 63 0a movslq (%r10),%rcx + 66348791: 8d 71 01 lea 0x1(%rcx),%esi + 66348794: 41 89 32 mov %esi,(%r10) + 66348797: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634879b: 48 83 c0 08 add $0x8,%rax + 6634879f: 48 83 c2 04 add $0x4,%rdx + 663487a3: 48 3d 60 02 00 00 cmp $0x260,%rax + 663487a9: 75 95 jne 66348740 + 663487ab: 48 83 c4 28 add $0x28,%rsp + 663487af: 5b pop %rbx + 663487b0: 5e pop %rsi + 663487b1: 5f pop %rdi + 663487b2: 5d pop %rbp + 663487b3: 41 5c pop %r12 + 663487b5: 41 5d pop %r13 + 663487b7: c3 retq + 663487b8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663487bf: 00 -00000000663488d0 : - 663488d0: 41 55 push %r13 - 663488d2: 41 54 push %r12 - 663488d4: 55 push %rbp - 663488d5: 57 push %rdi - 663488d6: 56 push %rsi - 663488d7: 53 push %rbx - 663488d8: 48 83 ec 28 sub $0x28,%rsp - 663488dc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663488e0: 49 8b 81 50 02 00 00 mov 0x250(%r9),%rax - 663488e7: 48 89 ce mov %rcx,%rsi - 663488ea: 8b 18 mov (%rax),%ebx - 663488ec: 85 db test %ebx,%ebx - 663488ee: 0f 84 41 01 00 00 je 66348a35 - 663488f4: 49 8b 41 10 mov 0x10(%r9),%rax - 663488f8: bb 28 00 00 00 mov $0x28,%ebx - 663488fd: 4c 8d 2d fc b6 00 00 lea 0xb6fc(%rip),%r13 # 66354000 <.rdata> - 66348904: 4c 8d 25 05 b7 00 00 lea 0xb705(%rip),%r12 # 66354010 <.rdata+0x10> - 6634890b: 8b 10 mov (%rax),%edx - 6634890d: 49 8b 41 08 mov 0x8(%r9),%rax - 66348911: 8b 00 mov (%rax),%eax - 66348913: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348916: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634891a: 8b 12 mov (%rdx),%edx - 6634891c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634891f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348923: 8b 12 mov (%rdx),%edx - 66348925: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66348928: 49 8b 41 28 mov 0x28(%r9),%rax - 6634892c: 49 8b 51 30 mov 0x30(%r9),%rdx - 66348930: 8b 00 mov (%rax),%eax - 66348932: c1 e0 04 shl $0x4,%eax - 66348935: 01 f8 add %edi,%eax - 66348937: 8b 3a mov (%rdx),%edi - 66348939: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634893d: c1 e7 05 shl $0x5,%edi - 66348940: 01 c7 add %eax,%edi - 66348942: 49 8b 41 38 mov 0x38(%r9),%rax - 66348946: 8b 00 mov (%rax),%eax - 66348948: c1 e0 06 shl $0x6,%eax - 6634894b: 01 c7 add %eax,%edi - 6634894d: 49 8b 41 40 mov 0x40(%r9),%rax - 66348951: 8b 00 mov (%rax),%eax - 66348953: c1 e0 07 shl $0x7,%eax - 66348956: 01 f8 add %edi,%eax - 66348958: 8b 3a mov (%rdx),%edi - 6634895a: c1 e7 08 shl $0x8,%edi - 6634895d: 01 c7 add %eax,%edi - 6634895f: 48 63 ef movslq %edi,%rbp - 66348962: 48 c1 e5 02 shl $0x2,%rbp - 66348966: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634896d: 00 00 00 - 66348970: 85 ff test %edi,%edi - 66348972: 78 05 js 66348979 - 66348974: 39 7e 38 cmp %edi,0x38(%rsi) - 66348977: 7f 11 jg 6634898a - 66348979: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634897f: 4c 89 ea mov %r13,%rdx - 66348982: 4c 89 e1 mov %r12,%rcx - 66348985: e8 86 98 00 00 callq 66352210 <_assert> - 6634898a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634898e: 48 8b 46 40 mov 0x40(%rsi),%rax - 66348992: 48 01 da add %rbx,%rdx - 66348995: 8b 04 28 mov (%rax,%rbp,1),%eax - 66348998: 8b 0a mov (%rdx),%ecx - 6634899a: 39 c8 cmp %ecx,%eax - 6634899c: 74 6c je 66348a0a - 6634899e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663489a2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663489a6: 41 89 c3 mov %eax,%r11d - 663489a9: 41 29 cb sub %ecx,%r11d - 663489ac: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663489b0: 45 01 18 add %r11d,(%r8) - 663489b3: 89 02 mov %eax,(%rdx) - 663489b5: 31 d2 xor %edx,%edx - 663489b7: 48 8b 46 10 mov 0x10(%rsi),%rax - 663489bb: 45 8b 18 mov (%r8),%r11d - 663489be: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663489c2: 45 85 db test %r11d,%r11d - 663489c5: 0f 9f c2 setg %dl - 663489c8: 3b 10 cmp (%rax),%edx - 663489ca: 74 3e je 66348a0a - 663489cc: 48 8b 46 20 mov 0x20(%rsi),%rax - 663489d0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663489d4: 44 8b 10 mov (%rax),%r10d - 663489d7: 45 85 d2 test %r10d,%r10d - 663489da: 75 2e jne 66348a0a - 663489dc: 48 8b 46 28 mov 0x28(%rsi),%rax - 663489e0: 48 8b 0d 49 ef 00 00 mov 0xef49(%rip),%rcx # 66357930 - 663489e7: 4c 8b 05 32 ef 00 00 mov 0xef32(%rip),%r8 # 66357920 - 663489ee: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 663489f2: 48 8b 42 10 mov 0x10(%rdx),%rax - 663489f6: c7 00 01 00 00 00 movl $0x1,(%rax) - 663489fc: 48 63 01 movslq (%rcx),%rax - 663489ff: 44 8d 48 01 lea 0x1(%rax),%r9d - 66348a03: 44 89 09 mov %r9d,(%rcx) - 66348a06: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66348a0a: 48 83 c3 04 add $0x4,%rbx - 66348a0e: 81 c7 00 02 00 00 add $0x200,%edi - 66348a14: 48 81 c5 00 08 00 00 add $0x800,%rbp - 66348a1b: 48 81 fb 28 01 00 00 cmp $0x128,%rbx - 66348a22: 0f 85 48 ff ff ff jne 66348970 - 66348a28: 48 83 c4 28 add $0x28,%rsp - 66348a2c: 5b pop %rbx - 66348a2d: 5e pop %rsi - 66348a2e: 5f pop %rdi - 66348a2f: 5d pop %rbp - 66348a30: 41 5c pop %r12 - 66348a32: 41 5d pop %r13 - 66348a34: c3 retq - 66348a35: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348a39: 4c 8b 1d e0 ee 00 00 mov 0xeee0(%rip),%r11 # 66357920 - 66348a40: 4c 8b 15 e9 ee 00 00 mov 0xeee9(%rip),%r10 # 66357930 - 66348a47: 48 8d 50 28 lea 0x28(%rax),%rdx - 66348a4b: b8 50 00 00 00 mov $0x50,%eax - 66348a50: 8b 0a mov (%rdx),%ecx - 66348a52: 85 c9 test %ecx,%ecx - 66348a54: 74 55 je 66348aab - 66348a56: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66348a5a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66348a5e: 41 29 08 sub %ecx,(%r8) - 66348a61: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66348a67: 45 8b 00 mov (%r8),%r8d - 66348a6a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66348a6e: 45 85 c0 test %r8d,%r8d - 66348a71: 41 0f 9f c0 setg %r8b - 66348a75: 45 0f b6 c0 movzbl %r8b,%r8d - 66348a79: 44 3b 01 cmp (%rcx),%r8d - 66348a7c: 74 2d je 66348aab - 66348a7e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66348a82: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66348a86: 8b 09 mov (%rcx),%ecx - 66348a88: 85 c9 test %ecx,%ecx - 66348a8a: 75 1f jne 66348aab - 66348a8c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66348a90: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66348a94: 49 8b 48 10 mov 0x10(%r8),%rcx - 66348a98: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66348a9e: 49 63 0a movslq (%r10),%rcx - 66348aa1: 8d 59 01 lea 0x1(%rcx),%ebx - 66348aa4: 41 89 1a mov %ebx,(%r10) - 66348aa7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66348aab: 48 83 c0 08 add $0x8,%rax - 66348aaf: 48 83 c2 04 add $0x4,%rdx - 66348ab3: 48 3d 50 02 00 00 cmp $0x250,%rax - 66348ab9: 75 95 jne 66348a50 - 66348abb: 48 83 c4 28 add $0x28,%rsp - 66348abf: 5b pop %rbx - 66348ac0: 5e pop %rsi - 66348ac1: 5f pop %rdi - 66348ac2: 5d pop %rbp - 66348ac3: 41 5c pop %r12 - 66348ac5: 41 5d pop %r13 - 66348ac7: c3 retq - 66348ac8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66348acf: 00 +00000000663487c0 : + 663487c0: 41 55 push %r13 + 663487c2: 41 54 push %r12 + 663487c4: 55 push %rbp + 663487c5: 57 push %rdi + 663487c6: 56 push %rsi + 663487c7: 53 push %rbx + 663487c8: 48 83 ec 28 sub $0x28,%rsp + 663487cc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663487d0: 49 8b 81 38 02 00 00 mov 0x238(%r9),%rax + 663487d7: 48 89 cb mov %rcx,%rbx + 663487da: 44 8b 10 mov (%rax),%r10d + 663487dd: 45 85 d2 test %r10d,%r10d + 663487e0: 0f 84 aa 00 00 00 je 66348890 + 663487e6: 49 8b 41 10 mov 0x10(%r9),%rax + 663487ea: be 07 00 00 00 mov $0x7,%esi + 663487ef: 4c 8d 2d 0a a8 00 00 lea 0xa80a(%rip),%r13 # 66353000 <.rdata> + 663487f6: 4c 8d 25 13 a8 00 00 lea 0xa813(%rip),%r12 # 66353010 <.rdata+0x10> + 663487fd: 8b 10 mov (%rax),%edx + 663487ff: 49 8b 41 08 mov 0x8(%r9),%rax + 66348803: 8b 00 mov (%rax),%eax + 66348805: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348808: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634880c: 8b 12 mov (%rdx),%edx + 6634880e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66348811: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348815: 8b 12 mov (%rdx),%edx + 66348817: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634881a: 49 8b 41 28 mov 0x28(%r9),%rax + 6634881e: 49 8b 51 30 mov 0x30(%r9),%rdx + 66348822: 8b 00 mov (%rax),%eax + 66348824: c1 e0 04 shl $0x4,%eax + 66348827: 01 f8 add %edi,%eax + 66348829: 8b 3a mov (%rdx),%edi + 6634882b: c1 e7 05 shl $0x5,%edi + 6634882e: 01 c7 add %eax,%edi + 66348830: 48 63 ef movslq %edi,%rbp + 66348833: 48 c1 e5 02 shl $0x2,%rbp + 66348837: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634883e: 00 00 + 66348840: 85 ff test %edi,%edi + 66348842: 78 05 js 66348849 + 66348844: 3b 7b 38 cmp 0x38(%rbx),%edi + 66348847: 7c 11 jl 6634885a + 66348849: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634884f: 4c 89 ea mov %r13,%rdx + 66348852: 4c 89 e1 mov %r12,%rcx + 66348855: e8 a6 87 00 00 callq 66351000 <_assert> + 6634885a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634885e: 89 f2 mov %esi,%edx + 66348860: 48 89 d9 mov %rbx,%rcx + 66348863: 83 c6 01 add $0x1,%esi + 66348866: 83 c7 40 add $0x40,%edi + 66348869: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634886d: 48 81 c5 00 01 00 00 add $0x100,%rbp + 66348874: e8 37 8b ff ff callq 663413b0 + 66348879: 83 fe 47 cmp $0x47,%esi + 6634887c: 75 c2 jne 66348840 + 6634887e: 48 83 c4 28 add $0x28,%rsp + 66348882: 5b pop %rbx + 66348883: 5e pop %rsi + 66348884: 5f pop %rdi + 66348885: 5d pop %rbp + 66348886: 41 5c pop %r12 + 66348888: 41 5d pop %r13 + 6634888a: c3 retq + 6634888b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66348890: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348894: 4c 8b 1d 85 e0 00 00 mov 0xe085(%rip),%r11 # 66356920 + 6634889b: 4c 8b 15 8e e0 00 00 mov 0xe08e(%rip),%r10 # 66356930 + 663488a2: 48 8d 50 1c lea 0x1c(%rax),%rdx + 663488a6: b8 38 00 00 00 mov $0x38,%eax + 663488ab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663488b0: 8b 0a mov (%rdx),%ecx + 663488b2: 85 c9 test %ecx,%ecx + 663488b4: 74 55 je 6634890b + 663488b6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 663488ba: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663488be: 41 29 08 sub %ecx,(%r8) + 663488c1: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663488c7: 45 8b 00 mov (%r8),%r8d + 663488ca: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 663488ce: 45 85 c0 test %r8d,%r8d + 663488d1: 41 0f 9f c0 setg %r8b + 663488d5: 45 0f b6 c0 movzbl %r8b,%r8d + 663488d9: 44 3b 01 cmp (%rcx),%r8d + 663488dc: 74 2d je 6634890b + 663488de: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 663488e2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 663488e6: 8b 09 mov (%rcx),%ecx + 663488e8: 85 c9 test %ecx,%ecx + 663488ea: 75 1f jne 6634890b + 663488ec: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 663488f0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 663488f4: 49 8b 48 10 mov 0x10(%r8),%rcx + 663488f8: c7 01 01 00 00 00 movl $0x1,(%rcx) + 663488fe: 49 63 0a movslq (%r10),%rcx + 66348901: 8d 71 01 lea 0x1(%rcx),%esi + 66348904: 41 89 32 mov %esi,(%r10) + 66348907: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634890b: 48 83 c0 08 add $0x8,%rax + 6634890f: 48 83 c2 04 add $0x4,%rdx + 66348913: 48 3d 38 02 00 00 cmp $0x238,%rax + 66348919: 75 95 jne 663488b0 + 6634891b: 48 83 c4 28 add $0x28,%rsp + 6634891f: 5b pop %rbx + 66348920: 5e pop %rsi + 66348921: 5f pop %rdi + 66348922: 5d pop %rbp + 66348923: 41 5c pop %r12 + 66348925: 41 5d pop %r13 + 66348927: c3 retq + 66348928: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634892f: 00 -0000000066348ad0 : - 66348ad0: 41 55 push %r13 - 66348ad2: 41 54 push %r12 - 66348ad4: 55 push %rbp - 66348ad5: 57 push %rdi - 66348ad6: 56 push %rsi - 66348ad7: 53 push %rbx - 66348ad8: 48 83 ec 28 sub $0x28,%rsp - 66348adc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66348ae0: 49 8b 81 38 02 00 00 mov 0x238(%r9),%rax - 66348ae7: 48 89 ce mov %rcx,%rsi - 66348aea: 8b 18 mov (%rax),%ebx - 66348aec: 85 db test %ebx,%ebx - 66348aee: 0f 84 1c 01 00 00 je 66348c10 - 66348af4: 49 8b 41 10 mov 0x10(%r9),%rax - 66348af8: bb 1c 00 00 00 mov $0x1c,%ebx - 66348afd: 4c 8d 2d fc b4 00 00 lea 0xb4fc(%rip),%r13 # 66354000 <.rdata> - 66348b04: 4c 8d 25 05 b5 00 00 lea 0xb505(%rip),%r12 # 66354010 <.rdata+0x10> - 66348b0b: 8b 10 mov (%rax),%edx - 66348b0d: 49 8b 41 08 mov 0x8(%r9),%rax - 66348b11: 8b 00 mov (%rax),%eax - 66348b13: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348b16: 49 8b 51 18 mov 0x18(%r9),%rdx - 66348b1a: 8b 12 mov (%rdx),%edx - 66348b1c: 8d 04 90 lea (%rax,%rdx,4),%eax - 66348b1f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348b23: 8b 12 mov (%rdx),%edx - 66348b25: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66348b28: 49 8b 41 28 mov 0x28(%r9),%rax - 66348b2c: 49 8b 51 30 mov 0x30(%r9),%rdx - 66348b30: 8b 00 mov (%rax),%eax - 66348b32: c1 e0 04 shl $0x4,%eax - 66348b35: 01 f8 add %edi,%eax - 66348b37: 8b 3a mov (%rdx),%edi - 66348b39: c1 e7 05 shl $0x5,%edi - 66348b3c: 01 c7 add %eax,%edi - 66348b3e: 48 63 ef movslq %edi,%rbp - 66348b41: 48 c1 e5 02 shl $0x2,%rbp - 66348b45: 85 ff test %edi,%edi - 66348b47: 78 05 js 66348b4e - 66348b49: 39 7e 38 cmp %edi,0x38(%rsi) - 66348b4c: 7f 11 jg 66348b5f - 66348b4e: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66348b54: 4c 89 ea mov %r13,%rdx - 66348b57: 4c 89 e1 mov %r12,%rcx - 66348b5a: e8 b1 96 00 00 callq 66352210 <_assert> - 66348b5f: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66348b63: 48 8b 46 40 mov 0x40(%rsi),%rax - 66348b67: 48 01 da add %rbx,%rdx - 66348b6a: 8b 04 28 mov (%rax,%rbp,1),%eax - 66348b6d: 8b 0a mov (%rdx),%ecx - 66348b6f: 39 c8 cmp %ecx,%eax - 66348b71: 74 6c je 66348bdf - 66348b73: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66348b77: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66348b7b: 41 89 c3 mov %eax,%r11d - 66348b7e: 41 29 cb sub %ecx,%r11d - 66348b81: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66348b85: 45 01 18 add %r11d,(%r8) - 66348b88: 89 02 mov %eax,(%rdx) - 66348b8a: 31 d2 xor %edx,%edx - 66348b8c: 48 8b 46 10 mov 0x10(%rsi),%rax - 66348b90: 45 8b 18 mov (%r8),%r11d - 66348b93: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348b97: 45 85 db test %r11d,%r11d - 66348b9a: 0f 9f c2 setg %dl - 66348b9d: 3b 10 cmp (%rax),%edx - 66348b9f: 74 3e je 66348bdf - 66348ba1: 48 8b 46 20 mov 0x20(%rsi),%rax - 66348ba5: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348ba9: 44 8b 10 mov (%rax),%r10d - 66348bac: 45 85 d2 test %r10d,%r10d - 66348baf: 75 2e jne 66348bdf - 66348bb1: 48 8b 46 28 mov 0x28(%rsi),%rax - 66348bb5: 48 8b 0d 74 ed 00 00 mov 0xed74(%rip),%rcx # 66357930 - 66348bbc: 4c 8b 05 5d ed 00 00 mov 0xed5d(%rip),%r8 # 66357920 - 66348bc3: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66348bc7: 48 8b 42 10 mov 0x10(%rdx),%rax - 66348bcb: c7 00 01 00 00 00 movl $0x1,(%rax) - 66348bd1: 48 63 01 movslq (%rcx),%rax - 66348bd4: 44 8d 48 01 lea 0x1(%rax),%r9d - 66348bd8: 44 89 09 mov %r9d,(%rcx) - 66348bdb: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66348bdf: 48 83 c3 04 add $0x4,%rbx - 66348be3: 83 c7 40 add $0x40,%edi - 66348be6: 48 81 c5 00 01 00 00 add $0x100,%rbp - 66348bed: 48 81 fb 1c 01 00 00 cmp $0x11c,%rbx - 66348bf4: 0f 85 4b ff ff ff jne 66348b45 - 66348bfa: 48 83 c4 28 add $0x28,%rsp - 66348bfe: 5b pop %rbx - 66348bff: 5e pop %rsi - 66348c00: 5f pop %rdi - 66348c01: 5d pop %rbp - 66348c02: 41 5c pop %r12 - 66348c04: 41 5d pop %r13 - 66348c06: c3 retq - 66348c07: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66348c0e: 00 00 - 66348c10: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348c14: 4c 8b 1d 05 ed 00 00 mov 0xed05(%rip),%r11 # 66357920 - 66348c1b: 4c 8b 15 0e ed 00 00 mov 0xed0e(%rip),%r10 # 66357930 - 66348c22: 48 8d 50 1c lea 0x1c(%rax),%rdx - 66348c26: b8 38 00 00 00 mov $0x38,%eax - 66348c2b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66348c30: 8b 0a mov (%rdx),%ecx - 66348c32: 85 c9 test %ecx,%ecx - 66348c34: 74 55 je 66348c8b - 66348c36: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66348c3a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66348c3e: 41 29 08 sub %ecx,(%r8) - 66348c41: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66348c47: 45 8b 00 mov (%r8),%r8d - 66348c4a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66348c4e: 45 85 c0 test %r8d,%r8d - 66348c51: 41 0f 9f c0 setg %r8b - 66348c55: 45 0f b6 c0 movzbl %r8b,%r8d - 66348c59: 44 3b 01 cmp (%rcx),%r8d - 66348c5c: 74 2d je 66348c8b - 66348c5e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66348c62: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66348c66: 8b 09 mov (%rcx),%ecx - 66348c68: 85 c9 test %ecx,%ecx - 66348c6a: 75 1f jne 66348c8b - 66348c6c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66348c70: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66348c74: 49 8b 48 10 mov 0x10(%r8),%rcx - 66348c78: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66348c7e: 49 63 0a movslq (%r10),%rcx - 66348c81: 8d 59 01 lea 0x1(%rcx),%ebx - 66348c84: 41 89 1a mov %ebx,(%r10) - 66348c87: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66348c8b: 48 83 c0 08 add $0x8,%rax - 66348c8f: 48 83 c2 04 add $0x4,%rdx - 66348c93: 48 3d 38 02 00 00 cmp $0x238,%rax - 66348c99: 75 95 jne 66348c30 - 66348c9b: 48 83 c4 28 add $0x28,%rsp - 66348c9f: 5b pop %rbx - 66348ca0: 5e pop %rsi - 66348ca1: 5f pop %rdi - 66348ca2: 5d pop %rbp - 66348ca3: 41 5c pop %r12 - 66348ca5: 41 5d pop %r13 - 66348ca7: c3 retq +0000000066348930 : + 66348930: 56 push %rsi + 66348931: 53 push %rbx + 66348932: 48 83 ec 28 sub $0x28,%rsp + 66348936: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634893a: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634893e: 48 89 cb mov %rcx,%rbx + 66348941: 44 8b 02 mov (%rdx),%r8d + 66348944: 45 85 c0 test %r8d,%r8d + 66348947: 74 2b je 66348974 + 66348949: 31 d2 xor %edx,%edx + 6634894b: 48 8d 72 01 lea 0x1(%rdx),%rsi + 6634894f: 48 89 d9 mov %rbx,%rcx + 66348952: 83 c2 04 add $0x4,%edx + 66348955: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 66348959: 44 8b 00 mov (%rax),%r8d + 6634895c: e8 4f 8a ff ff callq 663413b0 + 66348961: 48 83 fe 03 cmp $0x3,%rsi + 66348965: 48 89 f2 mov %rsi,%rdx + 66348968: 0f 84 2b 01 00 00 je 66348a99 + 6634896e: 48 8b 43 10 mov 0x10(%rbx),%rax + 66348972: eb d7 jmp 6634894b + 66348974: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66348978: 4c 8b 15 a1 df 00 00 mov 0xdfa1(%rip),%r10 # 66356920 + 6634897f: 4c 8b 0d aa df 00 00 mov 0xdfaa(%rip),%r9 # 66356930 + 66348986: 8b 4a 10 mov 0x10(%rdx),%ecx + 66348989: 85 c9 test %ecx,%ecx + 6634898b: 74 55 je 663489e2 + 6634898d: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66348991: 4d 8b 40 20 mov 0x20(%r8),%r8 + 66348995: 41 29 08 sub %ecx,(%r8) + 66348998: c7 42 10 00 00 00 00 movl $0x0,0x10(%rdx) + 6634899f: 41 8b 08 mov (%r8),%ecx + 663489a2: 45 31 c0 xor %r8d,%r8d + 663489a5: 85 c9 test %ecx,%ecx + 663489a7: 48 8b 48 20 mov 0x20(%rax),%rcx + 663489ab: 41 0f 9f c0 setg %r8b + 663489af: 44 3b 01 cmp (%rcx),%r8d + 663489b2: 74 2e je 663489e2 + 663489b4: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 663489b8: 48 8b 49 20 mov 0x20(%rcx),%rcx + 663489bc: 8b 31 mov (%rcx),%esi + 663489be: 85 f6 test %esi,%esi + 663489c0: 75 20 jne 663489e2 + 663489c2: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 663489c6: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 663489ca: 49 8b 48 10 mov 0x10(%r8),%rcx + 663489ce: c7 01 01 00 00 00 movl $0x1,(%rcx) + 663489d4: 49 63 09 movslq (%r9),%rcx + 663489d7: 44 8d 59 01 lea 0x1(%rcx),%r11d + 663489db: 45 89 19 mov %r11d,(%r9) + 663489de: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 663489e2: 8b 4a 14 mov 0x14(%rdx),%ecx + 663489e5: 85 c9 test %ecx,%ecx + 663489e7: 74 58 je 66348a41 + 663489e9: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 663489ed: 4d 8b 40 28 mov 0x28(%r8),%r8 + 663489f1: 41 29 08 sub %ecx,(%r8) + 663489f4: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) + 663489fb: 45 8b 18 mov (%r8),%r11d + 663489fe: 45 31 c0 xor %r8d,%r8d + 66348a01: 48 8b 48 28 mov 0x28(%rax),%rcx + 66348a05: 45 85 db test %r11d,%r11d + 66348a08: 41 0f 9f c0 setg %r8b + 66348a0c: 44 3b 01 cmp (%rcx),%r8d + 66348a0f: 74 30 je 66348a41 + 66348a11: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66348a15: 48 8b 49 28 mov 0x28(%rcx),%rcx + 66348a19: 44 8b 01 mov (%rcx),%r8d + 66348a1c: 45 85 c0 test %r8d,%r8d + 66348a1f: 75 20 jne 66348a41 + 66348a21: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66348a25: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66348a29: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348a2d: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66348a33: 49 63 09 movslq (%r9),%rcx + 66348a36: 44 8d 59 01 lea 0x1(%rcx),%r11d + 66348a3a: 45 89 19 mov %r11d,(%r9) + 66348a3d: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 66348a41: 8b 4a 18 mov 0x18(%rdx),%ecx + 66348a44: 85 c9 test %ecx,%ecx + 66348a46: 74 51 je 66348a99 + 66348a48: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66348a4c: 48 8b 40 30 mov 0x30(%rax),%rax + 66348a50: 4d 8b 40 30 mov 0x30(%r8),%r8 + 66348a54: 41 29 08 sub %ecx,(%r8) + 66348a57: c7 42 18 00 00 00 00 movl $0x0,0x18(%rdx) + 66348a5e: 31 d2 xor %edx,%edx + 66348a60: 41 8b 08 mov (%r8),%ecx + 66348a63: 85 c9 test %ecx,%ecx + 66348a65: 0f 9f c2 setg %dl + 66348a68: 3b 10 cmp (%rax),%edx + 66348a6a: 74 2d je 66348a99 + 66348a6c: 48 8b 43 20 mov 0x20(%rbx),%rax + 66348a70: 48 8b 40 30 mov 0x30(%rax),%rax + 66348a74: 8b 00 mov (%rax),%eax + 66348a76: 85 c0 test %eax,%eax + 66348a78: 75 1f jne 66348a99 + 66348a7a: 48 8b 43 28 mov 0x28(%rbx),%rax + 66348a7e: 48 8b 50 30 mov 0x30(%rax),%rdx + 66348a82: 48 8b 42 10 mov 0x10(%rdx),%rax + 66348a86: c7 00 01 00 00 00 movl $0x1,(%rax) + 66348a8c: 49 63 01 movslq (%r9),%rax + 66348a8f: 8d 48 01 lea 0x1(%rax),%ecx + 66348a92: 41 89 09 mov %ecx,(%r9) + 66348a95: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66348a99: 48 83 c4 28 add $0x28,%rsp + 66348a9d: 5b pop %rbx + 66348a9e: 5e pop %rsi + 66348a9f: c3 retq + +0000000066348aa0 : + 66348aa0: 56 push %rsi + 66348aa1: 53 push %rbx + 66348aa2: 48 83 ec 28 sub $0x28,%rsp + 66348aa6: 48 8b 41 10 mov 0x10(%rcx),%rax + 66348aaa: 48 8b 50 38 mov 0x38(%rax),%rdx + 66348aae: 48 89 cb mov %rcx,%rbx + 66348ab1: 44 8b 02 mov (%rdx),%r8d + 66348ab4: 45 85 c0 test %r8d,%r8d + 66348ab7: 74 2b je 66348ae4 + 66348ab9: 31 d2 xor %edx,%edx + 66348abb: 48 8d 72 01 lea 0x1(%rdx),%rsi + 66348abf: 48 89 d9 mov %rbx,%rcx + 66348ac2: 83 c2 04 add $0x4,%edx + 66348ac5: 48 8b 04 f0 mov (%rax,%rsi,8),%rax + 66348ac9: 44 8b 00 mov (%rax),%r8d + 66348acc: e8 df 88 ff ff callq 663413b0 + 66348ad1: 48 83 fe 03 cmp $0x3,%rsi + 66348ad5: 48 89 f2 mov %rsi,%rdx + 66348ad8: 0f 84 2b 01 00 00 je 66348c09 + 66348ade: 48 8b 43 10 mov 0x10(%rbx),%rax + 66348ae2: eb d7 jmp 66348abb + 66348ae4: 48 8b 51 08 mov 0x8(%rcx),%rdx + 66348ae8: 4c 8b 15 31 de 00 00 mov 0xde31(%rip),%r10 # 66356920 + 66348aef: 4c 8b 0d 3a de 00 00 mov 0xde3a(%rip),%r9 # 66356930 + 66348af6: 8b 4a 10 mov 0x10(%rdx),%ecx + 66348af9: 85 c9 test %ecx,%ecx + 66348afb: 74 55 je 66348b52 + 66348afd: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66348b01: 4d 8b 40 20 mov 0x20(%r8),%r8 + 66348b05: 41 29 08 sub %ecx,(%r8) + 66348b08: c7 42 10 00 00 00 00 movl $0x0,0x10(%rdx) + 66348b0f: 41 8b 08 mov (%r8),%ecx + 66348b12: 45 31 c0 xor %r8d,%r8d + 66348b15: 85 c9 test %ecx,%ecx + 66348b17: 48 8b 48 20 mov 0x20(%rax),%rcx + 66348b1b: 41 0f 9f c0 setg %r8b + 66348b1f: 44 3b 01 cmp (%rcx),%r8d + 66348b22: 74 2e je 66348b52 + 66348b24: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66348b28: 48 8b 49 20 mov 0x20(%rcx),%rcx + 66348b2c: 8b 31 mov (%rcx),%esi + 66348b2e: 85 f6 test %esi,%esi + 66348b30: 75 20 jne 66348b52 + 66348b32: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66348b36: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 66348b3a: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348b3e: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66348b44: 49 63 09 movslq (%r9),%rcx + 66348b47: 44 8d 59 01 lea 0x1(%rcx),%r11d + 66348b4b: 45 89 19 mov %r11d,(%r9) + 66348b4e: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 66348b52: 8b 4a 14 mov 0x14(%rdx),%ecx + 66348b55: 85 c9 test %ecx,%ecx + 66348b57: 74 58 je 66348bb1 + 66348b59: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66348b5d: 4d 8b 40 28 mov 0x28(%r8),%r8 + 66348b61: 41 29 08 sub %ecx,(%r8) + 66348b64: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) + 66348b6b: 45 8b 18 mov (%r8),%r11d + 66348b6e: 45 31 c0 xor %r8d,%r8d + 66348b71: 48 8b 48 28 mov 0x28(%rax),%rcx + 66348b75: 45 85 db test %r11d,%r11d + 66348b78: 41 0f 9f c0 setg %r8b + 66348b7c: 44 3b 01 cmp (%rcx),%r8d + 66348b7f: 74 30 je 66348bb1 + 66348b81: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66348b85: 48 8b 49 28 mov 0x28(%rcx),%rcx + 66348b89: 44 8b 01 mov (%rcx),%r8d + 66348b8c: 45 85 c0 test %r8d,%r8d + 66348b8f: 75 20 jne 66348bb1 + 66348b91: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66348b95: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 66348b99: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348b9d: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66348ba3: 49 63 09 movslq (%r9),%rcx + 66348ba6: 44 8d 59 01 lea 0x1(%rcx),%r11d + 66348baa: 45 89 19 mov %r11d,(%r9) + 66348bad: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 66348bb1: 8b 4a 18 mov 0x18(%rdx),%ecx + 66348bb4: 85 c9 test %ecx,%ecx + 66348bb6: 74 51 je 66348c09 + 66348bb8: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66348bbc: 48 8b 40 30 mov 0x30(%rax),%rax + 66348bc0: 4d 8b 40 30 mov 0x30(%r8),%r8 + 66348bc4: 41 29 08 sub %ecx,(%r8) + 66348bc7: c7 42 18 00 00 00 00 movl $0x0,0x18(%rdx) + 66348bce: 31 d2 xor %edx,%edx + 66348bd0: 41 8b 08 mov (%r8),%ecx + 66348bd3: 85 c9 test %ecx,%ecx + 66348bd5: 0f 9f c2 setg %dl + 66348bd8: 3b 10 cmp (%rax),%edx + 66348bda: 74 2d je 66348c09 + 66348bdc: 48 8b 43 20 mov 0x20(%rbx),%rax + 66348be0: 48 8b 40 30 mov 0x30(%rax),%rax + 66348be4: 8b 00 mov (%rax),%eax + 66348be6: 85 c0 test %eax,%eax + 66348be8: 75 1f jne 66348c09 + 66348bea: 48 8b 43 28 mov 0x28(%rbx),%rax + 66348bee: 48 8b 50 30 mov 0x30(%rax),%rdx + 66348bf2: 48 8b 42 10 mov 0x10(%rdx),%rax + 66348bf6: c7 00 01 00 00 00 movl $0x1,(%rax) + 66348bfc: 49 63 01 movslq (%r9),%rax + 66348bff: 8d 48 01 lea 0x1(%rax),%ecx + 66348c02: 41 89 09 mov %ecx,(%r9) + 66348c05: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 66348c09: 48 83 c4 28 add $0x28,%rsp + 66348c0d: 5b pop %rbx + 66348c0e: 5e pop %rsi + 66348c0f: c3 retq + +0000000066348c10 : + 66348c10: 41 55 push %r13 + 66348c12: 41 54 push %r12 + 66348c14: 55 push %rbp + 66348c15: 57 push %rdi + 66348c16: 56 push %rsi + 66348c17: 53 push %rbx + 66348c18: 48 83 ec 28 sub $0x28,%rsp + 66348c1c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66348c20: 49 8b 81 d0 01 00 00 mov 0x1d0(%r9),%rax + 66348c27: 48 89 cb mov %rcx,%rbx + 66348c2a: 44 8b 10 mov (%rax),%r10d + 66348c2d: 45 85 d2 test %r10d,%r10d + 66348c30: 0f 84 ca 00 00 00 je 66348d00 + 66348c36: 49 8b 41 10 mov 0x10(%r9),%rax + 66348c3a: be 0a 00 00 00 mov $0xa,%esi + 66348c3f: 4c 8d 2d ba a3 00 00 lea 0xa3ba(%rip),%r13 # 66353000 <.rdata> + 66348c46: 4c 8d 25 c3 a3 00 00 lea 0xa3c3(%rip),%r12 # 66353010 <.rdata+0x10> + 66348c4d: 8b 10 mov (%rax),%edx + 66348c4f: 49 8b 41 08 mov 0x8(%r9),%rax + 66348c53: 8b 00 mov (%rax),%eax + 66348c55: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348c58: 49 8b 51 18 mov 0x18(%r9),%rdx + 66348c5c: 8b 12 mov (%rdx),%edx + 66348c5e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66348c61: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348c65: 8b 12 mov (%rdx),%edx + 66348c67: 8d 04 d0 lea (%rax,%rdx,8),%eax + 66348c6a: 49 8b 51 28 mov 0x28(%r9),%rdx + 66348c6e: 8b 3a mov (%rdx),%edi + 66348c70: 49 8b 51 40 mov 0x40(%r9),%rdx + 66348c74: c1 e7 04 shl $0x4,%edi + 66348c77: 01 c7 add %eax,%edi + 66348c79: 49 8b 41 30 mov 0x30(%r9),%rax + 66348c7d: 8b 00 mov (%rax),%eax + 66348c7f: c1 e0 05 shl $0x5,%eax + 66348c82: 01 c7 add %eax,%edi + 66348c84: 49 8b 41 38 mov 0x38(%r9),%rax + 66348c88: 8b 00 mov (%rax),%eax + 66348c8a: c1 e0 06 shl $0x6,%eax + 66348c8d: 01 f8 add %edi,%eax + 66348c8f: 8b 3a mov (%rdx),%edi + 66348c91: 49 8b 51 48 mov 0x48(%r9),%rdx + 66348c95: c1 e7 07 shl $0x7,%edi + 66348c98: 01 f8 add %edi,%eax + 66348c9a: 8b 3a mov (%rdx),%edi + 66348c9c: c1 e7 08 shl $0x8,%edi + 66348c9f: 01 c7 add %eax,%edi + 66348ca1: 48 63 ef movslq %edi,%rbp + 66348ca4: 48 c1 e5 02 shl $0x2,%rbp 66348ca8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) 66348caf: 00 + 66348cb0: 85 ff test %edi,%edi + 66348cb2: 78 05 js 66348cb9 + 66348cb4: 39 7b 38 cmp %edi,0x38(%rbx) + 66348cb7: 7f 11 jg 66348cca + 66348cb9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66348cbf: 4c 89 ea mov %r13,%rdx + 66348cc2: 4c 89 e1 mov %r12,%rcx + 66348cc5: e8 36 83 00 00 callq 66351000 <_assert> + 66348cca: 48 8b 43 40 mov 0x40(%rbx),%rax + 66348cce: 89 f2 mov %esi,%edx + 66348cd0: 48 89 d9 mov %rbx,%rcx + 66348cd3: 83 c6 01 add $0x1,%esi + 66348cd6: 81 c7 00 02 00 00 add $0x200,%edi + 66348cdc: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66348ce0: 48 81 c5 00 08 00 00 add $0x800,%rbp + 66348ce7: e8 c4 86 ff ff callq 663413b0 + 66348cec: 83 fe 3a cmp $0x3a,%esi + 66348cef: 75 bf jne 66348cb0 + 66348cf1: 48 83 c4 28 add $0x28,%rsp + 66348cf5: 5b pop %rbx + 66348cf6: 5e pop %rsi + 66348cf7: 5f pop %rdi + 66348cf8: 5d pop %rbp + 66348cf9: 41 5c pop %r12 + 66348cfb: 41 5d pop %r13 + 66348cfd: c3 retq + 66348cfe: 66 90 xchg %ax,%ax + 66348d00: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348d04: 4c 8b 1d 15 dc 00 00 mov 0xdc15(%rip),%r11 # 66356920 + 66348d0b: 4c 8b 15 1e dc 00 00 mov 0xdc1e(%rip),%r10 # 66356930 + 66348d12: 48 8d 50 28 lea 0x28(%rax),%rdx + 66348d16: b8 50 00 00 00 mov $0x50,%eax + 66348d1b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66348d20: 8b 0a mov (%rdx),%ecx + 66348d22: 85 c9 test %ecx,%ecx + 66348d24: 74 55 je 66348d7b + 66348d26: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66348d2a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66348d2e: 41 29 08 sub %ecx,(%r8) + 66348d31: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66348d37: 45 8b 00 mov (%r8),%r8d + 66348d3a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66348d3e: 45 85 c0 test %r8d,%r8d + 66348d41: 41 0f 9f c0 setg %r8b + 66348d45: 45 0f b6 c0 movzbl %r8b,%r8d + 66348d49: 44 3b 01 cmp (%rcx),%r8d + 66348d4c: 74 2d je 66348d7b + 66348d4e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66348d52: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66348d56: 8b 09 mov (%rcx),%ecx + 66348d58: 85 c9 test %ecx,%ecx + 66348d5a: 75 1f jne 66348d7b + 66348d5c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66348d60: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66348d64: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348d68: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66348d6e: 49 63 0a movslq (%r10),%rcx + 66348d71: 8d 71 01 lea 0x1(%rcx),%esi + 66348d74: 41 89 32 mov %esi,(%r10) + 66348d77: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66348d7b: 48 83 c0 08 add $0x8,%rax + 66348d7f: 48 83 c2 04 add $0x4,%rdx + 66348d83: 48 3d d0 01 00 00 cmp $0x1d0,%rax + 66348d89: 75 95 jne 66348d20 + 66348d8b: 48 83 c4 28 add $0x28,%rsp + 66348d8f: 5b pop %rbx + 66348d90: 5e pop %rsi + 66348d91: 5f pop %rdi + 66348d92: 5d pop %rbp + 66348d93: 41 5c pop %r12 + 66348d95: 41 5d pop %r13 + 66348d97: c3 retq + 66348d98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66348d9f: 00 -0000000066348cb0 : - 66348cb0: 41 55 push %r13 - 66348cb2: 41 54 push %r12 - 66348cb4: 55 push %rbp - 66348cb5: 57 push %rdi - 66348cb6: 56 push %rsi - 66348cb7: 53 push %rbx - 66348cb8: 48 83 ec 28 sub $0x28,%rsp - 66348cbc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66348cc0: 49 8b 81 68 02 00 00 mov 0x268(%r9),%rax - 66348cc7: 48 89 ce mov %rcx,%rsi - 66348cca: 8b 18 mov (%rax),%ebx - 66348ccc: 85 db test %ebx,%ebx - 66348cce: 0f 84 61 01 00 00 je 66348e35 - 66348cd4: 49 8b 41 10 mov 0x10(%r9),%rax - 66348cd8: bb 34 00 00 00 mov $0x34,%ebx - 66348cdd: 4c 8d 2d 1c b3 00 00 lea 0xb31c(%rip),%r13 # 66354000 <.rdata> - 66348ce4: 4c 8d 25 25 b3 00 00 lea 0xb325(%rip),%r12 # 66354010 <.rdata+0x10> - 66348ceb: 8b 10 mov (%rax),%edx - 66348ced: 49 8b 41 08 mov 0x8(%r9),%rax - 66348cf1: 8b 00 mov (%rax),%eax - 66348cf3: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348cf6: 49 8b 51 18 mov 0x18(%r9),%rdx - 66348cfa: 8b 12 mov (%rdx),%edx - 66348cfc: 8d 04 90 lea (%rax,%rdx,4),%eax - 66348cff: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348d03: 8b 12 mov (%rdx),%edx - 66348d05: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66348d08: 49 8b 41 28 mov 0x28(%r9),%rax - 66348d0c: 49 8b 51 30 mov 0x30(%r9),%rdx - 66348d10: 8b 00 mov (%rax),%eax - 66348d12: c1 e0 04 shl $0x4,%eax - 66348d15: 01 f8 add %edi,%eax - 66348d17: 8b 3a mov (%rdx),%edi - 66348d19: 49 8b 51 48 mov 0x48(%r9),%rdx - 66348d1d: c1 e7 05 shl $0x5,%edi - 66348d20: 01 c7 add %eax,%edi - 66348d22: 49 8b 41 38 mov 0x38(%r9),%rax - 66348d26: 8b 00 mov (%rax),%eax - 66348d28: c1 e0 06 shl $0x6,%eax - 66348d2b: 01 c7 add %eax,%edi - 66348d2d: 49 8b 41 40 mov 0x40(%r9),%rax - 66348d31: 8b 00 mov (%rax),%eax - 66348d33: c1 e0 07 shl $0x7,%eax - 66348d36: 01 f8 add %edi,%eax - 66348d38: 8b 3a mov (%rdx),%edi - 66348d3a: 49 8b 51 60 mov 0x60(%r9),%rdx - 66348d3e: c1 e7 08 shl $0x8,%edi - 66348d41: 01 c7 add %eax,%edi - 66348d43: 49 8b 41 50 mov 0x50(%r9),%rax - 66348d47: 8b 00 mov (%rax),%eax - 66348d49: c1 e0 09 shl $0x9,%eax - 66348d4c: 01 c7 add %eax,%edi - 66348d4e: 49 8b 41 58 mov 0x58(%r9),%rax - 66348d52: 8b 00 mov (%rax),%eax - 66348d54: c1 e0 0a shl $0xa,%eax - 66348d57: 01 f8 add %edi,%eax - 66348d59: 8b 3a mov (%rdx),%edi - 66348d5b: c1 e7 0b shl $0xb,%edi - 66348d5e: 01 c7 add %eax,%edi - 66348d60: 48 63 ef movslq %edi,%rbp - 66348d63: 48 c1 e5 02 shl $0x2,%rbp - 66348d67: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66348d6e: 00 00 - 66348d70: 85 ff test %edi,%edi - 66348d72: 78 05 js 66348d79 - 66348d74: 39 7e 38 cmp %edi,0x38(%rsi) - 66348d77: 7f 11 jg 66348d8a - 66348d79: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66348d7f: 4c 89 ea mov %r13,%rdx - 66348d82: 4c 89 e1 mov %r12,%rcx - 66348d85: e8 86 94 00 00 callq 66352210 <_assert> - 66348d8a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66348d8e: 48 8b 46 40 mov 0x40(%rsi),%rax - 66348d92: 48 01 da add %rbx,%rdx - 66348d95: 8b 04 28 mov (%rax,%rbp,1),%eax - 66348d98: 8b 0a mov (%rdx),%ecx - 66348d9a: 39 c8 cmp %ecx,%eax - 66348d9c: 74 6c je 66348e0a - 66348d9e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66348da2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66348da6: 41 89 c3 mov %eax,%r11d - 66348da9: 41 29 cb sub %ecx,%r11d - 66348dac: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66348db0: 45 01 18 add %r11d,(%r8) - 66348db3: 89 02 mov %eax,(%rdx) - 66348db5: 31 d2 xor %edx,%edx - 66348db7: 48 8b 46 10 mov 0x10(%rsi),%rax - 66348dbb: 45 8b 18 mov (%r8),%r11d - 66348dbe: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348dc2: 45 85 db test %r11d,%r11d - 66348dc5: 0f 9f c2 setg %dl - 66348dc8: 3b 10 cmp (%rax),%edx - 66348dca: 74 3e je 66348e0a - 66348dcc: 48 8b 46 20 mov 0x20(%rsi),%rax - 66348dd0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348dd4: 44 8b 10 mov (%rax),%r10d - 66348dd7: 45 85 d2 test %r10d,%r10d - 66348dda: 75 2e jne 66348e0a - 66348ddc: 48 8b 46 28 mov 0x28(%rsi),%rax - 66348de0: 48 8b 0d 49 eb 00 00 mov 0xeb49(%rip),%rcx # 66357930 - 66348de7: 4c 8b 05 32 eb 00 00 mov 0xeb32(%rip),%r8 # 66357920 - 66348dee: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66348df2: 48 8b 42 10 mov 0x10(%rdx),%rax - 66348df6: c7 00 01 00 00 00 movl $0x1,(%rax) - 66348dfc: 48 63 01 movslq (%rcx),%rax - 66348dff: 44 8d 48 01 lea 0x1(%rax),%r9d - 66348e03: 44 89 09 mov %r9d,(%rcx) - 66348e06: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66348e0a: 48 83 c3 04 add $0x4,%rbx - 66348e0e: 81 c7 00 10 00 00 add $0x1000,%edi - 66348e14: 48 81 c5 00 40 00 00 add $0x4000,%rbp - 66348e1b: 48 81 fb 34 01 00 00 cmp $0x134,%rbx - 66348e22: 0f 85 48 ff ff ff jne 66348d70 - 66348e28: 48 83 c4 28 add $0x28,%rsp - 66348e2c: 5b pop %rbx - 66348e2d: 5e pop %rsi - 66348e2e: 5f pop %rdi - 66348e2f: 5d pop %rbp - 66348e30: 41 5c pop %r12 - 66348e32: 41 5d pop %r13 - 66348e34: c3 retq - 66348e35: 48 8b 41 08 mov 0x8(%rcx),%rax - 66348e39: 4c 8b 1d e0 ea 00 00 mov 0xeae0(%rip),%r11 # 66357920 - 66348e40: 4c 8b 15 e9 ea 00 00 mov 0xeae9(%rip),%r10 # 66357930 - 66348e47: 48 8d 50 34 lea 0x34(%rax),%rdx - 66348e4b: b8 68 00 00 00 mov $0x68,%eax - 66348e50: 8b 0a mov (%rdx),%ecx - 66348e52: 85 c9 test %ecx,%ecx - 66348e54: 74 55 je 66348eab - 66348e56: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66348e5a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66348e5e: 41 29 08 sub %ecx,(%r8) - 66348e61: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66348e67: 45 8b 00 mov (%r8),%r8d - 66348e6a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66348e6e: 45 85 c0 test %r8d,%r8d - 66348e71: 41 0f 9f c0 setg %r8b - 66348e75: 45 0f b6 c0 movzbl %r8b,%r8d - 66348e79: 44 3b 01 cmp (%rcx),%r8d - 66348e7c: 74 2d je 66348eab - 66348e7e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66348e82: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66348e86: 8b 09 mov (%rcx),%ecx - 66348e88: 85 c9 test %ecx,%ecx - 66348e8a: 75 1f jne 66348eab - 66348e8c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66348e90: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66348e94: 49 8b 48 10 mov 0x10(%r8),%rcx - 66348e98: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66348e9e: 49 63 0a movslq (%r10),%rcx - 66348ea1: 8d 59 01 lea 0x1(%rcx),%ebx - 66348ea4: 41 89 1a mov %ebx,(%r10) - 66348ea7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66348eab: 48 83 c0 08 add $0x8,%rax - 66348eaf: 48 83 c2 04 add $0x4,%rdx - 66348eb3: 48 3d 68 02 00 00 cmp $0x268,%rax - 66348eb9: 75 95 jne 66348e50 - 66348ebb: 48 83 c4 28 add $0x28,%rsp - 66348ebf: 5b pop %rbx - 66348ec0: 5e pop %rsi - 66348ec1: 5f pop %rdi - 66348ec2: 5d pop %rbp - 66348ec3: 41 5c pop %r12 - 66348ec5: 41 5d pop %r13 - 66348ec7: c3 retq - 66348ec8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66348ecf: 00 +0000000066348da0 : + 66348da0: 41 55 push %r13 + 66348da2: 41 54 push %r12 + 66348da4: 55 push %rbp + 66348da5: 57 push %rdi + 66348da6: 56 push %rsi + 66348da7: 53 push %rbx + 66348da8: 48 83 ec 28 sub $0x28,%rsp + 66348dac: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66348db0: 49 8b 81 c8 01 00 00 mov 0x1c8(%r9),%rax + 66348db7: 48 89 cb mov %rcx,%rbx + 66348dba: 44 8b 10 mov (%rax),%r10d + 66348dbd: 45 85 d2 test %r10d,%r10d + 66348dc0: 0f 84 ba 00 00 00 je 66348e80 + 66348dc6: 49 8b 41 10 mov 0x10(%r9),%rax + 66348dca: be 09 00 00 00 mov $0x9,%esi + 66348dcf: 4c 8d 2d 2a a2 00 00 lea 0xa22a(%rip),%r13 # 66353000 <.rdata> + 66348dd6: 4c 8d 25 33 a2 00 00 lea 0xa233(%rip),%r12 # 66353010 <.rdata+0x10> + 66348ddd: 8b 10 mov (%rax),%edx + 66348ddf: 49 8b 41 08 mov 0x8(%r9),%rax + 66348de3: 8b 00 mov (%rax),%eax + 66348de5: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348de8: 49 8b 51 18 mov 0x18(%r9),%rdx + 66348dec: 8b 12 mov (%rdx),%edx + 66348dee: 8d 04 90 lea (%rax,%rdx,4),%eax + 66348df1: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348df5: 8b 12 mov (%rdx),%edx + 66348df7: 8d 3c d0 lea (%rax,%rdx,8),%edi + 66348dfa: 49 8b 41 28 mov 0x28(%r9),%rax + 66348dfe: 49 8b 51 38 mov 0x38(%r9),%rdx + 66348e02: 8b 00 mov (%rax),%eax + 66348e04: c1 e0 04 shl $0x4,%eax + 66348e07: 01 c7 add %eax,%edi + 66348e09: 49 8b 41 30 mov 0x30(%r9),%rax + 66348e0d: 8b 00 mov (%rax),%eax + 66348e0f: c1 e0 05 shl $0x5,%eax + 66348e12: 01 f8 add %edi,%eax + 66348e14: 8b 3a mov (%rdx),%edi + 66348e16: 49 8b 51 40 mov 0x40(%r9),%rdx + 66348e1a: c1 e7 06 shl $0x6,%edi + 66348e1d: 01 f8 add %edi,%eax + 66348e1f: 8b 3a mov (%rdx),%edi + 66348e21: c1 e7 07 shl $0x7,%edi + 66348e24: 01 c7 add %eax,%edi + 66348e26: 48 63 ef movslq %edi,%rbp + 66348e29: 48 c1 e5 02 shl $0x2,%rbp + 66348e2d: 0f 1f 00 nopl (%rax) + 66348e30: 85 ff test %edi,%edi + 66348e32: 78 05 js 66348e39 + 66348e34: 39 7b 38 cmp %edi,0x38(%rbx) + 66348e37: 7f 11 jg 66348e4a + 66348e39: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66348e3f: 4c 89 ea mov %r13,%rdx + 66348e42: 4c 89 e1 mov %r12,%rcx + 66348e45: e8 b6 81 00 00 callq 66351000 <_assert> + 66348e4a: 48 8b 43 40 mov 0x40(%rbx),%rax + 66348e4e: 89 f2 mov %esi,%edx + 66348e50: 48 89 d9 mov %rbx,%rcx + 66348e53: 83 c6 01 add $0x1,%esi + 66348e56: 81 c7 00 01 00 00 add $0x100,%edi + 66348e5c: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66348e60: 48 81 c5 00 04 00 00 add $0x400,%rbp + 66348e67: e8 44 85 ff ff callq 663413b0 + 66348e6c: 83 fe 39 cmp $0x39,%esi + 66348e6f: 75 bf jne 66348e30 + 66348e71: 48 83 c4 28 add $0x28,%rsp + 66348e75: 5b pop %rbx + 66348e76: 5e pop %rsi + 66348e77: 5f pop %rdi + 66348e78: 5d pop %rbp + 66348e79: 41 5c pop %r12 + 66348e7b: 41 5d pop %r13 + 66348e7d: c3 retq + 66348e7e: 66 90 xchg %ax,%ax + 66348e80: 48 8b 41 08 mov 0x8(%rcx),%rax + 66348e84: 4c 8b 1d 95 da 00 00 mov 0xda95(%rip),%r11 # 66356920 + 66348e8b: 4c 8b 15 9e da 00 00 mov 0xda9e(%rip),%r10 # 66356930 + 66348e92: 48 8d 50 24 lea 0x24(%rax),%rdx + 66348e96: b8 48 00 00 00 mov $0x48,%eax + 66348e9b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66348ea0: 8b 0a mov (%rdx),%ecx + 66348ea2: 85 c9 test %ecx,%ecx + 66348ea4: 74 55 je 66348efb + 66348ea6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66348eaa: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66348eae: 41 29 08 sub %ecx,(%r8) + 66348eb1: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66348eb7: 45 8b 00 mov (%r8),%r8d + 66348eba: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66348ebe: 45 85 c0 test %r8d,%r8d + 66348ec1: 41 0f 9f c0 setg %r8b + 66348ec5: 45 0f b6 c0 movzbl %r8b,%r8d + 66348ec9: 44 3b 01 cmp (%rcx),%r8d + 66348ecc: 74 2d je 66348efb + 66348ece: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66348ed2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66348ed6: 8b 09 mov (%rcx),%ecx + 66348ed8: 85 c9 test %ecx,%ecx + 66348eda: 75 1f jne 66348efb + 66348edc: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66348ee0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66348ee4: 49 8b 48 10 mov 0x10(%r8),%rcx + 66348ee8: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66348eee: 49 63 0a movslq (%r10),%rcx + 66348ef1: 8d 71 01 lea 0x1(%rcx),%esi + 66348ef4: 41 89 32 mov %esi,(%r10) + 66348ef7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66348efb: 48 83 c0 08 add $0x8,%rax + 66348eff: 48 83 c2 04 add $0x4,%rdx + 66348f03: 48 3d c8 01 00 00 cmp $0x1c8,%rax + 66348f09: 75 95 jne 66348ea0 + 66348f0b: 48 83 c4 28 add $0x28,%rsp + 66348f0f: 5b pop %rbx + 66348f10: 5e pop %rsi + 66348f11: 5f pop %rdi + 66348f12: 5d pop %rbp + 66348f13: 41 5c pop %r12 + 66348f15: 41 5d pop %r13 + 66348f17: c3 retq + 66348f18: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66348f1f: 00 -0000000066348ed0 : - 66348ed0: 41 55 push %r13 - 66348ed2: 41 54 push %r12 - 66348ed4: 55 push %rbp - 66348ed5: 57 push %rdi - 66348ed6: 56 push %rsi - 66348ed7: 53 push %rbx - 66348ed8: 48 83 ec 28 sub $0x28,%rsp - 66348edc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66348ee0: 49 8b 81 58 02 00 00 mov 0x258(%r9),%rax - 66348ee7: 48 89 ce mov %rcx,%rsi - 66348eea: 8b 18 mov (%rax),%ebx - 66348eec: 85 db test %ebx,%ebx - 66348eee: 0f 84 4c 01 00 00 je 66349040 - 66348ef4: 49 8b 41 10 mov 0x10(%r9),%rax - 66348ef8: bb 2c 00 00 00 mov $0x2c,%ebx - 66348efd: 4c 8d 2d fc b0 00 00 lea 0xb0fc(%rip),%r13 # 66354000 <.rdata> - 66348f04: 4c 8d 25 05 b1 00 00 lea 0xb105(%rip),%r12 # 66354010 <.rdata+0x10> - 66348f0b: 8b 10 mov (%rax),%edx - 66348f0d: 49 8b 41 08 mov 0x8(%r9),%rax - 66348f11: 8b 00 mov (%rax),%eax - 66348f13: 8d 04 50 lea (%rax,%rdx,2),%eax - 66348f16: 49 8b 51 18 mov 0x18(%r9),%rdx - 66348f1a: 8b 12 mov (%rdx),%edx - 66348f1c: 8d 04 90 lea (%rax,%rdx,4),%eax - 66348f1f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66348f23: 8b 12 mov (%rdx),%edx - 66348f25: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66348f28: 49 8b 41 28 mov 0x28(%r9),%rax - 66348f2c: 49 8b 51 38 mov 0x38(%r9),%rdx - 66348f30: 8b 00 mov (%rax),%eax - 66348f32: c1 e0 04 shl $0x4,%eax - 66348f35: 01 c7 add %eax,%edi - 66348f37: 49 8b 41 30 mov 0x30(%r9),%rax - 66348f3b: 8b 00 mov (%rax),%eax - 66348f3d: c1 e0 05 shl $0x5,%eax - 66348f40: 01 f8 add %edi,%eax - 66348f42: 8b 3a mov (%rdx),%edi - 66348f44: 49 8b 51 50 mov 0x50(%r9),%rdx - 66348f48: c1 e7 06 shl $0x6,%edi - 66348f4b: 01 c7 add %eax,%edi - 66348f4d: 49 8b 41 40 mov 0x40(%r9),%rax - 66348f51: 8b 00 mov (%rax),%eax - 66348f53: c1 e0 07 shl $0x7,%eax - 66348f56: 01 c7 add %eax,%edi - 66348f58: 49 8b 41 48 mov 0x48(%r9),%rax - 66348f5c: 8b 00 mov (%rax),%eax - 66348f5e: c1 e0 08 shl $0x8,%eax - 66348f61: 01 f8 add %edi,%eax - 66348f63: 8b 3a mov (%rdx),%edi - 66348f65: c1 e7 09 shl $0x9,%edi - 66348f68: 01 c7 add %eax,%edi - 66348f6a: 48 63 ef movslq %edi,%rbp - 66348f6d: 48 c1 e5 02 shl $0x2,%rbp - 66348f71: 85 ff test %edi,%edi - 66348f73: 78 05 js 66348f7a - 66348f75: 39 7e 38 cmp %edi,0x38(%rsi) - 66348f78: 7f 11 jg 66348f8b - 66348f7a: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66348f80: 4c 89 ea mov %r13,%rdx - 66348f83: 4c 89 e1 mov %r12,%rcx - 66348f86: e8 85 92 00 00 callq 66352210 <_assert> - 66348f8b: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66348f8f: 48 8b 46 40 mov 0x40(%rsi),%rax - 66348f93: 48 01 da add %rbx,%rdx - 66348f96: 8b 04 28 mov (%rax,%rbp,1),%eax - 66348f99: 8b 0a mov (%rdx),%ecx - 66348f9b: 39 c8 cmp %ecx,%eax - 66348f9d: 74 6c je 6634900b - 66348f9f: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66348fa3: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66348fa7: 41 89 c3 mov %eax,%r11d - 66348faa: 41 29 cb sub %ecx,%r11d - 66348fad: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66348fb1: 45 01 18 add %r11d,(%r8) - 66348fb4: 89 02 mov %eax,(%rdx) - 66348fb6: 31 d2 xor %edx,%edx - 66348fb8: 48 8b 46 10 mov 0x10(%rsi),%rax - 66348fbc: 45 8b 18 mov (%r8),%r11d - 66348fbf: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348fc3: 45 85 db test %r11d,%r11d - 66348fc6: 0f 9f c2 setg %dl - 66348fc9: 3b 10 cmp (%rax),%edx - 66348fcb: 74 3e je 6634900b - 66348fcd: 48 8b 46 20 mov 0x20(%rsi),%rax - 66348fd1: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66348fd5: 44 8b 10 mov (%rax),%r10d - 66348fd8: 45 85 d2 test %r10d,%r10d - 66348fdb: 75 2e jne 6634900b - 66348fdd: 48 8b 46 28 mov 0x28(%rsi),%rax - 66348fe1: 48 8b 0d 48 e9 00 00 mov 0xe948(%rip),%rcx # 66357930 - 66348fe8: 4c 8b 05 31 e9 00 00 mov 0xe931(%rip),%r8 # 66357920 - 66348fef: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66348ff3: 48 8b 42 10 mov 0x10(%rdx),%rax - 66348ff7: c7 00 01 00 00 00 movl $0x1,(%rax) - 66348ffd: 48 63 01 movslq (%rcx),%rax - 66349000: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349004: 44 89 09 mov %r9d,(%rcx) - 66349007: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634900b: 48 83 c3 04 add $0x4,%rbx - 6634900f: 81 c7 00 04 00 00 add $0x400,%edi - 66349015: 48 81 c5 00 10 00 00 add $0x1000,%rbp - 6634901c: 48 81 fb 2c 01 00 00 cmp $0x12c,%rbx - 66349023: 0f 85 48 ff ff ff jne 66348f71 - 66349029: 48 83 c4 28 add $0x28,%rsp - 6634902d: 5b pop %rbx - 6634902e: 5e pop %rsi - 6634902f: 5f pop %rdi - 66349030: 5d pop %rbp - 66349031: 41 5c pop %r12 - 66349033: 41 5d pop %r13 - 66349035: c3 retq - 66349036: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634903d: 00 00 00 - 66349040: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349044: 4c 8b 1d d5 e8 00 00 mov 0xe8d5(%rip),%r11 # 66357920 - 6634904b: 4c 8b 15 de e8 00 00 mov 0xe8de(%rip),%r10 # 66357930 - 66349052: 48 8d 50 2c lea 0x2c(%rax),%rdx - 66349056: b8 58 00 00 00 mov $0x58,%eax - 6634905b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66349060: 8b 0a mov (%rdx),%ecx - 66349062: 85 c9 test %ecx,%ecx - 66349064: 74 55 je 663490bb - 66349066: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634906a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634906e: 41 29 08 sub %ecx,(%r8) - 66349071: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349077: 45 8b 00 mov (%r8),%r8d - 6634907a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634907e: 45 85 c0 test %r8d,%r8d - 66349081: 41 0f 9f c0 setg %r8b - 66349085: 45 0f b6 c0 movzbl %r8b,%r8d - 66349089: 44 3b 01 cmp (%rcx),%r8d - 6634908c: 74 2d je 663490bb - 6634908e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349092: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349096: 8b 09 mov (%rcx),%ecx - 66349098: 85 c9 test %ecx,%ecx - 6634909a: 75 1f jne 663490bb - 6634909c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 663490a0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 663490a4: 49 8b 48 10 mov 0x10(%r8),%rcx - 663490a8: c7 01 01 00 00 00 movl $0x1,(%rcx) - 663490ae: 49 63 0a movslq (%r10),%rcx - 663490b1: 8d 59 01 lea 0x1(%rcx),%ebx - 663490b4: 41 89 1a mov %ebx,(%r10) - 663490b7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663490bb: 48 83 c0 08 add $0x8,%rax - 663490bf: 48 83 c2 04 add $0x4,%rdx - 663490c3: 48 3d 58 02 00 00 cmp $0x258,%rax - 663490c9: 75 95 jne 66349060 - 663490cb: 48 83 c4 28 add $0x28,%rsp - 663490cf: 5b pop %rbx - 663490d0: 5e pop %rsi - 663490d1: 5f pop %rdi - 663490d2: 5d pop %rbp - 663490d3: 41 5c pop %r12 - 663490d5: 41 5d pop %r13 - 663490d7: c3 retq - 663490d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663490df: 00 +0000000066348f20 : + 66348f20: 41 55 push %r13 + 66348f22: 41 54 push %r12 + 66348f24: 55 push %rbp + 66348f25: 57 push %rdi + 66348f26: 56 push %rsi + 66348f27: 53 push %rbx + 66348f28: 48 83 ec 28 sub $0x28,%rsp + 66348f2c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66348f30: 49 8b 81 d8 01 00 00 mov 0x1d8(%r9),%rax + 66348f37: 48 89 cb mov %rcx,%rbx + 66348f3a: 44 8b 10 mov (%rax),%r10d + 66348f3d: 45 85 d2 test %r10d,%r10d + 66348f40: 0f 84 cb 00 00 00 je 66349011 + 66348f46: 49 8b 41 10 mov 0x10(%r9),%rax + 66348f4a: be 0b 00 00 00 mov $0xb,%esi + 66348f4f: 4c 8d 2d aa a0 00 00 lea 0xa0aa(%rip),%r13 # 66353000 <.rdata> + 66348f56: 4c 8d 25 b3 a0 00 00 lea 0xa0b3(%rip),%r12 # 66353010 <.rdata+0x10> + 66348f5d: 8b 10 mov (%rax),%edx + 66348f5f: 49 8b 41 08 mov 0x8(%r9),%rax + 66348f63: 8b 00 mov (%rax),%eax + 66348f65: 8d 04 50 lea (%rax,%rdx,2),%eax + 66348f68: 49 8b 51 18 mov 0x18(%r9),%rdx + 66348f6c: 8b 12 mov (%rdx),%edx + 66348f6e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66348f71: 49 8b 51 20 mov 0x20(%r9),%rdx + 66348f75: 8b 12 mov (%rdx),%edx + 66348f77: 8d 04 d0 lea (%rax,%rdx,8),%eax + 66348f7a: 49 8b 51 28 mov 0x28(%r9),%rdx + 66348f7e: 8b 3a mov (%rdx),%edi + 66348f80: 49 8b 51 30 mov 0x30(%r9),%rdx + 66348f84: c1 e7 04 shl $0x4,%edi + 66348f87: 01 f8 add %edi,%eax + 66348f89: 8b 3a mov (%rdx),%edi + 66348f8b: 49 8b 51 48 mov 0x48(%r9),%rdx + 66348f8f: c1 e7 05 shl $0x5,%edi + 66348f92: 01 c7 add %eax,%edi + 66348f94: 49 8b 41 38 mov 0x38(%r9),%rax + 66348f98: 8b 00 mov (%rax),%eax + 66348f9a: c1 e0 06 shl $0x6,%eax + 66348f9d: 01 c7 add %eax,%edi + 66348f9f: 49 8b 41 40 mov 0x40(%r9),%rax + 66348fa3: 8b 00 mov (%rax),%eax + 66348fa5: c1 e0 07 shl $0x7,%eax + 66348fa8: 01 f8 add %edi,%eax + 66348faa: 8b 3a mov (%rdx),%edi + 66348fac: 49 8b 51 50 mov 0x50(%r9),%rdx + 66348fb0: c1 e7 08 shl $0x8,%edi + 66348fb3: 01 f8 add %edi,%eax + 66348fb5: 8b 3a mov (%rdx),%edi + 66348fb7: c1 e7 09 shl $0x9,%edi + 66348fba: 01 c7 add %eax,%edi + 66348fbc: 48 63 ef movslq %edi,%rbp + 66348fbf: 48 c1 e5 02 shl $0x2,%rbp + 66348fc3: 85 ff test %edi,%edi + 66348fc5: 78 05 js 66348fcc + 66348fc7: 39 7b 38 cmp %edi,0x38(%rbx) + 66348fca: 7f 11 jg 66348fdd + 66348fcc: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66348fd2: 4c 89 ea mov %r13,%rdx + 66348fd5: 4c 89 e1 mov %r12,%rcx + 66348fd8: e8 23 80 00 00 callq 66351000 <_assert> + 66348fdd: 48 8b 43 40 mov 0x40(%rbx),%rax + 66348fe1: 89 f2 mov %esi,%edx + 66348fe3: 48 89 d9 mov %rbx,%rcx + 66348fe6: 83 c6 01 add $0x1,%esi + 66348fe9: 81 c7 00 04 00 00 add $0x400,%edi + 66348fef: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66348ff3: 48 81 c5 00 10 00 00 add $0x1000,%rbp + 66348ffa: e8 b1 83 ff ff callq 663413b0 + 66348fff: 83 fe 3b cmp $0x3b,%esi + 66349002: 75 bf jne 66348fc3 + 66349004: 48 83 c4 28 add $0x28,%rsp + 66349008: 5b pop %rbx + 66349009: 5e pop %rsi + 6634900a: 5f pop %rdi + 6634900b: 5d pop %rbp + 6634900c: 41 5c pop %r12 + 6634900e: 41 5d pop %r13 + 66349010: c3 retq + 66349011: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349015: 4c 8b 1d 04 d9 00 00 mov 0xd904(%rip),%r11 # 66356920 + 6634901c: 4c 8b 15 0d d9 00 00 mov 0xd90d(%rip),%r10 # 66356930 + 66349023: 48 8d 50 2c lea 0x2c(%rax),%rdx + 66349027: b8 58 00 00 00 mov $0x58,%eax + 6634902c: 0f 1f 40 00 nopl 0x0(%rax) + 66349030: 8b 0a mov (%rdx),%ecx + 66349032: 85 c9 test %ecx,%ecx + 66349034: 74 55 je 6634908b + 66349036: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634903a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634903e: 41 29 08 sub %ecx,(%r8) + 66349041: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349047: 45 8b 00 mov (%r8),%r8d + 6634904a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634904e: 45 85 c0 test %r8d,%r8d + 66349051: 41 0f 9f c0 setg %r8b + 66349055: 45 0f b6 c0 movzbl %r8b,%r8d + 66349059: 44 3b 01 cmp (%rcx),%r8d + 6634905c: 74 2d je 6634908b + 6634905e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66349062: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349066: 8b 09 mov (%rcx),%ecx + 66349068: 85 c9 test %ecx,%ecx + 6634906a: 75 1f jne 6634908b + 6634906c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66349070: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349074: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349078: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634907e: 49 63 0a movslq (%r10),%rcx + 66349081: 8d 71 01 lea 0x1(%rcx),%esi + 66349084: 41 89 32 mov %esi,(%r10) + 66349087: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634908b: 48 83 c0 08 add $0x8,%rax + 6634908f: 48 83 c2 04 add $0x4,%rdx + 66349093: 48 3d d8 01 00 00 cmp $0x1d8,%rax + 66349099: 75 95 jne 66349030 + 6634909b: 48 83 c4 28 add $0x28,%rsp + 6634909f: 5b pop %rbx + 663490a0: 5e pop %rsi + 663490a1: 5f pop %rdi + 663490a2: 5d pop %rbp + 663490a3: 41 5c pop %r12 + 663490a5: 41 5d pop %r13 + 663490a7: c3 retq + 663490a8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663490af: 00 -00000000663490e0 : - 663490e0: 41 55 push %r13 - 663490e2: 41 54 push %r12 - 663490e4: 55 push %rbp - 663490e5: 57 push %rdi - 663490e6: 56 push %rsi - 663490e7: 53 push %rbx - 663490e8: 48 83 ec 28 sub $0x28,%rsp - 663490ec: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663490f0: 49 8b 81 48 02 00 00 mov 0x248(%r9),%rax - 663490f7: 48 89 ce mov %rcx,%rsi - 663490fa: 8b 18 mov (%rax),%ebx - 663490fc: 85 db test %ebx,%ebx - 663490fe: 0f 84 31 01 00 00 je 66349235 - 66349104: 49 8b 41 10 mov 0x10(%r9),%rax - 66349108: bb 24 00 00 00 mov $0x24,%ebx - 6634910d: 4c 8d 2d ec ae 00 00 lea 0xaeec(%rip),%r13 # 66354000 <.rdata> - 66349114: 4c 8d 25 f5 ae 00 00 lea 0xaef5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634911b: 8b 10 mov (%rax),%edx - 6634911d: 49 8b 41 08 mov 0x8(%r9),%rax - 66349121: 8b 00 mov (%rax),%eax - 66349123: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349126: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634912a: 8b 12 mov (%rdx),%edx - 6634912c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634912f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349133: 8b 12 mov (%rdx),%edx - 66349135: 8d 04 d0 lea (%rax,%rdx,8),%eax - 66349138: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634913c: 8b 3a mov (%rdx),%edi - 6634913e: 49 8b 51 40 mov 0x40(%r9),%rdx - 66349142: c1 e7 04 shl $0x4,%edi - 66349145: 01 c7 add %eax,%edi - 66349147: 49 8b 41 30 mov 0x30(%r9),%rax - 6634914b: 8b 00 mov (%rax),%eax - 6634914d: c1 e0 05 shl $0x5,%eax - 66349150: 01 c7 add %eax,%edi - 66349152: 49 8b 41 38 mov 0x38(%r9),%rax - 66349156: 8b 00 mov (%rax),%eax - 66349158: c1 e0 06 shl $0x6,%eax - 6634915b: 01 f8 add %edi,%eax - 6634915d: 8b 3a mov (%rdx),%edi - 6634915f: c1 e7 07 shl $0x7,%edi - 66349162: 01 c7 add %eax,%edi - 66349164: 48 63 ef movslq %edi,%rbp - 66349167: 48 c1 e5 02 shl $0x2,%rbp - 6634916b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66349170: 85 ff test %edi,%edi - 66349172: 78 05 js 66349179 - 66349174: 39 7e 38 cmp %edi,0x38(%rsi) - 66349177: 7f 11 jg 6634918a - 66349179: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634917f: 4c 89 ea mov %r13,%rdx - 66349182: 4c 89 e1 mov %r12,%rcx - 66349185: e8 86 90 00 00 callq 66352210 <_assert> - 6634918a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634918e: 48 8b 46 40 mov 0x40(%rsi),%rax - 66349192: 48 01 da add %rbx,%rdx - 66349195: 8b 04 28 mov (%rax,%rbp,1),%eax - 66349198: 8b 0a mov (%rdx),%ecx - 6634919a: 39 c8 cmp %ecx,%eax - 6634919c: 74 6c je 6634920a - 6634919e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663491a2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 663491a6: 41 89 c3 mov %eax,%r11d - 663491a9: 41 29 cb sub %ecx,%r11d - 663491ac: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 663491b0: 45 01 18 add %r11d,(%r8) - 663491b3: 89 02 mov %eax,(%rdx) - 663491b5: 31 d2 xor %edx,%edx - 663491b7: 48 8b 46 10 mov 0x10(%rsi),%rax - 663491bb: 45 8b 18 mov (%r8),%r11d - 663491be: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663491c2: 45 85 db test %r11d,%r11d - 663491c5: 0f 9f c2 setg %dl - 663491c8: 3b 10 cmp (%rax),%edx - 663491ca: 74 3e je 6634920a - 663491cc: 48 8b 46 20 mov 0x20(%rsi),%rax - 663491d0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663491d4: 44 8b 10 mov (%rax),%r10d - 663491d7: 45 85 d2 test %r10d,%r10d - 663491da: 75 2e jne 6634920a - 663491dc: 48 8b 46 28 mov 0x28(%rsi),%rax - 663491e0: 48 8b 0d 49 e7 00 00 mov 0xe749(%rip),%rcx # 66357930 - 663491e7: 4c 8b 05 32 e7 00 00 mov 0xe732(%rip),%r8 # 66357920 - 663491ee: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 663491f2: 48 8b 42 10 mov 0x10(%rdx),%rax - 663491f6: c7 00 01 00 00 00 movl $0x1,(%rax) - 663491fc: 48 63 01 movslq (%rcx),%rax - 663491ff: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349203: 44 89 09 mov %r9d,(%rcx) - 66349206: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634920a: 48 83 c3 04 add $0x4,%rbx - 6634920e: 81 c7 00 01 00 00 add $0x100,%edi - 66349214: 48 81 c5 00 04 00 00 add $0x400,%rbp - 6634921b: 48 81 fb 24 01 00 00 cmp $0x124,%rbx - 66349222: 0f 85 48 ff ff ff jne 66349170 - 66349228: 48 83 c4 28 add $0x28,%rsp - 6634922c: 5b pop %rbx - 6634922d: 5e pop %rsi - 6634922e: 5f pop %rdi - 6634922f: 5d pop %rbp - 66349230: 41 5c pop %r12 - 66349232: 41 5d pop %r13 - 66349234: c3 retq - 66349235: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349239: 4c 8b 1d e0 e6 00 00 mov 0xe6e0(%rip),%r11 # 66357920 - 66349240: 4c 8b 15 e9 e6 00 00 mov 0xe6e9(%rip),%r10 # 66357930 - 66349247: 48 8d 50 24 lea 0x24(%rax),%rdx - 6634924b: b8 48 00 00 00 mov $0x48,%eax - 66349250: 8b 0a mov (%rdx),%ecx - 66349252: 85 c9 test %ecx,%ecx - 66349254: 74 55 je 663492ab - 66349256: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634925a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634925e: 41 29 08 sub %ecx,(%r8) - 66349261: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349267: 45 8b 00 mov (%r8),%r8d - 6634926a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634926e: 45 85 c0 test %r8d,%r8d - 66349271: 41 0f 9f c0 setg %r8b - 66349275: 45 0f b6 c0 movzbl %r8b,%r8d - 66349279: 44 3b 01 cmp (%rcx),%r8d - 6634927c: 74 2d je 663492ab - 6634927e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349282: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349286: 8b 09 mov (%rcx),%ecx - 66349288: 85 c9 test %ecx,%ecx - 6634928a: 75 1f jne 663492ab - 6634928c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66349290: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66349294: 49 8b 48 10 mov 0x10(%r8),%rcx - 66349298: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634929e: 49 63 0a movslq (%r10),%rcx - 663492a1: 8d 59 01 lea 0x1(%rcx),%ebx - 663492a4: 41 89 1a mov %ebx,(%r10) - 663492a7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 663492ab: 48 83 c0 08 add $0x8,%rax - 663492af: 48 83 c2 04 add $0x4,%rdx - 663492b3: 48 3d 48 02 00 00 cmp $0x248,%rax - 663492b9: 75 95 jne 66349250 - 663492bb: 48 83 c4 28 add $0x28,%rsp - 663492bf: 5b pop %rbx - 663492c0: 5e pop %rsi - 663492c1: 5f pop %rdi - 663492c2: 5d pop %rbp - 663492c3: 41 5c pop %r12 - 663492c5: 41 5d pop %r13 - 663492c7: c3 retq - 663492c8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663492cf: 00 +00000000663490b0 : + 663490b0: 41 55 push %r13 + 663490b2: 41 54 push %r12 + 663490b4: 55 push %rbp + 663490b5: 57 push %rdi + 663490b6: 56 push %rsi + 663490b7: 53 push %rbx + 663490b8: 48 83 ec 28 sub $0x28,%rsp + 663490bc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663490c0: 49 8b 81 b8 01 00 00 mov 0x1b8(%r9),%rax + 663490c7: 48 89 cb mov %rcx,%rbx + 663490ca: 44 8b 10 mov (%rax),%r10d + 663490cd: 45 85 d2 test %r10d,%r10d + 663490d0: 0f 84 aa 00 00 00 je 66349180 + 663490d6: 49 8b 41 10 mov 0x10(%r9),%rax + 663490da: be 07 00 00 00 mov $0x7,%esi + 663490df: 4c 8d 2d 1a 9f 00 00 lea 0x9f1a(%rip),%r13 # 66353000 <.rdata> + 663490e6: 4c 8d 25 23 9f 00 00 lea 0x9f23(%rip),%r12 # 66353010 <.rdata+0x10> + 663490ed: 8b 10 mov (%rax),%edx + 663490ef: 49 8b 41 08 mov 0x8(%r9),%rax + 663490f3: 8b 00 mov (%rax),%eax + 663490f5: 8d 04 50 lea (%rax,%rdx,2),%eax + 663490f8: 49 8b 51 18 mov 0x18(%r9),%rdx + 663490fc: 8b 12 mov (%rdx),%edx + 663490fe: 8d 04 90 lea (%rax,%rdx,4),%eax + 66349101: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349105: 8b 12 mov (%rdx),%edx + 66349107: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634910a: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634910e: 8b 3a mov (%rdx),%edi + 66349110: 49 8b 51 30 mov 0x30(%r9),%rdx + 66349114: c1 e7 04 shl $0x4,%edi + 66349117: 01 f8 add %edi,%eax + 66349119: 8b 3a mov (%rdx),%edi + 6634911b: c1 e7 05 shl $0x5,%edi + 6634911e: 01 c7 add %eax,%edi + 66349120: 48 63 ef movslq %edi,%rbp + 66349123: 48 c1 e5 02 shl $0x2,%rbp + 66349127: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634912e: 00 00 + 66349130: 85 ff test %edi,%edi + 66349132: 78 05 js 66349139 + 66349134: 3b 7b 38 cmp 0x38(%rbx),%edi + 66349137: 7c 11 jl 6634914a + 66349139: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634913f: 4c 89 ea mov %r13,%rdx + 66349142: 4c 89 e1 mov %r12,%rcx + 66349145: e8 b6 7e 00 00 callq 66351000 <_assert> + 6634914a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634914e: 89 f2 mov %esi,%edx + 66349150: 48 89 d9 mov %rbx,%rcx + 66349153: 83 c6 01 add $0x1,%esi + 66349156: 83 c7 40 add $0x40,%edi + 66349159: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634915d: 48 81 c5 00 01 00 00 add $0x100,%rbp + 66349164: e8 47 82 ff ff callq 663413b0 + 66349169: 83 fe 37 cmp $0x37,%esi + 6634916c: 75 c2 jne 66349130 + 6634916e: 48 83 c4 28 add $0x28,%rsp + 66349172: 5b pop %rbx + 66349173: 5e pop %rsi + 66349174: 5f pop %rdi + 66349175: 5d pop %rbp + 66349176: 41 5c pop %r12 + 66349178: 41 5d pop %r13 + 6634917a: c3 retq + 6634917b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349180: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349184: 4c 8b 1d 95 d7 00 00 mov 0xd795(%rip),%r11 # 66356920 + 6634918b: 4c 8b 15 9e d7 00 00 mov 0xd79e(%rip),%r10 # 66356930 + 66349192: 48 8d 50 1c lea 0x1c(%rax),%rdx + 66349196: b8 38 00 00 00 mov $0x38,%eax + 6634919b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663491a0: 8b 0a mov (%rdx),%ecx + 663491a2: 85 c9 test %ecx,%ecx + 663491a4: 74 55 je 663491fb + 663491a6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 663491aa: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663491ae: 41 29 08 sub %ecx,(%r8) + 663491b1: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663491b7: 45 8b 00 mov (%r8),%r8d + 663491ba: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 663491be: 45 85 c0 test %r8d,%r8d + 663491c1: 41 0f 9f c0 setg %r8b + 663491c5: 45 0f b6 c0 movzbl %r8b,%r8d + 663491c9: 44 3b 01 cmp (%rcx),%r8d + 663491cc: 74 2d je 663491fb + 663491ce: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 663491d2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 663491d6: 8b 09 mov (%rcx),%ecx + 663491d8: 85 c9 test %ecx,%ecx + 663491da: 75 1f jne 663491fb + 663491dc: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 663491e0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 663491e4: 49 8b 48 10 mov 0x10(%r8),%rcx + 663491e8: c7 01 01 00 00 00 movl $0x1,(%rcx) + 663491ee: 49 63 0a movslq (%r10),%rcx + 663491f1: 8d 71 01 lea 0x1(%rcx),%esi + 663491f4: 41 89 32 mov %esi,(%r10) + 663491f7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 663491fb: 48 83 c0 08 add $0x8,%rax + 663491ff: 48 83 c2 04 add $0x4,%rdx + 66349203: 48 3d b8 01 00 00 cmp $0x1b8,%rax + 66349209: 75 95 jne 663491a0 + 6634920b: 48 83 c4 28 add $0x28,%rsp + 6634920f: 5b pop %rbx + 66349210: 5e pop %rsi + 66349211: 5f pop %rdi + 66349212: 5d pop %rbp + 66349213: 41 5c pop %r12 + 66349215: 41 5d pop %r13 + 66349217: c3 retq + 66349218: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634921f: 00 -00000000663492d0 : - 663492d0: 56 push %rsi - 663492d1: 53 push %rbx - 663492d2: 4c 8b 15 47 e6 00 00 mov 0xe647(%rip),%r10 # 66357920 - 663492d9: 4c 8b 05 50 e6 00 00 mov 0xe650(%rip),%r8 # 66357930 - 663492e0: 48 8b 51 10 mov 0x10(%rcx),%rdx - 663492e4: 48 8b 41 08 mov 0x8(%rcx),%rax - 663492e8: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 663492ec: 41 8b 31 mov (%r9),%esi - 663492ef: 85 f6 test %esi,%esi - 663492f1: 0f 84 09 01 00 00 je 66349400 - 663492f7: 4c 8b 4a 08 mov 0x8(%rdx),%r9 - 663492fb: 44 8b 58 10 mov 0x10(%rax),%r11d - 663492ff: 45 8b 09 mov (%r9),%r9d - 66349302: 45 39 cb cmp %r9d,%r11d - 66349305: 74 59 je 66349360 - 66349307: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634930b: 44 89 ce mov %r9d,%esi - 6634930e: 44 29 de sub %r11d,%esi - 66349311: 45 31 db xor %r11d,%r11d - 66349314: 48 8b 5b 20 mov 0x20(%rbx),%rbx - 66349318: 01 33 add %esi,(%rbx) - 6634931a: 44 89 48 10 mov %r9d,0x10(%rax) - 6634931e: 8b 1b mov (%rbx),%ebx - 66349320: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66349324: 85 db test %ebx,%ebx - 66349326: 41 0f 9f c3 setg %r11b - 6634932a: 45 3b 19 cmp (%r9),%r11d - 6634932d: 74 31 je 66349360 - 6634932f: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66349333: 4d 8b 49 20 mov 0x20(%r9),%r9 - 66349337: 45 8b 09 mov (%r9),%r9d - 6634933a: 45 85 c9 test %r9d,%r9d - 6634933d: 75 21 jne 66349360 - 6634933f: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66349343: 4d 8b 59 20 mov 0x20(%r9),%r11 - 66349347: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 6634934b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66349352: 4d 63 08 movslq (%r8),%r9 - 66349355: 41 8d 59 01 lea 0x1(%r9),%ebx - 66349359: 41 89 18 mov %ebx,(%r8) - 6634935c: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66349360: 4c 8b 4a 10 mov 0x10(%rdx),%r9 - 66349364: 44 8b 58 14 mov 0x14(%rax),%r11d - 66349368: 45 8b 09 mov (%r9),%r9d - 6634936b: 45 39 d9 cmp %r11d,%r9d - 6634936e: 74 58 je 663493c8 - 66349370: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66349374: 44 89 ce mov %r9d,%esi - 66349377: 44 29 de sub %r11d,%esi - 6634937a: 45 31 db xor %r11d,%r11d - 6634937d: 48 8b 5b 28 mov 0x28(%rbx),%rbx - 66349381: 01 33 add %esi,(%rbx) - 66349383: 44 89 48 14 mov %r9d,0x14(%rax) - 66349387: 8b 33 mov (%rbx),%esi - 66349389: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 6634938d: 85 f6 test %esi,%esi - 6634938f: 41 0f 9f c3 setg %r11b - 66349393: 45 3b 19 cmp (%r9),%r11d - 66349396: 74 30 je 663493c8 - 66349398: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 6634939c: 4d 8b 49 28 mov 0x28(%r9),%r9 - 663493a0: 41 8b 19 mov (%r9),%ebx - 663493a3: 85 db test %ebx,%ebx - 663493a5: 75 21 jne 663493c8 - 663493a7: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663493ab: 4d 8b 59 28 mov 0x28(%r9),%r11 - 663493af: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663493b3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663493ba: 4d 63 08 movslq (%r8),%r9 - 663493bd: 41 8d 59 01 lea 0x1(%r9),%ebx - 663493c1: 41 89 18 mov %ebx,(%r8) - 663493c4: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663493c8: 4c 8b 4a 18 mov 0x18(%rdx),%r9 - 663493cc: 44 8b 58 18 mov 0x18(%rax),%r11d - 663493d0: 45 8b 09 mov (%r9),%r9d - 663493d3: 45 39 d9 cmp %r11d,%r9d - 663493d6: 0f 84 45 01 00 00 je 66349521 - 663493dc: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663493e0: 44 89 ce mov %r9d,%esi - 663493e3: 44 29 de sub %r11d,%esi - 663493e6: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 663493ea: 01 33 add %esi,(%rbx) - 663493ec: 44 89 48 18 mov %r9d,0x18(%rax) - 663493f0: 44 8b 1b mov (%rbx),%r11d - 663493f3: 45 85 db test %r11d,%r11d - 663493f6: e9 e8 00 00 00 jmpq 663494e3 - 663493fb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66349400: 44 8b 48 10 mov 0x10(%rax),%r9d - 66349404: 45 85 c9 test %r9d,%r9d - 66349407: 74 58 je 66349461 - 66349409: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634940d: 4d 8b 5b 20 mov 0x20(%r11),%r11 - 66349411: 45 29 0b sub %r9d,(%r11) - 66349414: c7 40 10 00 00 00 00 movl $0x0,0x10(%rax) - 6634941b: 45 8b 0b mov (%r11),%r9d - 6634941e: 45 31 db xor %r11d,%r11d - 66349421: 45 85 c9 test %r9d,%r9d - 66349424: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66349428: 41 0f 9f c3 setg %r11b - 6634942c: 45 3b 19 cmp (%r9),%r11d - 6634942f: 74 30 je 66349461 - 66349431: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66349435: 4d 8b 49 20 mov 0x20(%r9),%r9 - 66349439: 41 8b 31 mov (%r9),%esi - 6634943c: 85 f6 test %esi,%esi - 6634943e: 75 21 jne 66349461 - 66349440: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66349444: 4d 8b 59 20 mov 0x20(%r9),%r11 - 66349448: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 6634944c: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66349453: 4d 63 08 movslq (%r8),%r9 - 66349456: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634945a: 41 89 18 mov %ebx,(%r8) - 6634945d: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66349461: 44 8b 48 14 mov 0x14(%rax),%r9d - 66349465: 45 85 c9 test %r9d,%r9d - 66349468: 74 58 je 663494c2 - 6634946a: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634946e: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 66349472: 45 29 0b sub %r9d,(%r11) - 66349475: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) - 6634947c: 41 8b 1b mov (%r11),%ebx - 6634947f: 45 31 db xor %r11d,%r11d - 66349482: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 66349486: 85 db test %ebx,%ebx - 66349488: 41 0f 9f c3 setg %r11b - 6634948c: 45 3b 19 cmp (%r9),%r11d - 6634948f: 74 31 je 663494c2 - 66349491: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66349495: 4d 8b 49 28 mov 0x28(%r9),%r9 - 66349499: 45 8b 19 mov (%r9),%r11d - 6634949c: 45 85 db test %r11d,%r11d - 6634949f: 75 21 jne 663494c2 - 663494a1: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663494a5: 4d 8b 59 28 mov 0x28(%r9),%r11 - 663494a9: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663494ad: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663494b4: 4d 63 08 movslq (%r8),%r9 - 663494b7: 41 8d 59 01 lea 0x1(%r9),%ebx - 663494bb: 41 89 18 mov %ebx,(%r8) - 663494be: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663494c2: 44 8b 48 18 mov 0x18(%rax),%r9d - 663494c6: 45 85 c9 test %r9d,%r9d - 663494c9: 74 56 je 66349521 - 663494cb: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663494cf: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 663494d3: 45 29 0b sub %r9d,(%r11) - 663494d6: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 663494dd: 45 8b 0b mov (%r11),%r9d - 663494e0: 45 85 c9 test %r9d,%r9d - 663494e3: 48 8b 42 30 mov 0x30(%rdx),%rax - 663494e7: 41 0f 9f c1 setg %r9b - 663494eb: 45 0f b6 c9 movzbl %r9b,%r9d - 663494ef: 44 3b 08 cmp (%rax),%r9d - 663494f2: 74 2d je 66349521 - 663494f4: 48 8b 41 20 mov 0x20(%rcx),%rax - 663494f8: 48 8b 40 30 mov 0x30(%rax),%rax - 663494fc: 8b 00 mov (%rax),%eax - 663494fe: 85 c0 test %eax,%eax - 66349500: 75 1f jne 66349521 - 66349502: 48 8b 41 28 mov 0x28(%rcx),%rax - 66349506: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634950a: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634950e: c7 00 01 00 00 00 movl $0x1,(%rax) - 66349514: 49 63 00 movslq (%r8),%rax - 66349517: 8d 48 01 lea 0x1(%rax),%ecx - 6634951a: 41 89 08 mov %ecx,(%r8) - 6634951d: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 66349521: 5b pop %rbx - 66349522: 5e pop %rsi - 66349523: c3 retq - 66349524: 66 90 xchg %ax,%ax - 66349526: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634952d: 00 00 00 +0000000066349220 : + 66349220: 41 55 push %r13 + 66349222: 41 54 push %r12 + 66349224: 55 push %rbp + 66349225: 57 push %rdi + 66349226: 56 push %rsi + 66349227: 53 push %rbx + 66349228: 48 83 ec 28 sub $0x28,%rsp + 6634922c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66349230: 49 8b 81 e0 01 00 00 mov 0x1e0(%r9),%rax + 66349237: 48 89 cb mov %rcx,%rbx + 6634923a: 44 8b 10 mov (%rax),%r10d + 6634923d: 45 85 d2 test %r10d,%r10d + 66349240: 0f 84 da 00 00 00 je 66349320 + 66349246: 49 8b 41 10 mov 0x10(%r9),%rax + 6634924a: be 0c 00 00 00 mov $0xc,%esi + 6634924f: 4c 8d 2d aa 9d 00 00 lea 0x9daa(%rip),%r13 # 66353000 <.rdata> + 66349256: 4c 8d 25 b3 9d 00 00 lea 0x9db3(%rip),%r12 # 66353010 <.rdata+0x10> + 6634925d: 8b 10 mov (%rax),%edx + 6634925f: 49 8b 41 08 mov 0x8(%r9),%rax + 66349263: 8b 00 mov (%rax),%eax + 66349265: 8d 04 50 lea (%rax,%rdx,2),%eax + 66349268: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634926c: 8b 12 mov (%rdx),%edx + 6634926e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66349271: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349275: 8b 12 mov (%rdx),%edx + 66349277: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634927a: 49 8b 41 28 mov 0x28(%r9),%rax + 6634927e: 49 8b 51 30 mov 0x30(%r9),%rdx + 66349282: 8b 00 mov (%rax),%eax + 66349284: c1 e0 04 shl $0x4,%eax + 66349287: 01 f8 add %edi,%eax + 66349289: 8b 3a mov (%rdx),%edi + 6634928b: 49 8b 51 38 mov 0x38(%r9),%rdx + 6634928f: c1 e7 05 shl $0x5,%edi + 66349292: 01 f8 add %edi,%eax + 66349294: 8b 3a mov (%rdx),%edi + 66349296: 49 8b 51 50 mov 0x50(%r9),%rdx + 6634929a: c1 e7 06 shl $0x6,%edi + 6634929d: 01 c7 add %eax,%edi + 6634929f: 49 8b 41 40 mov 0x40(%r9),%rax + 663492a3: 8b 00 mov (%rax),%eax + 663492a5: c1 e0 07 shl $0x7,%eax + 663492a8: 01 c7 add %eax,%edi + 663492aa: 49 8b 41 48 mov 0x48(%r9),%rax + 663492ae: 8b 00 mov (%rax),%eax + 663492b0: c1 e0 08 shl $0x8,%eax + 663492b3: 01 f8 add %edi,%eax + 663492b5: 8b 3a mov (%rdx),%edi + 663492b7: 49 8b 51 58 mov 0x58(%r9),%rdx + 663492bb: c1 e7 09 shl $0x9,%edi + 663492be: 01 f8 add %edi,%eax + 663492c0: 8b 3a mov (%rdx),%edi + 663492c2: c1 e7 0a shl $0xa,%edi + 663492c5: 01 c7 add %eax,%edi + 663492c7: 48 63 ef movslq %edi,%rbp + 663492ca: 48 c1 e5 02 shl $0x2,%rbp + 663492ce: 66 90 xchg %ax,%ax + 663492d0: 85 ff test %edi,%edi + 663492d2: 78 05 js 663492d9 + 663492d4: 39 7b 38 cmp %edi,0x38(%rbx) + 663492d7: 7f 11 jg 663492ea + 663492d9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663492df: 4c 89 ea mov %r13,%rdx + 663492e2: 4c 89 e1 mov %r12,%rcx + 663492e5: e8 16 7d 00 00 callq 66351000 <_assert> + 663492ea: 48 8b 43 40 mov 0x40(%rbx),%rax + 663492ee: 89 f2 mov %esi,%edx + 663492f0: 48 89 d9 mov %rbx,%rcx + 663492f3: 83 c6 01 add $0x1,%esi + 663492f6: 81 c7 00 08 00 00 add $0x800,%edi + 663492fc: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66349300: 48 81 c5 00 20 00 00 add $0x2000,%rbp + 66349307: e8 a4 80 ff ff callq 663413b0 + 6634930c: 83 fe 3c cmp $0x3c,%esi + 6634930f: 75 bf jne 663492d0 + 66349311: 48 83 c4 28 add $0x28,%rsp + 66349315: 5b pop %rbx + 66349316: 5e pop %rsi + 66349317: 5f pop %rdi + 66349318: 5d pop %rbp + 66349319: 41 5c pop %r12 + 6634931b: 41 5d pop %r13 + 6634931d: c3 retq + 6634931e: 66 90 xchg %ax,%ax + 66349320: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349324: 4c 8b 1d f5 d5 00 00 mov 0xd5f5(%rip),%r11 # 66356920 + 6634932b: 4c 8b 15 fe d5 00 00 mov 0xd5fe(%rip),%r10 # 66356930 + 66349332: 48 8d 50 30 lea 0x30(%rax),%rdx + 66349336: b8 60 00 00 00 mov $0x60,%eax + 6634933b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349340: 8b 0a mov (%rdx),%ecx + 66349342: 85 c9 test %ecx,%ecx + 66349344: 74 55 je 6634939b + 66349346: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634934a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634934e: 41 29 08 sub %ecx,(%r8) + 66349351: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349357: 45 8b 00 mov (%r8),%r8d + 6634935a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634935e: 45 85 c0 test %r8d,%r8d + 66349361: 41 0f 9f c0 setg %r8b + 66349365: 45 0f b6 c0 movzbl %r8b,%r8d + 66349369: 44 3b 01 cmp (%rcx),%r8d + 6634936c: 74 2d je 6634939b + 6634936e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66349372: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349376: 8b 09 mov (%rcx),%ecx + 66349378: 85 c9 test %ecx,%ecx + 6634937a: 75 1f jne 6634939b + 6634937c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66349380: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349384: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349388: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634938e: 49 63 0a movslq (%r10),%rcx + 66349391: 8d 71 01 lea 0x1(%rcx),%esi + 66349394: 41 89 32 mov %esi,(%r10) + 66349397: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634939b: 48 83 c0 08 add $0x8,%rax + 6634939f: 48 83 c2 04 add $0x4,%rdx + 663493a3: 48 3d e0 01 00 00 cmp $0x1e0,%rax + 663493a9: 75 95 jne 66349340 + 663493ab: 48 83 c4 28 add $0x28,%rsp + 663493af: 5b pop %rbx + 663493b0: 5e pop %rsi + 663493b1: 5f pop %rdi + 663493b2: 5d pop %rbp + 663493b3: 41 5c pop %r12 + 663493b5: 41 5d pop %r13 + 663493b7: c3 retq + 663493b8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663493bf: 00 -0000000066349530 : - 66349530: 56 push %rsi - 66349531: 53 push %rbx - 66349532: 4c 8b 15 e7 e3 00 00 mov 0xe3e7(%rip),%r10 # 66357920 - 66349539: 4c 8b 05 f0 e3 00 00 mov 0xe3f0(%rip),%r8 # 66357930 - 66349540: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66349544: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349548: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 6634954c: 41 8b 31 mov (%r9),%esi - 6634954f: 85 f6 test %esi,%esi - 66349551: 0f 84 09 01 00 00 je 66349660 - 66349557: 4c 8b 4a 08 mov 0x8(%rdx),%r9 - 6634955b: 44 8b 58 10 mov 0x10(%rax),%r11d - 6634955f: 45 8b 09 mov (%r9),%r9d - 66349562: 45 39 cb cmp %r9d,%r11d - 66349565: 74 59 je 663495c0 - 66349567: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634956b: 44 89 ce mov %r9d,%esi - 6634956e: 44 29 de sub %r11d,%esi - 66349571: 45 31 db xor %r11d,%r11d - 66349574: 48 8b 5b 20 mov 0x20(%rbx),%rbx - 66349578: 01 33 add %esi,(%rbx) - 6634957a: 44 89 48 10 mov %r9d,0x10(%rax) - 6634957e: 8b 1b mov (%rbx),%ebx - 66349580: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66349584: 85 db test %ebx,%ebx - 66349586: 41 0f 9f c3 setg %r11b - 6634958a: 45 3b 19 cmp (%r9),%r11d - 6634958d: 74 31 je 663495c0 - 6634958f: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66349593: 4d 8b 49 20 mov 0x20(%r9),%r9 - 66349597: 45 8b 09 mov (%r9),%r9d - 6634959a: 45 85 c9 test %r9d,%r9d - 6634959d: 75 21 jne 663495c0 - 6634959f: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663495a3: 4d 8b 59 20 mov 0x20(%r9),%r11 - 663495a7: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663495ab: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663495b2: 4d 63 08 movslq (%r8),%r9 - 663495b5: 41 8d 59 01 lea 0x1(%r9),%ebx - 663495b9: 41 89 18 mov %ebx,(%r8) - 663495bc: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663495c0: 4c 8b 4a 10 mov 0x10(%rdx),%r9 - 663495c4: 44 8b 58 14 mov 0x14(%rax),%r11d - 663495c8: 45 8b 09 mov (%r9),%r9d - 663495cb: 45 39 d9 cmp %r11d,%r9d - 663495ce: 74 58 je 66349628 - 663495d0: 48 8b 59 18 mov 0x18(%rcx),%rbx - 663495d4: 44 89 ce mov %r9d,%esi - 663495d7: 44 29 de sub %r11d,%esi - 663495da: 45 31 db xor %r11d,%r11d - 663495dd: 48 8b 5b 28 mov 0x28(%rbx),%rbx - 663495e1: 01 33 add %esi,(%rbx) - 663495e3: 44 89 48 14 mov %r9d,0x14(%rax) - 663495e7: 8b 33 mov (%rbx),%esi - 663495e9: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 663495ed: 85 f6 test %esi,%esi - 663495ef: 41 0f 9f c3 setg %r11b - 663495f3: 45 3b 19 cmp (%r9),%r11d - 663495f6: 74 30 je 66349628 - 663495f8: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663495fc: 4d 8b 49 28 mov 0x28(%r9),%r9 - 66349600: 41 8b 19 mov (%r9),%ebx - 66349603: 85 db test %ebx,%ebx - 66349605: 75 21 jne 66349628 - 66349607: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 6634960b: 4d 8b 59 28 mov 0x28(%r9),%r11 - 6634960f: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 66349613: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634961a: 4d 63 08 movslq (%r8),%r9 - 6634961d: 41 8d 59 01 lea 0x1(%r9),%ebx - 66349621: 41 89 18 mov %ebx,(%r8) - 66349624: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66349628: 4c 8b 4a 18 mov 0x18(%rdx),%r9 - 6634962c: 44 8b 58 18 mov 0x18(%rax),%r11d - 66349630: 45 8b 09 mov (%r9),%r9d - 66349633: 45 39 d9 cmp %r11d,%r9d - 66349636: 0f 84 45 01 00 00 je 66349781 - 6634963c: 48 8b 59 18 mov 0x18(%rcx),%rbx - 66349640: 44 89 ce mov %r9d,%esi - 66349643: 44 29 de sub %r11d,%esi - 66349646: 48 8b 5b 30 mov 0x30(%rbx),%rbx - 6634964a: 01 33 add %esi,(%rbx) - 6634964c: 44 89 48 18 mov %r9d,0x18(%rax) - 66349650: 44 8b 1b mov (%rbx),%r11d - 66349653: 45 85 db test %r11d,%r11d - 66349656: e9 e8 00 00 00 jmpq 66349743 - 6634965b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66349660: 44 8b 48 10 mov 0x10(%rax),%r9d - 66349664: 45 85 c9 test %r9d,%r9d - 66349667: 74 58 je 663496c1 - 66349669: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634966d: 4d 8b 5b 20 mov 0x20(%r11),%r11 - 66349671: 45 29 0b sub %r9d,(%r11) - 66349674: c7 40 10 00 00 00 00 movl $0x0,0x10(%rax) - 6634967b: 45 8b 0b mov (%r11),%r9d - 6634967e: 45 31 db xor %r11d,%r11d - 66349681: 45 85 c9 test %r9d,%r9d - 66349684: 4c 8b 4a 20 mov 0x20(%rdx),%r9 - 66349688: 41 0f 9f c3 setg %r11b - 6634968c: 45 3b 19 cmp (%r9),%r11d - 6634968f: 74 30 je 663496c1 - 66349691: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 66349695: 4d 8b 49 20 mov 0x20(%r9),%r9 - 66349699: 41 8b 31 mov (%r9),%esi - 6634969c: 85 f6 test %esi,%esi - 6634969e: 75 21 jne 663496c1 - 663496a0: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 663496a4: 4d 8b 59 20 mov 0x20(%r9),%r11 - 663496a8: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 663496ac: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 663496b3: 4d 63 08 movslq (%r8),%r9 - 663496b6: 41 8d 59 01 lea 0x1(%r9),%ebx - 663496ba: 41 89 18 mov %ebx,(%r8) - 663496bd: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 663496c1: 44 8b 48 14 mov 0x14(%rax),%r9d - 663496c5: 45 85 c9 test %r9d,%r9d - 663496c8: 74 58 je 66349722 - 663496ca: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 663496ce: 4d 8b 5b 28 mov 0x28(%r11),%r11 - 663496d2: 45 29 0b sub %r9d,(%r11) - 663496d5: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) - 663496dc: 41 8b 1b mov (%r11),%ebx - 663496df: 45 31 db xor %r11d,%r11d - 663496e2: 4c 8b 4a 28 mov 0x28(%rdx),%r9 - 663496e6: 85 db test %ebx,%ebx - 663496e8: 41 0f 9f c3 setg %r11b - 663496ec: 45 3b 19 cmp (%r9),%r11d - 663496ef: 74 31 je 66349722 - 663496f1: 4c 8b 49 20 mov 0x20(%rcx),%r9 - 663496f5: 4d 8b 49 28 mov 0x28(%r9),%r9 - 663496f9: 45 8b 19 mov (%r9),%r11d - 663496fc: 45 85 db test %r11d,%r11d - 663496ff: 75 21 jne 66349722 - 66349701: 4c 8b 49 28 mov 0x28(%rcx),%r9 - 66349705: 4d 8b 59 28 mov 0x28(%r9),%r11 - 66349709: 4d 8b 4b 10 mov 0x10(%r11),%r9 - 6634970d: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 66349714: 4d 63 08 movslq (%r8),%r9 - 66349717: 41 8d 59 01 lea 0x1(%r9),%ebx - 6634971b: 41 89 18 mov %ebx,(%r8) - 6634971e: 4f 89 1c ca mov %r11,(%r10,%r9,8) - 66349722: 44 8b 48 18 mov 0x18(%rax),%r9d - 66349726: 45 85 c9 test %r9d,%r9d - 66349729: 74 56 je 66349781 - 6634972b: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634972f: 4d 8b 5b 30 mov 0x30(%r11),%r11 - 66349733: 45 29 0b sub %r9d,(%r11) - 66349736: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 6634973d: 45 8b 0b mov (%r11),%r9d - 66349740: 45 85 c9 test %r9d,%r9d - 66349743: 48 8b 42 30 mov 0x30(%rdx),%rax - 66349747: 41 0f 9f c1 setg %r9b - 6634974b: 45 0f b6 c9 movzbl %r9b,%r9d - 6634974f: 44 3b 08 cmp (%rax),%r9d - 66349752: 74 2d je 66349781 - 66349754: 48 8b 41 20 mov 0x20(%rcx),%rax - 66349758: 48 8b 40 30 mov 0x30(%rax),%rax - 6634975c: 8b 00 mov (%rax),%eax - 6634975e: 85 c0 test %eax,%eax - 66349760: 75 1f jne 66349781 - 66349762: 48 8b 41 28 mov 0x28(%rcx),%rax - 66349766: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634976a: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634976e: c7 00 01 00 00 00 movl $0x1,(%rax) - 66349774: 49 63 00 movslq (%r8),%rax - 66349777: 8d 48 01 lea 0x1(%rax),%ecx - 6634977a: 41 89 08 mov %ecx,(%r8) - 6634977d: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 66349781: 5b pop %rbx - 66349782: 5e pop %rsi - 66349783: c3 retq - 66349784: 66 90 xchg %ax,%ax - 66349786: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634978d: 00 00 00 +00000000663493c0 : + 663493c0: 41 55 push %r13 + 663493c2: 41 54 push %r12 + 663493c4: 55 push %rbp + 663493c5: 57 push %rdi + 663493c6: 56 push %rsi + 663493c7: 53 push %rbx + 663493c8: 48 83 ec 28 sub $0x28,%rsp + 663493cc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663493d0: 49 8b 81 e8 01 00 00 mov 0x1e8(%r9),%rax + 663493d7: 48 89 cb mov %rcx,%rbx + 663493da: 44 8b 10 mov (%rax),%r10d + 663493dd: 45 85 d2 test %r10d,%r10d + 663493e0: 0f 84 ea 00 00 00 je 663494d0 + 663493e6: 49 8b 41 10 mov 0x10(%r9),%rax + 663493ea: be 0d 00 00 00 mov $0xd,%esi + 663493ef: 4c 8d 2d 0a 9c 00 00 lea 0x9c0a(%rip),%r13 # 66353000 <.rdata> + 663493f6: 4c 8d 25 13 9c 00 00 lea 0x9c13(%rip),%r12 # 66353010 <.rdata+0x10> + 663493fd: 8b 10 mov (%rax),%edx + 663493ff: 49 8b 41 08 mov 0x8(%r9),%rax + 66349403: 8b 00 mov (%rax),%eax + 66349405: 8d 04 50 lea (%rax,%rdx,2),%eax + 66349408: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634940c: 8b 12 mov (%rdx),%edx + 6634940e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66349411: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349415: 8b 12 mov (%rdx),%edx + 66349417: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634941a: 49 8b 41 28 mov 0x28(%r9),%rax + 6634941e: 49 8b 51 38 mov 0x38(%r9),%rdx + 66349422: 8b 00 mov (%rax),%eax + 66349424: c1 e0 04 shl $0x4,%eax + 66349427: 01 c7 add %eax,%edi + 66349429: 49 8b 41 30 mov 0x30(%r9),%rax + 6634942d: 8b 00 mov (%rax),%eax + 6634942f: c1 e0 05 shl $0x5,%eax + 66349432: 01 f8 add %edi,%eax + 66349434: 8b 3a mov (%rdx),%edi + 66349436: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634943a: c1 e7 06 shl $0x6,%edi + 6634943d: 01 f8 add %edi,%eax + 6634943f: 8b 3a mov (%rdx),%edi + 66349441: 49 8b 51 58 mov 0x58(%r9),%rdx + 66349445: c1 e7 07 shl $0x7,%edi + 66349448: 01 c7 add %eax,%edi + 6634944a: 49 8b 41 48 mov 0x48(%r9),%rax + 6634944e: 8b 00 mov (%rax),%eax + 66349450: c1 e0 08 shl $0x8,%eax + 66349453: 01 c7 add %eax,%edi + 66349455: 49 8b 41 50 mov 0x50(%r9),%rax + 66349459: 8b 00 mov (%rax),%eax + 6634945b: c1 e0 09 shl $0x9,%eax + 6634945e: 01 f8 add %edi,%eax + 66349460: 8b 3a mov (%rdx),%edi + 66349462: 49 8b 51 60 mov 0x60(%r9),%rdx + 66349466: c1 e7 0a shl $0xa,%edi + 66349469: 01 f8 add %edi,%eax + 6634946b: 8b 3a mov (%rdx),%edi + 6634946d: c1 e7 0b shl $0xb,%edi + 66349470: 01 c7 add %eax,%edi + 66349472: 48 63 ef movslq %edi,%rbp + 66349475: 48 c1 e5 02 shl $0x2,%rbp + 66349479: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66349480: 85 ff test %edi,%edi + 66349482: 78 05 js 66349489 + 66349484: 39 7b 38 cmp %edi,0x38(%rbx) + 66349487: 7f 11 jg 6634949a + 66349489: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634948f: 4c 89 ea mov %r13,%rdx + 66349492: 4c 89 e1 mov %r12,%rcx + 66349495: e8 66 7b 00 00 callq 66351000 <_assert> + 6634949a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634949e: 89 f2 mov %esi,%edx + 663494a0: 48 89 d9 mov %rbx,%rcx + 663494a3: 83 c6 01 add $0x1,%esi + 663494a6: 81 c7 00 10 00 00 add $0x1000,%edi + 663494ac: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 663494b0: 48 81 c5 00 40 00 00 add $0x4000,%rbp + 663494b7: e8 f4 7e ff ff callq 663413b0 + 663494bc: 83 fe 3d cmp $0x3d,%esi + 663494bf: 75 bf jne 66349480 + 663494c1: 48 83 c4 28 add $0x28,%rsp + 663494c5: 5b pop %rbx + 663494c6: 5e pop %rsi + 663494c7: 5f pop %rdi + 663494c8: 5d pop %rbp + 663494c9: 41 5c pop %r12 + 663494cb: 41 5d pop %r13 + 663494cd: c3 retq + 663494ce: 66 90 xchg %ax,%ax + 663494d0: 48 8b 41 08 mov 0x8(%rcx),%rax + 663494d4: 4c 8b 1d 45 d4 00 00 mov 0xd445(%rip),%r11 # 66356920 + 663494db: 4c 8b 15 4e d4 00 00 mov 0xd44e(%rip),%r10 # 66356930 + 663494e2: 48 8d 50 34 lea 0x34(%rax),%rdx + 663494e6: b8 68 00 00 00 mov $0x68,%eax + 663494eb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663494f0: 8b 0a mov (%rdx),%ecx + 663494f2: 85 c9 test %ecx,%ecx + 663494f4: 74 55 je 6634954b + 663494f6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 663494fa: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663494fe: 41 29 08 sub %ecx,(%r8) + 66349501: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349507: 45 8b 00 mov (%r8),%r8d + 6634950a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634950e: 45 85 c0 test %r8d,%r8d + 66349511: 41 0f 9f c0 setg %r8b + 66349515: 45 0f b6 c0 movzbl %r8b,%r8d + 66349519: 44 3b 01 cmp (%rcx),%r8d + 6634951c: 74 2d je 6634954b + 6634951e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66349522: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349526: 8b 09 mov (%rcx),%ecx + 66349528: 85 c9 test %ecx,%ecx + 6634952a: 75 1f jne 6634954b + 6634952c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66349530: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349534: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349538: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634953e: 49 63 0a movslq (%r10),%rcx + 66349541: 8d 71 01 lea 0x1(%rcx),%esi + 66349544: 41 89 32 mov %esi,(%r10) + 66349547: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634954b: 48 83 c0 08 add $0x8,%rax + 6634954f: 48 83 c2 04 add $0x4,%rdx + 66349553: 48 3d e8 01 00 00 cmp $0x1e8,%rax + 66349559: 75 95 jne 663494f0 + 6634955b: 48 83 c4 28 add $0x28,%rsp + 6634955f: 5b pop %rbx + 66349560: 5e pop %rsi + 66349561: 5f pop %rdi + 66349562: 5d pop %rbp + 66349563: 41 5c pop %r12 + 66349565: 41 5d pop %r13 + 66349567: c3 retq + 66349568: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634956f: 00 -0000000066349790 : - 66349790: 41 55 push %r13 - 66349792: 41 54 push %r12 - 66349794: 55 push %rbp - 66349795: 57 push %rdi - 66349796: 56 push %rsi - 66349797: 53 push %rbx - 66349798: 48 83 ec 28 sub $0x28,%rsp - 6634979c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663497a0: 49 8b 81 e0 01 00 00 mov 0x1e0(%r9),%rax - 663497a7: 48 89 ce mov %rcx,%rsi - 663497aa: 8b 18 mov (%rax),%ebx - 663497ac: 85 db test %ebx,%ebx - 663497ae: 0f 84 51 01 00 00 je 66349905 - 663497b4: 49 8b 41 10 mov 0x10(%r9),%rax - 663497b8: bb 30 00 00 00 mov $0x30,%ebx - 663497bd: 4c 8d 2d 3c a8 00 00 lea 0xa83c(%rip),%r13 # 66354000 <.rdata> - 663497c4: 4c 8d 25 45 a8 00 00 lea 0xa845(%rip),%r12 # 66354010 <.rdata+0x10> - 663497cb: 8b 10 mov (%rax),%edx - 663497cd: 49 8b 41 08 mov 0x8(%r9),%rax - 663497d1: 8b 00 mov (%rax),%eax - 663497d3: 8d 04 50 lea (%rax,%rdx,2),%eax - 663497d6: 49 8b 51 18 mov 0x18(%r9),%rdx - 663497da: 8b 12 mov (%rdx),%edx - 663497dc: 8d 04 90 lea (%rax,%rdx,4),%eax - 663497df: 49 8b 51 20 mov 0x20(%r9),%rdx - 663497e3: 8b 12 mov (%rdx),%edx - 663497e5: 8d 3c d0 lea (%rax,%rdx,8),%edi - 663497e8: 49 8b 41 28 mov 0x28(%r9),%rax - 663497ec: 49 8b 51 30 mov 0x30(%r9),%rdx - 663497f0: 8b 00 mov (%rax),%eax - 663497f2: c1 e0 04 shl $0x4,%eax - 663497f5: 01 f8 add %edi,%eax - 663497f7: 8b 3a mov (%rdx),%edi - 663497f9: 49 8b 51 38 mov 0x38(%r9),%rdx - 663497fd: c1 e7 05 shl $0x5,%edi - 66349800: 01 f8 add %edi,%eax - 66349802: 8b 3a mov (%rdx),%edi - 66349804: 49 8b 51 50 mov 0x50(%r9),%rdx - 66349808: c1 e7 06 shl $0x6,%edi - 6634980b: 01 c7 add %eax,%edi - 6634980d: 49 8b 41 40 mov 0x40(%r9),%rax - 66349811: 8b 00 mov (%rax),%eax - 66349813: c1 e0 07 shl $0x7,%eax - 66349816: 01 c7 add %eax,%edi - 66349818: 49 8b 41 48 mov 0x48(%r9),%rax - 6634981c: 8b 00 mov (%rax),%eax - 6634981e: c1 e0 08 shl $0x8,%eax - 66349821: 01 f8 add %edi,%eax - 66349823: 8b 3a mov (%rdx),%edi - 66349825: 49 8b 51 58 mov 0x58(%r9),%rdx - 66349829: c1 e7 09 shl $0x9,%edi - 6634982c: 01 f8 add %edi,%eax - 6634982e: 8b 3a mov (%rdx),%edi - 66349830: c1 e7 0a shl $0xa,%edi - 66349833: 01 c7 add %eax,%edi - 66349835: 48 63 ef movslq %edi,%rbp - 66349838: 48 c1 e5 02 shl $0x2,%rbp - 6634983c: 0f 1f 40 00 nopl 0x0(%rax) - 66349840: 85 ff test %edi,%edi - 66349842: 78 05 js 66349849 - 66349844: 39 7e 38 cmp %edi,0x38(%rsi) - 66349847: 7f 11 jg 6634985a - 66349849: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634984f: 4c 89 ea mov %r13,%rdx - 66349852: 4c 89 e1 mov %r12,%rcx - 66349855: e8 b6 89 00 00 callq 66352210 <_assert> - 6634985a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634985e: 48 8b 46 40 mov 0x40(%rsi),%rax - 66349862: 48 01 da add %rbx,%rdx - 66349865: 8b 04 28 mov (%rax,%rbp,1),%eax - 66349868: 8b 0a mov (%rdx),%ecx - 6634986a: 39 c8 cmp %ecx,%eax - 6634986c: 74 6c je 663498da - 6634986e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349872: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66349876: 41 89 c3 mov %eax,%r11d - 66349879: 41 29 cb sub %ecx,%r11d - 6634987c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66349880: 45 01 18 add %r11d,(%r8) - 66349883: 89 02 mov %eax,(%rdx) - 66349885: 31 d2 xor %edx,%edx - 66349887: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634988b: 45 8b 18 mov (%r8),%r11d - 6634988e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349892: 45 85 db test %r11d,%r11d - 66349895: 0f 9f c2 setg %dl - 66349898: 3b 10 cmp (%rax),%edx - 6634989a: 74 3e je 663498da - 6634989c: 48 8b 46 20 mov 0x20(%rsi),%rax - 663498a0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 663498a4: 44 8b 10 mov (%rax),%r10d - 663498a7: 45 85 d2 test %r10d,%r10d - 663498aa: 75 2e jne 663498da - 663498ac: 48 8b 46 28 mov 0x28(%rsi),%rax - 663498b0: 48 8b 0d 79 e0 00 00 mov 0xe079(%rip),%rcx # 66357930 - 663498b7: 4c 8b 05 62 e0 00 00 mov 0xe062(%rip),%r8 # 66357920 - 663498be: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 663498c2: 48 8b 42 10 mov 0x10(%rdx),%rax - 663498c6: c7 00 01 00 00 00 movl $0x1,(%rax) - 663498cc: 48 63 01 movslq (%rcx),%rax - 663498cf: 44 8d 48 01 lea 0x1(%rax),%r9d - 663498d3: 44 89 09 mov %r9d,(%rcx) - 663498d6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 663498da: 48 83 c3 04 add $0x4,%rbx - 663498de: 81 c7 00 08 00 00 add $0x800,%edi - 663498e4: 48 81 c5 00 20 00 00 add $0x2000,%rbp - 663498eb: 48 81 fb f0 00 00 00 cmp $0xf0,%rbx - 663498f2: 0f 85 48 ff ff ff jne 66349840 - 663498f8: 48 83 c4 28 add $0x28,%rsp - 663498fc: 5b pop %rbx - 663498fd: 5e pop %rsi - 663498fe: 5f pop %rdi - 663498ff: 5d pop %rbp - 66349900: 41 5c pop %r12 - 66349902: 41 5d pop %r13 - 66349904: c3 retq - 66349905: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349909: 4c 8b 1d 10 e0 00 00 mov 0xe010(%rip),%r11 # 66357920 - 66349910: 4c 8b 15 19 e0 00 00 mov 0xe019(%rip),%r10 # 66357930 - 66349917: 48 8d 50 30 lea 0x30(%rax),%rdx - 6634991b: b8 60 00 00 00 mov $0x60,%eax - 66349920: 8b 0a mov (%rdx),%ecx - 66349922: 85 c9 test %ecx,%ecx - 66349924: 74 55 je 6634997b - 66349926: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634992a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634992e: 41 29 08 sub %ecx,(%r8) - 66349931: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349937: 45 8b 00 mov (%r8),%r8d - 6634993a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634993e: 45 85 c0 test %r8d,%r8d - 66349941: 41 0f 9f c0 setg %r8b - 66349945: 45 0f b6 c0 movzbl %r8b,%r8d - 66349949: 44 3b 01 cmp (%rcx),%r8d - 6634994c: 74 2d je 6634997b - 6634994e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349952: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349956: 8b 09 mov (%rcx),%ecx - 66349958: 85 c9 test %ecx,%ecx - 6634995a: 75 1f jne 6634997b - 6634995c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66349960: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66349964: 49 8b 48 10 mov 0x10(%r8),%rcx - 66349968: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634996e: 49 63 0a movslq (%r10),%rcx - 66349971: 8d 59 01 lea 0x1(%rcx),%ebx - 66349974: 41 89 1a mov %ebx,(%r10) - 66349977: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634997b: 48 83 c0 08 add $0x8,%rax - 6634997f: 48 83 c2 04 add $0x4,%rdx - 66349983: 48 3d e0 01 00 00 cmp $0x1e0,%rax - 66349989: 75 95 jne 66349920 - 6634998b: 48 83 c4 28 add $0x28,%rsp - 6634998f: 5b pop %rbx - 66349990: 5e pop %rsi - 66349991: 5f pop %rdi - 66349992: 5d pop %rbp - 66349993: 41 5c pop %r12 - 66349995: 41 5d pop %r13 - 66349997: c3 retq - 66349998: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634999f: 00 +0000000066349570 : + 66349570: 41 55 push %r13 + 66349572: 41 54 push %r12 + 66349574: 55 push %rbp + 66349575: 57 push %rdi + 66349576: 56 push %rsi + 66349577: 53 push %rbx + 66349578: 48 83 ec 28 sub $0x28,%rsp + 6634957c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66349580: 49 8b 81 68 01 00 00 mov 0x168(%r9),%rax + 66349587: 48 89 cb mov %rcx,%rbx + 6634958a: 44 8b 10 mov (%rax),%r10d + 6634958d: 45 85 d2 test %r10d,%r10d + 66349590: 0f 84 ea 00 00 00 je 66349680 + 66349596: 49 8b 41 10 mov 0x10(%r9),%rax + 6634959a: be 0d 00 00 00 mov $0xd,%esi + 6634959f: 4c 8d 2d 5a 9a 00 00 lea 0x9a5a(%rip),%r13 # 66353000 <.rdata> + 663495a6: 4c 8d 25 63 9a 00 00 lea 0x9a63(%rip),%r12 # 66353010 <.rdata+0x10> + 663495ad: 8b 10 mov (%rax),%edx + 663495af: 49 8b 41 08 mov 0x8(%r9),%rax + 663495b3: 8b 00 mov (%rax),%eax + 663495b5: 8d 04 50 lea (%rax,%rdx,2),%eax + 663495b8: 49 8b 51 18 mov 0x18(%r9),%rdx + 663495bc: 8b 12 mov (%rdx),%edx + 663495be: 8d 04 90 lea (%rax,%rdx,4),%eax + 663495c1: 49 8b 51 20 mov 0x20(%r9),%rdx + 663495c5: 8b 12 mov (%rdx),%edx + 663495c7: 8d 3c d0 lea (%rax,%rdx,8),%edi + 663495ca: 49 8b 41 28 mov 0x28(%r9),%rax + 663495ce: 49 8b 51 38 mov 0x38(%r9),%rdx + 663495d2: 8b 00 mov (%rax),%eax + 663495d4: c1 e0 04 shl $0x4,%eax + 663495d7: 01 c7 add %eax,%edi + 663495d9: 49 8b 41 30 mov 0x30(%r9),%rax + 663495dd: 8b 00 mov (%rax),%eax + 663495df: c1 e0 05 shl $0x5,%eax + 663495e2: 01 f8 add %edi,%eax + 663495e4: 8b 3a mov (%rdx),%edi + 663495e6: 49 8b 51 40 mov 0x40(%r9),%rdx + 663495ea: c1 e7 06 shl $0x6,%edi + 663495ed: 01 f8 add %edi,%eax + 663495ef: 8b 3a mov (%rdx),%edi + 663495f1: 49 8b 51 58 mov 0x58(%r9),%rdx + 663495f5: c1 e7 07 shl $0x7,%edi + 663495f8: 01 c7 add %eax,%edi + 663495fa: 49 8b 41 48 mov 0x48(%r9),%rax + 663495fe: 8b 00 mov (%rax),%eax + 66349600: c1 e0 08 shl $0x8,%eax + 66349603: 01 c7 add %eax,%edi + 66349605: 49 8b 41 50 mov 0x50(%r9),%rax + 66349609: 8b 00 mov (%rax),%eax + 6634960b: c1 e0 09 shl $0x9,%eax + 6634960e: 01 f8 add %edi,%eax + 66349610: 8b 3a mov (%rdx),%edi + 66349612: 49 8b 51 60 mov 0x60(%r9),%rdx + 66349616: c1 e7 0a shl $0xa,%edi + 66349619: 01 f8 add %edi,%eax + 6634961b: 8b 3a mov (%rdx),%edi + 6634961d: c1 e7 0b shl $0xb,%edi + 66349620: 01 c7 add %eax,%edi + 66349622: 48 63 ef movslq %edi,%rbp + 66349625: 48 c1 e5 02 shl $0x2,%rbp + 66349629: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66349630: 85 ff test %edi,%edi + 66349632: 78 05 js 66349639 + 66349634: 39 7b 38 cmp %edi,0x38(%rbx) + 66349637: 7f 11 jg 6634964a + 66349639: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634963f: 4c 89 ea mov %r13,%rdx + 66349642: 4c 89 e1 mov %r12,%rcx + 66349645: e8 b6 79 00 00 callq 66351000 <_assert> + 6634964a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634964e: 89 f2 mov %esi,%edx + 66349650: 48 89 d9 mov %rbx,%rcx + 66349653: 83 c6 01 add $0x1,%esi + 66349656: 81 c7 00 10 00 00 add $0x1000,%edi + 6634965c: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66349660: 48 81 c5 00 40 00 00 add $0x4000,%rbp + 66349667: e8 44 7d ff ff callq 663413b0 + 6634966c: 83 fe 2d cmp $0x2d,%esi + 6634966f: 75 bf jne 66349630 + 66349671: 48 83 c4 28 add $0x28,%rsp + 66349675: 5b pop %rbx + 66349676: 5e pop %rsi + 66349677: 5f pop %rdi + 66349678: 5d pop %rbp + 66349679: 41 5c pop %r12 + 6634967b: 41 5d pop %r13 + 6634967d: c3 retq + 6634967e: 66 90 xchg %ax,%ax + 66349680: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349684: 4c 8b 1d 95 d2 00 00 mov 0xd295(%rip),%r11 # 66356920 + 6634968b: 4c 8b 15 9e d2 00 00 mov 0xd29e(%rip),%r10 # 66356930 + 66349692: 48 8d 50 34 lea 0x34(%rax),%rdx + 66349696: b8 68 00 00 00 mov $0x68,%eax + 6634969b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663496a0: 8b 0a mov (%rdx),%ecx + 663496a2: 85 c9 test %ecx,%ecx + 663496a4: 74 55 je 663496fb + 663496a6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 663496aa: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663496ae: 41 29 08 sub %ecx,(%r8) + 663496b1: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663496b7: 45 8b 00 mov (%r8),%r8d + 663496ba: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 663496be: 45 85 c0 test %r8d,%r8d + 663496c1: 41 0f 9f c0 setg %r8b + 663496c5: 45 0f b6 c0 movzbl %r8b,%r8d + 663496c9: 44 3b 01 cmp (%rcx),%r8d + 663496cc: 74 2d je 663496fb + 663496ce: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 663496d2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 663496d6: 8b 09 mov (%rcx),%ecx + 663496d8: 85 c9 test %ecx,%ecx + 663496da: 75 1f jne 663496fb + 663496dc: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 663496e0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 663496e4: 49 8b 48 10 mov 0x10(%r8),%rcx + 663496e8: c7 01 01 00 00 00 movl $0x1,(%rcx) + 663496ee: 49 63 0a movslq (%r10),%rcx + 663496f1: 8d 71 01 lea 0x1(%rcx),%esi + 663496f4: 41 89 32 mov %esi,(%r10) + 663496f7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 663496fb: 48 83 c0 08 add $0x8,%rax + 663496ff: 48 83 c2 04 add $0x4,%rdx + 66349703: 48 3d 68 01 00 00 cmp $0x168,%rax + 66349709: 75 95 jne 663496a0 + 6634970b: 48 83 c4 28 add $0x28,%rsp + 6634970f: 5b pop %rbx + 66349710: 5e pop %rsi + 66349711: 5f pop %rdi + 66349712: 5d pop %rbp + 66349713: 41 5c pop %r12 + 66349715: 41 5d pop %r13 + 66349717: c3 retq + 66349718: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634971f: 00 -00000000663499a0 : - 663499a0: 41 55 push %r13 - 663499a2: 41 54 push %r12 - 663499a4: 55 push %rbp - 663499a5: 57 push %rdi - 663499a6: 56 push %rsi - 663499a7: 53 push %rbx - 663499a8: 48 83 ec 28 sub $0x28,%rsp - 663499ac: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 663499b0: 49 8b 81 d8 01 00 00 mov 0x1d8(%r9),%rax - 663499b7: 48 89 ce mov %rcx,%rsi - 663499ba: 8b 18 mov (%rax),%ebx - 663499bc: 85 db test %ebx,%ebx - 663499be: 0f 84 4c 01 00 00 je 66349b10 - 663499c4: 49 8b 41 10 mov 0x10(%r9),%rax - 663499c8: bb 2c 00 00 00 mov $0x2c,%ebx - 663499cd: 4c 8d 2d 2c a6 00 00 lea 0xa62c(%rip),%r13 # 66354000 <.rdata> - 663499d4: 4c 8d 25 35 a6 00 00 lea 0xa635(%rip),%r12 # 66354010 <.rdata+0x10> - 663499db: 8b 10 mov (%rax),%edx - 663499dd: 49 8b 41 08 mov 0x8(%r9),%rax - 663499e1: 8b 00 mov (%rax),%eax - 663499e3: 8d 04 50 lea (%rax,%rdx,2),%eax - 663499e6: 49 8b 51 18 mov 0x18(%r9),%rdx - 663499ea: 8b 12 mov (%rdx),%edx - 663499ec: 8d 04 90 lea (%rax,%rdx,4),%eax - 663499ef: 49 8b 51 20 mov 0x20(%r9),%rdx - 663499f3: 8b 12 mov (%rdx),%edx - 663499f5: 8d 04 d0 lea (%rax,%rdx,8),%eax - 663499f8: 49 8b 51 28 mov 0x28(%r9),%rdx - 663499fc: 8b 3a mov (%rdx),%edi - 663499fe: 49 8b 51 30 mov 0x30(%r9),%rdx - 66349a02: c1 e7 04 shl $0x4,%edi - 66349a05: 01 f8 add %edi,%eax - 66349a07: 8b 3a mov (%rdx),%edi - 66349a09: 49 8b 51 48 mov 0x48(%r9),%rdx - 66349a0d: c1 e7 05 shl $0x5,%edi - 66349a10: 01 c7 add %eax,%edi - 66349a12: 49 8b 41 38 mov 0x38(%r9),%rax - 66349a16: 8b 00 mov (%rax),%eax - 66349a18: c1 e0 06 shl $0x6,%eax - 66349a1b: 01 c7 add %eax,%edi - 66349a1d: 49 8b 41 40 mov 0x40(%r9),%rax - 66349a21: 8b 00 mov (%rax),%eax - 66349a23: c1 e0 07 shl $0x7,%eax - 66349a26: 01 f8 add %edi,%eax - 66349a28: 8b 3a mov (%rdx),%edi - 66349a2a: 49 8b 51 50 mov 0x50(%r9),%rdx - 66349a2e: c1 e7 08 shl $0x8,%edi - 66349a31: 01 f8 add %edi,%eax - 66349a33: 8b 3a mov (%rdx),%edi - 66349a35: c1 e7 09 shl $0x9,%edi - 66349a38: 01 c7 add %eax,%edi - 66349a3a: 48 63 ef movslq %edi,%rbp - 66349a3d: 48 c1 e5 02 shl $0x2,%rbp - 66349a41: 85 ff test %edi,%edi - 66349a43: 78 05 js 66349a4a - 66349a45: 39 7e 38 cmp %edi,0x38(%rsi) - 66349a48: 7f 11 jg 66349a5b - 66349a4a: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66349a50: 4c 89 ea mov %r13,%rdx - 66349a53: 4c 89 e1 mov %r12,%rcx - 66349a56: e8 b5 87 00 00 callq 66352210 <_assert> - 66349a5b: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66349a5f: 48 8b 46 40 mov 0x40(%rsi),%rax - 66349a63: 48 01 da add %rbx,%rdx - 66349a66: 8b 04 28 mov (%rax,%rbp,1),%eax - 66349a69: 8b 0a mov (%rdx),%ecx - 66349a6b: 39 c8 cmp %ecx,%eax - 66349a6d: 74 6c je 66349adb - 66349a6f: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349a73: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66349a77: 41 89 c3 mov %eax,%r11d - 66349a7a: 41 29 cb sub %ecx,%r11d - 66349a7d: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66349a81: 45 01 18 add %r11d,(%r8) - 66349a84: 89 02 mov %eax,(%rdx) - 66349a86: 31 d2 xor %edx,%edx - 66349a88: 48 8b 46 10 mov 0x10(%rsi),%rax - 66349a8c: 45 8b 18 mov (%r8),%r11d - 66349a8f: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349a93: 45 85 db test %r11d,%r11d - 66349a96: 0f 9f c2 setg %dl - 66349a99: 3b 10 cmp (%rax),%edx - 66349a9b: 74 3e je 66349adb - 66349a9d: 48 8b 46 20 mov 0x20(%rsi),%rax - 66349aa1: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349aa5: 44 8b 10 mov (%rax),%r10d - 66349aa8: 45 85 d2 test %r10d,%r10d - 66349aab: 75 2e jne 66349adb - 66349aad: 48 8b 46 28 mov 0x28(%rsi),%rax - 66349ab1: 48 8b 0d 78 de 00 00 mov 0xde78(%rip),%rcx # 66357930 - 66349ab8: 4c 8b 05 61 de 00 00 mov 0xde61(%rip),%r8 # 66357920 - 66349abf: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66349ac3: 48 8b 42 10 mov 0x10(%rdx),%rax - 66349ac7: c7 00 01 00 00 00 movl $0x1,(%rax) - 66349acd: 48 63 01 movslq (%rcx),%rax - 66349ad0: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349ad4: 44 89 09 mov %r9d,(%rcx) - 66349ad7: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66349adb: 48 83 c3 04 add $0x4,%rbx - 66349adf: 81 c7 00 04 00 00 add $0x400,%edi - 66349ae5: 48 81 c5 00 10 00 00 add $0x1000,%rbp - 66349aec: 48 81 fb ec 00 00 00 cmp $0xec,%rbx - 66349af3: 0f 85 48 ff ff ff jne 66349a41 - 66349af9: 48 83 c4 28 add $0x28,%rsp - 66349afd: 5b pop %rbx - 66349afe: 5e pop %rsi - 66349aff: 5f pop %rdi - 66349b00: 5d pop %rbp - 66349b01: 41 5c pop %r12 - 66349b03: 41 5d pop %r13 - 66349b05: c3 retq - 66349b06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66349b0d: 00 00 00 - 66349b10: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349b14: 4c 8b 1d 05 de 00 00 mov 0xde05(%rip),%r11 # 66357920 - 66349b1b: 4c 8b 15 0e de 00 00 mov 0xde0e(%rip),%r10 # 66357930 - 66349b22: 48 8d 50 2c lea 0x2c(%rax),%rdx - 66349b26: b8 58 00 00 00 mov $0x58,%eax - 66349b2b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66349b30: 8b 0a mov (%rdx),%ecx - 66349b32: 85 c9 test %ecx,%ecx - 66349b34: 74 55 je 66349b8b - 66349b36: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349b3a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66349b3e: 41 29 08 sub %ecx,(%r8) - 66349b41: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349b47: 45 8b 00 mov (%r8),%r8d - 66349b4a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66349b4e: 45 85 c0 test %r8d,%r8d - 66349b51: 41 0f 9f c0 setg %r8b - 66349b55: 45 0f b6 c0 movzbl %r8b,%r8d - 66349b59: 44 3b 01 cmp (%rcx),%r8d - 66349b5c: 74 2d je 66349b8b - 66349b5e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349b62: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349b66: 8b 09 mov (%rcx),%ecx - 66349b68: 85 c9 test %ecx,%ecx - 66349b6a: 75 1f jne 66349b8b - 66349b6c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66349b70: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66349b74: 49 8b 48 10 mov 0x10(%r8),%rcx - 66349b78: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66349b7e: 49 63 0a movslq (%r10),%rcx - 66349b81: 8d 59 01 lea 0x1(%rcx),%ebx - 66349b84: 41 89 1a mov %ebx,(%r10) - 66349b87: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66349b8b: 48 83 c0 08 add $0x8,%rax - 66349b8f: 48 83 c2 04 add $0x4,%rdx - 66349b93: 48 3d d8 01 00 00 cmp $0x1d8,%rax - 66349b99: 75 95 jne 66349b30 - 66349b9b: 48 83 c4 28 add $0x28,%rsp - 66349b9f: 5b pop %rbx - 66349ba0: 5e pop %rsi - 66349ba1: 5f pop %rdi - 66349ba2: 5d pop %rbp - 66349ba3: 41 5c pop %r12 - 66349ba5: 41 5d pop %r13 - 66349ba7: c3 retq - 66349ba8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66349baf: 00 +0000000066349720 : + 66349720: 41 55 push %r13 + 66349722: 41 54 push %r12 + 66349724: 55 push %rbp + 66349725: 57 push %rdi + 66349726: 56 push %rsi + 66349727: 53 push %rbx + 66349728: 48 83 ec 28 sub $0x28,%rsp + 6634972c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66349730: 49 8b 81 50 01 00 00 mov 0x150(%r9),%rax + 66349737: 48 89 cb mov %rcx,%rbx + 6634973a: 44 8b 10 mov (%rax),%r10d + 6634973d: 45 85 d2 test %r10d,%r10d + 66349740: 0f 84 ca 00 00 00 je 66349810 + 66349746: 49 8b 41 10 mov 0x10(%r9),%rax + 6634974a: be 0a 00 00 00 mov $0xa,%esi + 6634974f: 4c 8d 2d aa 98 00 00 lea 0x98aa(%rip),%r13 # 66353000 <.rdata> + 66349756: 4c 8d 25 b3 98 00 00 lea 0x98b3(%rip),%r12 # 66353010 <.rdata+0x10> + 6634975d: 8b 10 mov (%rax),%edx + 6634975f: 49 8b 41 08 mov 0x8(%r9),%rax + 66349763: 8b 00 mov (%rax),%eax + 66349765: 8d 04 50 lea (%rax,%rdx,2),%eax + 66349768: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634976c: 8b 12 mov (%rdx),%edx + 6634976e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66349771: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349775: 8b 12 mov (%rdx),%edx + 66349777: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634977a: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634977e: 8b 3a mov (%rdx),%edi + 66349780: 49 8b 51 40 mov 0x40(%r9),%rdx + 66349784: c1 e7 04 shl $0x4,%edi + 66349787: 01 c7 add %eax,%edi + 66349789: 49 8b 41 30 mov 0x30(%r9),%rax + 6634978d: 8b 00 mov (%rax),%eax + 6634978f: c1 e0 05 shl $0x5,%eax + 66349792: 01 c7 add %eax,%edi + 66349794: 49 8b 41 38 mov 0x38(%r9),%rax + 66349798: 8b 00 mov (%rax),%eax + 6634979a: c1 e0 06 shl $0x6,%eax + 6634979d: 01 f8 add %edi,%eax + 6634979f: 8b 3a mov (%rdx),%edi + 663497a1: 49 8b 51 48 mov 0x48(%r9),%rdx + 663497a5: c1 e7 07 shl $0x7,%edi + 663497a8: 01 f8 add %edi,%eax + 663497aa: 8b 3a mov (%rdx),%edi + 663497ac: c1 e7 08 shl $0x8,%edi + 663497af: 01 c7 add %eax,%edi + 663497b1: 48 63 ef movslq %edi,%rbp + 663497b4: 48 c1 e5 02 shl $0x2,%rbp + 663497b8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663497bf: 00 + 663497c0: 85 ff test %edi,%edi + 663497c2: 78 05 js 663497c9 + 663497c4: 39 7b 38 cmp %edi,0x38(%rbx) + 663497c7: 7f 11 jg 663497da + 663497c9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 663497cf: 4c 89 ea mov %r13,%rdx + 663497d2: 4c 89 e1 mov %r12,%rcx + 663497d5: e8 26 78 00 00 callq 66351000 <_assert> + 663497da: 48 8b 43 40 mov 0x40(%rbx),%rax + 663497de: 89 f2 mov %esi,%edx + 663497e0: 48 89 d9 mov %rbx,%rcx + 663497e3: 83 c6 01 add $0x1,%esi + 663497e6: 81 c7 00 02 00 00 add $0x200,%edi + 663497ec: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 663497f0: 48 81 c5 00 08 00 00 add $0x800,%rbp + 663497f7: e8 b4 7b ff ff callq 663413b0 + 663497fc: 83 fe 2a cmp $0x2a,%esi + 663497ff: 75 bf jne 663497c0 + 66349801: 48 83 c4 28 add $0x28,%rsp + 66349805: 5b pop %rbx + 66349806: 5e pop %rsi + 66349807: 5f pop %rdi + 66349808: 5d pop %rbp + 66349809: 41 5c pop %r12 + 6634980b: 41 5d pop %r13 + 6634980d: c3 retq + 6634980e: 66 90 xchg %ax,%ax + 66349810: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349814: 4c 8b 1d 05 d1 00 00 mov 0xd105(%rip),%r11 # 66356920 + 6634981b: 4c 8b 15 0e d1 00 00 mov 0xd10e(%rip),%r10 # 66356930 + 66349822: 48 8d 50 28 lea 0x28(%rax),%rdx + 66349826: b8 50 00 00 00 mov $0x50,%eax + 6634982b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349830: 8b 0a mov (%rdx),%ecx + 66349832: 85 c9 test %ecx,%ecx + 66349834: 74 55 je 6634988b + 66349836: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634983a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634983e: 41 29 08 sub %ecx,(%r8) + 66349841: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349847: 45 8b 00 mov (%r8),%r8d + 6634984a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634984e: 45 85 c0 test %r8d,%r8d + 66349851: 41 0f 9f c0 setg %r8b + 66349855: 45 0f b6 c0 movzbl %r8b,%r8d + 66349859: 44 3b 01 cmp (%rcx),%r8d + 6634985c: 74 2d je 6634988b + 6634985e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66349862: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349866: 8b 09 mov (%rcx),%ecx + 66349868: 85 c9 test %ecx,%ecx + 6634986a: 75 1f jne 6634988b + 6634986c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66349870: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349874: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349878: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634987e: 49 63 0a movslq (%r10),%rcx + 66349881: 8d 71 01 lea 0x1(%rcx),%esi + 66349884: 41 89 32 mov %esi,(%r10) + 66349887: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634988b: 48 83 c0 08 add $0x8,%rax + 6634988f: 48 83 c2 04 add $0x4,%rdx + 66349893: 48 3d 50 01 00 00 cmp $0x150,%rax + 66349899: 75 95 jne 66349830 + 6634989b: 48 83 c4 28 add $0x28,%rsp + 6634989f: 5b pop %rbx + 663498a0: 5e pop %rsi + 663498a1: 5f pop %rdi + 663498a2: 5d pop %rbp + 663498a3: 41 5c pop %r12 + 663498a5: 41 5d pop %r13 + 663498a7: c3 retq + 663498a8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663498af: 00 -0000000066349bb0 : - 66349bb0: 41 55 push %r13 - 66349bb2: 41 54 push %r12 - 66349bb4: 55 push %rbp - 66349bb5: 57 push %rdi - 66349bb6: 56 push %rsi - 66349bb7: 53 push %rbx - 66349bb8: 48 83 ec 28 sub $0x28,%rsp - 66349bbc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66349bc0: 49 8b 81 e8 01 00 00 mov 0x1e8(%r9),%rax - 66349bc7: 48 89 ce mov %rcx,%rsi - 66349bca: 8b 18 mov (%rax),%ebx - 66349bcc: 85 db test %ebx,%ebx - 66349bce: 0f 84 61 01 00 00 je 66349d35 - 66349bd4: 49 8b 41 10 mov 0x10(%r9),%rax - 66349bd8: bb 34 00 00 00 mov $0x34,%ebx - 66349bdd: 4c 8d 2d 1c a4 00 00 lea 0xa41c(%rip),%r13 # 66354000 <.rdata> - 66349be4: 4c 8d 25 25 a4 00 00 lea 0xa425(%rip),%r12 # 66354010 <.rdata+0x10> - 66349beb: 8b 10 mov (%rax),%edx - 66349bed: 49 8b 41 08 mov 0x8(%r9),%rax - 66349bf1: 8b 00 mov (%rax),%eax - 66349bf3: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349bf6: 49 8b 51 18 mov 0x18(%r9),%rdx - 66349bfa: 8b 12 mov (%rdx),%edx - 66349bfc: 8d 04 90 lea (%rax,%rdx,4),%eax - 66349bff: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349c03: 8b 12 mov (%rdx),%edx - 66349c05: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66349c08: 49 8b 41 28 mov 0x28(%r9),%rax - 66349c0c: 49 8b 51 38 mov 0x38(%r9),%rdx - 66349c10: 8b 00 mov (%rax),%eax - 66349c12: c1 e0 04 shl $0x4,%eax - 66349c15: 01 c7 add %eax,%edi - 66349c17: 49 8b 41 30 mov 0x30(%r9),%rax - 66349c1b: 8b 00 mov (%rax),%eax - 66349c1d: c1 e0 05 shl $0x5,%eax - 66349c20: 01 f8 add %edi,%eax - 66349c22: 8b 3a mov (%rdx),%edi - 66349c24: 49 8b 51 40 mov 0x40(%r9),%rdx - 66349c28: c1 e7 06 shl $0x6,%edi - 66349c2b: 01 f8 add %edi,%eax - 66349c2d: 8b 3a mov (%rdx),%edi - 66349c2f: 49 8b 51 58 mov 0x58(%r9),%rdx - 66349c33: c1 e7 07 shl $0x7,%edi - 66349c36: 01 c7 add %eax,%edi - 66349c38: 49 8b 41 48 mov 0x48(%r9),%rax - 66349c3c: 8b 00 mov (%rax),%eax - 66349c3e: c1 e0 08 shl $0x8,%eax - 66349c41: 01 c7 add %eax,%edi - 66349c43: 49 8b 41 50 mov 0x50(%r9),%rax - 66349c47: 8b 00 mov (%rax),%eax - 66349c49: c1 e0 09 shl $0x9,%eax - 66349c4c: 01 f8 add %edi,%eax - 66349c4e: 8b 3a mov (%rdx),%edi - 66349c50: 49 8b 51 60 mov 0x60(%r9),%rdx - 66349c54: c1 e7 0a shl $0xa,%edi - 66349c57: 01 f8 add %edi,%eax - 66349c59: 8b 3a mov (%rdx),%edi - 66349c5b: c1 e7 0b shl $0xb,%edi - 66349c5e: 01 c7 add %eax,%edi - 66349c60: 48 63 ef movslq %edi,%rbp - 66349c63: 48 c1 e5 02 shl $0x2,%rbp - 66349c67: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66349c6e: 00 00 +00000000663498b0 : + 663498b0: 41 55 push %r13 + 663498b2: 41 54 push %r12 + 663498b4: 55 push %rbp + 663498b5: 57 push %rdi + 663498b6: 56 push %rsi + 663498b7: 53 push %rbx + 663498b8: 48 83 ec 28 sub $0x28,%rsp + 663498bc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 663498c0: 49 8b 81 58 01 00 00 mov 0x158(%r9),%rax + 663498c7: 48 89 cb mov %rcx,%rbx + 663498ca: 44 8b 10 mov (%rax),%r10d + 663498cd: 45 85 d2 test %r10d,%r10d + 663498d0: 0f 84 cb 00 00 00 je 663499a1 + 663498d6: 49 8b 41 10 mov 0x10(%r9),%rax + 663498da: be 0b 00 00 00 mov $0xb,%esi + 663498df: 4c 8d 2d 1a 97 00 00 lea 0x971a(%rip),%r13 # 66353000 <.rdata> + 663498e6: 4c 8d 25 23 97 00 00 lea 0x9723(%rip),%r12 # 66353010 <.rdata+0x10> + 663498ed: 8b 10 mov (%rax),%edx + 663498ef: 49 8b 41 08 mov 0x8(%r9),%rax + 663498f3: 8b 00 mov (%rax),%eax + 663498f5: 8d 04 50 lea (%rax,%rdx,2),%eax + 663498f8: 49 8b 51 18 mov 0x18(%r9),%rdx + 663498fc: 8b 12 mov (%rdx),%edx + 663498fe: 8d 04 90 lea (%rax,%rdx,4),%eax + 66349901: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349905: 8b 12 mov (%rdx),%edx + 66349907: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634990a: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634990e: 8b 3a mov (%rdx),%edi + 66349910: 49 8b 51 30 mov 0x30(%r9),%rdx + 66349914: c1 e7 04 shl $0x4,%edi + 66349917: 01 f8 add %edi,%eax + 66349919: 8b 3a mov (%rdx),%edi + 6634991b: 49 8b 51 48 mov 0x48(%r9),%rdx + 6634991f: c1 e7 05 shl $0x5,%edi + 66349922: 01 c7 add %eax,%edi + 66349924: 49 8b 41 38 mov 0x38(%r9),%rax + 66349928: 8b 00 mov (%rax),%eax + 6634992a: c1 e0 06 shl $0x6,%eax + 6634992d: 01 c7 add %eax,%edi + 6634992f: 49 8b 41 40 mov 0x40(%r9),%rax + 66349933: 8b 00 mov (%rax),%eax + 66349935: c1 e0 07 shl $0x7,%eax + 66349938: 01 f8 add %edi,%eax + 6634993a: 8b 3a mov (%rdx),%edi + 6634993c: 49 8b 51 50 mov 0x50(%r9),%rdx + 66349940: c1 e7 08 shl $0x8,%edi + 66349943: 01 f8 add %edi,%eax + 66349945: 8b 3a mov (%rdx),%edi + 66349947: c1 e7 09 shl $0x9,%edi + 6634994a: 01 c7 add %eax,%edi + 6634994c: 48 63 ef movslq %edi,%rbp + 6634994f: 48 c1 e5 02 shl $0x2,%rbp + 66349953: 85 ff test %edi,%edi + 66349955: 78 05 js 6634995c + 66349957: 39 7b 38 cmp %edi,0x38(%rbx) + 6634995a: 7f 11 jg 6634996d + 6634995c: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66349962: 4c 89 ea mov %r13,%rdx + 66349965: 4c 89 e1 mov %r12,%rcx + 66349968: e8 93 76 00 00 callq 66351000 <_assert> + 6634996d: 48 8b 43 40 mov 0x40(%rbx),%rax + 66349971: 89 f2 mov %esi,%edx + 66349973: 48 89 d9 mov %rbx,%rcx + 66349976: 83 c6 01 add $0x1,%esi + 66349979: 81 c7 00 04 00 00 add $0x400,%edi + 6634997f: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66349983: 48 81 c5 00 10 00 00 add $0x1000,%rbp + 6634998a: e8 21 7a ff ff callq 663413b0 + 6634998f: 83 fe 2b cmp $0x2b,%esi + 66349992: 75 bf jne 66349953 + 66349994: 48 83 c4 28 add $0x28,%rsp + 66349998: 5b pop %rbx + 66349999: 5e pop %rsi + 6634999a: 5f pop %rdi + 6634999b: 5d pop %rbp + 6634999c: 41 5c pop %r12 + 6634999e: 41 5d pop %r13 + 663499a0: c3 retq + 663499a1: 48 8b 41 08 mov 0x8(%rcx),%rax + 663499a5: 4c 8b 1d 74 cf 00 00 mov 0xcf74(%rip),%r11 # 66356920 + 663499ac: 4c 8b 15 7d cf 00 00 mov 0xcf7d(%rip),%r10 # 66356930 + 663499b3: 48 8d 50 2c lea 0x2c(%rax),%rdx + 663499b7: b8 58 00 00 00 mov $0x58,%eax + 663499bc: 0f 1f 40 00 nopl 0x0(%rax) + 663499c0: 8b 0a mov (%rdx),%ecx + 663499c2: 85 c9 test %ecx,%ecx + 663499c4: 74 55 je 66349a1b + 663499c6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 663499ca: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 663499ce: 41 29 08 sub %ecx,(%r8) + 663499d1: c7 02 00 00 00 00 movl $0x0,(%rdx) + 663499d7: 45 8b 00 mov (%r8),%r8d + 663499da: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 663499de: 45 85 c0 test %r8d,%r8d + 663499e1: 41 0f 9f c0 setg %r8b + 663499e5: 45 0f b6 c0 movzbl %r8b,%r8d + 663499e9: 44 3b 01 cmp (%rcx),%r8d + 663499ec: 74 2d je 66349a1b + 663499ee: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 663499f2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 663499f6: 8b 09 mov (%rcx),%ecx + 663499f8: 85 c9 test %ecx,%ecx + 663499fa: 75 1f jne 66349a1b + 663499fc: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66349a00: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349a04: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349a08: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66349a0e: 49 63 0a movslq (%r10),%rcx + 66349a11: 8d 71 01 lea 0x1(%rcx),%esi + 66349a14: 41 89 32 mov %esi,(%r10) + 66349a17: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66349a1b: 48 83 c0 08 add $0x8,%rax + 66349a1f: 48 83 c2 04 add $0x4,%rdx + 66349a23: 48 3d 58 01 00 00 cmp $0x158,%rax + 66349a29: 75 95 jne 663499c0 + 66349a2b: 48 83 c4 28 add $0x28,%rsp + 66349a2f: 5b pop %rbx + 66349a30: 5e pop %rsi + 66349a31: 5f pop %rdi + 66349a32: 5d pop %rbp + 66349a33: 41 5c pop %r12 + 66349a35: 41 5d pop %r13 + 66349a37: c3 retq + 66349a38: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66349a3f: 00 + +0000000066349a40 : + 66349a40: 41 55 push %r13 + 66349a42: 41 54 push %r12 + 66349a44: 55 push %rbp + 66349a45: 57 push %rdi + 66349a46: 56 push %rsi + 66349a47: 53 push %rbx + 66349a48: 48 83 ec 28 sub $0x28,%rsp + 66349a4c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66349a50: 49 8b 81 48 01 00 00 mov 0x148(%r9),%rax + 66349a57: 48 89 cb mov %rcx,%rbx + 66349a5a: 44 8b 10 mov (%rax),%r10d + 66349a5d: 45 85 d2 test %r10d,%r10d + 66349a60: 0f 84 ba 00 00 00 je 66349b20 + 66349a66: 49 8b 41 10 mov 0x10(%r9),%rax + 66349a6a: be 09 00 00 00 mov $0x9,%esi + 66349a6f: 4c 8d 2d 8a 95 00 00 lea 0x958a(%rip),%r13 # 66353000 <.rdata> + 66349a76: 4c 8d 25 93 95 00 00 lea 0x9593(%rip),%r12 # 66353010 <.rdata+0x10> + 66349a7d: 8b 10 mov (%rax),%edx + 66349a7f: 49 8b 41 08 mov 0x8(%r9),%rax + 66349a83: 8b 00 mov (%rax),%eax + 66349a85: 8d 04 50 lea (%rax,%rdx,2),%eax + 66349a88: 49 8b 51 18 mov 0x18(%r9),%rdx + 66349a8c: 8b 12 mov (%rdx),%edx + 66349a8e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66349a91: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349a95: 8b 12 mov (%rdx),%edx + 66349a97: 8d 3c d0 lea (%rax,%rdx,8),%edi + 66349a9a: 49 8b 41 28 mov 0x28(%r9),%rax + 66349a9e: 49 8b 51 38 mov 0x38(%r9),%rdx + 66349aa2: 8b 00 mov (%rax),%eax + 66349aa4: c1 e0 04 shl $0x4,%eax + 66349aa7: 01 c7 add %eax,%edi + 66349aa9: 49 8b 41 30 mov 0x30(%r9),%rax + 66349aad: 8b 00 mov (%rax),%eax + 66349aaf: c1 e0 05 shl $0x5,%eax + 66349ab2: 01 f8 add %edi,%eax + 66349ab4: 8b 3a mov (%rdx),%edi + 66349ab6: 49 8b 51 40 mov 0x40(%r9),%rdx + 66349aba: c1 e7 06 shl $0x6,%edi + 66349abd: 01 f8 add %edi,%eax + 66349abf: 8b 3a mov (%rdx),%edi + 66349ac1: c1 e7 07 shl $0x7,%edi + 66349ac4: 01 c7 add %eax,%edi + 66349ac6: 48 63 ef movslq %edi,%rbp + 66349ac9: 48 c1 e5 02 shl $0x2,%rbp + 66349acd: 0f 1f 00 nopl (%rax) + 66349ad0: 85 ff test %edi,%edi + 66349ad2: 78 05 js 66349ad9 + 66349ad4: 39 7b 38 cmp %edi,0x38(%rbx) + 66349ad7: 7f 11 jg 66349aea + 66349ad9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66349adf: 4c 89 ea mov %r13,%rdx + 66349ae2: 4c 89 e1 mov %r12,%rcx + 66349ae5: e8 16 75 00 00 callq 66351000 <_assert> + 66349aea: 48 8b 43 40 mov 0x40(%rbx),%rax + 66349aee: 89 f2 mov %esi,%edx + 66349af0: 48 89 d9 mov %rbx,%rcx + 66349af3: 83 c6 01 add $0x1,%esi + 66349af6: 81 c7 00 01 00 00 add $0x100,%edi + 66349afc: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66349b00: 48 81 c5 00 04 00 00 add $0x400,%rbp + 66349b07: e8 a4 78 ff ff callq 663413b0 + 66349b0c: 83 fe 29 cmp $0x29,%esi + 66349b0f: 75 bf jne 66349ad0 + 66349b11: 48 83 c4 28 add $0x28,%rsp + 66349b15: 5b pop %rbx + 66349b16: 5e pop %rsi + 66349b17: 5f pop %rdi + 66349b18: 5d pop %rbp + 66349b19: 41 5c pop %r12 + 66349b1b: 41 5d pop %r13 + 66349b1d: c3 retq + 66349b1e: 66 90 xchg %ax,%ax + 66349b20: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349b24: 4c 8b 1d f5 cd 00 00 mov 0xcdf5(%rip),%r11 # 66356920 + 66349b2b: 4c 8b 15 fe cd 00 00 mov 0xcdfe(%rip),%r10 # 66356930 + 66349b32: 48 8d 50 24 lea 0x24(%rax),%rdx + 66349b36: b8 48 00 00 00 mov $0x48,%eax + 66349b3b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349b40: 8b 0a mov (%rdx),%ecx + 66349b42: 85 c9 test %ecx,%ecx + 66349b44: 74 55 je 66349b9b + 66349b46: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66349b4a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66349b4e: 41 29 08 sub %ecx,(%r8) + 66349b51: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349b57: 45 8b 00 mov (%r8),%r8d + 66349b5a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66349b5e: 45 85 c0 test %r8d,%r8d + 66349b61: 41 0f 9f c0 setg %r8b + 66349b65: 45 0f b6 c0 movzbl %r8b,%r8d + 66349b69: 44 3b 01 cmp (%rcx),%r8d + 66349b6c: 74 2d je 66349b9b + 66349b6e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66349b72: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349b76: 8b 09 mov (%rcx),%ecx + 66349b78: 85 c9 test %ecx,%ecx + 66349b7a: 75 1f jne 66349b9b + 66349b7c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66349b80: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349b84: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349b88: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66349b8e: 49 63 0a movslq (%r10),%rcx + 66349b91: 8d 71 01 lea 0x1(%rcx),%esi + 66349b94: 41 89 32 mov %esi,(%r10) + 66349b97: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66349b9b: 48 83 c0 08 add $0x8,%rax + 66349b9f: 48 83 c2 04 add $0x4,%rdx + 66349ba3: 48 3d 48 01 00 00 cmp $0x148,%rax + 66349ba9: 75 95 jne 66349b40 + 66349bab: 48 83 c4 28 add $0x28,%rsp + 66349baf: 5b pop %rbx + 66349bb0: 5e pop %rsi + 66349bb1: 5f pop %rdi + 66349bb2: 5d pop %rbp + 66349bb3: 41 5c pop %r12 + 66349bb5: 41 5d pop %r13 + 66349bb7: c3 retq + 66349bb8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66349bbf: 00 + +0000000066349bc0 : + 66349bc0: 41 55 push %r13 + 66349bc2: 41 54 push %r12 + 66349bc4: 55 push %rbp + 66349bc5: 57 push %rdi + 66349bc6: 56 push %rsi + 66349bc7: 53 push %rbx + 66349bc8: 48 83 ec 28 sub $0x28,%rsp + 66349bcc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66349bd0: 49 8b 81 60 01 00 00 mov 0x160(%r9),%rax + 66349bd7: 48 89 cb mov %rcx,%rbx + 66349bda: 44 8b 10 mov (%rax),%r10d + 66349bdd: 45 85 d2 test %r10d,%r10d + 66349be0: 0f 84 da 00 00 00 je 66349cc0 + 66349be6: 49 8b 41 10 mov 0x10(%r9),%rax + 66349bea: be 0c 00 00 00 mov $0xc,%esi + 66349bef: 4c 8d 2d 0a 94 00 00 lea 0x940a(%rip),%r13 # 66353000 <.rdata> + 66349bf6: 4c 8d 25 13 94 00 00 lea 0x9413(%rip),%r12 # 66353010 <.rdata+0x10> + 66349bfd: 8b 10 mov (%rax),%edx + 66349bff: 49 8b 41 08 mov 0x8(%r9),%rax + 66349c03: 8b 00 mov (%rax),%eax + 66349c05: 8d 04 50 lea (%rax,%rdx,2),%eax + 66349c08: 49 8b 51 18 mov 0x18(%r9),%rdx + 66349c0c: 8b 12 mov (%rdx),%edx + 66349c0e: 8d 04 90 lea (%rax,%rdx,4),%eax + 66349c11: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349c15: 8b 12 mov (%rdx),%edx + 66349c17: 8d 3c d0 lea (%rax,%rdx,8),%edi + 66349c1a: 49 8b 41 28 mov 0x28(%r9),%rax + 66349c1e: 49 8b 51 30 mov 0x30(%r9),%rdx + 66349c22: 8b 00 mov (%rax),%eax + 66349c24: c1 e0 04 shl $0x4,%eax + 66349c27: 01 f8 add %edi,%eax + 66349c29: 8b 3a mov (%rdx),%edi + 66349c2b: 49 8b 51 38 mov 0x38(%r9),%rdx + 66349c2f: c1 e7 05 shl $0x5,%edi + 66349c32: 01 f8 add %edi,%eax + 66349c34: 8b 3a mov (%rdx),%edi + 66349c36: 49 8b 51 50 mov 0x50(%r9),%rdx + 66349c3a: c1 e7 06 shl $0x6,%edi + 66349c3d: 01 c7 add %eax,%edi + 66349c3f: 49 8b 41 40 mov 0x40(%r9),%rax + 66349c43: 8b 00 mov (%rax),%eax + 66349c45: c1 e0 07 shl $0x7,%eax + 66349c48: 01 c7 add %eax,%edi + 66349c4a: 49 8b 41 48 mov 0x48(%r9),%rax + 66349c4e: 8b 00 mov (%rax),%eax + 66349c50: c1 e0 08 shl $0x8,%eax + 66349c53: 01 f8 add %edi,%eax + 66349c55: 8b 3a mov (%rdx),%edi + 66349c57: 49 8b 51 58 mov 0x58(%r9),%rdx + 66349c5b: c1 e7 09 shl $0x9,%edi + 66349c5e: 01 f8 add %edi,%eax + 66349c60: 8b 3a mov (%rdx),%edi + 66349c62: c1 e7 0a shl $0xa,%edi + 66349c65: 01 c7 add %eax,%edi + 66349c67: 48 63 ef movslq %edi,%rbp + 66349c6a: 48 c1 e5 02 shl $0x2,%rbp + 66349c6e: 66 90 xchg %ax,%ax 66349c70: 85 ff test %edi,%edi - 66349c72: 78 05 js 66349c79 - 66349c74: 39 7e 38 cmp %edi,0x38(%rsi) - 66349c77: 7f 11 jg 66349c8a + 66349c72: 78 05 js 66349c79 + 66349c74: 39 7b 38 cmp %edi,0x38(%rbx) + 66349c77: 7f 11 jg 66349c8a 66349c79: 41 b8 8f 00 00 00 mov $0x8f,%r8d 66349c7f: 4c 89 ea mov %r13,%rdx 66349c82: 4c 89 e1 mov %r12,%rcx - 66349c85: e8 86 85 00 00 callq 66352210 <_assert> - 66349c8a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66349c8e: 48 8b 46 40 mov 0x40(%rsi),%rax - 66349c92: 48 01 da add %rbx,%rdx - 66349c95: 8b 04 28 mov (%rax,%rbp,1),%eax - 66349c98: 8b 0a mov (%rdx),%ecx - 66349c9a: 39 c8 cmp %ecx,%eax - 66349c9c: 74 6c je 66349d0a - 66349c9e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349ca2: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66349ca6: 41 89 c3 mov %eax,%r11d - 66349ca9: 41 29 cb sub %ecx,%r11d - 66349cac: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66349cb0: 45 01 18 add %r11d,(%r8) - 66349cb3: 89 02 mov %eax,(%rdx) - 66349cb5: 31 d2 xor %edx,%edx - 66349cb7: 48 8b 46 10 mov 0x10(%rsi),%rax - 66349cbb: 45 8b 18 mov (%r8),%r11d - 66349cbe: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349cc2: 45 85 db test %r11d,%r11d - 66349cc5: 0f 9f c2 setg %dl - 66349cc8: 3b 10 cmp (%rax),%edx - 66349cca: 74 3e je 66349d0a - 66349ccc: 48 8b 46 20 mov 0x20(%rsi),%rax - 66349cd0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349cd4: 44 8b 10 mov (%rax),%r10d - 66349cd7: 45 85 d2 test %r10d,%r10d - 66349cda: 75 2e jne 66349d0a - 66349cdc: 48 8b 46 28 mov 0x28(%rsi),%rax - 66349ce0: 48 8b 0d 49 dc 00 00 mov 0xdc49(%rip),%rcx # 66357930 - 66349ce7: 4c 8b 05 32 dc 00 00 mov 0xdc32(%rip),%r8 # 66357920 - 66349cee: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66349cf2: 48 8b 42 10 mov 0x10(%rdx),%rax - 66349cf6: c7 00 01 00 00 00 movl $0x1,(%rax) - 66349cfc: 48 63 01 movslq (%rcx),%rax - 66349cff: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349d03: 44 89 09 mov %r9d,(%rcx) - 66349d06: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66349d0a: 48 83 c3 04 add $0x4,%rbx - 66349d0e: 81 c7 00 10 00 00 add $0x1000,%edi - 66349d14: 48 81 c5 00 40 00 00 add $0x4000,%rbp - 66349d1b: 48 81 fb f4 00 00 00 cmp $0xf4,%rbx - 66349d22: 0f 85 48 ff ff ff jne 66349c70 - 66349d28: 48 83 c4 28 add $0x28,%rsp - 66349d2c: 5b pop %rbx - 66349d2d: 5e pop %rsi - 66349d2e: 5f pop %rdi - 66349d2f: 5d pop %rbp - 66349d30: 41 5c pop %r12 - 66349d32: 41 5d pop %r13 - 66349d34: c3 retq - 66349d35: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349d39: 4c 8b 1d e0 db 00 00 mov 0xdbe0(%rip),%r11 # 66357920 - 66349d40: 4c 8b 15 e9 db 00 00 mov 0xdbe9(%rip),%r10 # 66357930 - 66349d47: 48 8d 50 34 lea 0x34(%rax),%rdx - 66349d4b: b8 68 00 00 00 mov $0x68,%eax - 66349d50: 8b 0a mov (%rdx),%ecx - 66349d52: 85 c9 test %ecx,%ecx - 66349d54: 74 55 je 66349dab - 66349d56: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349d5a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66349d5e: 41 29 08 sub %ecx,(%r8) - 66349d61: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349d67: 45 8b 00 mov (%r8),%r8d - 66349d6a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66349d6e: 45 85 c0 test %r8d,%r8d - 66349d71: 41 0f 9f c0 setg %r8b - 66349d75: 45 0f b6 c0 movzbl %r8b,%r8d - 66349d79: 44 3b 01 cmp (%rcx),%r8d - 66349d7c: 74 2d je 66349dab - 66349d7e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349d82: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349d86: 8b 09 mov (%rcx),%ecx - 66349d88: 85 c9 test %ecx,%ecx - 66349d8a: 75 1f jne 66349dab - 66349d8c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66349d90: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66349d94: 49 8b 48 10 mov 0x10(%r8),%rcx - 66349d98: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66349d9e: 49 63 0a movslq (%r10),%rcx - 66349da1: 8d 59 01 lea 0x1(%rcx),%ebx - 66349da4: 41 89 1a mov %ebx,(%r10) - 66349da7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66349dab: 48 83 c0 08 add $0x8,%rax - 66349daf: 48 83 c2 04 add $0x4,%rdx - 66349db3: 48 3d e8 01 00 00 cmp $0x1e8,%rax - 66349db9: 75 95 jne 66349d50 - 66349dbb: 48 83 c4 28 add $0x28,%rsp - 66349dbf: 5b pop %rbx - 66349dc0: 5e pop %rsi - 66349dc1: 5f pop %rdi - 66349dc2: 5d pop %rbp - 66349dc3: 41 5c pop %r12 - 66349dc5: 41 5d pop %r13 - 66349dc7: c3 retq - 66349dc8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66349dcf: 00 + 66349c85: e8 76 73 00 00 callq 66351000 <_assert> + 66349c8a: 48 8b 43 40 mov 0x40(%rbx),%rax + 66349c8e: 89 f2 mov %esi,%edx + 66349c90: 48 89 d9 mov %rbx,%rcx + 66349c93: 83 c6 01 add $0x1,%esi + 66349c96: 81 c7 00 08 00 00 add $0x800,%edi + 66349c9c: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66349ca0: 48 81 c5 00 20 00 00 add $0x2000,%rbp + 66349ca7: e8 04 77 ff ff callq 663413b0 + 66349cac: 83 fe 2c cmp $0x2c,%esi + 66349caf: 75 bf jne 66349c70 + 66349cb1: 48 83 c4 28 add $0x28,%rsp + 66349cb5: 5b pop %rbx + 66349cb6: 5e pop %rsi + 66349cb7: 5f pop %rdi + 66349cb8: 5d pop %rbp + 66349cb9: 41 5c pop %r12 + 66349cbb: 41 5d pop %r13 + 66349cbd: c3 retq + 66349cbe: 66 90 xchg %ax,%ax + 66349cc0: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349cc4: 4c 8b 1d 55 cc 00 00 mov 0xcc55(%rip),%r11 # 66356920 + 66349ccb: 4c 8b 15 5e cc 00 00 mov 0xcc5e(%rip),%r10 # 66356930 + 66349cd2: 48 8d 50 30 lea 0x30(%rax),%rdx + 66349cd6: b8 60 00 00 00 mov $0x60,%eax + 66349cdb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349ce0: 8b 0a mov (%rdx),%ecx + 66349ce2: 85 c9 test %ecx,%ecx + 66349ce4: 74 55 je 66349d3b + 66349ce6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66349cea: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66349cee: 41 29 08 sub %ecx,(%r8) + 66349cf1: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349cf7: 45 8b 00 mov (%r8),%r8d + 66349cfa: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66349cfe: 45 85 c0 test %r8d,%r8d + 66349d01: 41 0f 9f c0 setg %r8b + 66349d05: 45 0f b6 c0 movzbl %r8b,%r8d + 66349d09: 44 3b 01 cmp (%rcx),%r8d + 66349d0c: 74 2d je 66349d3b + 66349d0e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66349d12: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349d16: 8b 09 mov (%rcx),%ecx + 66349d18: 85 c9 test %ecx,%ecx + 66349d1a: 75 1f jne 66349d3b + 66349d1c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66349d20: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349d24: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349d28: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66349d2e: 49 63 0a movslq (%r10),%rcx + 66349d31: 8d 71 01 lea 0x1(%rcx),%esi + 66349d34: 41 89 32 mov %esi,(%r10) + 66349d37: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66349d3b: 48 83 c0 08 add $0x8,%rax + 66349d3f: 48 83 c2 04 add $0x4,%rdx + 66349d43: 48 3d 60 01 00 00 cmp $0x160,%rax + 66349d49: 75 95 jne 66349ce0 + 66349d4b: 48 83 c4 28 add $0x28,%rsp + 66349d4f: 5b pop %rbx + 66349d50: 5e pop %rsi + 66349d51: 5f pop %rdi + 66349d52: 5d pop %rbp + 66349d53: 41 5c pop %r12 + 66349d55: 41 5d pop %r13 + 66349d57: c3 retq + 66349d58: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66349d5f: 00 -0000000066349dd0 : - 66349dd0: 41 55 push %r13 - 66349dd2: 41 54 push %r12 - 66349dd4: 55 push %rbp - 66349dd5: 57 push %rdi - 66349dd6: 56 push %rsi - 66349dd7: 53 push %rbx - 66349dd8: 48 83 ec 28 sub $0x28,%rsp - 66349ddc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66349de0: 49 8b 81 c8 01 00 00 mov 0x1c8(%r9),%rax - 66349de7: 48 89 ce mov %rcx,%rsi - 66349dea: 8b 18 mov (%rax),%ebx - 66349dec: 85 db test %ebx,%ebx - 66349dee: 0f 84 31 01 00 00 je 66349f25 - 66349df4: 49 8b 41 10 mov 0x10(%r9),%rax - 66349df8: bb 24 00 00 00 mov $0x24,%ebx - 66349dfd: 4c 8d 2d fc a1 00 00 lea 0xa1fc(%rip),%r13 # 66354000 <.rdata> - 66349e04: 4c 8d 25 05 a2 00 00 lea 0xa205(%rip),%r12 # 66354010 <.rdata+0x10> - 66349e0b: 8b 10 mov (%rax),%edx - 66349e0d: 49 8b 41 08 mov 0x8(%r9),%rax - 66349e11: 8b 00 mov (%rax),%eax - 66349e13: 8d 04 50 lea (%rax,%rdx,2),%eax - 66349e16: 49 8b 51 18 mov 0x18(%r9),%rdx - 66349e1a: 8b 12 mov (%rdx),%edx - 66349e1c: 8d 04 90 lea (%rax,%rdx,4),%eax - 66349e1f: 49 8b 51 20 mov 0x20(%r9),%rdx - 66349e23: 8b 12 mov (%rdx),%edx - 66349e25: 8d 3c d0 lea (%rax,%rdx,8),%edi - 66349e28: 49 8b 41 28 mov 0x28(%r9),%rax - 66349e2c: 49 8b 51 38 mov 0x38(%r9),%rdx - 66349e30: 8b 00 mov (%rax),%eax - 66349e32: c1 e0 04 shl $0x4,%eax - 66349e35: 01 c7 add %eax,%edi - 66349e37: 49 8b 41 30 mov 0x30(%r9),%rax - 66349e3b: 8b 00 mov (%rax),%eax - 66349e3d: c1 e0 05 shl $0x5,%eax - 66349e40: 01 f8 add %edi,%eax - 66349e42: 8b 3a mov (%rdx),%edi - 66349e44: 49 8b 51 40 mov 0x40(%r9),%rdx - 66349e48: c1 e7 06 shl $0x6,%edi - 66349e4b: 01 f8 add %edi,%eax - 66349e4d: 8b 3a mov (%rdx),%edi - 66349e4f: c1 e7 07 shl $0x7,%edi - 66349e52: 01 c7 add %eax,%edi - 66349e54: 48 63 ef movslq %edi,%rbp - 66349e57: 48 c1 e5 02 shl $0x2,%rbp - 66349e5b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66349e60: 85 ff test %edi,%edi - 66349e62: 78 05 js 66349e69 - 66349e64: 39 7e 38 cmp %edi,0x38(%rsi) - 66349e67: 7f 11 jg 66349e7a - 66349e69: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66349e6f: 4c 89 ea mov %r13,%rdx - 66349e72: 4c 89 e1 mov %r12,%rcx - 66349e75: e8 96 83 00 00 callq 66352210 <_assert> - 66349e7a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66349e7e: 48 8b 46 40 mov 0x40(%rsi),%rax - 66349e82: 48 01 da add %rbx,%rdx - 66349e85: 8b 04 28 mov (%rax,%rbp,1),%eax - 66349e88: 8b 0a mov (%rdx),%ecx - 66349e8a: 39 c8 cmp %ecx,%eax - 66349e8c: 74 6c je 66349efa - 66349e8e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349e92: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 66349e96: 41 89 c3 mov %eax,%r11d - 66349e99: 41 29 cb sub %ecx,%r11d - 66349e9c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 66349ea0: 45 01 18 add %r11d,(%r8) - 66349ea3: 89 02 mov %eax,(%rdx) - 66349ea5: 31 d2 xor %edx,%edx - 66349ea7: 48 8b 46 10 mov 0x10(%rsi),%rax - 66349eab: 45 8b 18 mov (%r8),%r11d - 66349eae: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349eb2: 45 85 db test %r11d,%r11d - 66349eb5: 0f 9f c2 setg %dl - 66349eb8: 3b 10 cmp (%rax),%edx - 66349eba: 74 3e je 66349efa - 66349ebc: 48 8b 46 20 mov 0x20(%rsi),%rax - 66349ec0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 66349ec4: 44 8b 10 mov (%rax),%r10d - 66349ec7: 45 85 d2 test %r10d,%r10d - 66349eca: 75 2e jne 66349efa - 66349ecc: 48 8b 46 28 mov 0x28(%rsi),%rax - 66349ed0: 48 8b 0d 59 da 00 00 mov 0xda59(%rip),%rcx # 66357930 - 66349ed7: 4c 8b 05 42 da 00 00 mov 0xda42(%rip),%r8 # 66357920 - 66349ede: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 66349ee2: 48 8b 42 10 mov 0x10(%rdx),%rax - 66349ee6: c7 00 01 00 00 00 movl $0x1,(%rax) - 66349eec: 48 63 01 movslq (%rcx),%rax - 66349eef: 44 8d 48 01 lea 0x1(%rax),%r9d - 66349ef3: 44 89 09 mov %r9d,(%rcx) - 66349ef6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66349efa: 48 83 c3 04 add $0x4,%rbx - 66349efe: 81 c7 00 01 00 00 add $0x100,%edi - 66349f04: 48 81 c5 00 04 00 00 add $0x400,%rbp - 66349f0b: 48 81 fb e4 00 00 00 cmp $0xe4,%rbx - 66349f12: 0f 85 48 ff ff ff jne 66349e60 - 66349f18: 48 83 c4 28 add $0x28,%rsp - 66349f1c: 5b pop %rbx - 66349f1d: 5e pop %rsi - 66349f1e: 5f pop %rdi - 66349f1f: 5d pop %rbp - 66349f20: 41 5c pop %r12 - 66349f22: 41 5d pop %r13 - 66349f24: c3 retq - 66349f25: 48 8b 41 08 mov 0x8(%rcx),%rax - 66349f29: 4c 8b 1d f0 d9 00 00 mov 0xd9f0(%rip),%r11 # 66357920 - 66349f30: 4c 8b 15 f9 d9 00 00 mov 0xd9f9(%rip),%r10 # 66357930 - 66349f37: 48 8d 50 24 lea 0x24(%rax),%rdx - 66349f3b: b8 48 00 00 00 mov $0x48,%eax - 66349f40: 8b 0a mov (%rdx),%ecx - 66349f42: 85 c9 test %ecx,%ecx - 66349f44: 74 55 je 66349f9b - 66349f46: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 66349f4a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 66349f4e: 41 29 08 sub %ecx,(%r8) - 66349f51: c7 02 00 00 00 00 movl $0x0,(%rdx) - 66349f57: 45 8b 00 mov (%r8),%r8d - 66349f5a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 66349f5e: 45 85 c0 test %r8d,%r8d - 66349f61: 41 0f 9f c0 setg %r8b - 66349f65: 45 0f b6 c0 movzbl %r8b,%r8d - 66349f69: 44 3b 01 cmp (%rcx),%r8d - 66349f6c: 74 2d je 66349f9b - 66349f6e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 66349f72: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 66349f76: 8b 09 mov (%rcx),%ecx - 66349f78: 85 c9 test %ecx,%ecx - 66349f7a: 75 1f jne 66349f9b - 66349f7c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 66349f80: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 66349f84: 49 8b 48 10 mov 0x10(%r8),%rcx - 66349f88: c7 01 01 00 00 00 movl $0x1,(%rcx) - 66349f8e: 49 63 0a movslq (%r10),%rcx - 66349f91: 8d 59 01 lea 0x1(%rcx),%ebx - 66349f94: 41 89 1a mov %ebx,(%r10) - 66349f97: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 66349f9b: 48 83 c0 08 add $0x8,%rax - 66349f9f: 48 83 c2 04 add $0x4,%rdx - 66349fa3: 48 3d c8 01 00 00 cmp $0x1c8,%rax - 66349fa9: 75 95 jne 66349f40 - 66349fab: 48 83 c4 28 add $0x28,%rsp - 66349faf: 5b pop %rbx - 66349fb0: 5e pop %rsi - 66349fb1: 5f pop %rdi - 66349fb2: 5d pop %rbp - 66349fb3: 41 5c pop %r12 - 66349fb5: 41 5d pop %r13 - 66349fb7: c3 retq - 66349fb8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66349fbf: 00 +0000000066349d60 : + 66349d60: 41 55 push %r13 + 66349d62: 41 54 push %r12 + 66349d64: 55 push %rbp + 66349d65: 57 push %rdi + 66349d66: 56 push %rsi + 66349d67: 53 push %rbx + 66349d68: 48 83 ec 28 sub $0x28,%rsp + 66349d6c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 66349d70: 49 8b 81 38 01 00 00 mov 0x138(%r9),%rax + 66349d77: 48 89 cb mov %rcx,%rbx + 66349d7a: 44 8b 10 mov (%rax),%r10d + 66349d7d: 45 85 d2 test %r10d,%r10d + 66349d80: 0f 84 aa 00 00 00 je 66349e30 + 66349d86: 49 8b 41 10 mov 0x10(%r9),%rax + 66349d8a: be 07 00 00 00 mov $0x7,%esi + 66349d8f: 4c 8d 2d 6a 92 00 00 lea 0x926a(%rip),%r13 # 66353000 <.rdata> + 66349d96: 4c 8d 25 73 92 00 00 lea 0x9273(%rip),%r12 # 66353010 <.rdata+0x10> + 66349d9d: 8b 10 mov (%rax),%edx + 66349d9f: 49 8b 41 08 mov 0x8(%r9),%rax + 66349da3: 8b 00 mov (%rax),%eax + 66349da5: 8d 04 50 lea (%rax,%rdx,2),%eax + 66349da8: 49 8b 51 18 mov 0x18(%r9),%rdx + 66349dac: 8b 12 mov (%rdx),%edx + 66349dae: 8d 04 90 lea (%rax,%rdx,4),%eax + 66349db1: 49 8b 51 20 mov 0x20(%r9),%rdx + 66349db5: 8b 12 mov (%rdx),%edx + 66349db7: 8d 04 d0 lea (%rax,%rdx,8),%eax + 66349dba: 49 8b 51 28 mov 0x28(%r9),%rdx + 66349dbe: 8b 3a mov (%rdx),%edi + 66349dc0: 49 8b 51 30 mov 0x30(%r9),%rdx + 66349dc4: c1 e7 04 shl $0x4,%edi + 66349dc7: 01 f8 add %edi,%eax + 66349dc9: 8b 3a mov (%rdx),%edi + 66349dcb: c1 e7 05 shl $0x5,%edi + 66349dce: 01 c7 add %eax,%edi + 66349dd0: 48 63 ef movslq %edi,%rbp + 66349dd3: 48 c1 e5 02 shl $0x2,%rbp + 66349dd7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66349dde: 00 00 + 66349de0: 85 ff test %edi,%edi + 66349de2: 78 05 js 66349de9 + 66349de4: 3b 7b 38 cmp 0x38(%rbx),%edi + 66349de7: 7c 11 jl 66349dfa + 66349de9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 66349def: 4c 89 ea mov %r13,%rdx + 66349df2: 4c 89 e1 mov %r12,%rcx + 66349df5: e8 06 72 00 00 callq 66351000 <_assert> + 66349dfa: 48 8b 43 40 mov 0x40(%rbx),%rax + 66349dfe: 89 f2 mov %esi,%edx + 66349e00: 48 89 d9 mov %rbx,%rcx + 66349e03: 83 c6 01 add $0x1,%esi + 66349e06: 83 c7 40 add $0x40,%edi + 66349e09: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 66349e0d: 48 81 c5 00 01 00 00 add $0x100,%rbp + 66349e14: e8 97 75 ff ff callq 663413b0 + 66349e19: 83 fe 27 cmp $0x27,%esi + 66349e1c: 75 c2 jne 66349de0 + 66349e1e: 48 83 c4 28 add $0x28,%rsp + 66349e22: 5b pop %rbx + 66349e23: 5e pop %rsi + 66349e24: 5f pop %rdi + 66349e25: 5d pop %rbp + 66349e26: 41 5c pop %r12 + 66349e28: 41 5d pop %r13 + 66349e2a: c3 retq + 66349e2b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349e30: 48 8b 41 08 mov 0x8(%rcx),%rax + 66349e34: 4c 8b 1d e5 ca 00 00 mov 0xcae5(%rip),%r11 # 66356920 + 66349e3b: 4c 8b 15 ee ca 00 00 mov 0xcaee(%rip),%r10 # 66356930 + 66349e42: 48 8d 50 1c lea 0x1c(%rax),%rdx + 66349e46: b8 38 00 00 00 mov $0x38,%eax + 66349e4b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66349e50: 8b 0a mov (%rdx),%ecx + 66349e52: 85 c9 test %ecx,%ecx + 66349e54: 74 55 je 66349eab + 66349e56: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 66349e5a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 66349e5e: 41 29 08 sub %ecx,(%r8) + 66349e61: c7 02 00 00 00 00 movl $0x0,(%rdx) + 66349e67: 45 8b 00 mov (%r8),%r8d + 66349e6a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 66349e6e: 45 85 c0 test %r8d,%r8d + 66349e71: 41 0f 9f c0 setg %r8b + 66349e75: 45 0f b6 c0 movzbl %r8b,%r8d + 66349e79: 44 3b 01 cmp (%rcx),%r8d + 66349e7c: 74 2d je 66349eab + 66349e7e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 66349e82: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 66349e86: 8b 09 mov (%rcx),%ecx + 66349e88: 85 c9 test %ecx,%ecx + 66349e8a: 75 1f jne 66349eab + 66349e8c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 66349e90: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 66349e94: 49 8b 48 10 mov 0x10(%r8),%rcx + 66349e98: c7 01 01 00 00 00 movl $0x1,(%rcx) + 66349e9e: 49 63 0a movslq (%r10),%rcx + 66349ea1: 8d 71 01 lea 0x1(%rcx),%esi + 66349ea4: 41 89 32 mov %esi,(%r10) + 66349ea7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 66349eab: 48 83 c0 08 add $0x8,%rax + 66349eaf: 48 83 c2 04 add $0x4,%rdx + 66349eb3: 48 3d 38 01 00 00 cmp $0x138,%rax + 66349eb9: 75 95 jne 66349e50 + 66349ebb: 48 83 c4 28 add $0x28,%rsp + 66349ebf: 5b pop %rbx + 66349ec0: 5e pop %rsi + 66349ec1: 5f pop %rdi + 66349ec2: 5d pop %rbp + 66349ec3: 41 5c pop %r12 + 66349ec5: 41 5d pop %r13 + 66349ec7: c3 retq + 66349ec8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66349ecf: 00 -0000000066349fc0 : - 66349fc0: 41 55 push %r13 - 66349fc2: 41 54 push %r12 - 66349fc4: 55 push %rbp - 66349fc5: 57 push %rdi - 66349fc6: 56 push %rsi - 66349fc7: 53 push %rbx - 66349fc8: 48 83 ec 28 sub $0x28,%rsp - 66349fcc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 66349fd0: 49 8b 81 b8 01 00 00 mov 0x1b8(%r9),%rax - 66349fd7: 48 89 ce mov %rcx,%rsi - 66349fda: 8b 18 mov (%rax),%ebx - 66349fdc: 85 db test %ebx,%ebx - 66349fde: 0f 84 1c 01 00 00 je 6634a100 - 66349fe4: 49 8b 41 10 mov 0x10(%r9),%rax - 66349fe8: bb 1c 00 00 00 mov $0x1c,%ebx - 66349fed: 4c 8d 2d 0c a0 00 00 lea 0xa00c(%rip),%r13 # 66354000 <.rdata> - 66349ff4: 4c 8d 25 15 a0 00 00 lea 0xa015(%rip),%r12 # 66354010 <.rdata+0x10> - 66349ffb: 8b 10 mov (%rax),%edx - 66349ffd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a001: 8b 00 mov (%rax),%eax - 6634a003: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a006: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a00a: 8b 12 mov (%rdx),%edx - 6634a00c: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a00f: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634a013: 8b 12 mov (%rdx),%edx - 6634a015: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634a018: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634a01c: 8b 3a mov (%rdx),%edi - 6634a01e: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634a022: c1 e7 04 shl $0x4,%edi - 6634a025: 01 f8 add %edi,%eax - 6634a027: 8b 3a mov (%rdx),%edi - 6634a029: c1 e7 05 shl $0x5,%edi - 6634a02c: 01 c7 add %eax,%edi - 6634a02e: 48 63 ef movslq %edi,%rbp - 6634a031: 48 c1 e5 02 shl $0x2,%rbp - 6634a035: 85 ff test %edi,%edi - 6634a037: 78 05 js 6634a03e - 6634a039: 39 7e 38 cmp %edi,0x38(%rsi) - 6634a03c: 7f 11 jg 6634a04f - 6634a03e: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634a044: 4c 89 ea mov %r13,%rdx - 6634a047: 4c 89 e1 mov %r12,%rcx - 6634a04a: e8 c1 81 00 00 callq 66352210 <_assert> - 6634a04f: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634a053: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634a057: 48 01 da add %rbx,%rdx - 6634a05a: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634a05d: 8b 0a mov (%rdx),%ecx - 6634a05f: 39 c8 cmp %ecx,%eax - 6634a061: 74 6c je 6634a0cf - 6634a063: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a067: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634a06b: 41 89 c3 mov %eax,%r11d - 6634a06e: 41 29 cb sub %ecx,%r11d - 6634a071: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634a075: 45 01 18 add %r11d,(%r8) - 6634a078: 89 02 mov %eax,(%rdx) - 6634a07a: 31 d2 xor %edx,%edx - 6634a07c: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634a080: 45 8b 18 mov (%r8),%r11d - 6634a083: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a087: 45 85 db test %r11d,%r11d - 6634a08a: 0f 9f c2 setg %dl - 6634a08d: 3b 10 cmp (%rax),%edx - 6634a08f: 74 3e je 6634a0cf - 6634a091: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634a095: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a099: 44 8b 10 mov (%rax),%r10d - 6634a09c: 45 85 d2 test %r10d,%r10d - 6634a09f: 75 2e jne 6634a0cf - 6634a0a1: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634a0a5: 48 8b 0d 84 d8 00 00 mov 0xd884(%rip),%rcx # 66357930 - 6634a0ac: 4c 8b 05 6d d8 00 00 mov 0xd86d(%rip),%r8 # 66357920 - 6634a0b3: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634a0b7: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634a0bb: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634a0c1: 48 63 01 movslq (%rcx),%rax - 6634a0c4: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634a0c8: 44 89 09 mov %r9d,(%rcx) - 6634a0cb: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634a0cf: 48 83 c3 04 add $0x4,%rbx - 6634a0d3: 83 c7 40 add $0x40,%edi - 6634a0d6: 48 81 c5 00 01 00 00 add $0x100,%rbp - 6634a0dd: 48 81 fb dc 00 00 00 cmp $0xdc,%rbx - 6634a0e4: 0f 85 4b ff ff ff jne 6634a035 - 6634a0ea: 48 83 c4 28 add $0x28,%rsp - 6634a0ee: 5b pop %rbx - 6634a0ef: 5e pop %rsi - 6634a0f0: 5f pop %rdi - 6634a0f1: 5d pop %rbp - 6634a0f2: 41 5c pop %r12 - 6634a0f4: 41 5d pop %r13 - 6634a0f6: c3 retq - 6634a0f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634a0fe: 00 00 - 6634a100: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634a104: 4c 8b 1d 15 d8 00 00 mov 0xd815(%rip),%r11 # 66357920 - 6634a10b: 4c 8b 15 1e d8 00 00 mov 0xd81e(%rip),%r10 # 66357930 - 6634a112: 48 8d 50 1c lea 0x1c(%rax),%rdx - 6634a116: b8 38 00 00 00 mov $0x38,%eax - 6634a11b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634a120: 8b 0a mov (%rdx),%ecx - 6634a122: 85 c9 test %ecx,%ecx - 6634a124: 74 55 je 6634a17b - 6634a126: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a12a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634a12e: 41 29 08 sub %ecx,(%r8) - 6634a131: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634a137: 45 8b 00 mov (%r8),%r8d - 6634a13a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634a13e: 45 85 c0 test %r8d,%r8d - 6634a141: 41 0f 9f c0 setg %r8b - 6634a145: 45 0f b6 c0 movzbl %r8b,%r8d - 6634a149: 44 3b 01 cmp (%rcx),%r8d - 6634a14c: 74 2d je 6634a17b - 6634a14e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634a152: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634a156: 8b 09 mov (%rcx),%ecx - 6634a158: 85 c9 test %ecx,%ecx - 6634a15a: 75 1f jne 6634a17b - 6634a15c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634a160: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634a164: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634a168: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634a16e: 49 63 0a movslq (%r10),%rcx - 6634a171: 8d 59 01 lea 0x1(%rcx),%ebx - 6634a174: 41 89 1a mov %ebx,(%r10) - 6634a177: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634a17b: 48 83 c0 08 add $0x8,%rax - 6634a17f: 48 83 c2 04 add $0x4,%rdx - 6634a183: 48 3d b8 01 00 00 cmp $0x1b8,%rax - 6634a189: 75 95 jne 6634a120 - 6634a18b: 48 83 c4 28 add $0x28,%rsp - 6634a18f: 5b pop %rbx - 6634a190: 5e pop %rsi - 6634a191: 5f pop %rdi - 6634a192: 5d pop %rbp - 6634a193: 41 5c pop %r12 - 6634a195: 41 5d pop %r13 - 6634a197: c3 retq - 6634a198: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634a19f: 00 +0000000066349ed0 : + 66349ed0: 48 8b 41 10 mov 0x10(%rcx),%rax + 66349ed4: 48 8b 90 30 01 00 00 mov 0x130(%rax),%rdx + 66349edb: 44 8b 0a mov (%rdx),%r9d + 66349ede: 45 85 c9 test %r9d,%r9d + 66349ee1: 0f 84 c9 00 00 00 je 66349fb0 + 66349ee7: 48 8b 50 10 mov 0x10(%rax),%rdx + 66349eeb: 44 8b 02 mov (%rdx),%r8d + 66349eee: 48 8b 50 08 mov 0x8(%rax),%rdx + 66349ef2: 8b 12 mov (%rdx),%edx + 66349ef4: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 66349ef8: 4c 8b 40 18 mov 0x18(%rax),%r8 + 66349efc: 45 8b 00 mov (%r8),%r8d + 66349eff: 42 8d 14 82 lea (%rdx,%r8,4),%edx + 66349f03: 4c 8b 40 20 mov 0x20(%rax),%r8 + 66349f07: 45 8b 00 mov (%r8),%r8d + 66349f0a: 46 8d 04 c2 lea (%rdx,%r8,8),%r8d + 66349f0e: 48 8b 50 28 mov 0x28(%rax),%rdx + 66349f12: 8b 12 mov (%rdx),%edx + 66349f14: c1 e2 04 shl $0x4,%edx + 66349f17: 41 8d 54 10 06 lea 0x6(%r8,%rdx,1),%edx + 66349f1c: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66349f20: 48 63 d2 movslq %edx,%rdx + 66349f23: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 66349f27: 45 8b 88 9c 00 00 00 mov 0x9c(%r8),%r9d + 66349f2e: 8b 12 mov (%rdx),%edx + 66349f30: 44 39 ca cmp %r9d,%edx + 66349f33: 74 73 je 66349fa8 + 66349f35: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 66349f39: 41 89 d3 mov %edx,%r11d + 66349f3c: 45 29 cb sub %r9d,%r11d + 66349f3f: 48 8b 80 38 01 00 00 mov 0x138(%rax),%rax + 66349f46: 4d 8b 92 38 01 00 00 mov 0x138(%r10),%r10 + 66349f4d: 45 01 1a add %r11d,(%r10) + 66349f50: 41 89 90 9c 00 00 00 mov %edx,0x9c(%r8) + 66349f57: 31 d2 xor %edx,%edx + 66349f59: 45 8b 02 mov (%r10),%r8d + 66349f5c: 45 85 c0 test %r8d,%r8d + 66349f5f: 0f 9f c2 setg %dl + 66349f62: 3b 10 cmp (%rax),%edx + 66349f64: 74 42 je 66349fa8 + 66349f66: 48 8b 41 20 mov 0x20(%rcx),%rax + 66349f6a: 48 8b 80 38 01 00 00 mov 0x138(%rax),%rax + 66349f71: 8b 00 mov (%rax),%eax + 66349f73: 85 c0 test %eax,%eax + 66349f75: 75 31 jne 66349fa8 + 66349f77: 48 8b 41 28 mov 0x28(%rcx),%rax + 66349f7b: 48 8b 0d ae c9 00 00 mov 0xc9ae(%rip),%rcx # 66356930 + 66349f82: 4c 8b 05 97 c9 00 00 mov 0xc997(%rip),%r8 # 66356920 + 66349f89: 48 8b 90 38 01 00 00 mov 0x138(%rax),%rdx + 66349f90: 48 8b 42 10 mov 0x10(%rdx),%rax + 66349f94: c7 00 01 00 00 00 movl $0x1,(%rax) + 66349f9a: 48 63 01 movslq (%rcx),%rax + 66349f9d: 44 8d 48 01 lea 0x1(%rax),%r9d + 66349fa1: 44 89 09 mov %r9d,(%rcx) + 66349fa4: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 66349fa8: c3 retq + 66349fa9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66349fb0: ba 27 00 00 00 mov $0x27,%edx + 66349fb5: e9 76 74 ff ff jmpq 66341430 + 66349fba: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -000000006634a1a0 : - 6634a1a0: 41 55 push %r13 - 6634a1a2: 41 54 push %r12 - 6634a1a4: 55 push %rbp - 6634a1a5: 57 push %rdi - 6634a1a6: 56 push %rsi - 6634a1a7: 53 push %rbx - 6634a1a8: 48 83 ec 28 sub $0x28,%rsp - 6634a1ac: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634a1b0: 49 8b 81 d0 01 00 00 mov 0x1d0(%r9),%rax - 6634a1b7: 48 89 ce mov %rcx,%rsi - 6634a1ba: 8b 18 mov (%rax),%ebx - 6634a1bc: 85 db test %ebx,%ebx - 6634a1be: 0f 84 41 01 00 00 je 6634a305 - 6634a1c4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634a1c8: bb 28 00 00 00 mov $0x28,%ebx - 6634a1cd: 4c 8d 2d 2c 9e 00 00 lea 0x9e2c(%rip),%r13 # 66354000 <.rdata> - 6634a1d4: 4c 8d 25 35 9e 00 00 lea 0x9e35(%rip),%r12 # 66354010 <.rdata+0x10> - 6634a1db: 8b 10 mov (%rax),%edx - 6634a1dd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a1e1: 8b 00 mov (%rax),%eax - 6634a1e3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a1e6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a1ea: 8b 12 mov (%rdx),%edx - 6634a1ec: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a1ef: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634a1f3: 8b 12 mov (%rdx),%edx - 6634a1f5: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634a1f8: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634a1fc: 8b 3a mov (%rdx),%edi - 6634a1fe: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634a202: c1 e7 04 shl $0x4,%edi - 6634a205: 01 c7 add %eax,%edi - 6634a207: 49 8b 41 30 mov 0x30(%r9),%rax +0000000066349fc0 : + 66349fc0: 48 8b 41 10 mov 0x10(%rcx),%rax + 66349fc4: 48 8b 50 38 mov 0x38(%rax),%rdx + 66349fc8: 44 8b 0a mov (%rdx),%r9d + 66349fcb: 45 85 c9 test %r9d,%r9d + 66349fce: 0f 84 8d 00 00 00 je 6634a061 + 66349fd4: 48 8b 50 10 mov 0x10(%rax),%rdx + 66349fd8: 44 8b 02 mov (%rdx),%r8d + 66349fdb: 48 8b 50 08 mov 0x8(%rax),%rdx + 66349fdf: 8b 12 mov (%rdx),%edx + 66349fe1: 42 8d 54 42 03 lea 0x3(%rdx,%r8,2),%edx + 66349fe6: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 66349fea: 48 63 d2 movslq %edx,%rdx + 66349fed: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 66349ff1: 45 8b 48 20 mov 0x20(%r8),%r9d + 66349ff5: 8b 12 mov (%rdx),%edx + 66349ff7: 44 39 ca cmp %r9d,%edx + 66349ffa: 74 64 je 6634a060 + 66349ffc: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634a000: 41 89 d3 mov %edx,%r11d + 6634a003: 45 29 cb sub %r9d,%r11d + 6634a006: 48 8b 40 40 mov 0x40(%rax),%rax + 6634a00a: 4d 8b 52 40 mov 0x40(%r10),%r10 + 6634a00e: 45 01 1a add %r11d,(%r10) + 6634a011: 41 89 50 20 mov %edx,0x20(%r8) + 6634a015: 31 d2 xor %edx,%edx + 6634a017: 45 8b 02 mov (%r10),%r8d + 6634a01a: 45 85 c0 test %r8d,%r8d + 6634a01d: 0f 9f c2 setg %dl + 6634a020: 3b 10 cmp (%rax),%edx + 6634a022: 74 3c je 6634a060 + 6634a024: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634a028: 48 8b 40 40 mov 0x40(%rax),%rax + 6634a02c: 8b 00 mov (%rax),%eax + 6634a02e: 85 c0 test %eax,%eax + 6634a030: 75 2e jne 6634a060 + 6634a032: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634a036: 48 8b 0d f3 c8 00 00 mov 0xc8f3(%rip),%rcx # 66356930 + 6634a03d: 4c 8b 05 dc c8 00 00 mov 0xc8dc(%rip),%r8 # 66356920 + 6634a044: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634a048: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a04c: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a052: 48 63 01 movslq (%rcx),%rax + 6634a055: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a059: 44 89 09 mov %r9d,(%rcx) + 6634a05c: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a060: c3 retq + 6634a061: ba 08 00 00 00 mov $0x8,%edx + 6634a066: e9 c5 73 ff ff jmpq 66341430 + 6634a06b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + +000000006634a070 : + 6634a070: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634a074: 48 8b 90 a8 00 00 00 mov 0xa8(%rax),%rdx + 6634a07b: 44 8b 0a mov (%rdx),%r9d + 6634a07e: 45 85 c9 test %r9d,%r9d + 6634a081: 0f 84 b9 00 00 00 je 6634a140 + 6634a087: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634a08b: 44 8b 02 mov (%rdx),%r8d + 6634a08e: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634a092: 8b 12 mov (%rdx),%edx + 6634a094: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 6634a098: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634a09c: 45 8b 00 mov (%r8),%r8d + 6634a09f: 42 8d 14 82 lea (%rdx,%r8,4),%edx + 6634a0a3: 4c 8b 40 20 mov 0x20(%rax),%r8 + 6634a0a7: 45 8b 00 mov (%r8),%r8d + 6634a0aa: 42 8d 54 c2 05 lea 0x5(%rdx,%r8,8),%edx + 6634a0af: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634a0b3: 48 63 d2 movslq %edx,%rdx + 6634a0b6: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634a0ba: 45 8b 48 58 mov 0x58(%r8),%r9d + 6634a0be: 8b 12 mov (%rdx),%edx + 6634a0c0: 44 39 ca cmp %r9d,%edx + 6634a0c3: 74 70 je 6634a135 + 6634a0c5: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634a0c9: 41 89 d3 mov %edx,%r11d + 6634a0cc: 45 29 cb sub %r9d,%r11d + 6634a0cf: 48 8b 80 b0 00 00 00 mov 0xb0(%rax),%rax + 6634a0d6: 4d 8b 92 b0 00 00 00 mov 0xb0(%r10),%r10 + 6634a0dd: 45 01 1a add %r11d,(%r10) + 6634a0e0: 41 89 50 58 mov %edx,0x58(%r8) + 6634a0e4: 31 d2 xor %edx,%edx + 6634a0e6: 45 8b 02 mov (%r10),%r8d + 6634a0e9: 45 85 c0 test %r8d,%r8d + 6634a0ec: 0f 9f c2 setg %dl + 6634a0ef: 3b 10 cmp (%rax),%edx + 6634a0f1: 74 42 je 6634a135 + 6634a0f3: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634a0f7: 48 8b 80 b0 00 00 00 mov 0xb0(%rax),%rax + 6634a0fe: 8b 00 mov (%rax),%eax + 6634a100: 85 c0 test %eax,%eax + 6634a102: 75 31 jne 6634a135 + 6634a104: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634a108: 48 8b 0d 21 c8 00 00 mov 0xc821(%rip),%rcx # 66356930 + 6634a10f: 4c 8b 05 0a c8 00 00 mov 0xc80a(%rip),%r8 # 66356920 + 6634a116: 48 8b 90 b0 00 00 00 mov 0xb0(%rax),%rdx + 6634a11d: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a121: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a127: 48 63 01 movslq (%rcx),%rax + 6634a12a: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a12e: 44 89 09 mov %r9d,(%rcx) + 6634a131: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a135: c3 retq + 6634a136: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634a13d: 00 00 00 + 6634a140: ba 16 00 00 00 mov $0x16,%edx + 6634a145: e9 e6 72 ff ff jmpq 66341430 + 6634a14a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + +000000006634a150 : + 6634a150: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634a154: 48 8b 90 40 04 00 00 mov 0x440(%rax),%rdx + 6634a15b: 44 8b 0a mov (%rdx),%r9d + 6634a15e: 45 85 c9 test %r9d,%r9d + 6634a161: 0f 84 dc 00 00 00 je 6634a243 + 6634a167: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634a16b: 44 8b 02 mov (%rdx),%r8d + 6634a16e: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634a172: 8b 12 mov (%rdx),%edx + 6634a174: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 6634a178: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634a17c: 45 8b 00 mov (%r8),%r8d + 6634a17f: 42 8d 14 82 lea (%rdx,%r8,4),%edx + 6634a183: 4c 8b 40 20 mov 0x20(%rax),%r8 + 6634a187: 45 8b 00 mov (%r8),%r8d + 6634a18a: 46 8d 04 c2 lea (%rdx,%r8,8),%r8d + 6634a18e: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634a192: 8b 12 mov (%rdx),%edx + 6634a194: c1 e2 04 shl $0x4,%edx + 6634a197: 41 01 d0 add %edx,%r8d + 6634a19a: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634a19e: 8b 12 mov (%rdx),%edx + 6634a1a0: c1 e2 05 shl $0x5,%edx + 6634a1a3: 44 01 c2 add %r8d,%edx + 6634a1a6: 4c 8b 40 38 mov 0x38(%rax),%r8 + 6634a1aa: 45 8b 00 mov (%r8),%r8d + 6634a1ad: 41 c1 e0 06 shl $0x6,%r8d + 6634a1b1: 42 8d 54 02 08 lea 0x8(%rdx,%r8,1),%edx + 6634a1b6: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634a1ba: 48 63 d2 movslq %edx,%rdx + 6634a1bd: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634a1c1: 45 8b 88 24 02 00 00 mov 0x224(%r8),%r9d + 6634a1c8: 8b 12 mov (%rdx),%edx + 6634a1ca: 44 39 ca cmp %r9d,%edx + 6634a1cd: 74 73 je 6634a242 + 6634a1cf: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634a1d3: 41 89 d3 mov %edx,%r11d + 6634a1d6: 45 29 cb sub %r9d,%r11d + 6634a1d9: 48 8b 80 48 04 00 00 mov 0x448(%rax),%rax + 6634a1e0: 4d 8b 92 48 04 00 00 mov 0x448(%r10),%r10 + 6634a1e7: 45 01 1a add %r11d,(%r10) + 6634a1ea: 41 89 90 24 02 00 00 mov %edx,0x224(%r8) + 6634a1f1: 31 d2 xor %edx,%edx + 6634a1f3: 45 8b 02 mov (%r10),%r8d + 6634a1f6: 45 85 c0 test %r8d,%r8d + 6634a1f9: 0f 9f c2 setg %dl + 6634a1fc: 3b 10 cmp (%rax),%edx + 6634a1fe: 74 42 je 6634a242 + 6634a200: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634a204: 48 8b 80 48 04 00 00 mov 0x448(%rax),%rax 6634a20b: 8b 00 mov (%rax),%eax - 6634a20d: c1 e0 05 shl $0x5,%eax - 6634a210: 01 c7 add %eax,%edi - 6634a212: 49 8b 41 38 mov 0x38(%r9),%rax - 6634a216: 8b 00 mov (%rax),%eax - 6634a218: c1 e0 06 shl $0x6,%eax - 6634a21b: 01 f8 add %edi,%eax - 6634a21d: 8b 3a mov (%rdx),%edi - 6634a21f: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634a223: c1 e7 07 shl $0x7,%edi - 6634a226: 01 f8 add %edi,%eax - 6634a228: 8b 3a mov (%rdx),%edi - 6634a22a: c1 e7 08 shl $0x8,%edi - 6634a22d: 01 c7 add %eax,%edi - 6634a22f: 48 63 ef movslq %edi,%rbp - 6634a232: 48 c1 e5 02 shl $0x2,%rbp - 6634a236: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634a23d: 00 00 00 - 6634a240: 85 ff test %edi,%edi - 6634a242: 78 05 js 6634a249 - 6634a244: 39 7e 38 cmp %edi,0x38(%rsi) - 6634a247: 7f 11 jg 6634a25a - 6634a249: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634a24f: 4c 89 ea mov %r13,%rdx - 6634a252: 4c 89 e1 mov %r12,%rcx - 6634a255: e8 b6 7f 00 00 callq 66352210 <_assert> - 6634a25a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634a25e: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634a262: 48 01 da add %rbx,%rdx - 6634a265: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634a268: 8b 0a mov (%rdx),%ecx - 6634a26a: 39 c8 cmp %ecx,%eax - 6634a26c: 74 6c je 6634a2da - 6634a26e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a272: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634a276: 41 89 c3 mov %eax,%r11d - 6634a279: 41 29 cb sub %ecx,%r11d - 6634a27c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634a280: 45 01 18 add %r11d,(%r8) - 6634a283: 89 02 mov %eax,(%rdx) - 6634a285: 31 d2 xor %edx,%edx - 6634a287: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634a28b: 45 8b 18 mov (%r8),%r11d - 6634a28e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a292: 45 85 db test %r11d,%r11d - 6634a295: 0f 9f c2 setg %dl - 6634a298: 3b 10 cmp (%rax),%edx - 6634a29a: 74 3e je 6634a2da - 6634a29c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634a2a0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a2a4: 44 8b 10 mov (%rax),%r10d - 6634a2a7: 45 85 d2 test %r10d,%r10d - 6634a2aa: 75 2e jne 6634a2da - 6634a2ac: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634a2b0: 48 8b 0d 79 d6 00 00 mov 0xd679(%rip),%rcx # 66357930 - 6634a2b7: 4c 8b 05 62 d6 00 00 mov 0xd662(%rip),%r8 # 66357920 - 6634a2be: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634a2c2: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634a2c6: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634a2cc: 48 63 01 movslq (%rcx),%rax - 6634a2cf: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634a2d3: 44 89 09 mov %r9d,(%rcx) - 6634a2d6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634a2da: 48 83 c3 04 add $0x4,%rbx - 6634a2de: 81 c7 00 02 00 00 add $0x200,%edi - 6634a2e4: 48 81 c5 00 08 00 00 add $0x800,%rbp - 6634a2eb: 48 81 fb e8 00 00 00 cmp $0xe8,%rbx - 6634a2f2: 0f 85 48 ff ff ff jne 6634a240 - 6634a2f8: 48 83 c4 28 add $0x28,%rsp - 6634a2fc: 5b pop %rbx - 6634a2fd: 5e pop %rsi - 6634a2fe: 5f pop %rdi - 6634a2ff: 5d pop %rbp - 6634a300: 41 5c pop %r12 - 6634a302: 41 5d pop %r13 - 6634a304: c3 retq - 6634a305: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634a309: 4c 8b 1d 10 d6 00 00 mov 0xd610(%rip),%r11 # 66357920 - 6634a310: 4c 8b 15 19 d6 00 00 mov 0xd619(%rip),%r10 # 66357930 - 6634a317: 48 8d 50 28 lea 0x28(%rax),%rdx - 6634a31b: b8 50 00 00 00 mov $0x50,%eax - 6634a320: 8b 0a mov (%rdx),%ecx - 6634a322: 85 c9 test %ecx,%ecx - 6634a324: 74 55 je 6634a37b - 6634a326: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a32a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634a32e: 41 29 08 sub %ecx,(%r8) - 6634a331: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634a337: 45 8b 00 mov (%r8),%r8d - 6634a33a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634a33e: 45 85 c0 test %r8d,%r8d - 6634a341: 41 0f 9f c0 setg %r8b - 6634a345: 45 0f b6 c0 movzbl %r8b,%r8d - 6634a349: 44 3b 01 cmp (%rcx),%r8d - 6634a34c: 74 2d je 6634a37b - 6634a34e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634a352: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634a356: 8b 09 mov (%rcx),%ecx - 6634a358: 85 c9 test %ecx,%ecx - 6634a35a: 75 1f jne 6634a37b - 6634a35c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634a360: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634a364: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634a368: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634a36e: 49 63 0a movslq (%r10),%rcx - 6634a371: 8d 59 01 lea 0x1(%rcx),%ebx - 6634a374: 41 89 1a mov %ebx,(%r10) - 6634a377: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634a37b: 48 83 c0 08 add $0x8,%rax - 6634a37f: 48 83 c2 04 add $0x4,%rdx - 6634a383: 48 3d d0 01 00 00 cmp $0x1d0,%rax - 6634a389: 75 95 jne 6634a320 - 6634a38b: 48 83 c4 28 add $0x28,%rsp - 6634a38f: 5b pop %rbx - 6634a390: 5e pop %rsi - 6634a391: 5f pop %rdi - 6634a392: 5d pop %rbp - 6634a393: 41 5c pop %r12 - 6634a395: 41 5d pop %r13 - 6634a397: c3 retq - 6634a398: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634a39f: 00 + 6634a20d: 85 c0 test %eax,%eax + 6634a20f: 75 31 jne 6634a242 + 6634a211: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634a215: 48 8b 0d 14 c7 00 00 mov 0xc714(%rip),%rcx # 66356930 + 6634a21c: 4c 8b 05 fd c6 00 00 mov 0xc6fd(%rip),%r8 # 66356920 + 6634a223: 48 8b 90 48 04 00 00 mov 0x448(%rax),%rdx + 6634a22a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a22e: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a234: 48 63 01 movslq (%rcx),%rax + 6634a237: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a23b: 44 89 09 mov %r9d,(%rcx) + 6634a23e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a242: c3 retq + 6634a243: ba 89 00 00 00 mov $0x89,%edx + 6634a248: e9 e3 71 ff ff jmpq 66341430 + 6634a24d: 0f 1f 00 nopl (%rax) -000000006634a3a0 : - 6634a3a0: 41 55 push %r13 - 6634a3a2: 41 54 push %r12 - 6634a3a4: 55 push %rbp - 6634a3a5: 57 push %rdi - 6634a3a6: 56 push %rsi - 6634a3a7: 53 push %rbx - 6634a3a8: 48 83 ec 28 sub $0x28,%rsp - 6634a3ac: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634a3b0: 49 8b 81 38 01 00 00 mov 0x138(%r9),%rax - 6634a3b7: 48 89 ce mov %rcx,%rsi - 6634a3ba: 8b 18 mov (%rax),%ebx - 6634a3bc: 85 db test %ebx,%ebx - 6634a3be: 0f 84 1c 01 00 00 je 6634a4e0 - 6634a3c4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634a3c8: bb 1c 00 00 00 mov $0x1c,%ebx - 6634a3cd: 4c 8d 2d 2c 9c 00 00 lea 0x9c2c(%rip),%r13 # 66354000 <.rdata> - 6634a3d4: 4c 8d 25 35 9c 00 00 lea 0x9c35(%rip),%r12 # 66354010 <.rdata+0x10> - 6634a3db: 8b 10 mov (%rax),%edx - 6634a3dd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a3e1: 8b 00 mov (%rax),%eax - 6634a3e3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a3e6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a3ea: 8b 12 mov (%rdx),%edx - 6634a3ec: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a3ef: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634a3f3: 8b 12 mov (%rdx),%edx - 6634a3f5: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634a3f8: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634a3fc: 8b 3a mov (%rdx),%edi - 6634a3fe: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634a402: c1 e7 04 shl $0x4,%edi - 6634a405: 01 f8 add %edi,%eax - 6634a407: 8b 3a mov (%rdx),%edi - 6634a409: c1 e7 05 shl $0x5,%edi - 6634a40c: 01 c7 add %eax,%edi - 6634a40e: 48 63 ef movslq %edi,%rbp - 6634a411: 48 c1 e5 02 shl $0x2,%rbp - 6634a415: 85 ff test %edi,%edi - 6634a417: 78 05 js 6634a41e - 6634a419: 39 7e 38 cmp %edi,0x38(%rsi) - 6634a41c: 7f 11 jg 6634a42f - 6634a41e: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634a424: 4c 89 ea mov %r13,%rdx - 6634a427: 4c 89 e1 mov %r12,%rcx - 6634a42a: e8 e1 7d 00 00 callq 66352210 <_assert> - 6634a42f: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634a433: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634a437: 48 01 da add %rbx,%rdx - 6634a43a: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634a43d: 8b 0a mov (%rdx),%ecx - 6634a43f: 39 c8 cmp %ecx,%eax - 6634a441: 74 6c je 6634a4af - 6634a443: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a447: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634a44b: 41 89 c3 mov %eax,%r11d - 6634a44e: 41 29 cb sub %ecx,%r11d - 6634a451: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634a455: 45 01 18 add %r11d,(%r8) - 6634a458: 89 02 mov %eax,(%rdx) - 6634a45a: 31 d2 xor %edx,%edx - 6634a45c: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634a460: 45 8b 18 mov (%r8),%r11d - 6634a463: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a467: 45 85 db test %r11d,%r11d - 6634a46a: 0f 9f c2 setg %dl - 6634a46d: 3b 10 cmp (%rax),%edx - 6634a46f: 74 3e je 6634a4af - 6634a471: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634a475: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a479: 44 8b 10 mov (%rax),%r10d - 6634a47c: 45 85 d2 test %r10d,%r10d - 6634a47f: 75 2e jne 6634a4af - 6634a481: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634a485: 48 8b 0d a4 d4 00 00 mov 0xd4a4(%rip),%rcx # 66357930 - 6634a48c: 4c 8b 05 8d d4 00 00 mov 0xd48d(%rip),%r8 # 66357920 - 6634a493: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634a497: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634a49b: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634a4a1: 48 63 01 movslq (%rcx),%rax - 6634a4a4: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634a4a8: 44 89 09 mov %r9d,(%rcx) - 6634a4ab: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634a4af: 48 83 c3 04 add $0x4,%rbx - 6634a4b3: 83 c7 40 add $0x40,%edi - 6634a4b6: 48 81 c5 00 01 00 00 add $0x100,%rbp - 6634a4bd: 48 81 fb 9c 00 00 00 cmp $0x9c,%rbx - 6634a4c4: 0f 85 4b ff ff ff jne 6634a415 - 6634a4ca: 48 83 c4 28 add $0x28,%rsp - 6634a4ce: 5b pop %rbx - 6634a4cf: 5e pop %rsi - 6634a4d0: 5f pop %rdi - 6634a4d1: 5d pop %rbp - 6634a4d2: 41 5c pop %r12 - 6634a4d4: 41 5d pop %r13 - 6634a4d6: c3 retq - 6634a4d7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634a4de: 00 00 - 6634a4e0: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634a4e4: 4c 8b 1d 35 d4 00 00 mov 0xd435(%rip),%r11 # 66357920 - 6634a4eb: 4c 8b 15 3e d4 00 00 mov 0xd43e(%rip),%r10 # 66357930 - 6634a4f2: 48 8d 50 1c lea 0x1c(%rax),%rdx - 6634a4f6: b8 38 00 00 00 mov $0x38,%eax - 6634a4fb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634a500: 8b 0a mov (%rdx),%ecx - 6634a502: 85 c9 test %ecx,%ecx - 6634a504: 74 55 je 6634a55b - 6634a506: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a50a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634a50e: 41 29 08 sub %ecx,(%r8) - 6634a511: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634a517: 45 8b 00 mov (%r8),%r8d - 6634a51a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634a51e: 45 85 c0 test %r8d,%r8d - 6634a521: 41 0f 9f c0 setg %r8b - 6634a525: 45 0f b6 c0 movzbl %r8b,%r8d - 6634a529: 44 3b 01 cmp (%rcx),%r8d - 6634a52c: 74 2d je 6634a55b - 6634a52e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634a532: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634a536: 8b 09 mov (%rcx),%ecx - 6634a538: 85 c9 test %ecx,%ecx - 6634a53a: 75 1f jne 6634a55b - 6634a53c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634a540: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634a544: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634a548: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634a54e: 49 63 0a movslq (%r10),%rcx - 6634a551: 8d 59 01 lea 0x1(%rcx),%ebx - 6634a554: 41 89 1a mov %ebx,(%r10) - 6634a557: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634a55b: 48 83 c0 08 add $0x8,%rax - 6634a55f: 48 83 c2 04 add $0x4,%rdx - 6634a563: 48 3d 38 01 00 00 cmp $0x138,%rax - 6634a569: 75 95 jne 6634a500 - 6634a56b: 48 83 c4 28 add $0x28,%rsp - 6634a56f: 5b pop %rbx - 6634a570: 5e pop %rsi - 6634a571: 5f pop %rdi - 6634a572: 5d pop %rbp - 6634a573: 41 5c pop %r12 - 6634a575: 41 5d pop %r13 - 6634a577: c3 retq - 6634a578: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634a57f: 00 +000000006634a250 : + 6634a250: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634a254: 48 8b 90 38 02 00 00 mov 0x238(%rax),%rdx + 6634a25b: 44 8b 0a mov (%rdx),%r9d + 6634a25e: 45 85 c9 test %r9d,%r9d + 6634a261: 0f 84 d9 00 00 00 je 6634a340 + 6634a267: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634a26b: 44 8b 02 mov (%rdx),%r8d + 6634a26e: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634a272: 8b 12 mov (%rdx),%edx + 6634a274: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 6634a278: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634a27c: 45 8b 00 mov (%r8),%r8d + 6634a27f: 42 8d 14 82 lea (%rdx,%r8,4),%edx + 6634a283: 4c 8b 40 20 mov 0x20(%rax),%r8 + 6634a287: 45 8b 00 mov (%r8),%r8d + 6634a28a: 46 8d 04 c2 lea (%rdx,%r8,8),%r8d + 6634a28e: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634a292: 8b 12 mov (%rdx),%edx + 6634a294: c1 e2 04 shl $0x4,%edx + 6634a297: 44 01 c2 add %r8d,%edx + 6634a29a: 4c 8b 40 30 mov 0x30(%rax),%r8 + 6634a29e: 45 8b 00 mov (%r8),%r8d + 6634a2a1: 41 c1 e0 05 shl $0x5,%r8d + 6634a2a5: 42 8d 54 02 07 lea 0x7(%rdx,%r8,1),%edx + 6634a2aa: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634a2ae: 48 63 d2 movslq %edx,%rdx + 6634a2b1: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634a2b5: 45 8b 88 20 01 00 00 mov 0x120(%r8),%r9d + 6634a2bc: 8b 12 mov (%rdx),%edx + 6634a2be: 44 39 ca cmp %r9d,%edx + 6634a2c1: 74 73 je 6634a336 + 6634a2c3: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634a2c7: 41 89 d3 mov %edx,%r11d + 6634a2ca: 45 29 cb sub %r9d,%r11d + 6634a2cd: 48 8b 80 40 02 00 00 mov 0x240(%rax),%rax + 6634a2d4: 4d 8b 92 40 02 00 00 mov 0x240(%r10),%r10 + 6634a2db: 45 01 1a add %r11d,(%r10) + 6634a2de: 41 89 90 20 01 00 00 mov %edx,0x120(%r8) + 6634a2e5: 31 d2 xor %edx,%edx + 6634a2e7: 45 8b 02 mov (%r10),%r8d + 6634a2ea: 45 85 c0 test %r8d,%r8d + 6634a2ed: 0f 9f c2 setg %dl + 6634a2f0: 3b 10 cmp (%rax),%edx + 6634a2f2: 74 42 je 6634a336 + 6634a2f4: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634a2f8: 48 8b 80 40 02 00 00 mov 0x240(%rax),%rax + 6634a2ff: 8b 00 mov (%rax),%eax + 6634a301: 85 c0 test %eax,%eax + 6634a303: 75 31 jne 6634a336 + 6634a305: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634a309: 48 8b 0d 20 c6 00 00 mov 0xc620(%rip),%rcx # 66356930 + 6634a310: 4c 8b 05 09 c6 00 00 mov 0xc609(%rip),%r8 # 66356920 + 6634a317: 48 8b 90 40 02 00 00 mov 0x240(%rax),%rdx + 6634a31e: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a322: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a328: 48 63 01 movslq (%rcx),%rax + 6634a32b: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a32f: 44 89 09 mov %r9d,(%rcx) + 6634a332: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a336: c3 retq + 6634a337: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634a33e: 00 00 + 6634a340: ba 48 00 00 00 mov $0x48,%edx + 6634a345: e9 e6 70 ff ff jmpq 66341430 + 6634a34a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -000000006634a580 : - 6634a580: 41 55 push %r13 - 6634a582: 41 54 push %r12 - 6634a584: 55 push %rbp - 6634a585: 57 push %rdi - 6634a586: 56 push %rsi - 6634a587: 53 push %rbx - 6634a588: 48 83 ec 28 sub $0x28,%rsp - 6634a58c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634a590: 49 8b 81 58 01 00 00 mov 0x158(%r9),%rax - 6634a597: 48 89 ce mov %rcx,%rsi - 6634a59a: 8b 18 mov (%rax),%ebx - 6634a59c: 85 db test %ebx,%ebx - 6634a59e: 0f 84 4c 01 00 00 je 6634a6f0 - 6634a5a4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634a5a8: bb 2c 00 00 00 mov $0x2c,%ebx - 6634a5ad: 4c 8d 2d 4c 9a 00 00 lea 0x9a4c(%rip),%r13 # 66354000 <.rdata> - 6634a5b4: 4c 8d 25 55 9a 00 00 lea 0x9a55(%rip),%r12 # 66354010 <.rdata+0x10> - 6634a5bb: 8b 10 mov (%rax),%edx - 6634a5bd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a5c1: 8b 00 mov (%rax),%eax - 6634a5c3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a5c6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a5ca: 8b 12 mov (%rdx),%edx - 6634a5cc: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a5cf: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634a5d3: 8b 12 mov (%rdx),%edx - 6634a5d5: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634a5d8: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634a5dc: 8b 3a mov (%rdx),%edi - 6634a5de: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634a5e2: c1 e7 04 shl $0x4,%edi - 6634a5e5: 01 f8 add %edi,%eax - 6634a5e7: 8b 3a mov (%rdx),%edi - 6634a5e9: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634a5ed: c1 e7 05 shl $0x5,%edi - 6634a5f0: 01 c7 add %eax,%edi - 6634a5f2: 49 8b 41 38 mov 0x38(%r9),%rax - 6634a5f6: 8b 00 mov (%rax),%eax - 6634a5f8: c1 e0 06 shl $0x6,%eax - 6634a5fb: 01 c7 add %eax,%edi - 6634a5fd: 49 8b 41 40 mov 0x40(%r9),%rax - 6634a601: 8b 00 mov (%rax),%eax - 6634a603: c1 e0 07 shl $0x7,%eax - 6634a606: 01 f8 add %edi,%eax - 6634a608: 8b 3a mov (%rdx),%edi - 6634a60a: 49 8b 51 50 mov 0x50(%r9),%rdx - 6634a60e: c1 e7 08 shl $0x8,%edi - 6634a611: 01 f8 add %edi,%eax - 6634a613: 8b 3a mov (%rdx),%edi - 6634a615: c1 e7 09 shl $0x9,%edi - 6634a618: 01 c7 add %eax,%edi - 6634a61a: 48 63 ef movslq %edi,%rbp - 6634a61d: 48 c1 e5 02 shl $0x2,%rbp - 6634a621: 85 ff test %edi,%edi - 6634a623: 78 05 js 6634a62a - 6634a625: 39 7e 38 cmp %edi,0x38(%rsi) - 6634a628: 7f 11 jg 6634a63b - 6634a62a: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634a630: 4c 89 ea mov %r13,%rdx - 6634a633: 4c 89 e1 mov %r12,%rcx - 6634a636: e8 d5 7b 00 00 callq 66352210 <_assert> - 6634a63b: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634a63f: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634a643: 48 01 da add %rbx,%rdx - 6634a646: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634a649: 8b 0a mov (%rdx),%ecx - 6634a64b: 39 c8 cmp %ecx,%eax - 6634a64d: 74 6c je 6634a6bb - 6634a64f: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a653: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634a657: 41 89 c3 mov %eax,%r11d - 6634a65a: 41 29 cb sub %ecx,%r11d - 6634a65d: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634a661: 45 01 18 add %r11d,(%r8) - 6634a664: 89 02 mov %eax,(%rdx) - 6634a666: 31 d2 xor %edx,%edx - 6634a668: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634a66c: 45 8b 18 mov (%r8),%r11d - 6634a66f: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a673: 45 85 db test %r11d,%r11d - 6634a676: 0f 9f c2 setg %dl - 6634a679: 3b 10 cmp (%rax),%edx - 6634a67b: 74 3e je 6634a6bb - 6634a67d: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634a681: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a685: 44 8b 10 mov (%rax),%r10d - 6634a688: 45 85 d2 test %r10d,%r10d - 6634a68b: 75 2e jne 6634a6bb - 6634a68d: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634a691: 48 8b 0d 98 d2 00 00 mov 0xd298(%rip),%rcx # 66357930 - 6634a698: 4c 8b 05 81 d2 00 00 mov 0xd281(%rip),%r8 # 66357920 - 6634a69f: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634a6a3: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634a6a7: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634a6ad: 48 63 01 movslq (%rcx),%rax - 6634a6b0: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634a6b4: 44 89 09 mov %r9d,(%rcx) - 6634a6b7: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634a6bb: 48 83 c3 04 add $0x4,%rbx - 6634a6bf: 81 c7 00 04 00 00 add $0x400,%edi - 6634a6c5: 48 81 c5 00 10 00 00 add $0x1000,%rbp - 6634a6cc: 48 81 fb ac 00 00 00 cmp $0xac,%rbx - 6634a6d3: 0f 85 48 ff ff ff jne 6634a621 - 6634a6d9: 48 83 c4 28 add $0x28,%rsp - 6634a6dd: 5b pop %rbx - 6634a6de: 5e pop %rsi - 6634a6df: 5f pop %rdi - 6634a6e0: 5d pop %rbp - 6634a6e1: 41 5c pop %r12 - 6634a6e3: 41 5d pop %r13 - 6634a6e5: c3 retq - 6634a6e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634a6ed: 00 00 00 - 6634a6f0: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634a6f4: 4c 8b 1d 25 d2 00 00 mov 0xd225(%rip),%r11 # 66357920 - 6634a6fb: 4c 8b 15 2e d2 00 00 mov 0xd22e(%rip),%r10 # 66357930 - 6634a702: 48 8d 50 2c lea 0x2c(%rax),%rdx - 6634a706: b8 58 00 00 00 mov $0x58,%eax - 6634a70b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634a710: 8b 0a mov (%rdx),%ecx - 6634a712: 85 c9 test %ecx,%ecx - 6634a714: 74 55 je 6634a76b - 6634a716: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a71a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634a71e: 41 29 08 sub %ecx,(%r8) - 6634a721: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634a727: 45 8b 00 mov (%r8),%r8d - 6634a72a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634a72e: 45 85 c0 test %r8d,%r8d - 6634a731: 41 0f 9f c0 setg %r8b - 6634a735: 45 0f b6 c0 movzbl %r8b,%r8d - 6634a739: 44 3b 01 cmp (%rcx),%r8d - 6634a73c: 74 2d je 6634a76b - 6634a73e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634a742: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634a746: 8b 09 mov (%rcx),%ecx - 6634a748: 85 c9 test %ecx,%ecx - 6634a74a: 75 1f jne 6634a76b - 6634a74c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634a750: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634a754: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634a758: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634a75e: 49 63 0a movslq (%r10),%rcx - 6634a761: 8d 59 01 lea 0x1(%rcx),%ebx - 6634a764: 41 89 1a mov %ebx,(%r10) - 6634a767: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634a76b: 48 83 c0 08 add $0x8,%rax - 6634a76f: 48 83 c2 04 add $0x4,%rdx - 6634a773: 48 3d 58 01 00 00 cmp $0x158,%rax - 6634a779: 75 95 jne 6634a710 - 6634a77b: 48 83 c4 28 add $0x28,%rsp - 6634a77f: 5b pop %rbx - 6634a780: 5e pop %rsi - 6634a781: 5f pop %rdi - 6634a782: 5d pop %rbp - 6634a783: 41 5c pop %r12 - 6634a785: 41 5d pop %r13 - 6634a787: c3 retq - 6634a788: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634a78f: 00 +000000006634a350 : + 6634a350: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634a354: 48 8b 50 60 mov 0x60(%rax),%rdx + 6634a358: 44 8b 0a mov (%rdx),%r9d + 6634a35b: 45 85 c9 test %r9d,%r9d + 6634a35e: 0f 84 9c 00 00 00 je 6634a400 + 6634a364: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634a368: 44 8b 02 mov (%rdx),%r8d + 6634a36b: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634a36f: 8b 12 mov (%rdx),%edx + 6634a371: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 6634a375: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634a379: 45 8b 00 mov (%r8),%r8d + 6634a37c: 42 8d 54 82 04 lea 0x4(%rdx,%r8,4),%edx + 6634a381: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634a385: 48 63 d2 movslq %edx,%rdx + 6634a388: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634a38c: 45 8b 48 34 mov 0x34(%r8),%r9d + 6634a390: 8b 12 mov (%rdx),%edx + 6634a392: 44 39 ca cmp %r9d,%edx + 6634a395: 74 64 je 6634a3fb + 6634a397: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634a39b: 41 89 d3 mov %edx,%r11d + 6634a39e: 45 29 cb sub %r9d,%r11d + 6634a3a1: 48 8b 40 68 mov 0x68(%rax),%rax + 6634a3a5: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634a3a9: 45 01 1a add %r11d,(%r10) + 6634a3ac: 41 89 50 34 mov %edx,0x34(%r8) + 6634a3b0: 31 d2 xor %edx,%edx + 6634a3b2: 45 8b 02 mov (%r10),%r8d + 6634a3b5: 45 85 c0 test %r8d,%r8d + 6634a3b8: 0f 9f c2 setg %dl + 6634a3bb: 3b 10 cmp (%rax),%edx + 6634a3bd: 74 3c je 6634a3fb + 6634a3bf: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634a3c3: 48 8b 40 68 mov 0x68(%rax),%rax + 6634a3c7: 8b 00 mov (%rax),%eax + 6634a3c9: 85 c0 test %eax,%eax + 6634a3cb: 75 2e jne 6634a3fb + 6634a3cd: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634a3d1: 48 8b 0d 58 c5 00 00 mov 0xc558(%rip),%rcx # 66356930 + 6634a3d8: 4c 8b 05 41 c5 00 00 mov 0xc541(%rip),%r8 # 66356920 + 6634a3df: 48 8b 50 68 mov 0x68(%rax),%rdx + 6634a3e3: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a3e7: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a3ed: 48 63 01 movslq (%rcx),%rax + 6634a3f0: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a3f4: 44 89 09 mov %r9d,(%rcx) + 6634a3f7: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a3fb: c3 retq + 6634a3fc: 0f 1f 40 00 nopl 0x0(%rax) + 6634a400: ba 0d 00 00 00 mov $0xd,%edx + 6634a405: e9 26 70 ff ff jmpq 66341430 + 6634a40a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -000000006634a790 : - 6634a790: 41 55 push %r13 - 6634a792: 41 54 push %r12 - 6634a794: 55 push %rbp - 6634a795: 57 push %rdi - 6634a796: 56 push %rsi - 6634a797: 53 push %rbx - 6634a798: 48 83 ec 28 sub $0x28,%rsp - 6634a79c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634a7a0: 49 8b 81 68 01 00 00 mov 0x168(%r9),%rax - 6634a7a7: 48 89 ce mov %rcx,%rsi - 6634a7aa: 8b 18 mov (%rax),%ebx - 6634a7ac: 85 db test %ebx,%ebx - 6634a7ae: 0f 84 61 01 00 00 je 6634a915 - 6634a7b4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634a7b8: bb 34 00 00 00 mov $0x34,%ebx - 6634a7bd: 4c 8d 2d 3c 98 00 00 lea 0x983c(%rip),%r13 # 66354000 <.rdata> - 6634a7c4: 4c 8d 25 45 98 00 00 lea 0x9845(%rip),%r12 # 66354010 <.rdata+0x10> - 6634a7cb: 8b 10 mov (%rax),%edx - 6634a7cd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a7d1: 8b 00 mov (%rax),%eax - 6634a7d3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a7d6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a7da: 8b 12 mov (%rdx),%edx - 6634a7dc: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a7df: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634a7e3: 8b 12 mov (%rdx),%edx - 6634a7e5: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634a7e8: 49 8b 41 28 mov 0x28(%r9),%rax - 6634a7ec: 49 8b 51 38 mov 0x38(%r9),%rdx - 6634a7f0: 8b 00 mov (%rax),%eax - 6634a7f2: c1 e0 04 shl $0x4,%eax - 6634a7f5: 01 c7 add %eax,%edi - 6634a7f7: 49 8b 41 30 mov 0x30(%r9),%rax - 6634a7fb: 8b 00 mov (%rax),%eax - 6634a7fd: c1 e0 05 shl $0x5,%eax - 6634a800: 01 f8 add %edi,%eax - 6634a802: 8b 3a mov (%rdx),%edi - 6634a804: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634a808: c1 e7 06 shl $0x6,%edi - 6634a80b: 01 f8 add %edi,%eax - 6634a80d: 8b 3a mov (%rdx),%edi - 6634a80f: 49 8b 51 58 mov 0x58(%r9),%rdx - 6634a813: c1 e7 07 shl $0x7,%edi - 6634a816: 01 c7 add %eax,%edi - 6634a818: 49 8b 41 48 mov 0x48(%r9),%rax - 6634a81c: 8b 00 mov (%rax),%eax - 6634a81e: c1 e0 08 shl $0x8,%eax - 6634a821: 01 c7 add %eax,%edi - 6634a823: 49 8b 41 50 mov 0x50(%r9),%rax - 6634a827: 8b 00 mov (%rax),%eax - 6634a829: c1 e0 09 shl $0x9,%eax - 6634a82c: 01 f8 add %edi,%eax - 6634a82e: 8b 3a mov (%rdx),%edi - 6634a830: 49 8b 51 60 mov 0x60(%r9),%rdx - 6634a834: c1 e7 0a shl $0xa,%edi - 6634a837: 01 f8 add %edi,%eax - 6634a839: 8b 3a mov (%rdx),%edi - 6634a83b: c1 e7 0b shl $0xb,%edi - 6634a83e: 01 c7 add %eax,%edi - 6634a840: 48 63 ef movslq %edi,%rbp - 6634a843: 48 c1 e5 02 shl $0x2,%rbp - 6634a847: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634a84e: 00 00 - 6634a850: 85 ff test %edi,%edi - 6634a852: 78 05 js 6634a859 - 6634a854: 39 7e 38 cmp %edi,0x38(%rsi) - 6634a857: 7f 11 jg 6634a86a - 6634a859: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634a85f: 4c 89 ea mov %r13,%rdx - 6634a862: 4c 89 e1 mov %r12,%rcx - 6634a865: e8 a6 79 00 00 callq 66352210 <_assert> - 6634a86a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634a86e: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634a872: 48 01 da add %rbx,%rdx - 6634a875: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634a878: 8b 0a mov (%rdx),%ecx - 6634a87a: 39 c8 cmp %ecx,%eax - 6634a87c: 74 6c je 6634a8ea - 6634a87e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a882: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634a886: 41 89 c3 mov %eax,%r11d - 6634a889: 41 29 cb sub %ecx,%r11d - 6634a88c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634a890: 45 01 18 add %r11d,(%r8) - 6634a893: 89 02 mov %eax,(%rdx) - 6634a895: 31 d2 xor %edx,%edx - 6634a897: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634a89b: 45 8b 18 mov (%r8),%r11d - 6634a89e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a8a2: 45 85 db test %r11d,%r11d - 6634a8a5: 0f 9f c2 setg %dl - 6634a8a8: 3b 10 cmp (%rax),%edx - 6634a8aa: 74 3e je 6634a8ea - 6634a8ac: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634a8b0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634a8b4: 44 8b 10 mov (%rax),%r10d - 6634a8b7: 45 85 d2 test %r10d,%r10d - 6634a8ba: 75 2e jne 6634a8ea - 6634a8bc: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634a8c0: 48 8b 0d 69 d0 00 00 mov 0xd069(%rip),%rcx # 66357930 - 6634a8c7: 4c 8b 05 52 d0 00 00 mov 0xd052(%rip),%r8 # 66357920 - 6634a8ce: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634a8d2: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634a8d6: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634a8dc: 48 63 01 movslq (%rcx),%rax - 6634a8df: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634a8e3: 44 89 09 mov %r9d,(%rcx) - 6634a8e6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634a8ea: 48 83 c3 04 add $0x4,%rbx - 6634a8ee: 81 c7 00 10 00 00 add $0x1000,%edi - 6634a8f4: 48 81 c5 00 40 00 00 add $0x4000,%rbp - 6634a8fb: 48 81 fb b4 00 00 00 cmp $0xb4,%rbx - 6634a902: 0f 85 48 ff ff ff jne 6634a850 - 6634a908: 48 83 c4 28 add $0x28,%rsp - 6634a90c: 5b pop %rbx - 6634a90d: 5e pop %rsi - 6634a90e: 5f pop %rdi - 6634a90f: 5d pop %rbp - 6634a910: 41 5c pop %r12 - 6634a912: 41 5d pop %r13 - 6634a914: c3 retq - 6634a915: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634a919: 4c 8b 1d 00 d0 00 00 mov 0xd000(%rip),%r11 # 66357920 - 6634a920: 4c 8b 15 09 d0 00 00 mov 0xd009(%rip),%r10 # 66357930 - 6634a927: 48 8d 50 34 lea 0x34(%rax),%rdx - 6634a92b: b8 68 00 00 00 mov $0x68,%eax - 6634a930: 8b 0a mov (%rdx),%ecx - 6634a932: 85 c9 test %ecx,%ecx - 6634a934: 74 55 je 6634a98b - 6634a936: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634a93a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634a93e: 41 29 08 sub %ecx,(%r8) - 6634a941: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634a947: 45 8b 00 mov (%r8),%r8d - 6634a94a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634a94e: 45 85 c0 test %r8d,%r8d - 6634a951: 41 0f 9f c0 setg %r8b - 6634a955: 45 0f b6 c0 movzbl %r8b,%r8d - 6634a959: 44 3b 01 cmp (%rcx),%r8d - 6634a95c: 74 2d je 6634a98b - 6634a95e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634a962: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634a966: 8b 09 mov (%rcx),%ecx - 6634a968: 85 c9 test %ecx,%ecx - 6634a96a: 75 1f jne 6634a98b - 6634a96c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634a970: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634a974: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634a978: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634a97e: 49 63 0a movslq (%r10),%rcx - 6634a981: 8d 59 01 lea 0x1(%rcx),%ebx - 6634a984: 41 89 1a mov %ebx,(%r10) - 6634a987: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634a98b: 48 83 c0 08 add $0x8,%rax - 6634a98f: 48 83 c2 04 add $0x4,%rdx - 6634a993: 48 3d 68 01 00 00 cmp $0x168,%rax - 6634a999: 75 95 jne 6634a930 - 6634a99b: 48 83 c4 28 add $0x28,%rsp - 6634a99f: 5b pop %rbx - 6634a9a0: 5e pop %rsi - 6634a9a1: 5f pop %rdi - 6634a9a2: 5d pop %rbp - 6634a9a3: 41 5c pop %r12 - 6634a9a5: 41 5d pop %r13 - 6634a9a7: c3 retq - 6634a9a8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634a9af: 00 +000000006634a410 : + 6634a410: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634a414: 48 8b 90 48 08 00 00 mov 0x848(%rax),%rdx + 6634a41b: 44 8b 0a mov (%rdx),%r9d + 6634a41e: 45 85 c9 test %r9d,%r9d + 6634a421: 0f 84 ea 00 00 00 je 6634a511 + 6634a427: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634a42b: 44 8b 02 mov (%rdx),%r8d + 6634a42e: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634a432: 8b 12 mov (%rdx),%edx + 6634a434: 42 8d 14 42 lea (%rdx,%r8,2),%edx + 6634a438: 4c 8b 40 18 mov 0x18(%rax),%r8 + 6634a43c: 45 8b 00 mov (%r8),%r8d + 6634a43f: 42 8d 14 82 lea (%rdx,%r8,4),%edx + 6634a443: 4c 8b 40 20 mov 0x20(%rax),%r8 + 6634a447: 45 8b 00 mov (%r8),%r8d + 6634a44a: 42 8d 14 c2 lea (%rdx,%r8,8),%edx + 6634a44e: 4c 8b 40 28 mov 0x28(%rax),%r8 + 6634a452: 45 8b 00 mov (%r8),%r8d + 6634a455: 41 c1 e0 04 shl $0x4,%r8d + 6634a459: 41 01 d0 add %edx,%r8d + 6634a45c: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634a460: 8b 12 mov (%rdx),%edx + 6634a462: c1 e2 05 shl $0x5,%edx + 6634a465: 41 01 d0 add %edx,%r8d + 6634a468: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634a46c: 8b 12 mov (%rdx),%edx + 6634a46e: c1 e2 06 shl $0x6,%edx + 6634a471: 44 01 c2 add %r8d,%edx + 6634a474: 4c 8b 40 40 mov 0x40(%rax),%r8 + 6634a478: 45 8b 00 mov (%r8),%r8d + 6634a47b: 41 c1 e0 07 shl $0x7,%r8d + 6634a47f: 42 8d 54 02 09 lea 0x9(%rdx,%r8,1),%edx + 6634a484: 4c 8b 41 08 mov 0x8(%rcx),%r8 + 6634a488: 48 63 d2 movslq %edx,%rdx + 6634a48b: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx + 6634a48f: 45 8b 88 28 04 00 00 mov 0x428(%r8),%r9d + 6634a496: 8b 12 mov (%rdx),%edx + 6634a498: 44 39 ca cmp %r9d,%edx + 6634a49b: 74 73 je 6634a510 + 6634a49d: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634a4a1: 41 89 d3 mov %edx,%r11d + 6634a4a4: 45 29 cb sub %r9d,%r11d + 6634a4a7: 48 8b 80 50 08 00 00 mov 0x850(%rax),%rax + 6634a4ae: 4d 8b 92 50 08 00 00 mov 0x850(%r10),%r10 + 6634a4b5: 45 01 1a add %r11d,(%r10) + 6634a4b8: 41 89 90 28 04 00 00 mov %edx,0x428(%r8) + 6634a4bf: 31 d2 xor %edx,%edx + 6634a4c1: 45 8b 02 mov (%r10),%r8d + 6634a4c4: 45 85 c0 test %r8d,%r8d + 6634a4c7: 0f 9f c2 setg %dl + 6634a4ca: 3b 10 cmp (%rax),%edx + 6634a4cc: 74 42 je 6634a510 + 6634a4ce: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634a4d2: 48 8b 80 50 08 00 00 mov 0x850(%rax),%rax + 6634a4d9: 8b 00 mov (%rax),%eax + 6634a4db: 85 c0 test %eax,%eax + 6634a4dd: 75 31 jne 6634a510 + 6634a4df: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634a4e3: 48 8b 0d 46 c4 00 00 mov 0xc446(%rip),%rcx # 66356930 + 6634a4ea: 4c 8b 05 2f c4 00 00 mov 0xc42f(%rip),%r8 # 66356920 + 6634a4f1: 48 8b 90 50 08 00 00 mov 0x850(%rax),%rdx + 6634a4f8: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634a4fc: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634a502: 48 63 01 movslq (%rcx),%rax + 6634a505: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634a509: 44 89 09 mov %r9d,(%rcx) + 6634a50c: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634a510: c3 retq + 6634a511: ba 0a 01 00 00 mov $0x10a,%edx + 6634a516: e9 15 6f ff ff jmpq 66341430 + 6634a51b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) -000000006634a9b0 : - 6634a9b0: 41 55 push %r13 - 6634a9b2: 41 54 push %r12 - 6634a9b4: 55 push %rbp - 6634a9b5: 57 push %rdi - 6634a9b6: 56 push %rsi - 6634a9b7: 53 push %rbx - 6634a9b8: 48 83 ec 28 sub $0x28,%rsp - 6634a9bc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634a9c0: 49 8b 81 48 01 00 00 mov 0x148(%r9),%rax - 6634a9c7: 48 89 ce mov %rcx,%rsi - 6634a9ca: 8b 18 mov (%rax),%ebx - 6634a9cc: 85 db test %ebx,%ebx - 6634a9ce: 0f 84 31 01 00 00 je 6634ab05 - 6634a9d4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634a9d8: bb 24 00 00 00 mov $0x24,%ebx - 6634a9dd: 4c 8d 2d 1c 96 00 00 lea 0x961c(%rip),%r13 # 66354000 <.rdata> - 6634a9e4: 4c 8d 25 25 96 00 00 lea 0x9625(%rip),%r12 # 66354010 <.rdata+0x10> - 6634a9eb: 8b 10 mov (%rax),%edx - 6634a9ed: 49 8b 41 08 mov 0x8(%r9),%rax - 6634a9f1: 8b 00 mov (%rax),%eax - 6634a9f3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634a9f6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634a9fa: 8b 12 mov (%rdx),%edx - 6634a9fc: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634a9ff: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634aa03: 8b 12 mov (%rdx),%edx - 6634aa05: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634aa08: 49 8b 41 28 mov 0x28(%r9),%rax - 6634aa0c: 49 8b 51 38 mov 0x38(%r9),%rdx - 6634aa10: 8b 00 mov (%rax),%eax - 6634aa12: c1 e0 04 shl $0x4,%eax - 6634aa15: 01 c7 add %eax,%edi - 6634aa17: 49 8b 41 30 mov 0x30(%r9),%rax - 6634aa1b: 8b 00 mov (%rax),%eax - 6634aa1d: c1 e0 05 shl $0x5,%eax - 6634aa20: 01 f8 add %edi,%eax - 6634aa22: 8b 3a mov (%rdx),%edi - 6634aa24: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634aa28: c1 e7 06 shl $0x6,%edi - 6634aa2b: 01 f8 add %edi,%eax - 6634aa2d: 8b 3a mov (%rdx),%edi - 6634aa2f: c1 e7 07 shl $0x7,%edi - 6634aa32: 01 c7 add %eax,%edi - 6634aa34: 48 63 ef movslq %edi,%rbp - 6634aa37: 48 c1 e5 02 shl $0x2,%rbp - 6634aa3b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634aa40: 85 ff test %edi,%edi - 6634aa42: 78 05 js 6634aa49 - 6634aa44: 39 7e 38 cmp %edi,0x38(%rsi) - 6634aa47: 7f 11 jg 6634aa5a - 6634aa49: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634aa4f: 4c 89 ea mov %r13,%rdx - 6634aa52: 4c 89 e1 mov %r12,%rcx - 6634aa55: e8 b6 77 00 00 callq 66352210 <_assert> - 6634aa5a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634aa5e: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634aa62: 48 01 da add %rbx,%rdx - 6634aa65: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634aa68: 8b 0a mov (%rdx),%ecx - 6634aa6a: 39 c8 cmp %ecx,%eax - 6634aa6c: 74 6c je 6634aada - 6634aa6e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634aa72: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634aa76: 41 89 c3 mov %eax,%r11d - 6634aa79: 41 29 cb sub %ecx,%r11d - 6634aa7c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634aa80: 45 01 18 add %r11d,(%r8) - 6634aa83: 89 02 mov %eax,(%rdx) - 6634aa85: 31 d2 xor %edx,%edx - 6634aa87: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634aa8b: 45 8b 18 mov (%r8),%r11d - 6634aa8e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634aa92: 45 85 db test %r11d,%r11d - 6634aa95: 0f 9f c2 setg %dl - 6634aa98: 3b 10 cmp (%rax),%edx - 6634aa9a: 74 3e je 6634aada - 6634aa9c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634aaa0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634aaa4: 44 8b 10 mov (%rax),%r10d - 6634aaa7: 45 85 d2 test %r10d,%r10d - 6634aaaa: 75 2e jne 6634aada - 6634aaac: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634aab0: 48 8b 0d 79 ce 00 00 mov 0xce79(%rip),%rcx # 66357930 - 6634aab7: 4c 8b 05 62 ce 00 00 mov 0xce62(%rip),%r8 # 66357920 - 6634aabe: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634aac2: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634aac6: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634aacc: 48 63 01 movslq (%rcx),%rax - 6634aacf: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634aad3: 44 89 09 mov %r9d,(%rcx) - 6634aad6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634aada: 48 83 c3 04 add $0x4,%rbx - 6634aade: 81 c7 00 01 00 00 add $0x100,%edi - 6634aae4: 48 81 c5 00 04 00 00 add $0x400,%rbp - 6634aaeb: 48 81 fb a4 00 00 00 cmp $0xa4,%rbx - 6634aaf2: 0f 85 48 ff ff ff jne 6634aa40 - 6634aaf8: 48 83 c4 28 add $0x28,%rsp - 6634aafc: 5b pop %rbx - 6634aafd: 5e pop %rsi - 6634aafe: 5f pop %rdi - 6634aaff: 5d pop %rbp - 6634ab00: 41 5c pop %r12 - 6634ab02: 41 5d pop %r13 - 6634ab04: c3 retq - 6634ab05: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634ab09: 4c 8b 1d 10 ce 00 00 mov 0xce10(%rip),%r11 # 66357920 - 6634ab10: 4c 8b 15 19 ce 00 00 mov 0xce19(%rip),%r10 # 66357930 - 6634ab17: 48 8d 50 24 lea 0x24(%rax),%rdx - 6634ab1b: b8 48 00 00 00 mov $0x48,%eax - 6634ab20: 8b 0a mov (%rdx),%ecx - 6634ab22: 85 c9 test %ecx,%ecx - 6634ab24: 74 55 je 6634ab7b - 6634ab26: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634ab2a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634ab2e: 41 29 08 sub %ecx,(%r8) - 6634ab31: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634ab37: 45 8b 00 mov (%r8),%r8d - 6634ab3a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634ab3e: 45 85 c0 test %r8d,%r8d - 6634ab41: 41 0f 9f c0 setg %r8b - 6634ab45: 45 0f b6 c0 movzbl %r8b,%r8d - 6634ab49: 44 3b 01 cmp (%rcx),%r8d - 6634ab4c: 74 2d je 6634ab7b - 6634ab4e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634ab52: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634ab56: 8b 09 mov (%rcx),%ecx - 6634ab58: 85 c9 test %ecx,%ecx - 6634ab5a: 75 1f jne 6634ab7b - 6634ab5c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634ab60: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634ab64: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634ab68: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634ab6e: 49 63 0a movslq (%r10),%rcx - 6634ab71: 8d 59 01 lea 0x1(%rcx),%ebx - 6634ab74: 41 89 1a mov %ebx,(%r10) - 6634ab77: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634ab7b: 48 83 c0 08 add $0x8,%rax - 6634ab7f: 48 83 c2 04 add $0x4,%rdx - 6634ab83: 48 3d 48 01 00 00 cmp $0x148,%rax - 6634ab89: 75 95 jne 6634ab20 - 6634ab8b: 48 83 c4 28 add $0x28,%rsp - 6634ab8f: 5b pop %rbx - 6634ab90: 5e pop %rsi - 6634ab91: 5f pop %rdi - 6634ab92: 5d pop %rbp - 6634ab93: 41 5c pop %r12 - 6634ab95: 41 5d pop %r13 - 6634ab97: c3 retq - 6634ab98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634ab9f: 00 +000000006634a520 : + 6634a520: 41 55 push %r13 + 6634a522: 41 54 push %r12 + 6634a524: 55 push %rbp + 6634a525: 57 push %rdi + 6634a526: 56 push %rsi + 6634a527: 53 push %rbx + 6634a528: 48 83 ec 28 sub $0x28,%rsp + 6634a52c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634a530: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax + 6634a537: 48 89 cb mov %rcx,%rbx + 6634a53a: 44 8b 10 mov (%rax),%r10d + 6634a53d: 45 85 d2 test %r10d,%r10d + 6634a540: 0f 84 aa 00 00 00 je 6634a5f0 + 6634a546: 49 8b 41 10 mov 0x10(%r9),%rax + 6634a54a: bf 07 00 00 00 mov $0x7,%edi + 6634a54f: 4c 8d 2d aa 8a 00 00 lea 0x8aaa(%rip),%r13 # 66353000 <.rdata> + 6634a556: 4c 8d 25 b3 8a 00 00 lea 0x8ab3(%rip),%r12 # 66353010 <.rdata+0x10> + 6634a55d: 8b 10 mov (%rax),%edx + 6634a55f: 49 8b 41 08 mov 0x8(%r9),%rax + 6634a563: 8b 00 mov (%rax),%eax + 6634a565: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634a568: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634a56c: 8b 12 mov (%rdx),%edx + 6634a56e: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634a571: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634a575: 8b 12 mov (%rdx),%edx + 6634a577: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634a57a: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634a57e: 8b 32 mov (%rdx),%esi + 6634a580: 49 8b 51 30 mov 0x30(%r9),%rdx + 6634a584: c1 e6 04 shl $0x4,%esi + 6634a587: 01 f0 add %esi,%eax + 6634a589: 8b 32 mov (%rdx),%esi + 6634a58b: c1 e6 05 shl $0x5,%esi + 6634a58e: 01 c6 add %eax,%esi + 6634a590: 48 63 ee movslq %esi,%rbp + 6634a593: 48 c1 e5 02 shl $0x2,%rbp + 6634a597: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634a59e: 00 00 + 6634a5a0: 85 f6 test %esi,%esi + 6634a5a2: 78 05 js 6634a5a9 + 6634a5a4: 3b 73 38 cmp 0x38(%rbx),%esi + 6634a5a7: 7c 11 jl 6634a5ba + 6634a5a9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634a5af: 4c 89 ea mov %r13,%rdx + 6634a5b2: 4c 89 e1 mov %r12,%rcx + 6634a5b5: e8 46 6a 00 00 callq 66351000 <_assert> + 6634a5ba: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634a5be: 89 fa mov %edi,%edx + 6634a5c0: 48 89 d9 mov %rbx,%rcx + 6634a5c3: 83 c7 01 add $0x1,%edi + 6634a5c6: 83 c6 40 add $0x40,%esi + 6634a5c9: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634a5cd: 48 81 c5 00 01 00 00 add $0x100,%rbp + 6634a5d4: e8 d7 6d ff ff callq 663413b0 + 6634a5d9: 83 ff 17 cmp $0x17,%edi + 6634a5dc: 75 c2 jne 6634a5a0 + 6634a5de: 48 83 c4 28 add $0x28,%rsp + 6634a5e2: 5b pop %rbx + 6634a5e3: 5e pop %rsi + 6634a5e4: 5f pop %rdi + 6634a5e5: 5d pop %rbp + 6634a5e6: 41 5c pop %r12 + 6634a5e8: 41 5d pop %r13 + 6634a5ea: c3 retq + 6634a5eb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634a5f0: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634a5f4: 4c 8b 1d 25 c3 00 00 mov 0xc325(%rip),%r11 # 66356920 + 6634a5fb: 4c 8b 15 2e c3 00 00 mov 0xc32e(%rip),%r10 # 66356930 + 6634a602: 48 8d 50 1c lea 0x1c(%rax),%rdx + 6634a606: b8 38 00 00 00 mov $0x38,%eax + 6634a60b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634a610: 8b 0a mov (%rdx),%ecx + 6634a612: 85 c9 test %ecx,%ecx + 6634a614: 74 55 je 6634a66b + 6634a616: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634a61a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634a61e: 41 29 08 sub %ecx,(%r8) + 6634a621: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634a627: 45 8b 00 mov (%r8),%r8d + 6634a62a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634a62e: 45 85 c0 test %r8d,%r8d + 6634a631: 41 0f 9f c0 setg %r8b + 6634a635: 45 0f b6 c0 movzbl %r8b,%r8d + 6634a639: 44 3b 01 cmp (%rcx),%r8d + 6634a63c: 74 2d je 6634a66b + 6634a63e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634a642: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634a646: 8b 09 mov (%rcx),%ecx + 6634a648: 85 c9 test %ecx,%ecx + 6634a64a: 75 1f jne 6634a66b + 6634a64c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634a650: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634a654: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634a658: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634a65e: 49 63 0a movslq (%r10),%rcx + 6634a661: 8d 71 01 lea 0x1(%rcx),%esi + 6634a664: 41 89 32 mov %esi,(%r10) + 6634a667: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634a66b: 48 83 c0 08 add $0x8,%rax + 6634a66f: 48 83 c2 04 add $0x4,%rdx + 6634a673: 48 3d b8 00 00 00 cmp $0xb8,%rax + 6634a679: 75 95 jne 6634a610 + 6634a67b: 48 83 c4 28 add $0x28,%rsp + 6634a67f: 5b pop %rbx + 6634a680: 5e pop %rsi + 6634a681: 5f pop %rdi + 6634a682: 5d pop %rbp + 6634a683: 41 5c pop %r12 + 6634a685: 41 5d pop %r13 + 6634a687: c3 retq + 6634a688: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634a68f: 00 -000000006634aba0 : - 6634aba0: 41 55 push %r13 - 6634aba2: 41 54 push %r12 - 6634aba4: 55 push %rbp - 6634aba5: 57 push %rdi - 6634aba6: 56 push %rsi - 6634aba7: 53 push %rbx - 6634aba8: 48 83 ec 28 sub $0x28,%rsp - 6634abac: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634abb0: 49 8b 81 50 01 00 00 mov 0x150(%r9),%rax - 6634abb7: 48 89 ce mov %rcx,%rsi - 6634abba: 8b 18 mov (%rax),%ebx - 6634abbc: 85 db test %ebx,%ebx - 6634abbe: 0f 84 41 01 00 00 je 6634ad05 - 6634abc4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634abc8: bb 28 00 00 00 mov $0x28,%ebx - 6634abcd: 4c 8d 2d 2c 94 00 00 lea 0x942c(%rip),%r13 # 66354000 <.rdata> - 6634abd4: 4c 8d 25 35 94 00 00 lea 0x9435(%rip),%r12 # 66354010 <.rdata+0x10> - 6634abdb: 8b 10 mov (%rax),%edx - 6634abdd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634abe1: 8b 00 mov (%rax),%eax - 6634abe3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634abe6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634abea: 8b 12 mov (%rdx),%edx - 6634abec: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634abef: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634abf3: 8b 12 mov (%rdx),%edx - 6634abf5: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634abf8: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634abfc: 8b 3a mov (%rdx),%edi - 6634abfe: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634ac02: c1 e7 04 shl $0x4,%edi - 6634ac05: 01 c7 add %eax,%edi - 6634ac07: 49 8b 41 30 mov 0x30(%r9),%rax - 6634ac0b: 8b 00 mov (%rax),%eax - 6634ac0d: c1 e0 05 shl $0x5,%eax - 6634ac10: 01 c7 add %eax,%edi - 6634ac12: 49 8b 41 38 mov 0x38(%r9),%rax - 6634ac16: 8b 00 mov (%rax),%eax - 6634ac18: c1 e0 06 shl $0x6,%eax - 6634ac1b: 01 f8 add %edi,%eax - 6634ac1d: 8b 3a mov (%rdx),%edi - 6634ac1f: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634ac23: c1 e7 07 shl $0x7,%edi - 6634ac26: 01 f8 add %edi,%eax - 6634ac28: 8b 3a mov (%rdx),%edi - 6634ac2a: c1 e7 08 shl $0x8,%edi - 6634ac2d: 01 c7 add %eax,%edi - 6634ac2f: 48 63 ef movslq %edi,%rbp - 6634ac32: 48 c1 e5 02 shl $0x2,%rbp - 6634ac36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634ac3d: 00 00 00 - 6634ac40: 85 ff test %edi,%edi - 6634ac42: 78 05 js 6634ac49 - 6634ac44: 39 7e 38 cmp %edi,0x38(%rsi) - 6634ac47: 7f 11 jg 6634ac5a - 6634ac49: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634ac4f: 4c 89 ea mov %r13,%rdx - 6634ac52: 4c 89 e1 mov %r12,%rcx - 6634ac55: e8 b6 75 00 00 callq 66352210 <_assert> - 6634ac5a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634ac5e: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634ac62: 48 01 da add %rbx,%rdx - 6634ac65: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634ac68: 8b 0a mov (%rdx),%ecx - 6634ac6a: 39 c8 cmp %ecx,%eax - 6634ac6c: 74 6c je 6634acda - 6634ac6e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634ac72: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634ac76: 41 89 c3 mov %eax,%r11d - 6634ac79: 41 29 cb sub %ecx,%r11d - 6634ac7c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634ac80: 45 01 18 add %r11d,(%r8) - 6634ac83: 89 02 mov %eax,(%rdx) - 6634ac85: 31 d2 xor %edx,%edx - 6634ac87: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634ac8b: 45 8b 18 mov (%r8),%r11d - 6634ac8e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634ac92: 45 85 db test %r11d,%r11d - 6634ac95: 0f 9f c2 setg %dl - 6634ac98: 3b 10 cmp (%rax),%edx - 6634ac9a: 74 3e je 6634acda - 6634ac9c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634aca0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634aca4: 44 8b 10 mov (%rax),%r10d - 6634aca7: 45 85 d2 test %r10d,%r10d - 6634acaa: 75 2e jne 6634acda - 6634acac: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634acb0: 48 8b 0d 79 cc 00 00 mov 0xcc79(%rip),%rcx # 66357930 - 6634acb7: 4c 8b 05 62 cc 00 00 mov 0xcc62(%rip),%r8 # 66357920 - 6634acbe: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634acc2: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634acc6: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634accc: 48 63 01 movslq (%rcx),%rax - 6634accf: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634acd3: 44 89 09 mov %r9d,(%rcx) - 6634acd6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634acda: 48 83 c3 04 add $0x4,%rbx - 6634acde: 81 c7 00 02 00 00 add $0x200,%edi - 6634ace4: 48 81 c5 00 08 00 00 add $0x800,%rbp - 6634aceb: 48 81 fb a8 00 00 00 cmp $0xa8,%rbx - 6634acf2: 0f 85 48 ff ff ff jne 6634ac40 - 6634acf8: 48 83 c4 28 add $0x28,%rsp - 6634acfc: 5b pop %rbx - 6634acfd: 5e pop %rsi - 6634acfe: 5f pop %rdi - 6634acff: 5d pop %rbp - 6634ad00: 41 5c pop %r12 - 6634ad02: 41 5d pop %r13 - 6634ad04: c3 retq - 6634ad05: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634ad09: 4c 8b 1d 10 cc 00 00 mov 0xcc10(%rip),%r11 # 66357920 - 6634ad10: 4c 8b 15 19 cc 00 00 mov 0xcc19(%rip),%r10 # 66357930 - 6634ad17: 48 8d 50 28 lea 0x28(%rax),%rdx - 6634ad1b: b8 50 00 00 00 mov $0x50,%eax - 6634ad20: 8b 0a mov (%rdx),%ecx - 6634ad22: 85 c9 test %ecx,%ecx - 6634ad24: 74 55 je 6634ad7b - 6634ad26: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634ad2a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634ad2e: 41 29 08 sub %ecx,(%r8) - 6634ad31: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634ad37: 45 8b 00 mov (%r8),%r8d - 6634ad3a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634ad3e: 45 85 c0 test %r8d,%r8d - 6634ad41: 41 0f 9f c0 setg %r8b - 6634ad45: 45 0f b6 c0 movzbl %r8b,%r8d - 6634ad49: 44 3b 01 cmp (%rcx),%r8d - 6634ad4c: 74 2d je 6634ad7b - 6634ad4e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634ad52: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634ad56: 8b 09 mov (%rcx),%ecx - 6634ad58: 85 c9 test %ecx,%ecx - 6634ad5a: 75 1f jne 6634ad7b - 6634ad5c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634ad60: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634ad64: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634ad68: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634ad6e: 49 63 0a movslq (%r10),%rcx - 6634ad71: 8d 59 01 lea 0x1(%rcx),%ebx - 6634ad74: 41 89 1a mov %ebx,(%r10) - 6634ad77: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634ad7b: 48 83 c0 08 add $0x8,%rax - 6634ad7f: 48 83 c2 04 add $0x4,%rdx - 6634ad83: 48 3d 50 01 00 00 cmp $0x150,%rax - 6634ad89: 75 95 jne 6634ad20 - 6634ad8b: 48 83 c4 28 add $0x28,%rsp - 6634ad8f: 5b pop %rbx - 6634ad90: 5e pop %rsi - 6634ad91: 5f pop %rdi - 6634ad92: 5d pop %rbp - 6634ad93: 41 5c pop %r12 - 6634ad95: 41 5d pop %r13 - 6634ad97: c3 retq - 6634ad98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634ad9f: 00 +000000006634a690 : + 6634a690: 41 55 push %r13 + 6634a692: 41 54 push %r12 + 6634a694: 55 push %rbp + 6634a695: 57 push %rdi + 6634a696: 56 push %rsi + 6634a697: 53 push %rbx + 6634a698: 48 83 ec 28 sub $0x28,%rsp + 6634a69c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634a6a0: 49 8b 81 e0 00 00 00 mov 0xe0(%r9),%rax + 6634a6a7: 48 89 cb mov %rcx,%rbx + 6634a6aa: 44 8b 10 mov (%rax),%r10d + 6634a6ad: 45 85 d2 test %r10d,%r10d + 6634a6b0: 0f 84 da 00 00 00 je 6634a790 + 6634a6b6: 49 8b 41 10 mov 0x10(%r9),%rax + 6634a6ba: bf 0c 00 00 00 mov $0xc,%edi + 6634a6bf: 4c 8d 2d 3a 89 00 00 lea 0x893a(%rip),%r13 # 66353000 <.rdata> + 6634a6c6: 4c 8d 25 43 89 00 00 lea 0x8943(%rip),%r12 # 66353010 <.rdata+0x10> + 6634a6cd: 8b 10 mov (%rax),%edx + 6634a6cf: 49 8b 41 08 mov 0x8(%r9),%rax + 6634a6d3: 8b 00 mov (%rax),%eax + 6634a6d5: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634a6d8: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634a6dc: 8b 12 mov (%rdx),%edx + 6634a6de: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634a6e1: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634a6e5: 8b 12 mov (%rdx),%edx + 6634a6e7: 8d 34 d0 lea (%rax,%rdx,8),%esi + 6634a6ea: 49 8b 41 28 mov 0x28(%r9),%rax + 6634a6ee: 49 8b 51 30 mov 0x30(%r9),%rdx + 6634a6f2: 8b 00 mov (%rax),%eax + 6634a6f4: c1 e0 04 shl $0x4,%eax + 6634a6f7: 01 f0 add %esi,%eax + 6634a6f9: 8b 32 mov (%rdx),%esi + 6634a6fb: 49 8b 51 38 mov 0x38(%r9),%rdx + 6634a6ff: c1 e6 05 shl $0x5,%esi + 6634a702: 01 f0 add %esi,%eax + 6634a704: 8b 32 mov (%rdx),%esi + 6634a706: 49 8b 51 50 mov 0x50(%r9),%rdx + 6634a70a: c1 e6 06 shl $0x6,%esi + 6634a70d: 01 c6 add %eax,%esi + 6634a70f: 49 8b 41 40 mov 0x40(%r9),%rax + 6634a713: 8b 00 mov (%rax),%eax + 6634a715: c1 e0 07 shl $0x7,%eax + 6634a718: 01 c6 add %eax,%esi + 6634a71a: 49 8b 41 48 mov 0x48(%r9),%rax + 6634a71e: 8b 00 mov (%rax),%eax + 6634a720: c1 e0 08 shl $0x8,%eax + 6634a723: 01 f0 add %esi,%eax + 6634a725: 8b 32 mov (%rdx),%esi + 6634a727: 49 8b 51 58 mov 0x58(%r9),%rdx + 6634a72b: c1 e6 09 shl $0x9,%esi + 6634a72e: 01 f0 add %esi,%eax + 6634a730: 8b 32 mov (%rdx),%esi + 6634a732: c1 e6 0a shl $0xa,%esi + 6634a735: 01 c6 add %eax,%esi + 6634a737: 48 63 ee movslq %esi,%rbp + 6634a73a: 48 c1 e5 02 shl $0x2,%rbp + 6634a73e: 66 90 xchg %ax,%ax + 6634a740: 85 f6 test %esi,%esi + 6634a742: 78 05 js 6634a749 + 6634a744: 39 73 38 cmp %esi,0x38(%rbx) + 6634a747: 7f 11 jg 6634a75a + 6634a749: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634a74f: 4c 89 ea mov %r13,%rdx + 6634a752: 4c 89 e1 mov %r12,%rcx + 6634a755: e8 a6 68 00 00 callq 66351000 <_assert> + 6634a75a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634a75e: 89 fa mov %edi,%edx + 6634a760: 48 89 d9 mov %rbx,%rcx + 6634a763: 83 c7 01 add $0x1,%edi + 6634a766: 81 c6 00 08 00 00 add $0x800,%esi + 6634a76c: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634a770: 48 81 c5 00 20 00 00 add $0x2000,%rbp + 6634a777: e8 34 6c ff ff callq 663413b0 + 6634a77c: 83 ff 1c cmp $0x1c,%edi + 6634a77f: 75 bf jne 6634a740 + 6634a781: 48 83 c4 28 add $0x28,%rsp + 6634a785: 5b pop %rbx + 6634a786: 5e pop %rsi + 6634a787: 5f pop %rdi + 6634a788: 5d pop %rbp + 6634a789: 41 5c pop %r12 + 6634a78b: 41 5d pop %r13 + 6634a78d: c3 retq + 6634a78e: 66 90 xchg %ax,%ax + 6634a790: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634a794: 4c 8b 1d 85 c1 00 00 mov 0xc185(%rip),%r11 # 66356920 + 6634a79b: 4c 8b 15 8e c1 00 00 mov 0xc18e(%rip),%r10 # 66356930 + 6634a7a2: 48 8d 50 30 lea 0x30(%rax),%rdx + 6634a7a6: b8 60 00 00 00 mov $0x60,%eax + 6634a7ab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634a7b0: 8b 0a mov (%rdx),%ecx + 6634a7b2: 85 c9 test %ecx,%ecx + 6634a7b4: 74 55 je 6634a80b + 6634a7b6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634a7ba: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634a7be: 41 29 08 sub %ecx,(%r8) + 6634a7c1: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634a7c7: 45 8b 00 mov (%r8),%r8d + 6634a7ca: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634a7ce: 45 85 c0 test %r8d,%r8d + 6634a7d1: 41 0f 9f c0 setg %r8b + 6634a7d5: 45 0f b6 c0 movzbl %r8b,%r8d + 6634a7d9: 44 3b 01 cmp (%rcx),%r8d + 6634a7dc: 74 2d je 6634a80b + 6634a7de: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634a7e2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634a7e6: 8b 09 mov (%rcx),%ecx + 6634a7e8: 85 c9 test %ecx,%ecx + 6634a7ea: 75 1f jne 6634a80b + 6634a7ec: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634a7f0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634a7f4: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634a7f8: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634a7fe: 49 63 0a movslq (%r10),%rcx + 6634a801: 8d 71 01 lea 0x1(%rcx),%esi + 6634a804: 41 89 32 mov %esi,(%r10) + 6634a807: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634a80b: 48 83 c0 08 add $0x8,%rax + 6634a80f: 48 83 c2 04 add $0x4,%rdx + 6634a813: 48 3d e0 00 00 00 cmp $0xe0,%rax + 6634a819: 75 95 jne 6634a7b0 + 6634a81b: 48 83 c4 28 add $0x28,%rsp + 6634a81f: 5b pop %rbx + 6634a820: 5e pop %rsi + 6634a821: 5f pop %rdi + 6634a822: 5d pop %rbp + 6634a823: 41 5c pop %r12 + 6634a825: 41 5d pop %r13 + 6634a827: c3 retq + 6634a828: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634a82f: 00 -000000006634ada0 : - 6634ada0: 41 55 push %r13 - 6634ada2: 41 54 push %r12 - 6634ada4: 55 push %rbp - 6634ada5: 57 push %rdi - 6634ada6: 56 push %rsi - 6634ada7: 53 push %rbx - 6634ada8: 48 83 ec 28 sub $0x28,%rsp - 6634adac: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634adb0: 49 8b 81 60 01 00 00 mov 0x160(%r9),%rax - 6634adb7: 48 89 ce mov %rcx,%rsi - 6634adba: 8b 18 mov (%rax),%ebx - 6634adbc: 85 db test %ebx,%ebx - 6634adbe: 0f 84 51 01 00 00 je 6634af15 - 6634adc4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634adc8: bb 30 00 00 00 mov $0x30,%ebx - 6634adcd: 4c 8d 2d 2c 92 00 00 lea 0x922c(%rip),%r13 # 66354000 <.rdata> - 6634add4: 4c 8d 25 35 92 00 00 lea 0x9235(%rip),%r12 # 66354010 <.rdata+0x10> - 6634addb: 8b 10 mov (%rax),%edx - 6634addd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634ade1: 8b 00 mov (%rax),%eax - 6634ade3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634ade6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634adea: 8b 12 mov (%rdx),%edx - 6634adec: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634adef: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634adf3: 8b 12 mov (%rdx),%edx - 6634adf5: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634adf8: 49 8b 41 28 mov 0x28(%r9),%rax - 6634adfc: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634ae00: 8b 00 mov (%rax),%eax - 6634ae02: c1 e0 04 shl $0x4,%eax - 6634ae05: 01 f8 add %edi,%eax - 6634ae07: 8b 3a mov (%rdx),%edi - 6634ae09: 49 8b 51 38 mov 0x38(%r9),%rdx - 6634ae0d: c1 e7 05 shl $0x5,%edi - 6634ae10: 01 f8 add %edi,%eax - 6634ae12: 8b 3a mov (%rdx),%edi - 6634ae14: 49 8b 51 50 mov 0x50(%r9),%rdx - 6634ae18: c1 e7 06 shl $0x6,%edi - 6634ae1b: 01 c7 add %eax,%edi - 6634ae1d: 49 8b 41 40 mov 0x40(%r9),%rax - 6634ae21: 8b 00 mov (%rax),%eax - 6634ae23: c1 e0 07 shl $0x7,%eax - 6634ae26: 01 c7 add %eax,%edi - 6634ae28: 49 8b 41 48 mov 0x48(%r9),%rax - 6634ae2c: 8b 00 mov (%rax),%eax - 6634ae2e: c1 e0 08 shl $0x8,%eax - 6634ae31: 01 f8 add %edi,%eax - 6634ae33: 8b 3a mov (%rdx),%edi - 6634ae35: 49 8b 51 58 mov 0x58(%r9),%rdx - 6634ae39: c1 e7 09 shl $0x9,%edi - 6634ae3c: 01 f8 add %edi,%eax - 6634ae3e: 8b 3a mov (%rdx),%edi - 6634ae40: c1 e7 0a shl $0xa,%edi - 6634ae43: 01 c7 add %eax,%edi - 6634ae45: 48 63 ef movslq %edi,%rbp - 6634ae48: 48 c1 e5 02 shl $0x2,%rbp - 6634ae4c: 0f 1f 40 00 nopl 0x0(%rax) - 6634ae50: 85 ff test %edi,%edi - 6634ae52: 78 05 js 6634ae59 - 6634ae54: 39 7e 38 cmp %edi,0x38(%rsi) - 6634ae57: 7f 11 jg 6634ae6a - 6634ae59: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634ae5f: 4c 89 ea mov %r13,%rdx - 6634ae62: 4c 89 e1 mov %r12,%rcx - 6634ae65: e8 a6 73 00 00 callq 66352210 <_assert> - 6634ae6a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634ae6e: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634ae72: 48 01 da add %rbx,%rdx - 6634ae75: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634ae78: 8b 0a mov (%rdx),%ecx - 6634ae7a: 39 c8 cmp %ecx,%eax - 6634ae7c: 74 6c je 6634aeea - 6634ae7e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634ae82: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634ae86: 41 89 c3 mov %eax,%r11d - 6634ae89: 41 29 cb sub %ecx,%r11d - 6634ae8c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634ae90: 45 01 18 add %r11d,(%r8) - 6634ae93: 89 02 mov %eax,(%rdx) - 6634ae95: 31 d2 xor %edx,%edx - 6634ae97: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634ae9b: 45 8b 18 mov (%r8),%r11d - 6634ae9e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634aea2: 45 85 db test %r11d,%r11d - 6634aea5: 0f 9f c2 setg %dl - 6634aea8: 3b 10 cmp (%rax),%edx - 6634aeaa: 74 3e je 6634aeea - 6634aeac: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634aeb0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634aeb4: 44 8b 10 mov (%rax),%r10d - 6634aeb7: 45 85 d2 test %r10d,%r10d - 6634aeba: 75 2e jne 6634aeea - 6634aebc: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634aec0: 48 8b 0d 69 ca 00 00 mov 0xca69(%rip),%rcx # 66357930 - 6634aec7: 4c 8b 05 52 ca 00 00 mov 0xca52(%rip),%r8 # 66357920 - 6634aece: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634aed2: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634aed6: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634aedc: 48 63 01 movslq (%rcx),%rax - 6634aedf: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634aee3: 44 89 09 mov %r9d,(%rcx) - 6634aee6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634aeea: 48 83 c3 04 add $0x4,%rbx - 6634aeee: 81 c7 00 08 00 00 add $0x800,%edi - 6634aef4: 48 81 c5 00 20 00 00 add $0x2000,%rbp - 6634aefb: 48 81 fb b0 00 00 00 cmp $0xb0,%rbx - 6634af02: 0f 85 48 ff ff ff jne 6634ae50 - 6634af08: 48 83 c4 28 add $0x28,%rsp - 6634af0c: 5b pop %rbx - 6634af0d: 5e pop %rsi - 6634af0e: 5f pop %rdi - 6634af0f: 5d pop %rbp - 6634af10: 41 5c pop %r12 - 6634af12: 41 5d pop %r13 - 6634af14: c3 retq - 6634af15: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634af19: 4c 8b 1d 00 ca 00 00 mov 0xca00(%rip),%r11 # 66357920 - 6634af20: 4c 8b 15 09 ca 00 00 mov 0xca09(%rip),%r10 # 66357930 - 6634af27: 48 8d 50 30 lea 0x30(%rax),%rdx - 6634af2b: b8 60 00 00 00 mov $0x60,%eax - 6634af30: 8b 0a mov (%rdx),%ecx - 6634af32: 85 c9 test %ecx,%ecx - 6634af34: 74 55 je 6634af8b - 6634af36: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634af3a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634af3e: 41 29 08 sub %ecx,(%r8) - 6634af41: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634af47: 45 8b 00 mov (%r8),%r8d - 6634af4a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634af4e: 45 85 c0 test %r8d,%r8d - 6634af51: 41 0f 9f c0 setg %r8b - 6634af55: 45 0f b6 c0 movzbl %r8b,%r8d - 6634af59: 44 3b 01 cmp (%rcx),%r8d - 6634af5c: 74 2d je 6634af8b - 6634af5e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634af62: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634af66: 8b 09 mov (%rcx),%ecx - 6634af68: 85 c9 test %ecx,%ecx - 6634af6a: 75 1f jne 6634af8b - 6634af6c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634af70: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634af74: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634af78: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634af7e: 49 63 0a movslq (%r10),%rcx - 6634af81: 8d 59 01 lea 0x1(%rcx),%ebx - 6634af84: 41 89 1a mov %ebx,(%r10) - 6634af87: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634af8b: 48 83 c0 08 add $0x8,%rax - 6634af8f: 48 83 c2 04 add $0x4,%rdx - 6634af93: 48 3d 60 01 00 00 cmp $0x160,%rax - 6634af99: 75 95 jne 6634af30 - 6634af9b: 48 83 c4 28 add $0x28,%rsp - 6634af9f: 5b pop %rbx - 6634afa0: 5e pop %rsi - 6634afa1: 5f pop %rdi - 6634afa2: 5d pop %rbp - 6634afa3: 41 5c pop %r12 - 6634afa5: 41 5d pop %r13 - 6634afa7: c3 retq - 6634afa8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634afaf: 00 +000000006634a830 : + 6634a830: 41 55 push %r13 + 6634a832: 41 54 push %r12 + 6634a834: 55 push %rbp + 6634a835: 57 push %rdi + 6634a836: 56 push %rsi + 6634a837: 53 push %rbx + 6634a838: 48 83 ec 28 sub $0x28,%rsp + 6634a83c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634a840: 49 8b 81 d0 00 00 00 mov 0xd0(%r9),%rax + 6634a847: 48 89 cb mov %rcx,%rbx + 6634a84a: 44 8b 10 mov (%rax),%r10d + 6634a84d: 45 85 d2 test %r10d,%r10d + 6634a850: 0f 84 ca 00 00 00 je 6634a920 + 6634a856: 49 8b 41 10 mov 0x10(%r9),%rax + 6634a85a: bf 0a 00 00 00 mov $0xa,%edi + 6634a85f: 4c 8d 2d 9a 87 00 00 lea 0x879a(%rip),%r13 # 66353000 <.rdata> + 6634a866: 4c 8d 25 a3 87 00 00 lea 0x87a3(%rip),%r12 # 66353010 <.rdata+0x10> + 6634a86d: 8b 10 mov (%rax),%edx + 6634a86f: 49 8b 41 08 mov 0x8(%r9),%rax + 6634a873: 8b 00 mov (%rax),%eax + 6634a875: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634a878: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634a87c: 8b 12 mov (%rdx),%edx + 6634a87e: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634a881: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634a885: 8b 12 mov (%rdx),%edx + 6634a887: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634a88a: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634a88e: 8b 32 mov (%rdx),%esi + 6634a890: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634a894: c1 e6 04 shl $0x4,%esi + 6634a897: 01 c6 add %eax,%esi + 6634a899: 49 8b 41 30 mov 0x30(%r9),%rax + 6634a89d: 8b 00 mov (%rax),%eax + 6634a89f: c1 e0 05 shl $0x5,%eax + 6634a8a2: 01 c6 add %eax,%esi + 6634a8a4: 49 8b 41 38 mov 0x38(%r9),%rax + 6634a8a8: 8b 00 mov (%rax),%eax + 6634a8aa: c1 e0 06 shl $0x6,%eax + 6634a8ad: 01 f0 add %esi,%eax + 6634a8af: 8b 32 mov (%rdx),%esi + 6634a8b1: 49 8b 51 48 mov 0x48(%r9),%rdx + 6634a8b5: c1 e6 07 shl $0x7,%esi + 6634a8b8: 01 f0 add %esi,%eax + 6634a8ba: 8b 32 mov (%rdx),%esi + 6634a8bc: c1 e6 08 shl $0x8,%esi + 6634a8bf: 01 c6 add %eax,%esi + 6634a8c1: 48 63 ee movslq %esi,%rbp + 6634a8c4: 48 c1 e5 02 shl $0x2,%rbp + 6634a8c8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634a8cf: 00 + 6634a8d0: 85 f6 test %esi,%esi + 6634a8d2: 78 05 js 6634a8d9 + 6634a8d4: 39 73 38 cmp %esi,0x38(%rbx) + 6634a8d7: 7f 11 jg 6634a8ea + 6634a8d9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634a8df: 4c 89 ea mov %r13,%rdx + 6634a8e2: 4c 89 e1 mov %r12,%rcx + 6634a8e5: e8 16 67 00 00 callq 66351000 <_assert> + 6634a8ea: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634a8ee: 89 fa mov %edi,%edx + 6634a8f0: 48 89 d9 mov %rbx,%rcx + 6634a8f3: 83 c7 01 add $0x1,%edi + 6634a8f6: 81 c6 00 02 00 00 add $0x200,%esi + 6634a8fc: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634a900: 48 81 c5 00 08 00 00 add $0x800,%rbp + 6634a907: e8 a4 6a ff ff callq 663413b0 + 6634a90c: 83 ff 1a cmp $0x1a,%edi + 6634a90f: 75 bf jne 6634a8d0 + 6634a911: 48 83 c4 28 add $0x28,%rsp + 6634a915: 5b pop %rbx + 6634a916: 5e pop %rsi + 6634a917: 5f pop %rdi + 6634a918: 5d pop %rbp + 6634a919: 41 5c pop %r12 + 6634a91b: 41 5d pop %r13 + 6634a91d: c3 retq + 6634a91e: 66 90 xchg %ax,%ax + 6634a920: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634a924: 4c 8b 1d f5 bf 00 00 mov 0xbff5(%rip),%r11 # 66356920 + 6634a92b: 4c 8b 15 fe bf 00 00 mov 0xbffe(%rip),%r10 # 66356930 + 6634a932: 48 8d 50 28 lea 0x28(%rax),%rdx + 6634a936: b8 50 00 00 00 mov $0x50,%eax + 6634a93b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634a940: 8b 0a mov (%rdx),%ecx + 6634a942: 85 c9 test %ecx,%ecx + 6634a944: 74 55 je 6634a99b + 6634a946: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634a94a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634a94e: 41 29 08 sub %ecx,(%r8) + 6634a951: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634a957: 45 8b 00 mov (%r8),%r8d + 6634a95a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634a95e: 45 85 c0 test %r8d,%r8d + 6634a961: 41 0f 9f c0 setg %r8b + 6634a965: 45 0f b6 c0 movzbl %r8b,%r8d + 6634a969: 44 3b 01 cmp (%rcx),%r8d + 6634a96c: 74 2d je 6634a99b + 6634a96e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634a972: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634a976: 8b 09 mov (%rcx),%ecx + 6634a978: 85 c9 test %ecx,%ecx + 6634a97a: 75 1f jne 6634a99b + 6634a97c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634a980: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634a984: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634a988: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634a98e: 49 63 0a movslq (%r10),%rcx + 6634a991: 8d 71 01 lea 0x1(%rcx),%esi + 6634a994: 41 89 32 mov %esi,(%r10) + 6634a997: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634a99b: 48 83 c0 08 add $0x8,%rax + 6634a99f: 48 83 c2 04 add $0x4,%rdx + 6634a9a3: 48 3d d0 00 00 00 cmp $0xd0,%rax + 6634a9a9: 75 95 jne 6634a940 + 6634a9ab: 48 83 c4 28 add $0x28,%rsp + 6634a9af: 5b pop %rbx + 6634a9b0: 5e pop %rsi + 6634a9b1: 5f pop %rdi + 6634a9b2: 5d pop %rbp + 6634a9b3: 41 5c pop %r12 + 6634a9b5: 41 5d pop %r13 + 6634a9b7: c3 retq + 6634a9b8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634a9bf: 00 -000000006634afb0 : - 6634afb0: 41 55 push %r13 - 6634afb2: 41 54 push %r12 - 6634afb4: 55 push %rbp - 6634afb5: 57 push %rdi - 6634afb6: 56 push %rsi - 6634afb7: 53 push %rbx - 6634afb8: 48 83 ec 28 sub $0x28,%rsp - 6634afbc: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634afc0: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax - 6634afc7: 48 89 ce mov %rcx,%rsi - 6634afca: 8b 18 mov (%rax),%ebx - 6634afcc: 85 db test %ebx,%ebx - 6634afce: 0f 84 10 01 00 00 je 6634b0e4 - 6634afd4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634afd8: bb 1c 00 00 00 mov $0x1c,%ebx - 6634afdd: 4c 8d 2d 1c 90 00 00 lea 0x901c(%rip),%r13 # 66354000 <.rdata> - 6634afe4: 4c 8d 25 25 90 00 00 lea 0x9025(%rip),%r12 # 66354010 <.rdata+0x10> - 6634afeb: 8b 10 mov (%rax),%edx - 6634afed: 49 8b 41 08 mov 0x8(%r9),%rax - 6634aff1: 8b 00 mov (%rax),%eax - 6634aff3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634aff6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634affa: 8b 12 mov (%rdx),%edx - 6634affc: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634afff: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634b003: 8b 12 mov (%rdx),%edx - 6634b005: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634b008: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634b00c: 8b 3a mov (%rdx),%edi - 6634b00e: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634b012: c1 e7 04 shl $0x4,%edi - 6634b015: 01 f8 add %edi,%eax - 6634b017: 8b 3a mov (%rdx),%edi - 6634b019: c1 e7 05 shl $0x5,%edi - 6634b01c: 01 c7 add %eax,%edi - 6634b01e: 48 63 ef movslq %edi,%rbp - 6634b021: 48 c1 e5 02 shl $0x2,%rbp - 6634b025: 85 ff test %edi,%edi - 6634b027: 78 05 js 6634b02e - 6634b029: 39 7e 38 cmp %edi,0x38(%rsi) - 6634b02c: 7f 11 jg 6634b03f - 6634b02e: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634b034: 4c 89 ea mov %r13,%rdx - 6634b037: 4c 89 e1 mov %r12,%rcx - 6634b03a: e8 d1 71 00 00 callq 66352210 <_assert> - 6634b03f: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634b043: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634b047: 48 01 da add %rbx,%rdx - 6634b04a: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634b04d: 8b 0a mov (%rdx),%ecx - 6634b04f: 39 c8 cmp %ecx,%eax - 6634b051: 74 6c je 6634b0bf - 6634b053: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b057: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634b05b: 41 89 c3 mov %eax,%r11d - 6634b05e: 41 29 cb sub %ecx,%r11d - 6634b061: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634b065: 45 01 18 add %r11d,(%r8) - 6634b068: 89 02 mov %eax,(%rdx) - 6634b06a: 31 d2 xor %edx,%edx - 6634b06c: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634b070: 45 8b 18 mov (%r8),%r11d - 6634b073: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634b077: 45 85 db test %r11d,%r11d - 6634b07a: 0f 9f c2 setg %dl - 6634b07d: 3b 10 cmp (%rax),%edx - 6634b07f: 74 3e je 6634b0bf - 6634b081: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634b085: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634b089: 44 8b 10 mov (%rax),%r10d - 6634b08c: 45 85 d2 test %r10d,%r10d - 6634b08f: 75 2e jne 6634b0bf - 6634b091: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634b095: 48 8b 0d 94 c8 00 00 mov 0xc894(%rip),%rcx # 66357930 - 6634b09c: 4c 8b 05 7d c8 00 00 mov 0xc87d(%rip),%r8 # 66357920 - 6634b0a3: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634b0a7: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634b0ab: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634b0b1: 48 63 01 movslq (%rcx),%rax - 6634b0b4: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634b0b8: 44 89 09 mov %r9d,(%rcx) - 6634b0bb: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634b0bf: 48 83 c3 04 add $0x4,%rbx - 6634b0c3: 83 c7 40 add $0x40,%edi - 6634b0c6: 48 81 c5 00 01 00 00 add $0x100,%rbp - 6634b0cd: 48 83 fb 5c cmp $0x5c,%rbx - 6634b0d1: 0f 85 4e ff ff ff jne 6634b025 - 6634b0d7: 48 83 c4 28 add $0x28,%rsp - 6634b0db: 5b pop %rbx - 6634b0dc: 5e pop %rsi - 6634b0dd: 5f pop %rdi - 6634b0de: 5d pop %rbp - 6634b0df: 41 5c pop %r12 - 6634b0e1: 41 5d pop %r13 - 6634b0e3: c3 retq - 6634b0e4: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634b0e8: 4c 8b 1d 31 c8 00 00 mov 0xc831(%rip),%r11 # 66357920 - 6634b0ef: 4c 8b 15 3a c8 00 00 mov 0xc83a(%rip),%r10 # 66357930 - 6634b0f6: 48 8d 50 1c lea 0x1c(%rax),%rdx - 6634b0fa: b8 38 00 00 00 mov $0x38,%eax - 6634b0ff: 90 nop - 6634b100: 8b 0a mov (%rdx),%ecx - 6634b102: 85 c9 test %ecx,%ecx - 6634b104: 74 55 je 6634b15b - 6634b106: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b10a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634b10e: 41 29 08 sub %ecx,(%r8) - 6634b111: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634b117: 45 8b 00 mov (%r8),%r8d - 6634b11a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634b11e: 45 85 c0 test %r8d,%r8d - 6634b121: 41 0f 9f c0 setg %r8b - 6634b125: 45 0f b6 c0 movzbl %r8b,%r8d - 6634b129: 44 3b 01 cmp (%rcx),%r8d - 6634b12c: 74 2d je 6634b15b - 6634b12e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634b132: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634b136: 8b 09 mov (%rcx),%ecx - 6634b138: 85 c9 test %ecx,%ecx - 6634b13a: 75 1f jne 6634b15b - 6634b13c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634b140: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634b144: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634b148: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634b14e: 49 63 0a movslq (%r10),%rcx - 6634b151: 8d 59 01 lea 0x1(%rcx),%ebx - 6634b154: 41 89 1a mov %ebx,(%r10) - 6634b157: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634b15b: 48 83 c0 08 add $0x8,%rax - 6634b15f: 48 83 c2 04 add $0x4,%rdx - 6634b163: 48 3d b8 00 00 00 cmp $0xb8,%rax - 6634b169: 75 95 jne 6634b100 - 6634b16b: 48 83 c4 28 add $0x28,%rsp - 6634b16f: 5b pop %rbx - 6634b170: 5e pop %rsi - 6634b171: 5f pop %rdi - 6634b172: 5d pop %rbp - 6634b173: 41 5c pop %r12 - 6634b175: 41 5d pop %r13 - 6634b177: c3 retq - 6634b178: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634b17f: 00 +000000006634a9c0 : + 6634a9c0: 41 55 push %r13 + 6634a9c2: 41 54 push %r12 + 6634a9c4: 55 push %rbp + 6634a9c5: 57 push %rdi + 6634a9c6: 56 push %rsi + 6634a9c7: 53 push %rbx + 6634a9c8: 48 83 ec 28 sub $0x28,%rsp + 6634a9cc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634a9d0: 49 8b 81 e8 00 00 00 mov 0xe8(%r9),%rax + 6634a9d7: 48 89 cb mov %rcx,%rbx + 6634a9da: 44 8b 10 mov (%rax),%r10d + 6634a9dd: 45 85 d2 test %r10d,%r10d + 6634a9e0: 0f 84 ea 00 00 00 je 6634aad0 + 6634a9e6: 49 8b 41 10 mov 0x10(%r9),%rax + 6634a9ea: bf 0d 00 00 00 mov $0xd,%edi + 6634a9ef: 4c 8d 2d 0a 86 00 00 lea 0x860a(%rip),%r13 # 66353000 <.rdata> + 6634a9f6: 4c 8d 25 13 86 00 00 lea 0x8613(%rip),%r12 # 66353010 <.rdata+0x10> + 6634a9fd: 8b 10 mov (%rax),%edx + 6634a9ff: 49 8b 41 08 mov 0x8(%r9),%rax + 6634aa03: 8b 00 mov (%rax),%eax + 6634aa05: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634aa08: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634aa0c: 8b 12 mov (%rdx),%edx + 6634aa0e: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634aa11: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634aa15: 8b 12 mov (%rdx),%edx + 6634aa17: 8d 34 d0 lea (%rax,%rdx,8),%esi + 6634aa1a: 49 8b 41 28 mov 0x28(%r9),%rax + 6634aa1e: 49 8b 51 38 mov 0x38(%r9),%rdx + 6634aa22: 8b 00 mov (%rax),%eax + 6634aa24: c1 e0 04 shl $0x4,%eax + 6634aa27: 01 c6 add %eax,%esi + 6634aa29: 49 8b 41 30 mov 0x30(%r9),%rax + 6634aa2d: 8b 00 mov (%rax),%eax + 6634aa2f: c1 e0 05 shl $0x5,%eax + 6634aa32: 01 f0 add %esi,%eax + 6634aa34: 8b 32 mov (%rdx),%esi + 6634aa36: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634aa3a: c1 e6 06 shl $0x6,%esi + 6634aa3d: 01 f0 add %esi,%eax + 6634aa3f: 8b 32 mov (%rdx),%esi + 6634aa41: 49 8b 51 58 mov 0x58(%r9),%rdx + 6634aa45: c1 e6 07 shl $0x7,%esi + 6634aa48: 01 c6 add %eax,%esi + 6634aa4a: 49 8b 41 48 mov 0x48(%r9),%rax + 6634aa4e: 8b 00 mov (%rax),%eax + 6634aa50: c1 e0 08 shl $0x8,%eax + 6634aa53: 01 c6 add %eax,%esi + 6634aa55: 49 8b 41 50 mov 0x50(%r9),%rax + 6634aa59: 8b 00 mov (%rax),%eax + 6634aa5b: c1 e0 09 shl $0x9,%eax + 6634aa5e: 01 f0 add %esi,%eax + 6634aa60: 8b 32 mov (%rdx),%esi + 6634aa62: 49 8b 51 60 mov 0x60(%r9),%rdx + 6634aa66: c1 e6 0a shl $0xa,%esi + 6634aa69: 01 f0 add %esi,%eax + 6634aa6b: 8b 32 mov (%rdx),%esi + 6634aa6d: c1 e6 0b shl $0xb,%esi + 6634aa70: 01 c6 add %eax,%esi + 6634aa72: 48 63 ee movslq %esi,%rbp + 6634aa75: 48 c1 e5 02 shl $0x2,%rbp + 6634aa79: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634aa80: 85 f6 test %esi,%esi + 6634aa82: 78 05 js 6634aa89 + 6634aa84: 39 73 38 cmp %esi,0x38(%rbx) + 6634aa87: 7f 11 jg 6634aa9a + 6634aa89: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634aa8f: 4c 89 ea mov %r13,%rdx + 6634aa92: 4c 89 e1 mov %r12,%rcx + 6634aa95: e8 66 65 00 00 callq 66351000 <_assert> + 6634aa9a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634aa9e: 89 fa mov %edi,%edx + 6634aaa0: 48 89 d9 mov %rbx,%rcx + 6634aaa3: 83 c7 01 add $0x1,%edi + 6634aaa6: 81 c6 00 10 00 00 add $0x1000,%esi + 6634aaac: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634aab0: 48 81 c5 00 40 00 00 add $0x4000,%rbp + 6634aab7: e8 f4 68 ff ff callq 663413b0 + 6634aabc: 83 ff 1d cmp $0x1d,%edi + 6634aabf: 75 bf jne 6634aa80 + 6634aac1: 48 83 c4 28 add $0x28,%rsp + 6634aac5: 5b pop %rbx + 6634aac6: 5e pop %rsi + 6634aac7: 5f pop %rdi + 6634aac8: 5d pop %rbp + 6634aac9: 41 5c pop %r12 + 6634aacb: 41 5d pop %r13 + 6634aacd: c3 retq + 6634aace: 66 90 xchg %ax,%ax + 6634aad0: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634aad4: 4c 8b 1d 45 be 00 00 mov 0xbe45(%rip),%r11 # 66356920 + 6634aadb: 4c 8b 15 4e be 00 00 mov 0xbe4e(%rip),%r10 # 66356930 + 6634aae2: 48 8d 50 34 lea 0x34(%rax),%rdx + 6634aae6: b8 68 00 00 00 mov $0x68,%eax + 6634aaeb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634aaf0: 8b 0a mov (%rdx),%ecx + 6634aaf2: 85 c9 test %ecx,%ecx + 6634aaf4: 74 55 je 6634ab4b + 6634aaf6: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634aafa: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634aafe: 41 29 08 sub %ecx,(%r8) + 6634ab01: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634ab07: 45 8b 00 mov (%r8),%r8d + 6634ab0a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634ab0e: 45 85 c0 test %r8d,%r8d + 6634ab11: 41 0f 9f c0 setg %r8b + 6634ab15: 45 0f b6 c0 movzbl %r8b,%r8d + 6634ab19: 44 3b 01 cmp (%rcx),%r8d + 6634ab1c: 74 2d je 6634ab4b + 6634ab1e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634ab22: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634ab26: 8b 09 mov (%rcx),%ecx + 6634ab28: 85 c9 test %ecx,%ecx + 6634ab2a: 75 1f jne 6634ab4b + 6634ab2c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634ab30: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634ab34: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634ab38: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634ab3e: 49 63 0a movslq (%r10),%rcx + 6634ab41: 8d 71 01 lea 0x1(%rcx),%esi + 6634ab44: 41 89 32 mov %esi,(%r10) + 6634ab47: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634ab4b: 48 83 c0 08 add $0x8,%rax + 6634ab4f: 48 83 c2 04 add $0x4,%rdx + 6634ab53: 48 3d e8 00 00 00 cmp $0xe8,%rax + 6634ab59: 75 95 jne 6634aaf0 + 6634ab5b: 48 83 c4 28 add $0x28,%rsp + 6634ab5f: 5b pop %rbx + 6634ab60: 5e pop %rsi + 6634ab61: 5f pop %rdi + 6634ab62: 5d pop %rbp + 6634ab63: 41 5c pop %r12 + 6634ab65: 41 5d pop %r13 + 6634ab67: c3 retq + 6634ab68: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634ab6f: 00 -000000006634b180 : - 6634b180: 41 55 push %r13 - 6634b182: 41 54 push %r12 - 6634b184: 55 push %rbp - 6634b185: 57 push %rdi - 6634b186: 56 push %rsi - 6634b187: 53 push %rbx - 6634b188: 48 83 ec 28 sub $0x28,%rsp - 6634b18c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634b190: 49 8b 81 e0 00 00 00 mov 0xe0(%r9),%rax - 6634b197: 48 89 ce mov %rcx,%rsi - 6634b19a: 8b 18 mov (%rax),%ebx - 6634b19c: 85 db test %ebx,%ebx - 6634b19e: 0f 84 4e 01 00 00 je 6634b2f2 - 6634b1a4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634b1a8: bb 30 00 00 00 mov $0x30,%ebx - 6634b1ad: 4c 8d 2d 4c 8e 00 00 lea 0x8e4c(%rip),%r13 # 66354000 <.rdata> - 6634b1b4: 4c 8d 25 55 8e 00 00 lea 0x8e55(%rip),%r12 # 66354010 <.rdata+0x10> - 6634b1bb: 8b 10 mov (%rax),%edx - 6634b1bd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634b1c1: 8b 00 mov (%rax),%eax - 6634b1c3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634b1c6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634b1ca: 8b 12 mov (%rdx),%edx - 6634b1cc: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634b1cf: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634b1d3: 8b 12 mov (%rdx),%edx - 6634b1d5: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634b1d8: 49 8b 41 28 mov 0x28(%r9),%rax - 6634b1dc: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634b1e0: 8b 00 mov (%rax),%eax - 6634b1e2: c1 e0 04 shl $0x4,%eax - 6634b1e5: 01 f8 add %edi,%eax - 6634b1e7: 8b 3a mov (%rdx),%edi - 6634b1e9: 49 8b 51 38 mov 0x38(%r9),%rdx - 6634b1ed: c1 e7 05 shl $0x5,%edi - 6634b1f0: 01 f8 add %edi,%eax - 6634b1f2: 8b 3a mov (%rdx),%edi - 6634b1f4: 49 8b 51 50 mov 0x50(%r9),%rdx - 6634b1f8: c1 e7 06 shl $0x6,%edi - 6634b1fb: 01 c7 add %eax,%edi - 6634b1fd: 49 8b 41 40 mov 0x40(%r9),%rax - 6634b201: 8b 00 mov (%rax),%eax - 6634b203: c1 e0 07 shl $0x7,%eax - 6634b206: 01 c7 add %eax,%edi - 6634b208: 49 8b 41 48 mov 0x48(%r9),%rax - 6634b20c: 8b 00 mov (%rax),%eax - 6634b20e: c1 e0 08 shl $0x8,%eax - 6634b211: 01 f8 add %edi,%eax - 6634b213: 8b 3a mov (%rdx),%edi - 6634b215: 49 8b 51 58 mov 0x58(%r9),%rdx - 6634b219: c1 e7 09 shl $0x9,%edi - 6634b21c: 01 f8 add %edi,%eax - 6634b21e: 8b 3a mov (%rdx),%edi - 6634b220: c1 e7 0a shl $0xa,%edi - 6634b223: 01 c7 add %eax,%edi - 6634b225: 48 63 ef movslq %edi,%rbp - 6634b228: 48 c1 e5 02 shl $0x2,%rbp - 6634b22c: 0f 1f 40 00 nopl 0x0(%rax) - 6634b230: 85 ff test %edi,%edi - 6634b232: 78 05 js 6634b239 - 6634b234: 39 7e 38 cmp %edi,0x38(%rsi) - 6634b237: 7f 11 jg 6634b24a - 6634b239: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634b23f: 4c 89 ea mov %r13,%rdx - 6634b242: 4c 89 e1 mov %r12,%rcx - 6634b245: e8 c6 6f 00 00 callq 66352210 <_assert> - 6634b24a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634b24e: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634b252: 48 01 da add %rbx,%rdx - 6634b255: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634b258: 8b 0a mov (%rdx),%ecx - 6634b25a: 39 c8 cmp %ecx,%eax - 6634b25c: 74 6c je 6634b2ca - 6634b25e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b262: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634b266: 41 89 c3 mov %eax,%r11d - 6634b269: 41 29 cb sub %ecx,%r11d - 6634b26c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634b270: 45 01 18 add %r11d,(%r8) - 6634b273: 89 02 mov %eax,(%rdx) - 6634b275: 31 d2 xor %edx,%edx - 6634b277: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634b27b: 45 8b 18 mov (%r8),%r11d - 6634b27e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634b282: 45 85 db test %r11d,%r11d - 6634b285: 0f 9f c2 setg %dl - 6634b288: 3b 10 cmp (%rax),%edx - 6634b28a: 74 3e je 6634b2ca - 6634b28c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634b290: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634b294: 44 8b 10 mov (%rax),%r10d - 6634b297: 45 85 d2 test %r10d,%r10d - 6634b29a: 75 2e jne 6634b2ca - 6634b29c: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634b2a0: 48 8b 0d 89 c6 00 00 mov 0xc689(%rip),%rcx # 66357930 - 6634b2a7: 4c 8b 05 72 c6 00 00 mov 0xc672(%rip),%r8 # 66357920 - 6634b2ae: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634b2b2: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634b2b6: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634b2bc: 48 63 01 movslq (%rcx),%rax - 6634b2bf: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634b2c3: 44 89 09 mov %r9d,(%rcx) - 6634b2c6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634b2ca: 48 83 c3 04 add $0x4,%rbx - 6634b2ce: 81 c7 00 08 00 00 add $0x800,%edi - 6634b2d4: 48 81 c5 00 20 00 00 add $0x2000,%rbp - 6634b2db: 48 83 fb 70 cmp $0x70,%rbx - 6634b2df: 0f 85 4b ff ff ff jne 6634b230 - 6634b2e5: 48 83 c4 28 add $0x28,%rsp - 6634b2e9: 5b pop %rbx - 6634b2ea: 5e pop %rsi - 6634b2eb: 5f pop %rdi - 6634b2ec: 5d pop %rbp - 6634b2ed: 41 5c pop %r12 - 6634b2ef: 41 5d pop %r13 - 6634b2f1: c3 retq - 6634b2f2: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634b2f6: 4c 8b 1d 23 c6 00 00 mov 0xc623(%rip),%r11 # 66357920 - 6634b2fd: 4c 8b 15 2c c6 00 00 mov 0xc62c(%rip),%r10 # 66357930 - 6634b304: 48 8d 50 30 lea 0x30(%rax),%rdx - 6634b308: b8 60 00 00 00 mov $0x60,%eax - 6634b30d: 0f 1f 00 nopl (%rax) - 6634b310: 8b 0a mov (%rdx),%ecx - 6634b312: 85 c9 test %ecx,%ecx - 6634b314: 74 55 je 6634b36b - 6634b316: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b31a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634b31e: 41 29 08 sub %ecx,(%r8) - 6634b321: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634b327: 45 8b 00 mov (%r8),%r8d - 6634b32a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634b32e: 45 85 c0 test %r8d,%r8d - 6634b331: 41 0f 9f c0 setg %r8b - 6634b335: 45 0f b6 c0 movzbl %r8b,%r8d - 6634b339: 44 3b 01 cmp (%rcx),%r8d - 6634b33c: 74 2d je 6634b36b - 6634b33e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634b342: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634b346: 8b 09 mov (%rcx),%ecx - 6634b348: 85 c9 test %ecx,%ecx - 6634b34a: 75 1f jne 6634b36b - 6634b34c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634b350: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634b354: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634b358: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634b35e: 49 63 0a movslq (%r10),%rcx - 6634b361: 8d 59 01 lea 0x1(%rcx),%ebx - 6634b364: 41 89 1a mov %ebx,(%r10) - 6634b367: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634b36b: 48 83 c0 08 add $0x8,%rax - 6634b36f: 48 83 c2 04 add $0x4,%rdx - 6634b373: 48 3d e0 00 00 00 cmp $0xe0,%rax - 6634b379: 75 95 jne 6634b310 - 6634b37b: 48 83 c4 28 add $0x28,%rsp - 6634b37f: 5b pop %rbx - 6634b380: 5e pop %rsi - 6634b381: 5f pop %rdi - 6634b382: 5d pop %rbp - 6634b383: 41 5c pop %r12 - 6634b385: 41 5d pop %r13 - 6634b387: c3 retq - 6634b388: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634b38f: 00 +000000006634ab70 : + 6634ab70: 41 55 push %r13 + 6634ab72: 41 54 push %r12 + 6634ab74: 55 push %rbp + 6634ab75: 57 push %rdi + 6634ab76: 56 push %rsi + 6634ab77: 53 push %rbx + 6634ab78: 48 83 ec 28 sub $0x28,%rsp + 6634ab7c: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634ab80: 49 8b 81 c8 00 00 00 mov 0xc8(%r9),%rax + 6634ab87: 48 89 cb mov %rcx,%rbx + 6634ab8a: 44 8b 10 mov (%rax),%r10d + 6634ab8d: 45 85 d2 test %r10d,%r10d + 6634ab90: 0f 84 ba 00 00 00 je 6634ac50 + 6634ab96: 49 8b 41 10 mov 0x10(%r9),%rax + 6634ab9a: bf 09 00 00 00 mov $0x9,%edi + 6634ab9f: 4c 8d 2d 5a 84 00 00 lea 0x845a(%rip),%r13 # 66353000 <.rdata> + 6634aba6: 4c 8d 25 63 84 00 00 lea 0x8463(%rip),%r12 # 66353010 <.rdata+0x10> + 6634abad: 8b 10 mov (%rax),%edx + 6634abaf: 49 8b 41 08 mov 0x8(%r9),%rax + 6634abb3: 8b 00 mov (%rax),%eax + 6634abb5: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634abb8: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634abbc: 8b 12 mov (%rdx),%edx + 6634abbe: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634abc1: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634abc5: 8b 12 mov (%rdx),%edx + 6634abc7: 8d 34 d0 lea (%rax,%rdx,8),%esi + 6634abca: 49 8b 41 28 mov 0x28(%r9),%rax + 6634abce: 49 8b 51 38 mov 0x38(%r9),%rdx + 6634abd2: 8b 00 mov (%rax),%eax + 6634abd4: c1 e0 04 shl $0x4,%eax + 6634abd7: 01 c6 add %eax,%esi + 6634abd9: 49 8b 41 30 mov 0x30(%r9),%rax + 6634abdd: 8b 00 mov (%rax),%eax + 6634abdf: c1 e0 05 shl $0x5,%eax + 6634abe2: 01 f0 add %esi,%eax + 6634abe4: 8b 32 mov (%rdx),%esi + 6634abe6: 49 8b 51 40 mov 0x40(%r9),%rdx + 6634abea: c1 e6 06 shl $0x6,%esi + 6634abed: 01 f0 add %esi,%eax + 6634abef: 8b 32 mov (%rdx),%esi + 6634abf1: c1 e6 07 shl $0x7,%esi + 6634abf4: 01 c6 add %eax,%esi + 6634abf6: 48 63 ee movslq %esi,%rbp + 6634abf9: 48 c1 e5 02 shl $0x2,%rbp + 6634abfd: 0f 1f 00 nopl (%rax) + 6634ac00: 85 f6 test %esi,%esi + 6634ac02: 78 05 js 6634ac09 + 6634ac04: 39 73 38 cmp %esi,0x38(%rbx) + 6634ac07: 7f 11 jg 6634ac1a + 6634ac09: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634ac0f: 4c 89 ea mov %r13,%rdx + 6634ac12: 4c 89 e1 mov %r12,%rcx + 6634ac15: e8 e6 63 00 00 callq 66351000 <_assert> + 6634ac1a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634ac1e: 89 fa mov %edi,%edx + 6634ac20: 48 89 d9 mov %rbx,%rcx + 6634ac23: 83 c7 01 add $0x1,%edi + 6634ac26: 81 c6 00 01 00 00 add $0x100,%esi + 6634ac2c: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634ac30: 48 81 c5 00 04 00 00 add $0x400,%rbp + 6634ac37: e8 74 67 ff ff callq 663413b0 + 6634ac3c: 83 ff 19 cmp $0x19,%edi + 6634ac3f: 75 bf jne 6634ac00 + 6634ac41: 48 83 c4 28 add $0x28,%rsp + 6634ac45: 5b pop %rbx + 6634ac46: 5e pop %rsi + 6634ac47: 5f pop %rdi + 6634ac48: 5d pop %rbp + 6634ac49: 41 5c pop %r12 + 6634ac4b: 41 5d pop %r13 + 6634ac4d: c3 retq + 6634ac4e: 66 90 xchg %ax,%ax + 6634ac50: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634ac54: 4c 8b 1d c5 bc 00 00 mov 0xbcc5(%rip),%r11 # 66356920 + 6634ac5b: 4c 8b 15 ce bc 00 00 mov 0xbcce(%rip),%r10 # 66356930 + 6634ac62: 48 8d 50 24 lea 0x24(%rax),%rdx + 6634ac66: b8 48 00 00 00 mov $0x48,%eax + 6634ac6b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634ac70: 8b 0a mov (%rdx),%ecx + 6634ac72: 85 c9 test %ecx,%ecx + 6634ac74: 74 55 je 6634accb + 6634ac76: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634ac7a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634ac7e: 41 29 08 sub %ecx,(%r8) + 6634ac81: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634ac87: 45 8b 00 mov (%r8),%r8d + 6634ac8a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634ac8e: 45 85 c0 test %r8d,%r8d + 6634ac91: 41 0f 9f c0 setg %r8b + 6634ac95: 45 0f b6 c0 movzbl %r8b,%r8d + 6634ac99: 44 3b 01 cmp (%rcx),%r8d + 6634ac9c: 74 2d je 6634accb + 6634ac9e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634aca2: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634aca6: 8b 09 mov (%rcx),%ecx + 6634aca8: 85 c9 test %ecx,%ecx + 6634acaa: 75 1f jne 6634accb + 6634acac: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634acb0: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634acb4: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634acb8: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634acbe: 49 63 0a movslq (%r10),%rcx + 6634acc1: 8d 71 01 lea 0x1(%rcx),%esi + 6634acc4: 41 89 32 mov %esi,(%r10) + 6634acc7: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634accb: 48 83 c0 08 add $0x8,%rax + 6634accf: 48 83 c2 04 add $0x4,%rdx + 6634acd3: 48 3d c8 00 00 00 cmp $0xc8,%rax + 6634acd9: 75 95 jne 6634ac70 + 6634acdb: 48 83 c4 28 add $0x28,%rsp + 6634acdf: 5b pop %rbx + 6634ace0: 5e pop %rsi + 6634ace1: 5f pop %rdi + 6634ace2: 5d pop %rbp + 6634ace3: 41 5c pop %r12 + 6634ace5: 41 5d pop %r13 + 6634ace7: c3 retq + 6634ace8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634acef: 00 -000000006634b390 : - 6634b390: 41 55 push %r13 - 6634b392: 41 54 push %r12 - 6634b394: 55 push %rbp - 6634b395: 57 push %rdi - 6634b396: 56 push %rsi - 6634b397: 53 push %rbx - 6634b398: 48 83 ec 28 sub $0x28,%rsp - 6634b39c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634b3a0: 49 8b 81 c8 00 00 00 mov 0xc8(%r9),%rax - 6634b3a7: 48 89 ce mov %rcx,%rsi - 6634b3aa: 8b 18 mov (%rax),%ebx - 6634b3ac: 85 db test %ebx,%ebx - 6634b3ae: 0f 84 2e 01 00 00 je 6634b4e2 - 6634b3b4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634b3b8: bb 24 00 00 00 mov $0x24,%ebx - 6634b3bd: 4c 8d 2d 3c 8c 00 00 lea 0x8c3c(%rip),%r13 # 66354000 <.rdata> - 6634b3c4: 4c 8d 25 45 8c 00 00 lea 0x8c45(%rip),%r12 # 66354010 <.rdata+0x10> - 6634b3cb: 8b 10 mov (%rax),%edx - 6634b3cd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634b3d1: 8b 00 mov (%rax),%eax - 6634b3d3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634b3d6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634b3da: 8b 12 mov (%rdx),%edx - 6634b3dc: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634b3df: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634b3e3: 8b 12 mov (%rdx),%edx - 6634b3e5: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634b3e8: 49 8b 41 28 mov 0x28(%r9),%rax - 6634b3ec: 49 8b 51 38 mov 0x38(%r9),%rdx - 6634b3f0: 8b 00 mov (%rax),%eax - 6634b3f2: c1 e0 04 shl $0x4,%eax - 6634b3f5: 01 c7 add %eax,%edi - 6634b3f7: 49 8b 41 30 mov 0x30(%r9),%rax - 6634b3fb: 8b 00 mov (%rax),%eax - 6634b3fd: c1 e0 05 shl $0x5,%eax - 6634b400: 01 f8 add %edi,%eax - 6634b402: 8b 3a mov (%rdx),%edi - 6634b404: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634b408: c1 e7 06 shl $0x6,%edi - 6634b40b: 01 f8 add %edi,%eax - 6634b40d: 8b 3a mov (%rdx),%edi - 6634b40f: c1 e7 07 shl $0x7,%edi - 6634b412: 01 c7 add %eax,%edi - 6634b414: 48 63 ef movslq %edi,%rbp - 6634b417: 48 c1 e5 02 shl $0x2,%rbp - 6634b41b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634b420: 85 ff test %edi,%edi - 6634b422: 78 05 js 6634b429 - 6634b424: 39 7e 38 cmp %edi,0x38(%rsi) - 6634b427: 7f 11 jg 6634b43a - 6634b429: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634b42f: 4c 89 ea mov %r13,%rdx - 6634b432: 4c 89 e1 mov %r12,%rcx - 6634b435: e8 d6 6d 00 00 callq 66352210 <_assert> - 6634b43a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634b43e: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634b442: 48 01 da add %rbx,%rdx - 6634b445: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634b448: 8b 0a mov (%rdx),%ecx - 6634b44a: 39 c8 cmp %ecx,%eax - 6634b44c: 74 6c je 6634b4ba - 6634b44e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b452: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634b456: 41 89 c3 mov %eax,%r11d - 6634b459: 41 29 cb sub %ecx,%r11d - 6634b45c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634b460: 45 01 18 add %r11d,(%r8) - 6634b463: 89 02 mov %eax,(%rdx) - 6634b465: 31 d2 xor %edx,%edx - 6634b467: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634b46b: 45 8b 18 mov (%r8),%r11d - 6634b46e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634b472: 45 85 db test %r11d,%r11d - 6634b475: 0f 9f c2 setg %dl - 6634b478: 3b 10 cmp (%rax),%edx - 6634b47a: 74 3e je 6634b4ba - 6634b47c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634b480: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634b484: 44 8b 10 mov (%rax),%r10d - 6634b487: 45 85 d2 test %r10d,%r10d - 6634b48a: 75 2e jne 6634b4ba - 6634b48c: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634b490: 48 8b 0d 99 c4 00 00 mov 0xc499(%rip),%rcx # 66357930 - 6634b497: 4c 8b 05 82 c4 00 00 mov 0xc482(%rip),%r8 # 66357920 - 6634b49e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634b4a2: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634b4a6: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634b4ac: 48 63 01 movslq (%rcx),%rax - 6634b4af: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634b4b3: 44 89 09 mov %r9d,(%rcx) - 6634b4b6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634b4ba: 48 83 c3 04 add $0x4,%rbx - 6634b4be: 81 c7 00 01 00 00 add $0x100,%edi - 6634b4c4: 48 81 c5 00 04 00 00 add $0x400,%rbp - 6634b4cb: 48 83 fb 64 cmp $0x64,%rbx - 6634b4cf: 0f 85 4b ff ff ff jne 6634b420 - 6634b4d5: 48 83 c4 28 add $0x28,%rsp - 6634b4d9: 5b pop %rbx - 6634b4da: 5e pop %rsi - 6634b4db: 5f pop %rdi - 6634b4dc: 5d pop %rbp - 6634b4dd: 41 5c pop %r12 - 6634b4df: 41 5d pop %r13 - 6634b4e1: c3 retq - 6634b4e2: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634b4e6: 4c 8b 1d 33 c4 00 00 mov 0xc433(%rip),%r11 # 66357920 - 6634b4ed: 4c 8b 15 3c c4 00 00 mov 0xc43c(%rip),%r10 # 66357930 - 6634b4f4: 48 8d 50 24 lea 0x24(%rax),%rdx - 6634b4f8: b8 48 00 00 00 mov $0x48,%eax - 6634b4fd: 0f 1f 00 nopl (%rax) - 6634b500: 8b 0a mov (%rdx),%ecx - 6634b502: 85 c9 test %ecx,%ecx - 6634b504: 74 55 je 6634b55b - 6634b506: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b50a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634b50e: 41 29 08 sub %ecx,(%r8) - 6634b511: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634b517: 45 8b 00 mov (%r8),%r8d - 6634b51a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634b51e: 45 85 c0 test %r8d,%r8d - 6634b521: 41 0f 9f c0 setg %r8b - 6634b525: 45 0f b6 c0 movzbl %r8b,%r8d - 6634b529: 44 3b 01 cmp (%rcx),%r8d - 6634b52c: 74 2d je 6634b55b - 6634b52e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634b532: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634b536: 8b 09 mov (%rcx),%ecx - 6634b538: 85 c9 test %ecx,%ecx - 6634b53a: 75 1f jne 6634b55b - 6634b53c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634b540: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634b544: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634b548: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634b54e: 49 63 0a movslq (%r10),%rcx - 6634b551: 8d 59 01 lea 0x1(%rcx),%ebx - 6634b554: 41 89 1a mov %ebx,(%r10) - 6634b557: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634b55b: 48 83 c0 08 add $0x8,%rax - 6634b55f: 48 83 c2 04 add $0x4,%rdx - 6634b563: 48 3d c8 00 00 00 cmp $0xc8,%rax - 6634b569: 75 95 jne 6634b500 - 6634b56b: 48 83 c4 28 add $0x28,%rsp - 6634b56f: 5b pop %rbx - 6634b570: 5e pop %rsi - 6634b571: 5f pop %rdi - 6634b572: 5d pop %rbp - 6634b573: 41 5c pop %r12 - 6634b575: 41 5d pop %r13 - 6634b577: c3 retq - 6634b578: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634b57f: 00 +000000006634acf0 : + 6634acf0: 41 55 push %r13 + 6634acf2: 41 54 push %r12 + 6634acf4: 55 push %rbp + 6634acf5: 57 push %rdi + 6634acf6: 56 push %rsi + 6634acf7: 53 push %rbx + 6634acf8: 48 83 ec 28 sub $0x28,%rsp + 6634acfc: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634ad00: 49 8b 81 d8 00 00 00 mov 0xd8(%r9),%rax + 6634ad07: 48 89 cb mov %rcx,%rbx + 6634ad0a: 44 8b 10 mov (%rax),%r10d + 6634ad0d: 45 85 d2 test %r10d,%r10d + 6634ad10: 0f 84 cb 00 00 00 je 6634ade1 + 6634ad16: 49 8b 41 10 mov 0x10(%r9),%rax + 6634ad1a: bf 0b 00 00 00 mov $0xb,%edi + 6634ad1f: 4c 8d 2d da 82 00 00 lea 0x82da(%rip),%r13 # 66353000 <.rdata> + 6634ad26: 4c 8d 25 e3 82 00 00 lea 0x82e3(%rip),%r12 # 66353010 <.rdata+0x10> + 6634ad2d: 8b 10 mov (%rax),%edx + 6634ad2f: 49 8b 41 08 mov 0x8(%r9),%rax + 6634ad33: 8b 00 mov (%rax),%eax + 6634ad35: 8d 04 50 lea (%rax,%rdx,2),%eax + 6634ad38: 49 8b 51 18 mov 0x18(%r9),%rdx + 6634ad3c: 8b 12 mov (%rdx),%edx + 6634ad3e: 8d 04 90 lea (%rax,%rdx,4),%eax + 6634ad41: 49 8b 51 20 mov 0x20(%r9),%rdx + 6634ad45: 8b 12 mov (%rdx),%edx + 6634ad47: 8d 04 d0 lea (%rax,%rdx,8),%eax + 6634ad4a: 49 8b 51 28 mov 0x28(%r9),%rdx + 6634ad4e: 8b 32 mov (%rdx),%esi + 6634ad50: 49 8b 51 30 mov 0x30(%r9),%rdx + 6634ad54: c1 e6 04 shl $0x4,%esi + 6634ad57: 01 f0 add %esi,%eax + 6634ad59: 8b 32 mov (%rdx),%esi + 6634ad5b: 49 8b 51 48 mov 0x48(%r9),%rdx + 6634ad5f: c1 e6 05 shl $0x5,%esi + 6634ad62: 01 c6 add %eax,%esi + 6634ad64: 49 8b 41 38 mov 0x38(%r9),%rax + 6634ad68: 8b 00 mov (%rax),%eax + 6634ad6a: c1 e0 06 shl $0x6,%eax + 6634ad6d: 01 c6 add %eax,%esi + 6634ad6f: 49 8b 41 40 mov 0x40(%r9),%rax + 6634ad73: 8b 00 mov (%rax),%eax + 6634ad75: c1 e0 07 shl $0x7,%eax + 6634ad78: 01 f0 add %esi,%eax + 6634ad7a: 8b 32 mov (%rdx),%esi + 6634ad7c: 49 8b 51 50 mov 0x50(%r9),%rdx + 6634ad80: c1 e6 08 shl $0x8,%esi + 6634ad83: 01 f0 add %esi,%eax + 6634ad85: 8b 32 mov (%rdx),%esi + 6634ad87: c1 e6 09 shl $0x9,%esi + 6634ad8a: 01 c6 add %eax,%esi + 6634ad8c: 48 63 ee movslq %esi,%rbp + 6634ad8f: 48 c1 e5 02 shl $0x2,%rbp + 6634ad93: 85 f6 test %esi,%esi + 6634ad95: 78 05 js 6634ad9c + 6634ad97: 39 73 38 cmp %esi,0x38(%rbx) + 6634ad9a: 7f 11 jg 6634adad + 6634ad9c: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634ada2: 4c 89 ea mov %r13,%rdx + 6634ada5: 4c 89 e1 mov %r12,%rcx + 6634ada8: e8 53 62 00 00 callq 66351000 <_assert> + 6634adad: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634adb1: 89 fa mov %edi,%edx + 6634adb3: 48 89 d9 mov %rbx,%rcx + 6634adb6: 83 c7 01 add $0x1,%edi + 6634adb9: 81 c6 00 04 00 00 add $0x400,%esi + 6634adbf: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634adc3: 48 81 c5 00 10 00 00 add $0x1000,%rbp + 6634adca: e8 e1 65 ff ff callq 663413b0 + 6634adcf: 83 ff 1b cmp $0x1b,%edi + 6634add2: 75 bf jne 6634ad93 + 6634add4: 48 83 c4 28 add $0x28,%rsp + 6634add8: 5b pop %rbx + 6634add9: 5e pop %rsi + 6634adda: 5f pop %rdi + 6634addb: 5d pop %rbp + 6634addc: 41 5c pop %r12 + 6634adde: 41 5d pop %r13 + 6634ade0: c3 retq + 6634ade1: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634ade5: 4c 8b 1d 34 bb 00 00 mov 0xbb34(%rip),%r11 # 66356920 + 6634adec: 4c 8b 15 3d bb 00 00 mov 0xbb3d(%rip),%r10 # 66356930 + 6634adf3: 48 8d 50 2c lea 0x2c(%rax),%rdx + 6634adf7: b8 58 00 00 00 mov $0x58,%eax + 6634adfc: 0f 1f 40 00 nopl 0x0(%rax) + 6634ae00: 8b 0a mov (%rdx),%ecx + 6634ae02: 85 c9 test %ecx,%ecx + 6634ae04: 74 55 je 6634ae5b + 6634ae06: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634ae0a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634ae0e: 41 29 08 sub %ecx,(%r8) + 6634ae11: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634ae17: 45 8b 00 mov (%r8),%r8d + 6634ae1a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx + 6634ae1e: 45 85 c0 test %r8d,%r8d + 6634ae21: 41 0f 9f c0 setg %r8b + 6634ae25: 45 0f b6 c0 movzbl %r8b,%r8d + 6634ae29: 44 3b 01 cmp (%rcx),%r8d + 6634ae2c: 74 2d je 6634ae5b + 6634ae2e: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634ae32: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx + 6634ae36: 8b 09 mov (%rcx),%ecx + 6634ae38: 85 c9 test %ecx,%ecx + 6634ae3a: 75 1f jne 6634ae5b + 6634ae3c: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634ae40: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 + 6634ae44: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634ae48: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634ae4e: 49 63 0a movslq (%r10),%rcx + 6634ae51: 8d 71 01 lea 0x1(%rcx),%esi + 6634ae54: 41 89 32 mov %esi,(%r10) + 6634ae57: 4d 89 04 cb mov %r8,(%r11,%rcx,8) + 6634ae5b: 48 83 c0 08 add $0x8,%rax + 6634ae5f: 48 83 c2 04 add $0x4,%rdx + 6634ae63: 48 3d d8 00 00 00 cmp $0xd8,%rax + 6634ae69: 75 95 jne 6634ae00 + 6634ae6b: 48 83 c4 28 add $0x28,%rsp + 6634ae6f: 5b pop %rbx + 6634ae70: 5e pop %rsi + 6634ae71: 5f pop %rdi + 6634ae72: 5d pop %rbp + 6634ae73: 41 5c pop %r12 + 6634ae75: 41 5d pop %r13 + 6634ae77: c3 retq + 6634ae78: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634ae7f: 00 -000000006634b580 : - 6634b580: 41 55 push %r13 - 6634b582: 41 54 push %r12 - 6634b584: 55 push %rbp - 6634b585: 57 push %rdi - 6634b586: 56 push %rsi - 6634b587: 53 push %rbx - 6634b588: 48 83 ec 28 sub $0x28,%rsp - 6634b58c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634b590: 49 8b 81 d0 00 00 00 mov 0xd0(%r9),%rax - 6634b597: 48 89 ce mov %rcx,%rsi - 6634b59a: 8b 18 mov (%rax),%ebx - 6634b59c: 85 db test %ebx,%ebx - 6634b59e: 0f 84 3e 01 00 00 je 6634b6e2 - 6634b5a4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634b5a8: bb 28 00 00 00 mov $0x28,%ebx - 6634b5ad: 4c 8d 2d 4c 8a 00 00 lea 0x8a4c(%rip),%r13 # 66354000 <.rdata> - 6634b5b4: 4c 8d 25 55 8a 00 00 lea 0x8a55(%rip),%r12 # 66354010 <.rdata+0x10> - 6634b5bb: 8b 10 mov (%rax),%edx - 6634b5bd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634b5c1: 8b 00 mov (%rax),%eax - 6634b5c3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634b5c6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634b5ca: 8b 12 mov (%rdx),%edx - 6634b5cc: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634b5cf: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634b5d3: 8b 12 mov (%rdx),%edx - 6634b5d5: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634b5d8: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634b5dc: 8b 3a mov (%rdx),%edi - 6634b5de: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634b5e2: c1 e7 04 shl $0x4,%edi - 6634b5e5: 01 c7 add %eax,%edi - 6634b5e7: 49 8b 41 30 mov 0x30(%r9),%rax - 6634b5eb: 8b 00 mov (%rax),%eax - 6634b5ed: c1 e0 05 shl $0x5,%eax - 6634b5f0: 01 c7 add %eax,%edi - 6634b5f2: 49 8b 41 38 mov 0x38(%r9),%rax - 6634b5f6: 8b 00 mov (%rax),%eax - 6634b5f8: c1 e0 06 shl $0x6,%eax - 6634b5fb: 01 f8 add %edi,%eax - 6634b5fd: 8b 3a mov (%rdx),%edi - 6634b5ff: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634b603: c1 e7 07 shl $0x7,%edi - 6634b606: 01 f8 add %edi,%eax - 6634b608: 8b 3a mov (%rdx),%edi - 6634b60a: c1 e7 08 shl $0x8,%edi - 6634b60d: 01 c7 add %eax,%edi - 6634b60f: 48 63 ef movslq %edi,%rbp - 6634b612: 48 c1 e5 02 shl $0x2,%rbp - 6634b616: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634b61d: 00 00 00 - 6634b620: 85 ff test %edi,%edi - 6634b622: 78 05 js 6634b629 - 6634b624: 39 7e 38 cmp %edi,0x38(%rsi) - 6634b627: 7f 11 jg 6634b63a - 6634b629: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634b62f: 4c 89 ea mov %r13,%rdx - 6634b632: 4c 89 e1 mov %r12,%rcx - 6634b635: e8 d6 6b 00 00 callq 66352210 <_assert> - 6634b63a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634b63e: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634b642: 48 01 da add %rbx,%rdx - 6634b645: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634b648: 8b 0a mov (%rdx),%ecx - 6634b64a: 39 c8 cmp %ecx,%eax - 6634b64c: 74 6c je 6634b6ba - 6634b64e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b652: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634b656: 41 89 c3 mov %eax,%r11d - 6634b659: 41 29 cb sub %ecx,%r11d - 6634b65c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634b660: 45 01 18 add %r11d,(%r8) - 6634b663: 89 02 mov %eax,(%rdx) - 6634b665: 31 d2 xor %edx,%edx - 6634b667: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634b66b: 45 8b 18 mov (%r8),%r11d - 6634b66e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634b672: 45 85 db test %r11d,%r11d - 6634b675: 0f 9f c2 setg %dl - 6634b678: 3b 10 cmp (%rax),%edx - 6634b67a: 74 3e je 6634b6ba - 6634b67c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634b680: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634b684: 44 8b 10 mov (%rax),%r10d - 6634b687: 45 85 d2 test %r10d,%r10d - 6634b68a: 75 2e jne 6634b6ba - 6634b68c: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634b690: 48 8b 0d 99 c2 00 00 mov 0xc299(%rip),%rcx # 66357930 - 6634b697: 4c 8b 05 82 c2 00 00 mov 0xc282(%rip),%r8 # 66357920 - 6634b69e: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634b6a2: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634b6a6: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634b6ac: 48 63 01 movslq (%rcx),%rax - 6634b6af: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634b6b3: 44 89 09 mov %r9d,(%rcx) - 6634b6b6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634b6ba: 48 83 c3 04 add $0x4,%rbx - 6634b6be: 81 c7 00 02 00 00 add $0x200,%edi - 6634b6c4: 48 81 c5 00 08 00 00 add $0x800,%rbp - 6634b6cb: 48 83 fb 68 cmp $0x68,%rbx - 6634b6cf: 0f 85 4b ff ff ff jne 6634b620 - 6634b6d5: 48 83 c4 28 add $0x28,%rsp - 6634b6d9: 5b pop %rbx - 6634b6da: 5e pop %rsi - 6634b6db: 5f pop %rdi - 6634b6dc: 5d pop %rbp - 6634b6dd: 41 5c pop %r12 - 6634b6df: 41 5d pop %r13 - 6634b6e1: c3 retq - 6634b6e2: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634b6e6: 4c 8b 1d 33 c2 00 00 mov 0xc233(%rip),%r11 # 66357920 - 6634b6ed: 4c 8b 15 3c c2 00 00 mov 0xc23c(%rip),%r10 # 66357930 - 6634b6f4: 48 8d 50 28 lea 0x28(%rax),%rdx - 6634b6f8: b8 50 00 00 00 mov $0x50,%eax - 6634b6fd: 0f 1f 00 nopl (%rax) - 6634b700: 8b 0a mov (%rdx),%ecx - 6634b702: 85 c9 test %ecx,%ecx - 6634b704: 74 55 je 6634b75b - 6634b706: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b70a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634b70e: 41 29 08 sub %ecx,(%r8) - 6634b711: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634b717: 45 8b 00 mov (%r8),%r8d - 6634b71a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634b71e: 45 85 c0 test %r8d,%r8d - 6634b721: 41 0f 9f c0 setg %r8b - 6634b725: 45 0f b6 c0 movzbl %r8b,%r8d - 6634b729: 44 3b 01 cmp (%rcx),%r8d - 6634b72c: 74 2d je 6634b75b - 6634b72e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634b732: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634b736: 8b 09 mov (%rcx),%ecx - 6634b738: 85 c9 test %ecx,%ecx - 6634b73a: 75 1f jne 6634b75b - 6634b73c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634b740: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634b744: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634b748: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634b74e: 49 63 0a movslq (%r10),%rcx - 6634b751: 8d 59 01 lea 0x1(%rcx),%ebx - 6634b754: 41 89 1a mov %ebx,(%r10) - 6634b757: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634b75b: 48 83 c0 08 add $0x8,%rax - 6634b75f: 48 83 c2 04 add $0x4,%rdx - 6634b763: 48 3d d0 00 00 00 cmp $0xd0,%rax - 6634b769: 75 95 jne 6634b700 - 6634b76b: 48 83 c4 28 add $0x28,%rsp - 6634b76f: 5b pop %rbx - 6634b770: 5e pop %rsi - 6634b771: 5f pop %rdi - 6634b772: 5d pop %rbp - 6634b773: 41 5c pop %r12 - 6634b775: 41 5d pop %r13 - 6634b777: c3 retq - 6634b778: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634b77f: 00 +000000006634ae80 : + 6634ae80: 53 push %rbx + 6634ae81: 48 83 ec 20 sub $0x20,%rsp + 6634ae85: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634ae89: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634ae8d: 48 89 cb mov %rcx,%rbx + 6634ae90: 8b 12 mov (%rdx),%edx + 6634ae92: 85 d2 test %edx,%edx + 6634ae94: 74 2e je 6634aec4 + 6634ae96: 48 8b 40 08 mov 0x8(%rax),%rax + 6634ae9a: ba 03 00 00 00 mov $0x3,%edx + 6634ae9f: 44 8b 00 mov (%rax),%r8d + 6634aea2: e8 09 65 ff ff callq 663413b0 + 6634aea7: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634aeab: ba 04 00 00 00 mov $0x4,%edx + 6634aeb0: 48 89 d9 mov %rbx,%rcx + 6634aeb3: 48 8b 40 10 mov 0x10(%rax),%rax + 6634aeb7: 44 8b 00 mov (%rax),%r8d + 6634aeba: 48 83 c4 20 add $0x20,%rsp + 6634aebe: 5b pop %rbx + 6634aebf: e9 ec 64 ff ff jmpq 663413b0 + 6634aec4: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634aec8: 4c 8b 15 51 ba 00 00 mov 0xba51(%rip),%r10 # 66356920 + 6634aecf: 4c 8b 0d 5a ba 00 00 mov 0xba5a(%rip),%r9 # 66356930 + 6634aed6: 8b 4a 0c mov 0xc(%rdx),%ecx + 6634aed9: 85 c9 test %ecx,%ecx + 6634aedb: 74 38 je 6634af15 + 6634aedd: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634aee1: 4d 8b 40 18 mov 0x18(%r8),%r8 + 6634aee5: 41 29 08 sub %ecx,(%r8) + 6634aee8: c7 42 0c 00 00 00 00 movl $0x0,0xc(%rdx) + 6634aeef: 45 8b 18 mov (%r8),%r11d + 6634aef2: 45 31 c0 xor %r8d,%r8d + 6634aef5: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634aef9: 45 85 db test %r11d,%r11d + 6634aefc: 41 0f 9f c0 setg %r8b + 6634af00: 44 3b 01 cmp (%rcx),%r8d + 6634af03: 74 10 je 6634af15 + 6634af05: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634af09: 48 8b 49 18 mov 0x18(%rcx),%rcx + 6634af0d: 44 8b 01 mov (%rcx),%r8d + 6634af10: 45 85 c0 test %r8d,%r8d + 6634af13: 74 5e je 6634af73 + 6634af15: 8b 4a 10 mov 0x10(%rdx),%ecx + 6634af18: 85 c9 test %ecx,%ecx + 6634af1a: 74 51 je 6634af6d + 6634af1c: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634af20: 48 8b 40 20 mov 0x20(%rax),%rax + 6634af24: 4d 8b 40 20 mov 0x20(%r8),%r8 + 6634af28: 41 29 08 sub %ecx,(%r8) + 6634af2b: c7 42 10 00 00 00 00 movl $0x0,0x10(%rdx) + 6634af32: 31 d2 xor %edx,%edx + 6634af34: 41 8b 08 mov (%r8),%ecx + 6634af37: 85 c9 test %ecx,%ecx + 6634af39: 0f 9f c2 setg %dl + 6634af3c: 3b 10 cmp (%rax),%edx + 6634af3e: 74 2d je 6634af6d + 6634af40: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634af44: 48 8b 40 20 mov 0x20(%rax),%rax + 6634af48: 8b 00 mov (%rax),%eax + 6634af4a: 85 c0 test %eax,%eax + 6634af4c: 75 1f jne 6634af6d + 6634af4e: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634af52: 48 8b 50 20 mov 0x20(%rax),%rdx + 6634af56: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634af5a: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634af60: 49 63 01 movslq (%r9),%rax + 6634af63: 8d 48 01 lea 0x1(%rax),%ecx + 6634af66: 41 89 09 mov %ecx,(%r9) + 6634af69: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634af6d: 48 83 c4 20 add $0x20,%rsp + 6634af71: 5b pop %rbx + 6634af72: c3 retq + 6634af73: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634af77: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 6634af7b: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634af7f: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634af85: 49 63 09 movslq (%r9),%rcx + 6634af88: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634af8c: 45 89 19 mov %r11d,(%r9) + 6634af8f: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634af93: eb 80 jmp 6634af15 + 6634af95: 90 nop + 6634af96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634af9d: 00 00 00 -000000006634b780 : - 6634b780: 41 55 push %r13 - 6634b782: 41 54 push %r12 - 6634b784: 55 push %rbp - 6634b785: 57 push %rdi - 6634b786: 56 push %rsi - 6634b787: 53 push %rbx - 6634b788: 48 83 ec 28 sub $0x28,%rsp - 6634b78c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634b790: 49 8b 81 d8 00 00 00 mov 0xd8(%r9),%rax - 6634b797: 48 89 ce mov %rcx,%rsi - 6634b79a: 8b 18 mov (%rax),%ebx - 6634b79c: 85 db test %ebx,%ebx - 6634b79e: 0f 84 3f 01 00 00 je 6634b8e3 - 6634b7a4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634b7a8: bb 2c 00 00 00 mov $0x2c,%ebx - 6634b7ad: 4c 8d 2d 4c 88 00 00 lea 0x884c(%rip),%r13 # 66354000 <.rdata> - 6634b7b4: 4c 8d 25 55 88 00 00 lea 0x8855(%rip),%r12 # 66354010 <.rdata+0x10> - 6634b7bb: 8b 10 mov (%rax),%edx - 6634b7bd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634b7c1: 8b 00 mov (%rax),%eax - 6634b7c3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634b7c6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634b7ca: 8b 12 mov (%rdx),%edx - 6634b7cc: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634b7cf: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634b7d3: 8b 12 mov (%rdx),%edx - 6634b7d5: 8d 04 d0 lea (%rax,%rdx,8),%eax - 6634b7d8: 49 8b 51 28 mov 0x28(%r9),%rdx - 6634b7dc: 8b 3a mov (%rdx),%edi - 6634b7de: 49 8b 51 30 mov 0x30(%r9),%rdx - 6634b7e2: c1 e7 04 shl $0x4,%edi - 6634b7e5: 01 f8 add %edi,%eax - 6634b7e7: 8b 3a mov (%rdx),%edi - 6634b7e9: 49 8b 51 48 mov 0x48(%r9),%rdx - 6634b7ed: c1 e7 05 shl $0x5,%edi - 6634b7f0: 01 c7 add %eax,%edi - 6634b7f2: 49 8b 41 38 mov 0x38(%r9),%rax - 6634b7f6: 8b 00 mov (%rax),%eax - 6634b7f8: c1 e0 06 shl $0x6,%eax - 6634b7fb: 01 c7 add %eax,%edi - 6634b7fd: 49 8b 41 40 mov 0x40(%r9),%rax - 6634b801: 8b 00 mov (%rax),%eax - 6634b803: c1 e0 07 shl $0x7,%eax - 6634b806: 01 f8 add %edi,%eax - 6634b808: 8b 3a mov (%rdx),%edi - 6634b80a: 49 8b 51 50 mov 0x50(%r9),%rdx - 6634b80e: c1 e7 08 shl $0x8,%edi - 6634b811: 01 f8 add %edi,%eax - 6634b813: 8b 3a mov (%rdx),%edi - 6634b815: c1 e7 09 shl $0x9,%edi - 6634b818: 01 c7 add %eax,%edi - 6634b81a: 48 63 ef movslq %edi,%rbp - 6634b81d: 48 c1 e5 02 shl $0x2,%rbp - 6634b821: 85 ff test %edi,%edi - 6634b823: 78 05 js 6634b82a - 6634b825: 39 7e 38 cmp %edi,0x38(%rsi) - 6634b828: 7f 11 jg 6634b83b - 6634b82a: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634b830: 4c 89 ea mov %r13,%rdx - 6634b833: 4c 89 e1 mov %r12,%rcx - 6634b836: e8 d5 69 00 00 callq 66352210 <_assert> - 6634b83b: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634b83f: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634b843: 48 01 da add %rbx,%rdx - 6634b846: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634b849: 8b 0a mov (%rdx),%ecx - 6634b84b: 39 c8 cmp %ecx,%eax - 6634b84d: 74 6c je 6634b8bb - 6634b84f: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b853: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634b857: 41 89 c3 mov %eax,%r11d - 6634b85a: 41 29 cb sub %ecx,%r11d - 6634b85d: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634b861: 45 01 18 add %r11d,(%r8) - 6634b864: 89 02 mov %eax,(%rdx) - 6634b866: 31 d2 xor %edx,%edx - 6634b868: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634b86c: 45 8b 18 mov (%r8),%r11d - 6634b86f: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634b873: 45 85 db test %r11d,%r11d - 6634b876: 0f 9f c2 setg %dl - 6634b879: 3b 10 cmp (%rax),%edx - 6634b87b: 74 3e je 6634b8bb - 6634b87d: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634b881: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634b885: 44 8b 10 mov (%rax),%r10d - 6634b888: 45 85 d2 test %r10d,%r10d - 6634b88b: 75 2e jne 6634b8bb - 6634b88d: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634b891: 48 8b 0d 98 c0 00 00 mov 0xc098(%rip),%rcx # 66357930 - 6634b898: 4c 8b 05 81 c0 00 00 mov 0xc081(%rip),%r8 # 66357920 - 6634b89f: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634b8a3: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634b8a7: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634b8ad: 48 63 01 movslq (%rcx),%rax - 6634b8b0: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634b8b4: 44 89 09 mov %r9d,(%rcx) - 6634b8b7: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634b8bb: 48 83 c3 04 add $0x4,%rbx - 6634b8bf: 81 c7 00 04 00 00 add $0x400,%edi - 6634b8c5: 48 81 c5 00 10 00 00 add $0x1000,%rbp - 6634b8cc: 48 83 fb 6c cmp $0x6c,%rbx - 6634b8d0: 0f 85 4b ff ff ff jne 6634b821 - 6634b8d6: 48 83 c4 28 add $0x28,%rsp - 6634b8da: 5b pop %rbx - 6634b8db: 5e pop %rsi - 6634b8dc: 5f pop %rdi - 6634b8dd: 5d pop %rbp - 6634b8de: 41 5c pop %r12 - 6634b8e0: 41 5d pop %r13 - 6634b8e2: c3 retq - 6634b8e3: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634b8e7: 4c 8b 1d 32 c0 00 00 mov 0xc032(%rip),%r11 # 66357920 - 6634b8ee: 4c 8b 15 3b c0 00 00 mov 0xc03b(%rip),%r10 # 66357930 - 6634b8f5: 48 8d 50 2c lea 0x2c(%rax),%rdx - 6634b8f9: b8 58 00 00 00 mov $0x58,%eax - 6634b8fe: 66 90 xchg %ax,%ax - 6634b900: 8b 0a mov (%rdx),%ecx - 6634b902: 85 c9 test %ecx,%ecx - 6634b904: 74 55 je 6634b95b - 6634b906: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634b90a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634b90e: 41 29 08 sub %ecx,(%r8) - 6634b911: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634b917: 45 8b 00 mov (%r8),%r8d - 6634b91a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634b91e: 45 85 c0 test %r8d,%r8d - 6634b921: 41 0f 9f c0 setg %r8b - 6634b925: 45 0f b6 c0 movzbl %r8b,%r8d - 6634b929: 44 3b 01 cmp (%rcx),%r8d - 6634b92c: 74 2d je 6634b95b - 6634b92e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634b932: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634b936: 8b 09 mov (%rcx),%ecx - 6634b938: 85 c9 test %ecx,%ecx - 6634b93a: 75 1f jne 6634b95b - 6634b93c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634b940: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634b944: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634b948: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634b94e: 49 63 0a movslq (%r10),%rcx - 6634b951: 8d 59 01 lea 0x1(%rcx),%ebx - 6634b954: 41 89 1a mov %ebx,(%r10) - 6634b957: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634b95b: 48 83 c0 08 add $0x8,%rax - 6634b95f: 48 83 c2 04 add $0x4,%rdx - 6634b963: 48 3d d8 00 00 00 cmp $0xd8,%rax - 6634b969: 75 95 jne 6634b900 - 6634b96b: 48 83 c4 28 add $0x28,%rsp - 6634b96f: 5b pop %rbx - 6634b970: 5e pop %rsi - 6634b971: 5f pop %rdi - 6634b972: 5d pop %rbp - 6634b973: 41 5c pop %r12 - 6634b975: 41 5d pop %r13 - 6634b977: c3 retq - 6634b978: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634b97f: 00 +000000006634afa0 : + 6634afa0: 53 push %rbx + 6634afa1: 48 83 ec 20 sub $0x20,%rsp + 6634afa5: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634afa9: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634afad: 48 89 cb mov %rcx,%rbx + 6634afb0: 8b 12 mov (%rdx),%edx + 6634afb2: 85 d2 test %edx,%edx + 6634afb4: 74 2e je 6634afe4 + 6634afb6: 48 8b 40 08 mov 0x8(%rax),%rax + 6634afba: ba 03 00 00 00 mov $0x3,%edx + 6634afbf: 44 8b 00 mov (%rax),%r8d + 6634afc2: e8 e9 63 ff ff callq 663413b0 + 6634afc7: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634afcb: ba 04 00 00 00 mov $0x4,%edx + 6634afd0: 48 89 d9 mov %rbx,%rcx + 6634afd3: 48 8b 40 10 mov 0x10(%rax),%rax + 6634afd7: 44 8b 00 mov (%rax),%r8d + 6634afda: 48 83 c4 20 add $0x20,%rsp + 6634afde: 5b pop %rbx + 6634afdf: e9 cc 63 ff ff jmpq 663413b0 + 6634afe4: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634afe8: 4c 8b 15 31 b9 00 00 mov 0xb931(%rip),%r10 # 66356920 + 6634afef: 4c 8b 0d 3a b9 00 00 mov 0xb93a(%rip),%r9 # 66356930 + 6634aff6: 8b 4a 0c mov 0xc(%rdx),%ecx + 6634aff9: 85 c9 test %ecx,%ecx + 6634affb: 74 38 je 6634b035 + 6634affd: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634b001: 4d 8b 40 18 mov 0x18(%r8),%r8 + 6634b005: 41 29 08 sub %ecx,(%r8) + 6634b008: c7 42 0c 00 00 00 00 movl $0x0,0xc(%rdx) + 6634b00f: 45 8b 18 mov (%r8),%r11d + 6634b012: 45 31 c0 xor %r8d,%r8d + 6634b015: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634b019: 45 85 db test %r11d,%r11d + 6634b01c: 41 0f 9f c0 setg %r8b + 6634b020: 44 3b 01 cmp (%rcx),%r8d + 6634b023: 74 10 je 6634b035 + 6634b025: 48 8b 4b 20 mov 0x20(%rbx),%rcx + 6634b029: 48 8b 49 18 mov 0x18(%rcx),%rcx + 6634b02d: 44 8b 01 mov (%rcx),%r8d + 6634b030: 45 85 c0 test %r8d,%r8d + 6634b033: 74 5e je 6634b093 + 6634b035: 8b 4a 10 mov 0x10(%rdx),%ecx + 6634b038: 85 c9 test %ecx,%ecx + 6634b03a: 74 51 je 6634b08d + 6634b03c: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634b040: 48 8b 40 20 mov 0x20(%rax),%rax + 6634b044: 4d 8b 40 20 mov 0x20(%r8),%r8 + 6634b048: 41 29 08 sub %ecx,(%r8) + 6634b04b: c7 42 10 00 00 00 00 movl $0x0,0x10(%rdx) + 6634b052: 31 d2 xor %edx,%edx + 6634b054: 41 8b 08 mov (%r8),%ecx + 6634b057: 85 c9 test %ecx,%ecx + 6634b059: 0f 9f c2 setg %dl + 6634b05c: 3b 10 cmp (%rax),%edx + 6634b05e: 74 2d je 6634b08d + 6634b060: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634b064: 48 8b 40 20 mov 0x20(%rax),%rax + 6634b068: 8b 00 mov (%rax),%eax + 6634b06a: 85 c0 test %eax,%eax + 6634b06c: 75 1f jne 6634b08d + 6634b06e: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634b072: 48 8b 50 20 mov 0x20(%rax),%rdx + 6634b076: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634b07a: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634b080: 49 63 01 movslq (%r9),%rax + 6634b083: 8d 48 01 lea 0x1(%rax),%ecx + 6634b086: 41 89 09 mov %ecx,(%r9) + 6634b089: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634b08d: 48 83 c4 20 add $0x20,%rsp + 6634b091: 5b pop %rbx + 6634b092: c3 retq + 6634b093: 48 8b 4b 28 mov 0x28(%rbx),%rcx + 6634b097: 4c 8b 41 18 mov 0x18(%rcx),%r8 + 6634b09b: 49 8b 48 10 mov 0x10(%r8),%rcx + 6634b09f: c7 01 01 00 00 00 movl $0x1,(%rcx) + 6634b0a5: 49 63 09 movslq (%r9),%rcx + 6634b0a8: 44 8d 59 01 lea 0x1(%rcx),%r11d + 6634b0ac: 45 89 19 mov %r11d,(%r9) + 6634b0af: 4d 89 04 ca mov %r8,(%r10,%rcx,8) + 6634b0b3: eb 80 jmp 6634b035 + 6634b0b5: 90 nop + 6634b0b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634b0bd: 00 00 00 -000000006634b980 : - 6634b980: 41 55 push %r13 - 6634b982: 41 54 push %r12 - 6634b984: 55 push %rbp - 6634b985: 57 push %rdi - 6634b986: 56 push %rsi - 6634b987: 53 push %rbx - 6634b988: 48 83 ec 28 sub $0x28,%rsp - 6634b98c: 4c 8b 49 10 mov 0x10(%rcx),%r9 - 6634b990: 49 8b 81 e8 00 00 00 mov 0xe8(%r9),%rax - 6634b997: 48 89 ce mov %rcx,%rsi - 6634b99a: 8b 18 mov (%rax),%ebx - 6634b99c: 85 db test %ebx,%ebx - 6634b99e: 0f 84 5e 01 00 00 je 6634bb02 - 6634b9a4: 49 8b 41 10 mov 0x10(%r9),%rax - 6634b9a8: bb 34 00 00 00 mov $0x34,%ebx - 6634b9ad: 4c 8d 2d 4c 86 00 00 lea 0x864c(%rip),%r13 # 66354000 <.rdata> - 6634b9b4: 4c 8d 25 55 86 00 00 lea 0x8655(%rip),%r12 # 66354010 <.rdata+0x10> - 6634b9bb: 8b 10 mov (%rax),%edx - 6634b9bd: 49 8b 41 08 mov 0x8(%r9),%rax - 6634b9c1: 8b 00 mov (%rax),%eax - 6634b9c3: 8d 04 50 lea (%rax,%rdx,2),%eax - 6634b9c6: 49 8b 51 18 mov 0x18(%r9),%rdx - 6634b9ca: 8b 12 mov (%rdx),%edx - 6634b9cc: 8d 04 90 lea (%rax,%rdx,4),%eax - 6634b9cf: 49 8b 51 20 mov 0x20(%r9),%rdx - 6634b9d3: 8b 12 mov (%rdx),%edx - 6634b9d5: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634b9d8: 49 8b 41 28 mov 0x28(%r9),%rax - 6634b9dc: 49 8b 51 38 mov 0x38(%r9),%rdx - 6634b9e0: 8b 00 mov (%rax),%eax - 6634b9e2: c1 e0 04 shl $0x4,%eax - 6634b9e5: 01 c7 add %eax,%edi - 6634b9e7: 49 8b 41 30 mov 0x30(%r9),%rax - 6634b9eb: 8b 00 mov (%rax),%eax - 6634b9ed: c1 e0 05 shl $0x5,%eax - 6634b9f0: 01 f8 add %edi,%eax - 6634b9f2: 8b 3a mov (%rdx),%edi - 6634b9f4: 49 8b 51 40 mov 0x40(%r9),%rdx - 6634b9f8: c1 e7 06 shl $0x6,%edi - 6634b9fb: 01 f8 add %edi,%eax - 6634b9fd: 8b 3a mov (%rdx),%edi - 6634b9ff: 49 8b 51 58 mov 0x58(%r9),%rdx - 6634ba03: c1 e7 07 shl $0x7,%edi - 6634ba06: 01 c7 add %eax,%edi - 6634ba08: 49 8b 41 48 mov 0x48(%r9),%rax - 6634ba0c: 8b 00 mov (%rax),%eax - 6634ba0e: c1 e0 08 shl $0x8,%eax - 6634ba11: 01 c7 add %eax,%edi - 6634ba13: 49 8b 41 50 mov 0x50(%r9),%rax - 6634ba17: 8b 00 mov (%rax),%eax - 6634ba19: c1 e0 09 shl $0x9,%eax - 6634ba1c: 01 f8 add %edi,%eax - 6634ba1e: 8b 3a mov (%rdx),%edi - 6634ba20: 49 8b 51 60 mov 0x60(%r9),%rdx - 6634ba24: c1 e7 0a shl $0xa,%edi - 6634ba27: 01 f8 add %edi,%eax - 6634ba29: 8b 3a mov (%rdx),%edi - 6634ba2b: c1 e7 0b shl $0xb,%edi - 6634ba2e: 01 c7 add %eax,%edi - 6634ba30: 48 63 ef movslq %edi,%rbp - 6634ba33: 48 c1 e5 02 shl $0x2,%rbp - 6634ba37: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634ba3e: 00 00 - 6634ba40: 85 ff test %edi,%edi - 6634ba42: 78 05 js 6634ba49 - 6634ba44: 39 7e 38 cmp %edi,0x38(%rsi) - 6634ba47: 7f 11 jg 6634ba5a - 6634ba49: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634ba4f: 4c 89 ea mov %r13,%rdx - 6634ba52: 4c 89 e1 mov %r12,%rcx - 6634ba55: e8 b6 67 00 00 callq 66352210 <_assert> - 6634ba5a: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634ba5e: 48 8b 46 40 mov 0x40(%rsi),%rax - 6634ba62: 48 01 da add %rbx,%rdx - 6634ba65: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634ba68: 8b 0a mov (%rdx),%ecx - 6634ba6a: 39 c8 cmp %ecx,%eax - 6634ba6c: 74 6c je 6634bada - 6634ba6e: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634ba72: 4c 8d 0c 1b lea (%rbx,%rbx,1),%r9 - 6634ba76: 41 89 c3 mov %eax,%r11d - 6634ba79: 41 29 cb sub %ecx,%r11d - 6634ba7c: 4d 8b 04 58 mov (%r8,%rbx,2),%r8 - 6634ba80: 45 01 18 add %r11d,(%r8) - 6634ba83: 89 02 mov %eax,(%rdx) - 6634ba85: 31 d2 xor %edx,%edx - 6634ba87: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634ba8b: 45 8b 18 mov (%r8),%r11d - 6634ba8e: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634ba92: 45 85 db test %r11d,%r11d - 6634ba95: 0f 9f c2 setg %dl - 6634ba98: 3b 10 cmp (%rax),%edx - 6634ba9a: 74 3e je 6634bada - 6634ba9c: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634baa0: 48 8b 04 58 mov (%rax,%rbx,2),%rax - 6634baa4: 44 8b 10 mov (%rax),%r10d - 6634baa7: 45 85 d2 test %r10d,%r10d - 6634baaa: 75 2e jne 6634bada - 6634baac: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634bab0: 48 8b 0d 79 be 00 00 mov 0xbe79(%rip),%rcx # 66357930 - 6634bab7: 4c 8b 05 62 be 00 00 mov 0xbe62(%rip),%r8 # 66357920 - 6634babe: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634bac2: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634bac6: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634bacc: 48 63 01 movslq (%rcx),%rax - 6634bacf: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634bad3: 44 89 09 mov %r9d,(%rcx) - 6634bad6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634bada: 48 83 c3 04 add $0x4,%rbx - 6634bade: 81 c7 00 10 00 00 add $0x1000,%edi - 6634bae4: 48 81 c5 00 40 00 00 add $0x4000,%rbp - 6634baeb: 48 83 fb 74 cmp $0x74,%rbx - 6634baef: 0f 85 4b ff ff ff jne 6634ba40 - 6634baf5: 48 83 c4 28 add $0x28,%rsp - 6634baf9: 5b pop %rbx - 6634bafa: 5e pop %rsi - 6634bafb: 5f pop %rdi - 6634bafc: 5d pop %rbp - 6634bafd: 41 5c pop %r12 - 6634baff: 41 5d pop %r13 - 6634bb01: c3 retq - 6634bb02: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634bb06: 4c 8b 1d 13 be 00 00 mov 0xbe13(%rip),%r11 # 66357920 - 6634bb0d: 4c 8b 15 1c be 00 00 mov 0xbe1c(%rip),%r10 # 66357930 - 6634bb14: 48 8d 50 34 lea 0x34(%rax),%rdx - 6634bb18: b8 68 00 00 00 mov $0x68,%eax - 6634bb1d: 0f 1f 00 nopl (%rax) - 6634bb20: 8b 0a mov (%rdx),%ecx - 6634bb22: 85 c9 test %ecx,%ecx - 6634bb24: 74 55 je 6634bb7b - 6634bb26: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634bb2a: 4d 8b 04 00 mov (%r8,%rax,1),%r8 - 6634bb2e: 41 29 08 sub %ecx,(%r8) - 6634bb31: c7 02 00 00 00 00 movl $0x0,(%rdx) - 6634bb37: 45 8b 00 mov (%r8),%r8d - 6634bb3a: 49 8b 0c 01 mov (%r9,%rax,1),%rcx - 6634bb3e: 45 85 c0 test %r8d,%r8d - 6634bb41: 41 0f 9f c0 setg %r8b - 6634bb45: 45 0f b6 c0 movzbl %r8b,%r8d - 6634bb49: 44 3b 01 cmp (%rcx),%r8d - 6634bb4c: 74 2d je 6634bb7b - 6634bb4e: 48 8b 4e 20 mov 0x20(%rsi),%rcx - 6634bb52: 48 8b 0c 01 mov (%rcx,%rax,1),%rcx - 6634bb56: 8b 09 mov (%rcx),%ecx - 6634bb58: 85 c9 test %ecx,%ecx - 6634bb5a: 75 1f jne 6634bb7b - 6634bb5c: 48 8b 4e 28 mov 0x28(%rsi),%rcx - 6634bb60: 4c 8b 04 01 mov (%rcx,%rax,1),%r8 - 6634bb64: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634bb68: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634bb6e: 49 63 0a movslq (%r10),%rcx - 6634bb71: 8d 59 01 lea 0x1(%rcx),%ebx - 6634bb74: 41 89 1a mov %ebx,(%r10) - 6634bb77: 4d 89 04 cb mov %r8,(%r11,%rcx,8) - 6634bb7b: 48 83 c0 08 add $0x8,%rax - 6634bb7f: 48 83 c2 04 add $0x4,%rdx - 6634bb83: 48 3d e8 00 00 00 cmp $0xe8,%rax - 6634bb89: 75 95 jne 6634bb20 - 6634bb8b: 48 83 c4 28 add $0x28,%rsp - 6634bb8f: 5b pop %rbx - 6634bb90: 5e pop %rsi - 6634bb91: 5f pop %rdi - 6634bb92: 5d pop %rbp - 6634bb93: 41 5c pop %r12 - 6634bb95: 41 5d pop %r13 - 6634bb97: c3 retq - 6634bb98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634bb9f: 00 +000000006634b0c0 : + 6634b0c0: 41 55 push %r13 + 6634b0c2: 41 54 push %r12 + 6634b0c4: 55 push %rbp + 6634b0c5: 57 push %rdi + 6634b0c6: 56 push %rsi + 6634b0c7: 53 push %rbx + 6634b0c8: 48 83 ec 28 sub $0x28,%rsp + 6634b0cc: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634b0d0: 48 8b 90 88 00 00 00 mov 0x88(%rax),%rdx + 6634b0d7: 48 89 cb mov %rcx,%rbx + 6634b0da: 44 8b 2a mov (%rdx),%r13d + 6634b0dd: 45 85 ed test %r13d,%r13d + 6634b0e0: 0f 84 ba 00 00 00 je 6634b1a0 + 6634b0e6: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634b0ea: bf 09 00 00 00 mov $0x9,%edi + 6634b0ef: 4c 8d 2d 0a 7f 00 00 lea 0x7f0a(%rip),%r13 # 66353000 <.rdata> + 6634b0f6: 4c 8d 25 13 7f 00 00 lea 0x7f13(%rip),%r12 # 66353010 <.rdata+0x10> + 6634b0fd: 8b 0a mov (%rdx),%ecx + 6634b0ff: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634b103: 8b 12 mov (%rdx),%edx + 6634b105: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634b108: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634b10c: 8b 09 mov (%rcx),%ecx + 6634b10e: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634b111: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634b115: 8b 09 mov (%rcx),%ecx + 6634b117: 8d 34 ca lea (%rdx,%rcx,8),%esi + 6634b11a: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634b11e: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634b122: 8b 12 mov (%rdx),%edx + 6634b124: c1 e2 04 shl $0x4,%edx + 6634b127: 01 d6 add %edx,%esi + 6634b129: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634b12d: 48 8b 40 40 mov 0x40(%rax),%rax + 6634b131: 8b 12 mov (%rdx),%edx + 6634b133: c1 e2 05 shl $0x5,%edx + 6634b136: 01 f2 add %esi,%edx + 6634b138: 8b 31 mov (%rcx),%esi + 6634b13a: c1 e6 06 shl $0x6,%esi + 6634b13d: 01 f2 add %esi,%edx + 6634b13f: 8b 30 mov (%rax),%esi + 6634b141: c1 e6 07 shl $0x7,%esi + 6634b144: 01 d6 add %edx,%esi + 6634b146: 48 63 ee movslq %esi,%rbp + 6634b149: 48 c1 e5 02 shl $0x2,%rbp + 6634b14d: 0f 1f 00 nopl (%rax) + 6634b150: 85 f6 test %esi,%esi + 6634b152: 78 05 js 6634b159 + 6634b154: 39 73 38 cmp %esi,0x38(%rbx) + 6634b157: 7f 11 jg 6634b16a + 6634b159: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634b15f: 4c 89 ea mov %r13,%rdx + 6634b162: 4c 89 e1 mov %r12,%rcx + 6634b165: e8 96 5e 00 00 callq 66351000 <_assert> + 6634b16a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634b16e: 89 fa mov %edi,%edx + 6634b170: 48 89 d9 mov %rbx,%rcx + 6634b173: 83 c7 01 add $0x1,%edi + 6634b176: 81 c6 00 01 00 00 add $0x100,%esi + 6634b17c: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634b180: 48 81 c5 00 04 00 00 add $0x400,%rbp + 6634b187: e8 24 62 ff ff callq 663413b0 + 6634b18c: 83 ff 11 cmp $0x11,%edi + 6634b18f: 75 bf jne 6634b150 + 6634b191: 48 83 c4 28 add $0x28,%rsp + 6634b195: 5b pop %rbx + 6634b196: 5e pop %rsi + 6634b197: 5f pop %rdi + 6634b198: 5d pop %rbp + 6634b199: 41 5c pop %r12 + 6634b19b: 41 5d pop %r13 + 6634b19d: c3 retq + 6634b19e: 66 90 xchg %ax,%ax + 6634b1a0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634b1a4: 4c 8b 05 75 b7 00 00 mov 0xb775(%rip),%r8 # 66356920 + 6634b1ab: 48 8b 0d 7e b7 00 00 mov 0xb77e(%rip),%rcx # 66356930 + 6634b1b2: 44 8b 4a 24 mov 0x24(%rdx),%r9d + 6634b1b6: 45 85 c9 test %r9d,%r9d + 6634b1b9: 74 58 je 6634b213 + 6634b1bb: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b1bf: 4d 8b 52 48 mov 0x48(%r10),%r10 + 6634b1c3: 45 29 0a sub %r9d,(%r10) + 6634b1c6: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 6634b1cd: 45 8b 22 mov (%r10),%r12d + 6634b1d0: 45 31 d2 xor %r10d,%r10d + 6634b1d3: 4c 8b 48 48 mov 0x48(%rax),%r9 + 6634b1d7: 45 85 e4 test %r12d,%r12d + 6634b1da: 41 0f 9f c2 setg %r10b + 6634b1de: 45 3b 11 cmp (%r9),%r10d + 6634b1e1: 74 30 je 6634b213 + 6634b1e3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b1e7: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634b1eb: 41 8b 29 mov (%r9),%ebp + 6634b1ee: 85 ed test %ebp,%ebp + 6634b1f0: 75 21 jne 6634b213 + 6634b1f2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b1f6: 4d 8b 51 48 mov 0x48(%r9),%r10 + 6634b1fa: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b1fe: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b205: 4c 63 09 movslq (%rcx),%r9 + 6634b208: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b20c: 44 89 19 mov %r11d,(%rcx) + 6634b20f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b213: 44 8b 4a 28 mov 0x28(%rdx),%r9d + 6634b217: 45 85 c9 test %r9d,%r9d + 6634b21a: 74 57 je 6634b273 + 6634b21c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b220: 4d 8b 52 50 mov 0x50(%r10),%r10 + 6634b224: 45 29 0a sub %r9d,(%r10) + 6634b227: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634b22e: 41 8b 3a mov (%r10),%edi + 6634b231: 45 31 d2 xor %r10d,%r10d + 6634b234: 4c 8b 48 50 mov 0x50(%rax),%r9 + 6634b238: 85 ff test %edi,%edi + 6634b23a: 41 0f 9f c2 setg %r10b + 6634b23e: 45 3b 11 cmp (%r9),%r10d + 6634b241: 74 30 je 6634b273 + 6634b243: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b247: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634b24b: 41 8b 31 mov (%r9),%esi + 6634b24e: 85 f6 test %esi,%esi + 6634b250: 75 21 jne 6634b273 + 6634b252: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b256: 4d 8b 51 50 mov 0x50(%r9),%r10 + 6634b25a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b25e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b265: 4c 63 09 movslq (%rcx),%r9 + 6634b268: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b26c: 44 89 19 mov %r11d,(%rcx) + 6634b26f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b273: 44 8b 4a 2c mov 0x2c(%rdx),%r9d + 6634b277: 45 85 c9 test %r9d,%r9d + 6634b27a: 74 59 je 6634b2d5 + 6634b27c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b280: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634b284: 45 29 0a sub %r9d,(%r10) + 6634b287: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634b28e: 45 8b 1a mov (%r10),%r11d + 6634b291: 45 31 d2 xor %r10d,%r10d + 6634b294: 4c 8b 48 58 mov 0x58(%rax),%r9 + 6634b298: 45 85 db test %r11d,%r11d + 6634b29b: 41 0f 9f c2 setg %r10b + 6634b29f: 45 3b 11 cmp (%r9),%r10d + 6634b2a2: 74 31 je 6634b2d5 + 6634b2a4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b2a8: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634b2ac: 45 8b 11 mov (%r9),%r10d + 6634b2af: 45 85 d2 test %r10d,%r10d + 6634b2b2: 75 21 jne 6634b2d5 + 6634b2b4: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b2b8: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634b2bc: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b2c0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b2c7: 4c 63 09 movslq (%rcx),%r9 + 6634b2ca: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b2ce: 44 89 19 mov %r11d,(%rcx) + 6634b2d1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b2d5: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634b2d9: 45 85 c9 test %r9d,%r9d + 6634b2dc: 74 59 je 6634b337 + 6634b2de: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b2e2: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634b2e6: 45 29 0a sub %r9d,(%r10) + 6634b2e9: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634b2f0: 45 8b 0a mov (%r10),%r9d + 6634b2f3: 45 31 d2 xor %r10d,%r10d + 6634b2f6: 45 85 c9 test %r9d,%r9d + 6634b2f9: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634b2fd: 41 0f 9f c2 setg %r10b + 6634b301: 45 3b 11 cmp (%r9),%r10d + 6634b304: 74 31 je 6634b337 + 6634b306: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b30a: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634b30e: 45 8b 29 mov (%r9),%r13d + 6634b311: 45 85 ed test %r13d,%r13d + 6634b314: 75 21 jne 6634b337 + 6634b316: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b31a: 4d 8b 51 60 mov 0x60(%r9),%r10 + 6634b31e: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b322: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b329: 4c 63 09 movslq (%rcx),%r9 + 6634b32c: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b330: 44 89 19 mov %r11d,(%rcx) + 6634b333: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b337: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634b33b: 45 85 c9 test %r9d,%r9d + 6634b33e: 74 58 je 6634b398 + 6634b340: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b344: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634b348: 45 29 0a sub %r9d,(%r10) + 6634b34b: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634b352: 45 8b 22 mov (%r10),%r12d + 6634b355: 45 31 d2 xor %r10d,%r10d + 6634b358: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634b35c: 45 85 e4 test %r12d,%r12d + 6634b35f: 41 0f 9f c2 setg %r10b + 6634b363: 45 3b 11 cmp (%r9),%r10d + 6634b366: 74 30 je 6634b398 + 6634b368: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b36c: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634b370: 41 8b 29 mov (%r9),%ebp + 6634b373: 85 ed test %ebp,%ebp + 6634b375: 75 21 jne 6634b398 + 6634b377: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b37b: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634b37f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b383: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b38a: 4c 63 09 movslq (%rcx),%r9 + 6634b38d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b391: 44 89 19 mov %r11d,(%rcx) + 6634b394: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b398: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634b39c: 45 85 c9 test %r9d,%r9d + 6634b39f: 74 57 je 6634b3f8 + 6634b3a1: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b3a5: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634b3a9: 45 29 0a sub %r9d,(%r10) + 6634b3ac: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634b3b3: 41 8b 3a mov (%r10),%edi + 6634b3b6: 45 31 d2 xor %r10d,%r10d + 6634b3b9: 4c 8b 48 70 mov 0x70(%rax),%r9 + 6634b3bd: 85 ff test %edi,%edi + 6634b3bf: 41 0f 9f c2 setg %r10b + 6634b3c3: 45 3b 11 cmp (%r9),%r10d + 6634b3c6: 74 30 je 6634b3f8 + 6634b3c8: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b3cc: 4d 8b 49 70 mov 0x70(%r9),%r9 + 6634b3d0: 41 8b 31 mov (%r9),%esi + 6634b3d3: 85 f6 test %esi,%esi + 6634b3d5: 75 21 jne 6634b3f8 + 6634b3d7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b3db: 4d 8b 51 70 mov 0x70(%r9),%r10 + 6634b3df: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b3e3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b3ea: 4c 63 09 movslq (%rcx),%r9 + 6634b3ed: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b3f1: 44 89 19 mov %r11d,(%rcx) + 6634b3f4: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b3f8: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 6634b3fc: 45 85 c9 test %r9d,%r9d + 6634b3ff: 74 59 je 6634b45a + 6634b401: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b405: 4d 8b 52 78 mov 0x78(%r10),%r10 + 6634b409: 45 29 0a sub %r9d,(%r10) + 6634b40c: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 6634b413: 45 8b 1a mov (%r10),%r11d + 6634b416: 45 31 d2 xor %r10d,%r10d + 6634b419: 4c 8b 48 78 mov 0x78(%rax),%r9 + 6634b41d: 45 85 db test %r11d,%r11d + 6634b420: 41 0f 9f c2 setg %r10b + 6634b424: 45 3b 11 cmp (%r9),%r10d + 6634b427: 74 31 je 6634b45a + 6634b429: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b42d: 4d 8b 49 78 mov 0x78(%r9),%r9 + 6634b431: 45 8b 11 mov (%r9),%r10d + 6634b434: 45 85 d2 test %r10d,%r10d + 6634b437: 75 21 jne 6634b45a + 6634b439: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b43d: 4d 8b 51 78 mov 0x78(%r9),%r10 + 6634b441: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b445: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b44c: 4c 63 09 movslq (%rcx),%r9 + 6634b44f: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b453: 44 89 19 mov %r11d,(%rcx) + 6634b456: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b45a: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 6634b45e: 45 85 c9 test %r9d,%r9d + 6634b461: 0f 84 2a fd ff ff je 6634b191 + 6634b467: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b46b: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax + 6634b472: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634b479: 45 29 0a sub %r9d,(%r10) + 6634b47c: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634b483: 31 d2 xor %edx,%edx + 6634b485: 45 8b 0a mov (%r10),%r9d + 6634b488: 45 85 c9 test %r9d,%r9d + 6634b48b: 0f 9f c2 setg %dl + 6634b48e: 3b 10 cmp (%rax),%edx + 6634b490: 0f 84 fb fc ff ff je 6634b191 + 6634b496: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634b49a: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax + 6634b4a1: 8b 00 mov (%rax),%eax + 6634b4a3: 85 c0 test %eax,%eax + 6634b4a5: 0f 85 e6 fc ff ff jne 6634b191 + 6634b4ab: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634b4af: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx + 6634b4b6: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634b4ba: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634b4c0: 48 63 01 movslq (%rcx),%rax + 6634b4c3: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634b4c7: 44 89 09 mov %r9d,(%rcx) + 6634b4ca: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634b4ce: 48 83 c4 28 add $0x28,%rsp + 6634b4d2: 5b pop %rbx + 6634b4d3: 5e pop %rsi + 6634b4d4: 5f pop %rdi + 6634b4d5: 5d pop %rbp + 6634b4d6: 41 5c pop %r12 + 6634b4d8: 41 5d pop %r13 + 6634b4da: c3 retq + 6634b4db: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) -000000006634bba0 : - 6634bba0: 56 push %rsi - 6634bba1: 53 push %rbx - 6634bba2: 4c 8b 15 77 bd 00 00 mov 0xbd77(%rip),%r10 # 66357920 - 6634bba9: 4c 8b 0d 80 bd 00 00 mov 0xbd80(%rip),%r9 # 66357930 - 6634bbb0: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634bbb4: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634bbb8: 4c 8b 40 28 mov 0x28(%rax),%r8 - 6634bbbc: 45 8b 18 mov (%r8),%r11d - 6634bbbf: 45 85 db test %r11d,%r11d - 6634bbc2: 0f 84 d8 00 00 00 je 6634bca0 - 6634bbc8: 4c 8b 40 08 mov 0x8(%rax),%r8 - 6634bbcc: 44 8b 5a 0c mov 0xc(%rdx),%r11d - 6634bbd0: 45 8b 00 mov (%r8),%r8d - 6634bbd3: 45 39 c3 cmp %r8d,%r11d - 6634bbd6: 74 5a je 6634bc32 - 6634bbd8: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634bbdc: 44 89 c6 mov %r8d,%esi - 6634bbdf: 44 29 de sub %r11d,%esi - 6634bbe2: 45 31 db xor %r11d,%r11d - 6634bbe5: 48 8b 5b 18 mov 0x18(%rbx),%rbx - 6634bbe9: 01 33 add %esi,(%rbx) - 6634bbeb: 44 89 42 0c mov %r8d,0xc(%rdx) - 6634bbef: 44 8b 03 mov (%rbx),%r8d - 6634bbf2: 45 85 c0 test %r8d,%r8d - 6634bbf5: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634bbf9: 41 0f 9f c3 setg %r11b - 6634bbfd: 45 3b 18 cmp (%r8),%r11d - 6634bc00: 74 30 je 6634bc32 - 6634bc02: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634bc06: 4d 8b 40 18 mov 0x18(%r8),%r8 - 6634bc0a: 41 8b 30 mov (%r8),%esi - 6634bc0d: 85 f6 test %esi,%esi - 6634bc0f: 75 21 jne 6634bc32 - 6634bc11: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634bc15: 4d 8b 58 18 mov 0x18(%r8),%r11 - 6634bc19: 4d 8b 43 10 mov 0x10(%r11),%r8 - 6634bc1d: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634bc24: 4d 63 01 movslq (%r9),%r8 - 6634bc27: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634bc2b: 41 89 19 mov %ebx,(%r9) - 6634bc2e: 4f 89 1c c2 mov %r11,(%r10,%r8,8) - 6634bc32: 4c 8b 40 10 mov 0x10(%rax),%r8 - 6634bc36: 44 8b 5a 10 mov 0x10(%rdx),%r11d - 6634bc3a: 45 8b 00 mov (%r8),%r8d - 6634bc3d: 45 39 d8 cmp %r11d,%r8d - 6634bc40: 74 53 je 6634bc95 - 6634bc42: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634bc46: 44 89 c6 mov %r8d,%esi - 6634bc49: 44 29 de sub %r11d,%esi - 6634bc4c: 48 8b 5b 20 mov 0x20(%rbx),%rbx - 6634bc50: 01 33 add %esi,(%rbx) - 6634bc52: 44 89 42 10 mov %r8d,0x10(%rdx) - 6634bc56: 8b 1b mov (%rbx),%ebx - 6634bc58: 85 db test %ebx,%ebx - 6634bc5a: 48 8b 40 20 mov 0x20(%rax),%rax - 6634bc5e: 0f 9f c2 setg %dl - 6634bc61: 0f b6 d2 movzbl %dl,%edx - 6634bc64: 3b 10 cmp (%rax),%edx - 6634bc66: 74 2d je 6634bc95 - 6634bc68: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634bc6c: 48 8b 40 20 mov 0x20(%rax),%rax - 6634bc70: 8b 00 mov (%rax),%eax - 6634bc72: 85 c0 test %eax,%eax - 6634bc74: 75 1f jne 6634bc95 - 6634bc76: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634bc7a: 48 8b 50 20 mov 0x20(%rax),%rdx - 6634bc7e: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634bc82: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634bc88: 49 63 01 movslq (%r9),%rax - 6634bc8b: 8d 48 01 lea 0x1(%rax),%ecx - 6634bc8e: 41 89 09 mov %ecx,(%r9) - 6634bc91: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634bc95: 5b pop %rbx - 6634bc96: 5e pop %rsi - 6634bc97: c3 retq - 6634bc98: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634bc9f: 00 - 6634bca0: 44 8b 42 0c mov 0xc(%rdx),%r8d - 6634bca4: 45 85 c0 test %r8d,%r8d - 6634bca7: 74 39 je 6634bce2 - 6634bca9: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634bcad: 4d 8b 5b 18 mov 0x18(%r11),%r11 - 6634bcb1: 45 29 03 sub %r8d,(%r11) - 6634bcb4: c7 42 0c 00 00 00 00 movl $0x0,0xc(%rdx) - 6634bcbb: 45 8b 1b mov (%r11),%r11d - 6634bcbe: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634bcc2: 45 85 db test %r11d,%r11d - 6634bcc5: 41 0f 9f c3 setg %r11b - 6634bcc9: 45 0f b6 db movzbl %r11b,%r11d - 6634bccd: 45 3b 18 cmp (%r8),%r11d - 6634bcd0: 74 10 je 6634bce2 - 6634bcd2: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634bcd6: 4d 8b 40 18 mov 0x18(%r8),%r8 - 6634bcda: 45 8b 00 mov (%r8),%r8d - 6634bcdd: 45 85 c0 test %r8d,%r8d - 6634bce0: 74 2e je 6634bd10 - 6634bce2: 44 8b 42 10 mov 0x10(%rdx),%r8d - 6634bce6: 45 85 c0 test %r8d,%r8d - 6634bce9: 74 aa je 6634bc95 - 6634bceb: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634bcef: 4d 8b 5b 20 mov 0x20(%r11),%r11 - 6634bcf3: 45 29 03 sub %r8d,(%r11) - 6634bcf6: c7 42 10 00 00 00 00 movl $0x0,0x10(%rdx) - 6634bcfd: 41 8b 13 mov (%r11),%edx - 6634bd00: 85 d2 test %edx,%edx - 6634bd02: e9 53 ff ff ff jmpq 6634bc5a - 6634bd07: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634bd0e: 00 00 - 6634bd10: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634bd14: 4d 8b 58 18 mov 0x18(%r8),%r11 - 6634bd18: 4d 8b 43 10 mov 0x10(%r11),%r8 - 6634bd1c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634bd23: 4d 63 01 movslq (%r9),%r8 - 6634bd26: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634bd2a: 41 89 19 mov %ebx,(%r9) - 6634bd2d: 4f 89 1c c2 mov %r11,(%r10,%r8,8) - 6634bd31: eb af jmp 6634bce2 - 6634bd33: 0f 1f 00 nopl (%rax) - 6634bd36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634bd3d: 00 00 00 +000000006634b4e0 : + 6634b4e0: 41 55 push %r13 + 6634b4e2: 41 54 push %r12 + 6634b4e4: 55 push %rbp + 6634b4e5: 57 push %rdi + 6634b4e6: 56 push %rsi + 6634b4e7: 53 push %rbx + 6634b4e8: 48 83 ec 28 sub $0x28,%rsp + 6634b4ec: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634b4f0: 48 8b 90 a8 00 00 00 mov 0xa8(%rax),%rdx + 6634b4f7: 48 89 cb mov %rcx,%rbx + 6634b4fa: 44 8b 2a mov (%rdx),%r13d + 6634b4fd: 45 85 ed test %r13d,%r13d + 6634b500: 0f 84 ea 00 00 00 je 6634b5f0 + 6634b506: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634b50a: bf 0d 00 00 00 mov $0xd,%edi + 6634b50f: 4c 8d 2d ea 7a 00 00 lea 0x7aea(%rip),%r13 # 66353000 <.rdata> + 6634b516: 4c 8d 25 f3 7a 00 00 lea 0x7af3(%rip),%r12 # 66353010 <.rdata+0x10> + 6634b51d: 8b 0a mov (%rdx),%ecx + 6634b51f: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634b523: 8b 12 mov (%rdx),%edx + 6634b525: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634b528: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634b52c: 8b 09 mov (%rcx),%ecx + 6634b52e: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634b531: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634b535: 8b 09 mov (%rcx),%ecx + 6634b537: 8d 34 ca lea (%rdx,%rcx,8),%esi + 6634b53a: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634b53e: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634b542: 8b 12 mov (%rdx),%edx + 6634b544: c1 e2 04 shl $0x4,%edx + 6634b547: 01 d6 add %edx,%esi + 6634b549: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634b54d: 8b 12 mov (%rdx),%edx + 6634b54f: c1 e2 05 shl $0x5,%edx + 6634b552: 01 f2 add %esi,%edx + 6634b554: 8b 31 mov (%rcx),%esi + 6634b556: 48 8b 48 40 mov 0x40(%rax),%rcx + 6634b55a: c1 e6 06 shl $0x6,%esi + 6634b55d: 01 f2 add %esi,%edx + 6634b55f: 8b 31 mov (%rcx),%esi + 6634b561: 48 8b 48 58 mov 0x58(%rax),%rcx + 6634b565: c1 e6 07 shl $0x7,%esi + 6634b568: 01 d6 add %edx,%esi + 6634b56a: 48 8b 50 48 mov 0x48(%rax),%rdx + 6634b56e: 8b 12 mov (%rdx),%edx + 6634b570: c1 e2 08 shl $0x8,%edx + 6634b573: 01 d6 add %edx,%esi + 6634b575: 48 8b 50 50 mov 0x50(%rax),%rdx + 6634b579: 48 8b 40 60 mov 0x60(%rax),%rax + 6634b57d: 8b 12 mov (%rdx),%edx + 6634b57f: c1 e2 09 shl $0x9,%edx + 6634b582: 01 f2 add %esi,%edx + 6634b584: 8b 31 mov (%rcx),%esi + 6634b586: c1 e6 0a shl $0xa,%esi + 6634b589: 01 f2 add %esi,%edx + 6634b58b: 8b 30 mov (%rax),%esi + 6634b58d: c1 e6 0b shl $0xb,%esi + 6634b590: 01 d6 add %edx,%esi + 6634b592: 48 63 ee movslq %esi,%rbp + 6634b595: 48 c1 e5 02 shl $0x2,%rbp + 6634b599: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634b5a0: 85 f6 test %esi,%esi + 6634b5a2: 78 05 js 6634b5a9 + 6634b5a4: 39 73 38 cmp %esi,0x38(%rbx) + 6634b5a7: 7f 11 jg 6634b5ba + 6634b5a9: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634b5af: 4c 89 ea mov %r13,%rdx + 6634b5b2: 4c 89 e1 mov %r12,%rcx + 6634b5b5: e8 46 5a 00 00 callq 66351000 <_assert> + 6634b5ba: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634b5be: 89 fa mov %edi,%edx + 6634b5c0: 48 89 d9 mov %rbx,%rcx + 6634b5c3: 83 c7 01 add $0x1,%edi + 6634b5c6: 81 c6 00 10 00 00 add $0x1000,%esi + 6634b5cc: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634b5d0: 48 81 c5 00 40 00 00 add $0x4000,%rbp + 6634b5d7: e8 d4 5d ff ff callq 663413b0 + 6634b5dc: 83 ff 15 cmp $0x15,%edi + 6634b5df: 75 bf jne 6634b5a0 + 6634b5e1: 48 83 c4 28 add $0x28,%rsp + 6634b5e5: 5b pop %rbx + 6634b5e6: 5e pop %rsi + 6634b5e7: 5f pop %rdi + 6634b5e8: 5d pop %rbp + 6634b5e9: 41 5c pop %r12 + 6634b5eb: 41 5d pop %r13 + 6634b5ed: c3 retq + 6634b5ee: 66 90 xchg %ax,%ax + 6634b5f0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634b5f4: 4c 8b 05 25 b3 00 00 mov 0xb325(%rip),%r8 # 66356920 + 6634b5fb: 48 8b 0d 2e b3 00 00 mov 0xb32e(%rip),%rcx # 66356930 + 6634b602: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634b606: 45 85 c9 test %r9d,%r9d + 6634b609: 74 58 je 6634b663 + 6634b60b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b60f: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634b613: 45 29 0a sub %r9d,(%r10) + 6634b616: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634b61d: 45 8b 22 mov (%r10),%r12d + 6634b620: 45 31 d2 xor %r10d,%r10d + 6634b623: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634b627: 45 85 e4 test %r12d,%r12d + 6634b62a: 41 0f 9f c2 setg %r10b + 6634b62e: 45 3b 11 cmp (%r9),%r10d + 6634b631: 74 30 je 6634b663 + 6634b633: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b637: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634b63b: 41 8b 29 mov (%r9),%ebp + 6634b63e: 85 ed test %ebp,%ebp + 6634b640: 75 21 jne 6634b663 + 6634b642: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b646: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634b64a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b64e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b655: 4c 63 09 movslq (%rcx),%r9 + 6634b658: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b65c: 44 89 19 mov %r11d,(%rcx) + 6634b65f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b663: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634b667: 45 85 c9 test %r9d,%r9d + 6634b66a: 74 57 je 6634b6c3 + 6634b66c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b670: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634b674: 45 29 0a sub %r9d,(%r10) + 6634b677: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634b67e: 41 8b 3a mov (%r10),%edi + 6634b681: 45 31 d2 xor %r10d,%r10d + 6634b684: 4c 8b 48 70 mov 0x70(%rax),%r9 + 6634b688: 85 ff test %edi,%edi + 6634b68a: 41 0f 9f c2 setg %r10b + 6634b68e: 45 3b 11 cmp (%r9),%r10d + 6634b691: 74 30 je 6634b6c3 + 6634b693: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b697: 4d 8b 49 70 mov 0x70(%r9),%r9 + 6634b69b: 41 8b 31 mov (%r9),%esi + 6634b69e: 85 f6 test %esi,%esi + 6634b6a0: 75 21 jne 6634b6c3 + 6634b6a2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b6a6: 4d 8b 51 70 mov 0x70(%r9),%r10 + 6634b6aa: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b6ae: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b6b5: 4c 63 09 movslq (%rcx),%r9 + 6634b6b8: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b6bc: 44 89 19 mov %r11d,(%rcx) + 6634b6bf: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b6c3: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 6634b6c7: 45 85 c9 test %r9d,%r9d + 6634b6ca: 74 59 je 6634b725 + 6634b6cc: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b6d0: 4d 8b 52 78 mov 0x78(%r10),%r10 + 6634b6d4: 45 29 0a sub %r9d,(%r10) + 6634b6d7: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 6634b6de: 45 8b 1a mov (%r10),%r11d + 6634b6e1: 45 31 d2 xor %r10d,%r10d + 6634b6e4: 4c 8b 48 78 mov 0x78(%rax),%r9 + 6634b6e8: 45 85 db test %r11d,%r11d + 6634b6eb: 41 0f 9f c2 setg %r10b + 6634b6ef: 45 3b 11 cmp (%r9),%r10d + 6634b6f2: 74 31 je 6634b725 + 6634b6f4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b6f8: 4d 8b 49 78 mov 0x78(%r9),%r9 + 6634b6fc: 45 8b 11 mov (%r9),%r10d + 6634b6ff: 45 85 d2 test %r10d,%r10d + 6634b702: 75 21 jne 6634b725 + 6634b704: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b708: 4d 8b 51 78 mov 0x78(%r9),%r10 + 6634b70c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b710: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b717: 4c 63 09 movslq (%rcx),%r9 + 6634b71a: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b71e: 44 89 19 mov %r11d,(%rcx) + 6634b721: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b725: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 6634b729: 45 85 c9 test %r9d,%r9d + 6634b72c: 74 65 je 6634b793 + 6634b72e: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b732: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634b739: 45 29 0a sub %r9d,(%r10) + 6634b73c: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634b743: 45 8b 0a mov (%r10),%r9d + 6634b746: 45 31 d2 xor %r10d,%r10d + 6634b749: 45 85 c9 test %r9d,%r9d + 6634b74c: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 + 6634b753: 41 0f 9f c2 setg %r10b + 6634b757: 45 3b 11 cmp (%r9),%r10d + 6634b75a: 74 37 je 6634b793 + 6634b75c: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b760: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 + 6634b767: 45 8b 29 mov (%r9),%r13d + 6634b76a: 45 85 ed test %r13d,%r13d + 6634b76d: 75 24 jne 6634b793 + 6634b76f: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b773: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 + 6634b77a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b77e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b785: 4c 63 09 movslq (%rcx),%r9 + 6634b788: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b78c: 44 89 19 mov %r11d,(%rcx) + 6634b78f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b793: 44 8b 4a 44 mov 0x44(%rdx),%r9d + 6634b797: 45 85 c9 test %r9d,%r9d + 6634b79a: 74 64 je 6634b800 + 6634b79c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b7a0: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 + 6634b7a7: 45 29 0a sub %r9d,(%r10) + 6634b7aa: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) + 6634b7b1: 45 8b 22 mov (%r10),%r12d + 6634b7b4: 45 31 d2 xor %r10d,%r10d + 6634b7b7: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 + 6634b7be: 45 85 e4 test %r12d,%r12d + 6634b7c1: 41 0f 9f c2 setg %r10b + 6634b7c5: 45 3b 11 cmp (%r9),%r10d + 6634b7c8: 74 36 je 6634b800 + 6634b7ca: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b7ce: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 + 6634b7d5: 41 8b 29 mov (%r9),%ebp + 6634b7d8: 85 ed test %ebp,%ebp + 6634b7da: 75 24 jne 6634b800 + 6634b7dc: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b7e0: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 + 6634b7e7: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b7eb: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b7f2: 4c 63 09 movslq (%rcx),%r9 + 6634b7f5: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b7f9: 44 89 19 mov %r11d,(%rcx) + 6634b7fc: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b800: 44 8b 4a 48 mov 0x48(%rdx),%r9d + 6634b804: 45 85 c9 test %r9d,%r9d + 6634b807: 74 63 je 6634b86c + 6634b809: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b80d: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 + 6634b814: 45 29 0a sub %r9d,(%r10) + 6634b817: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) + 6634b81e: 41 8b 3a mov (%r10),%edi + 6634b821: 45 31 d2 xor %r10d,%r10d + 6634b824: 4c 8b 88 90 00 00 00 mov 0x90(%rax),%r9 + 6634b82b: 85 ff test %edi,%edi + 6634b82d: 41 0f 9f c2 setg %r10b + 6634b831: 45 3b 11 cmp (%r9),%r10d + 6634b834: 74 36 je 6634b86c + 6634b836: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b83a: 4d 8b 89 90 00 00 00 mov 0x90(%r9),%r9 + 6634b841: 41 8b 31 mov (%r9),%esi + 6634b844: 85 f6 test %esi,%esi + 6634b846: 75 24 jne 6634b86c + 6634b848: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b84c: 4d 8b 91 90 00 00 00 mov 0x90(%r9),%r10 + 6634b853: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b857: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b85e: 4c 63 09 movslq (%rcx),%r9 + 6634b861: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b865: 44 89 19 mov %r11d,(%rcx) + 6634b868: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b86c: 44 8b 4a 4c mov 0x4c(%rdx),%r9d + 6634b870: 45 85 c9 test %r9d,%r9d + 6634b873: 74 65 je 6634b8da + 6634b875: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b879: 4d 8b 92 98 00 00 00 mov 0x98(%r10),%r10 + 6634b880: 45 29 0a sub %r9d,(%r10) + 6634b883: c7 42 4c 00 00 00 00 movl $0x0,0x4c(%rdx) + 6634b88a: 45 8b 1a mov (%r10),%r11d + 6634b88d: 45 31 d2 xor %r10d,%r10d + 6634b890: 4c 8b 88 98 00 00 00 mov 0x98(%rax),%r9 + 6634b897: 45 85 db test %r11d,%r11d + 6634b89a: 41 0f 9f c2 setg %r10b + 6634b89e: 45 3b 11 cmp (%r9),%r10d + 6634b8a1: 74 37 je 6634b8da + 6634b8a3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634b8a7: 4d 8b 89 98 00 00 00 mov 0x98(%r9),%r9 + 6634b8ae: 45 8b 11 mov (%r9),%r10d + 6634b8b1: 45 85 d2 test %r10d,%r10d + 6634b8b4: 75 24 jne 6634b8da + 6634b8b6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634b8ba: 4d 8b 91 98 00 00 00 mov 0x98(%r9),%r10 + 6634b8c1: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634b8c5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634b8cc: 4c 63 09 movslq (%rcx),%r9 + 6634b8cf: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634b8d3: 44 89 19 mov %r11d,(%rcx) + 6634b8d6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634b8da: 44 8b 4a 50 mov 0x50(%rdx),%r9d + 6634b8de: 45 85 c9 test %r9d,%r9d + 6634b8e1: 0f 84 fa fc ff ff je 6634b5e1 + 6634b8e7: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634b8eb: 48 8b 80 a0 00 00 00 mov 0xa0(%rax),%rax + 6634b8f2: 4d 8b 92 a0 00 00 00 mov 0xa0(%r10),%r10 + 6634b8f9: 45 29 0a sub %r9d,(%r10) + 6634b8fc: c7 42 50 00 00 00 00 movl $0x0,0x50(%rdx) + 6634b903: 31 d2 xor %edx,%edx + 6634b905: 45 8b 0a mov (%r10),%r9d + 6634b908: 45 85 c9 test %r9d,%r9d + 6634b90b: 0f 9f c2 setg %dl + 6634b90e: 3b 10 cmp (%rax),%edx + 6634b910: 0f 84 cb fc ff ff je 6634b5e1 + 6634b916: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634b91a: 48 8b 80 a0 00 00 00 mov 0xa0(%rax),%rax + 6634b921: 8b 00 mov (%rax),%eax + 6634b923: 85 c0 test %eax,%eax + 6634b925: 0f 85 b6 fc ff ff jne 6634b5e1 + 6634b92b: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634b92f: 48 8b 90 a0 00 00 00 mov 0xa0(%rax),%rdx + 6634b936: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634b93a: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634b940: 48 63 01 movslq (%rcx),%rax + 6634b943: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634b947: 44 89 09 mov %r9d,(%rcx) + 6634b94a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634b94e: 48 83 c4 28 add $0x28,%rsp + 6634b952: 5b pop %rbx + 6634b953: 5e pop %rsi + 6634b954: 5f pop %rdi + 6634b955: 5d pop %rbp + 6634b956: 41 5c pop %r12 + 6634b958: 41 5d pop %r13 + 6634b95a: c3 retq + 6634b95b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) -000000006634bd40 : - 6634bd40: 56 push %rsi - 6634bd41: 53 push %rbx - 6634bd42: 4c 8b 15 d7 bb 00 00 mov 0xbbd7(%rip),%r10 # 66357920 - 6634bd49: 4c 8b 0d e0 bb 00 00 mov 0xbbe0(%rip),%r9 # 66357930 - 6634bd50: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634bd54: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634bd58: 4c 8b 40 28 mov 0x28(%rax),%r8 - 6634bd5c: 45 8b 18 mov (%r8),%r11d - 6634bd5f: 45 85 db test %r11d,%r11d - 6634bd62: 0f 84 d8 00 00 00 je 6634be40 - 6634bd68: 4c 8b 40 08 mov 0x8(%rax),%r8 - 6634bd6c: 44 8b 5a 0c mov 0xc(%rdx),%r11d - 6634bd70: 45 8b 00 mov (%r8),%r8d - 6634bd73: 45 39 c3 cmp %r8d,%r11d - 6634bd76: 74 5a je 6634bdd2 - 6634bd78: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634bd7c: 44 89 c6 mov %r8d,%esi - 6634bd7f: 44 29 de sub %r11d,%esi - 6634bd82: 45 31 db xor %r11d,%r11d - 6634bd85: 48 8b 5b 18 mov 0x18(%rbx),%rbx - 6634bd89: 01 33 add %esi,(%rbx) - 6634bd8b: 44 89 42 0c mov %r8d,0xc(%rdx) - 6634bd8f: 44 8b 03 mov (%rbx),%r8d - 6634bd92: 45 85 c0 test %r8d,%r8d - 6634bd95: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634bd99: 41 0f 9f c3 setg %r11b - 6634bd9d: 45 3b 18 cmp (%r8),%r11d - 6634bda0: 74 30 je 6634bdd2 - 6634bda2: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634bda6: 4d 8b 40 18 mov 0x18(%r8),%r8 - 6634bdaa: 41 8b 30 mov (%r8),%esi - 6634bdad: 85 f6 test %esi,%esi - 6634bdaf: 75 21 jne 6634bdd2 - 6634bdb1: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634bdb5: 4d 8b 58 18 mov 0x18(%r8),%r11 - 6634bdb9: 4d 8b 43 10 mov 0x10(%r11),%r8 - 6634bdbd: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634bdc4: 4d 63 01 movslq (%r9),%r8 - 6634bdc7: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634bdcb: 41 89 19 mov %ebx,(%r9) - 6634bdce: 4f 89 1c c2 mov %r11,(%r10,%r8,8) - 6634bdd2: 4c 8b 40 10 mov 0x10(%rax),%r8 - 6634bdd6: 44 8b 5a 10 mov 0x10(%rdx),%r11d - 6634bdda: 45 8b 00 mov (%r8),%r8d - 6634bddd: 45 39 d8 cmp %r11d,%r8d - 6634bde0: 74 53 je 6634be35 - 6634bde2: 48 8b 59 18 mov 0x18(%rcx),%rbx - 6634bde6: 44 89 c6 mov %r8d,%esi - 6634bde9: 44 29 de sub %r11d,%esi - 6634bdec: 48 8b 5b 20 mov 0x20(%rbx),%rbx - 6634bdf0: 01 33 add %esi,(%rbx) - 6634bdf2: 44 89 42 10 mov %r8d,0x10(%rdx) - 6634bdf6: 8b 1b mov (%rbx),%ebx - 6634bdf8: 85 db test %ebx,%ebx - 6634bdfa: 48 8b 40 20 mov 0x20(%rax),%rax - 6634bdfe: 0f 9f c2 setg %dl - 6634be01: 0f b6 d2 movzbl %dl,%edx - 6634be04: 3b 10 cmp (%rax),%edx - 6634be06: 74 2d je 6634be35 - 6634be08: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634be0c: 48 8b 40 20 mov 0x20(%rax),%rax - 6634be10: 8b 00 mov (%rax),%eax - 6634be12: 85 c0 test %eax,%eax - 6634be14: 75 1f jne 6634be35 - 6634be16: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634be1a: 48 8b 50 20 mov 0x20(%rax),%rdx - 6634be1e: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634be22: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634be28: 49 63 01 movslq (%r9),%rax - 6634be2b: 8d 48 01 lea 0x1(%rax),%ecx - 6634be2e: 41 89 09 mov %ecx,(%r9) - 6634be31: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634be35: 5b pop %rbx - 6634be36: 5e pop %rsi - 6634be37: c3 retq - 6634be38: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634be3f: 00 - 6634be40: 44 8b 42 0c mov 0xc(%rdx),%r8d - 6634be44: 45 85 c0 test %r8d,%r8d - 6634be47: 74 39 je 6634be82 - 6634be49: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634be4d: 4d 8b 5b 18 mov 0x18(%r11),%r11 - 6634be51: 45 29 03 sub %r8d,(%r11) - 6634be54: c7 42 0c 00 00 00 00 movl $0x0,0xc(%rdx) - 6634be5b: 45 8b 1b mov (%r11),%r11d - 6634be5e: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634be62: 45 85 db test %r11d,%r11d - 6634be65: 41 0f 9f c3 setg %r11b - 6634be69: 45 0f b6 db movzbl %r11b,%r11d - 6634be6d: 45 3b 18 cmp (%r8),%r11d - 6634be70: 74 10 je 6634be82 - 6634be72: 4c 8b 41 20 mov 0x20(%rcx),%r8 - 6634be76: 4d 8b 40 18 mov 0x18(%r8),%r8 - 6634be7a: 45 8b 00 mov (%r8),%r8d - 6634be7d: 45 85 c0 test %r8d,%r8d - 6634be80: 74 2e je 6634beb0 - 6634be82: 44 8b 42 10 mov 0x10(%rdx),%r8d - 6634be86: 45 85 c0 test %r8d,%r8d - 6634be89: 74 aa je 6634be35 - 6634be8b: 4c 8b 59 18 mov 0x18(%rcx),%r11 - 6634be8f: 4d 8b 5b 20 mov 0x20(%r11),%r11 - 6634be93: 45 29 03 sub %r8d,(%r11) - 6634be96: c7 42 10 00 00 00 00 movl $0x0,0x10(%rdx) - 6634be9d: 41 8b 13 mov (%r11),%edx - 6634bea0: 85 d2 test %edx,%edx - 6634bea2: e9 53 ff ff ff jmpq 6634bdfa - 6634bea7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634beae: 00 00 - 6634beb0: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634beb4: 4d 8b 58 18 mov 0x18(%r8),%r11 - 6634beb8: 4d 8b 43 10 mov 0x10(%r11),%r8 - 6634bebc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634bec3: 4d 63 01 movslq (%r9),%r8 - 6634bec6: 41 8d 58 01 lea 0x1(%r8),%ebx - 6634beca: 41 89 19 mov %ebx,(%r9) - 6634becd: 4f 89 1c c2 mov %r11,(%r10,%r8,8) - 6634bed1: eb af jmp 6634be82 - 6634bed3: 0f 1f 00 nopl (%rax) - 6634bed6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634bedd: 00 00 00 +000000006634b960 : + 6634b960: 41 55 push %r13 + 6634b962: 41 54 push %r12 + 6634b964: 55 push %rbp + 6634b965: 57 push %rdi + 6634b966: 56 push %rsi + 6634b967: 53 push %rbx + 6634b968: 48 83 ec 28 sub $0x28,%rsp + 6634b96c: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634b970: 48 8b 90 a0 00 00 00 mov 0xa0(%rax),%rdx + 6634b977: 48 89 cb mov %rcx,%rbx + 6634b97a: 44 8b 2a mov (%rdx),%r13d + 6634b97d: 45 85 ed test %r13d,%r13d + 6634b980: 0f 84 da 00 00 00 je 6634ba60 + 6634b986: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634b98a: bf 0c 00 00 00 mov $0xc,%edi + 6634b98f: 4c 8d 2d 6a 76 00 00 lea 0x766a(%rip),%r13 # 66353000 <.rdata> + 6634b996: 4c 8d 25 73 76 00 00 lea 0x7673(%rip),%r12 # 66353010 <.rdata+0x10> + 6634b99d: 8b 0a mov (%rdx),%ecx + 6634b99f: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634b9a3: 8b 12 mov (%rdx),%edx + 6634b9a5: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634b9a8: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634b9ac: 8b 09 mov (%rcx),%ecx + 6634b9ae: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634b9b1: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634b9b5: 8b 09 mov (%rcx),%ecx + 6634b9b7: 8d 34 ca lea (%rdx,%rcx,8),%esi + 6634b9ba: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634b9be: 48 8b 48 30 mov 0x30(%rax),%rcx + 6634b9c2: 8b 12 mov (%rdx),%edx + 6634b9c4: c1 e2 04 shl $0x4,%edx + 6634b9c7: 01 f2 add %esi,%edx + 6634b9c9: 8b 31 mov (%rcx),%esi + 6634b9cb: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634b9cf: c1 e6 05 shl $0x5,%esi + 6634b9d2: 01 f2 add %esi,%edx + 6634b9d4: 8b 31 mov (%rcx),%esi + 6634b9d6: 48 8b 48 50 mov 0x50(%rax),%rcx + 6634b9da: c1 e6 06 shl $0x6,%esi + 6634b9dd: 01 d6 add %edx,%esi + 6634b9df: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634b9e3: 8b 12 mov (%rdx),%edx + 6634b9e5: c1 e2 07 shl $0x7,%edx + 6634b9e8: 01 d6 add %edx,%esi + 6634b9ea: 48 8b 50 48 mov 0x48(%rax),%rdx + 6634b9ee: 48 8b 40 58 mov 0x58(%rax),%rax + 6634b9f2: 8b 12 mov (%rdx),%edx + 6634b9f4: c1 e2 08 shl $0x8,%edx + 6634b9f7: 01 f2 add %esi,%edx + 6634b9f9: 8b 31 mov (%rcx),%esi + 6634b9fb: c1 e6 09 shl $0x9,%esi + 6634b9fe: 01 f2 add %esi,%edx + 6634ba00: 8b 30 mov (%rax),%esi + 6634ba02: c1 e6 0a shl $0xa,%esi + 6634ba05: 01 d6 add %edx,%esi + 6634ba07: 48 63 ee movslq %esi,%rbp + 6634ba0a: 48 c1 e5 02 shl $0x2,%rbp + 6634ba0e: 66 90 xchg %ax,%ax + 6634ba10: 85 f6 test %esi,%esi + 6634ba12: 78 05 js 6634ba19 + 6634ba14: 39 73 38 cmp %esi,0x38(%rbx) + 6634ba17: 7f 11 jg 6634ba2a + 6634ba19: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634ba1f: 4c 89 ea mov %r13,%rdx + 6634ba22: 4c 89 e1 mov %r12,%rcx + 6634ba25: e8 d6 55 00 00 callq 66351000 <_assert> + 6634ba2a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634ba2e: 89 fa mov %edi,%edx + 6634ba30: 48 89 d9 mov %rbx,%rcx + 6634ba33: 83 c7 01 add $0x1,%edi + 6634ba36: 81 c6 00 08 00 00 add $0x800,%esi + 6634ba3c: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634ba40: 48 81 c5 00 20 00 00 add $0x2000,%rbp + 6634ba47: e8 64 59 ff ff callq 663413b0 + 6634ba4c: 83 ff 14 cmp $0x14,%edi + 6634ba4f: 75 bf jne 6634ba10 + 6634ba51: 48 83 c4 28 add $0x28,%rsp + 6634ba55: 5b pop %rbx + 6634ba56: 5e pop %rsi + 6634ba57: 5f pop %rdi + 6634ba58: 5d pop %rbp + 6634ba59: 41 5c pop %r12 + 6634ba5b: 41 5d pop %r13 + 6634ba5d: c3 retq + 6634ba5e: 66 90 xchg %ax,%ax + 6634ba60: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634ba64: 4c 8b 05 b5 ae 00 00 mov 0xaeb5(%rip),%r8 # 66356920 + 6634ba6b: 48 8b 0d be ae 00 00 mov 0xaebe(%rip),%rcx # 66356930 + 6634ba72: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634ba76: 45 85 c9 test %r9d,%r9d + 6634ba79: 74 58 je 6634bad3 + 6634ba7b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634ba7f: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634ba83: 45 29 0a sub %r9d,(%r10) + 6634ba86: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634ba8d: 45 8b 22 mov (%r10),%r12d + 6634ba90: 45 31 d2 xor %r10d,%r10d + 6634ba93: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634ba97: 45 85 e4 test %r12d,%r12d + 6634ba9a: 41 0f 9f c2 setg %r10b + 6634ba9e: 45 3b 11 cmp (%r9),%r10d + 6634baa1: 74 30 je 6634bad3 + 6634baa3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634baa7: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634baab: 41 8b 29 mov (%r9),%ebp + 6634baae: 85 ed test %ebp,%ebp + 6634bab0: 75 21 jne 6634bad3 + 6634bab2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bab6: 4d 8b 51 60 mov 0x60(%r9),%r10 + 6634baba: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634babe: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bac5: 4c 63 09 movslq (%rcx),%r9 + 6634bac8: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634bacc: 44 89 19 mov %r11d,(%rcx) + 6634bacf: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634bad3: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634bad7: 45 85 c9 test %r9d,%r9d + 6634bada: 74 57 je 6634bb33 + 6634badc: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634bae0: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634bae4: 45 29 0a sub %r9d,(%r10) + 6634bae7: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634baee: 41 8b 3a mov (%r10),%edi + 6634baf1: 45 31 d2 xor %r10d,%r10d + 6634baf4: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634baf8: 85 ff test %edi,%edi + 6634bafa: 41 0f 9f c2 setg %r10b + 6634bafe: 45 3b 11 cmp (%r9),%r10d + 6634bb01: 74 30 je 6634bb33 + 6634bb03: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634bb07: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634bb0b: 41 8b 31 mov (%r9),%esi + 6634bb0e: 85 f6 test %esi,%esi + 6634bb10: 75 21 jne 6634bb33 + 6634bb12: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bb16: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634bb1a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634bb1e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bb25: 4c 63 09 movslq (%rcx),%r9 + 6634bb28: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634bb2c: 44 89 19 mov %r11d,(%rcx) + 6634bb2f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634bb33: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634bb37: 45 85 c9 test %r9d,%r9d + 6634bb3a: 74 59 je 6634bb95 + 6634bb3c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634bb40: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634bb44: 45 29 0a sub %r9d,(%r10) + 6634bb47: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634bb4e: 45 8b 1a mov (%r10),%r11d + 6634bb51: 45 31 d2 xor %r10d,%r10d + 6634bb54: 4c 8b 48 70 mov 0x70(%rax),%r9 + 6634bb58: 45 85 db test %r11d,%r11d + 6634bb5b: 41 0f 9f c2 setg %r10b + 6634bb5f: 45 3b 11 cmp (%r9),%r10d + 6634bb62: 74 31 je 6634bb95 + 6634bb64: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634bb68: 4d 8b 49 70 mov 0x70(%r9),%r9 + 6634bb6c: 45 8b 11 mov (%r9),%r10d + 6634bb6f: 45 85 d2 test %r10d,%r10d + 6634bb72: 75 21 jne 6634bb95 + 6634bb74: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bb78: 4d 8b 51 70 mov 0x70(%r9),%r10 + 6634bb7c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634bb80: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bb87: 4c 63 09 movslq (%rcx),%r9 + 6634bb8a: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634bb8e: 44 89 19 mov %r11d,(%rcx) + 6634bb91: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634bb95: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 6634bb99: 45 85 c9 test %r9d,%r9d + 6634bb9c: 74 59 je 6634bbf7 + 6634bb9e: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634bba2: 4d 8b 52 78 mov 0x78(%r10),%r10 + 6634bba6: 45 29 0a sub %r9d,(%r10) + 6634bba9: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 6634bbb0: 45 8b 0a mov (%r10),%r9d + 6634bbb3: 45 31 d2 xor %r10d,%r10d + 6634bbb6: 45 85 c9 test %r9d,%r9d + 6634bbb9: 4c 8b 48 78 mov 0x78(%rax),%r9 + 6634bbbd: 41 0f 9f c2 setg %r10b + 6634bbc1: 45 3b 11 cmp (%r9),%r10d + 6634bbc4: 74 31 je 6634bbf7 + 6634bbc6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634bbca: 4d 8b 49 78 mov 0x78(%r9),%r9 + 6634bbce: 45 8b 29 mov (%r9),%r13d + 6634bbd1: 45 85 ed test %r13d,%r13d + 6634bbd4: 75 21 jne 6634bbf7 + 6634bbd6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bbda: 4d 8b 51 78 mov 0x78(%r9),%r10 + 6634bbde: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634bbe2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bbe9: 4c 63 09 movslq (%rcx),%r9 + 6634bbec: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634bbf0: 44 89 19 mov %r11d,(%rcx) + 6634bbf3: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634bbf7: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 6634bbfb: 45 85 c9 test %r9d,%r9d + 6634bbfe: 74 64 je 6634bc64 + 6634bc00: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634bc04: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634bc0b: 45 29 0a sub %r9d,(%r10) + 6634bc0e: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634bc15: 45 8b 22 mov (%r10),%r12d + 6634bc18: 45 31 d2 xor %r10d,%r10d + 6634bc1b: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 + 6634bc22: 45 85 e4 test %r12d,%r12d + 6634bc25: 41 0f 9f c2 setg %r10b + 6634bc29: 45 3b 11 cmp (%r9),%r10d + 6634bc2c: 74 36 je 6634bc64 + 6634bc2e: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634bc32: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 + 6634bc39: 41 8b 29 mov (%r9),%ebp + 6634bc3c: 85 ed test %ebp,%ebp + 6634bc3e: 75 24 jne 6634bc64 + 6634bc40: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bc44: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 + 6634bc4b: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634bc4f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bc56: 4c 63 09 movslq (%rcx),%r9 + 6634bc59: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634bc5d: 44 89 19 mov %r11d,(%rcx) + 6634bc60: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634bc64: 44 8b 4a 44 mov 0x44(%rdx),%r9d + 6634bc68: 45 85 c9 test %r9d,%r9d + 6634bc6b: 74 63 je 6634bcd0 + 6634bc6d: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634bc71: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 + 6634bc78: 45 29 0a sub %r9d,(%r10) + 6634bc7b: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) + 6634bc82: 41 8b 3a mov (%r10),%edi + 6634bc85: 45 31 d2 xor %r10d,%r10d + 6634bc88: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 + 6634bc8f: 85 ff test %edi,%edi + 6634bc91: 41 0f 9f c2 setg %r10b + 6634bc95: 45 3b 11 cmp (%r9),%r10d + 6634bc98: 74 36 je 6634bcd0 + 6634bc9a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634bc9e: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 + 6634bca5: 41 8b 31 mov (%r9),%esi + 6634bca8: 85 f6 test %esi,%esi + 6634bcaa: 75 24 jne 6634bcd0 + 6634bcac: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bcb0: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 + 6634bcb7: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634bcbb: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bcc2: 4c 63 09 movslq (%rcx),%r9 + 6634bcc5: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634bcc9: 44 89 19 mov %r11d,(%rcx) + 6634bccc: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634bcd0: 44 8b 4a 48 mov 0x48(%rdx),%r9d + 6634bcd4: 45 85 c9 test %r9d,%r9d + 6634bcd7: 74 65 je 6634bd3e + 6634bcd9: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634bcdd: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 + 6634bce4: 45 29 0a sub %r9d,(%r10) + 6634bce7: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) + 6634bcee: 45 8b 1a mov (%r10),%r11d + 6634bcf1: 45 31 d2 xor %r10d,%r10d + 6634bcf4: 4c 8b 88 90 00 00 00 mov 0x90(%rax),%r9 + 6634bcfb: 45 85 db test %r11d,%r11d + 6634bcfe: 41 0f 9f c2 setg %r10b + 6634bd02: 45 3b 11 cmp (%r9),%r10d + 6634bd05: 74 37 je 6634bd3e + 6634bd07: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634bd0b: 4d 8b 89 90 00 00 00 mov 0x90(%r9),%r9 + 6634bd12: 45 8b 11 mov (%r9),%r10d + 6634bd15: 45 85 d2 test %r10d,%r10d + 6634bd18: 75 24 jne 6634bd3e + 6634bd1a: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bd1e: 4d 8b 91 90 00 00 00 mov 0x90(%r9),%r10 + 6634bd25: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634bd29: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bd30: 4c 63 09 movslq (%rcx),%r9 + 6634bd33: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634bd37: 44 89 19 mov %r11d,(%rcx) + 6634bd3a: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634bd3e: 44 8b 4a 4c mov 0x4c(%rdx),%r9d + 6634bd42: 45 85 c9 test %r9d,%r9d + 6634bd45: 0f 84 06 fd ff ff je 6634ba51 + 6634bd4b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634bd4f: 48 8b 80 98 00 00 00 mov 0x98(%rax),%rax + 6634bd56: 4d 8b 92 98 00 00 00 mov 0x98(%r10),%r10 + 6634bd5d: 45 29 0a sub %r9d,(%r10) + 6634bd60: c7 42 4c 00 00 00 00 movl $0x0,0x4c(%rdx) + 6634bd67: 31 d2 xor %edx,%edx + 6634bd69: 45 8b 0a mov (%r10),%r9d + 6634bd6c: 45 85 c9 test %r9d,%r9d + 6634bd6f: 0f 9f c2 setg %dl + 6634bd72: 3b 10 cmp (%rax),%edx + 6634bd74: 0f 84 d7 fc ff ff je 6634ba51 + 6634bd7a: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634bd7e: 48 8b 80 98 00 00 00 mov 0x98(%rax),%rax + 6634bd85: 8b 00 mov (%rax),%eax + 6634bd87: 85 c0 test %eax,%eax + 6634bd89: 0f 85 c2 fc ff ff jne 6634ba51 + 6634bd8f: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634bd93: 48 8b 90 98 00 00 00 mov 0x98(%rax),%rdx + 6634bd9a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634bd9e: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634bda4: 48 63 01 movslq (%rcx),%rax + 6634bda7: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634bdab: 44 89 09 mov %r9d,(%rcx) + 6634bdae: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634bdb2: 48 83 c4 28 add $0x28,%rsp + 6634bdb6: 5b pop %rbx + 6634bdb7: 5e pop %rsi + 6634bdb8: 5f pop %rdi + 6634bdb9: 5d pop %rbp + 6634bdba: 41 5c pop %r12 + 6634bdbc: 41 5d pop %r13 + 6634bdbe: c3 retq + 6634bdbf: 90 nop -000000006634bee0 : - 6634bee0: 41 55 push %r13 - 6634bee2: 41 54 push %r12 - 6634bee4: 55 push %rbp - 6634bee5: 57 push %rdi - 6634bee6: 56 push %rsi - 6634bee7: 53 push %rbx - 6634bee8: 48 83 ec 28 sub $0x28,%rsp - 6634beec: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634bef0: 48 8b 90 98 00 00 00 mov 0x98(%rax),%rdx - 6634bef7: 48 89 cb mov %rcx,%rbx - 6634befa: 8b 12 mov (%rdx),%edx - 6634befc: 85 d2 test %edx,%edx - 6634befe: 0f 84 3c 01 00 00 je 6634c040 - 6634bf04: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634bf08: be 2c 00 00 00 mov $0x2c,%esi - 6634bf0d: 4c 8d 2d ec 80 00 00 lea 0x80ec(%rip),%r13 # 66354000 <.rdata> - 6634bf14: 4c 8d 25 f5 80 00 00 lea 0x80f5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634bf1b: 8b 0a mov (%rdx),%ecx - 6634bf1d: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634bf21: 8b 12 mov (%rdx),%edx - 6634bf23: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634bf26: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634bf2a: 8b 09 mov (%rcx),%ecx - 6634bf2c: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634bf2f: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634bf33: 8b 09 mov (%rcx),%ecx - 6634bf35: 8d 14 ca lea (%rdx,%rcx,8),%edx - 6634bf38: 48 8b 48 28 mov 0x28(%rax),%rcx - 6634bf3c: 8b 39 mov (%rcx),%edi - 6634bf3e: 48 8b 48 30 mov 0x30(%rax),%rcx - 6634bf42: c1 e7 04 shl $0x4,%edi - 6634bf45: 01 fa add %edi,%edx - 6634bf47: 8b 39 mov (%rcx),%edi - 6634bf49: 48 8b 48 48 mov 0x48(%rax),%rcx - 6634bf4d: c1 e7 05 shl $0x5,%edi - 6634bf50: 01 d7 add %edx,%edi - 6634bf52: 48 8b 50 38 mov 0x38(%rax),%rdx - 6634bf56: 8b 12 mov (%rdx),%edx - 6634bf58: c1 e2 06 shl $0x6,%edx - 6634bf5b: 01 d7 add %edx,%edi - 6634bf5d: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634bf61: 48 8b 40 50 mov 0x50(%rax),%rax - 6634bf65: 8b 12 mov (%rdx),%edx - 6634bf67: c1 e2 07 shl $0x7,%edx - 6634bf6a: 01 fa add %edi,%edx - 6634bf6c: 8b 39 mov (%rcx),%edi - 6634bf6e: c1 e7 08 shl $0x8,%edi - 6634bf71: 01 fa add %edi,%edx - 6634bf73: 8b 38 mov (%rax),%edi - 6634bf75: c1 e7 09 shl $0x9,%edi - 6634bf78: 01 d7 add %edx,%edi - 6634bf7a: 48 63 ef movslq %edi,%rbp - 6634bf7d: 48 c1 e5 02 shl $0x2,%rbp - 6634bf81: 85 ff test %edi,%edi - 6634bf83: 78 05 js 6634bf8a - 6634bf85: 39 7b 38 cmp %edi,0x38(%rbx) - 6634bf88: 7f 11 jg 6634bf9b - 6634bf8a: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634bf90: 4c 89 ea mov %r13,%rdx - 6634bf93: 4c 89 e1 mov %r12,%rcx - 6634bf96: e8 75 62 00 00 callq 66352210 <_assert> - 6634bf9b: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634bf9f: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634bfa3: 48 01 f2 add %rsi,%rdx - 6634bfa6: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634bfa9: 8b 0a mov (%rdx),%ecx - 6634bfab: 39 c8 cmp %ecx,%eax - 6634bfad: 74 69 je 6634c018 - 6634bfaf: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634bfb3: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634bfb7: 41 89 c3 mov %eax,%r11d - 6634bfba: 41 29 cb sub %ecx,%r11d - 6634bfbd: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634bfc1: 45 01 18 add %r11d,(%r8) - 6634bfc4: 89 02 mov %eax,(%rdx) - 6634bfc6: 31 d2 xor %edx,%edx - 6634bfc8: 41 8b 00 mov (%r8),%eax - 6634bfcb: 85 c0 test %eax,%eax - 6634bfcd: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634bfd1: 0f 9f c2 setg %dl - 6634bfd4: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634bfd8: 3b 10 cmp (%rax),%edx - 6634bfda: 74 3c je 6634c018 - 6634bfdc: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634bfe0: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634bfe4: 8b 00 mov (%rax),%eax - 6634bfe6: 85 c0 test %eax,%eax - 6634bfe8: 75 2e jne 6634c018 - 6634bfea: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634bfee: 48 8b 0d 3b b9 00 00 mov 0xb93b(%rip),%rcx # 66357930 - 6634bff5: 4c 8b 05 24 b9 00 00 mov 0xb924(%rip),%r8 # 66357920 - 6634bffc: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634c000: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c004: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634c00a: 48 63 01 movslq (%rcx),%rax - 6634c00d: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634c011: 44 89 09 mov %r9d,(%rcx) - 6634c014: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634c018: 48 83 c6 04 add $0x4,%rsi - 6634c01c: 81 c7 00 04 00 00 add $0x400,%edi - 6634c022: 48 81 c5 00 10 00 00 add $0x1000,%rbp - 6634c029: 48 83 fe 4c cmp $0x4c,%rsi - 6634c02d: 0f 85 4e ff ff ff jne 6634bf81 - 6634c033: 48 83 c4 28 add $0x28,%rsp - 6634c037: 5b pop %rbx - 6634c038: 5e pop %rsi - 6634c039: 5f pop %rdi - 6634c03a: 5d pop %rbp - 6634c03b: 41 5c pop %r12 - 6634c03d: 41 5d pop %r13 - 6634c03f: c3 retq - 6634c040: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634c044: 4c 8b 05 d5 b8 00 00 mov 0xb8d5(%rip),%r8 # 66357920 - 6634c04b: 48 8b 0d de b8 00 00 mov 0xb8de(%rip),%rcx # 66357930 - 6634c052: 44 8b 4a 2c mov 0x2c(%rdx),%r9d - 6634c056: 45 85 c9 test %r9d,%r9d - 6634c059: 74 58 je 6634c0b3 - 6634c05b: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c05f: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634c063: 45 29 0a sub %r9d,(%r10) - 6634c066: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 6634c06d: 45 8b 22 mov (%r10),%r12d - 6634c070: 45 31 d2 xor %r10d,%r10d - 6634c073: 4c 8b 48 58 mov 0x58(%rax),%r9 - 6634c077: 45 85 e4 test %r12d,%r12d - 6634c07a: 41 0f 9f c2 setg %r10b - 6634c07e: 45 3b 11 cmp (%r9),%r10d - 6634c081: 74 30 je 6634c0b3 - 6634c083: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c087: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634c08b: 41 8b 29 mov (%r9),%ebp - 6634c08e: 85 ed test %ebp,%ebp - 6634c090: 75 21 jne 6634c0b3 - 6634c092: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c096: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634c09a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c09e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c0a5: 4c 63 09 movslq (%rcx),%r9 - 6634c0a8: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c0ac: 44 89 19 mov %r11d,(%rcx) - 6634c0af: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c0b3: 44 8b 4a 30 mov 0x30(%rdx),%r9d - 6634c0b7: 45 85 c9 test %r9d,%r9d - 6634c0ba: 74 57 je 6634c113 - 6634c0bc: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c0c0: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634c0c4: 45 29 0a sub %r9d,(%r10) - 6634c0c7: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634c0ce: 41 8b 3a mov (%r10),%edi - 6634c0d1: 45 31 d2 xor %r10d,%r10d - 6634c0d4: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634c0d8: 85 ff test %edi,%edi - 6634c0da: 41 0f 9f c2 setg %r10b - 6634c0de: 45 3b 11 cmp (%r9),%r10d - 6634c0e1: 74 30 je 6634c113 - 6634c0e3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c0e7: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634c0eb: 41 8b 31 mov (%r9),%esi - 6634c0ee: 85 f6 test %esi,%esi - 6634c0f0: 75 21 jne 6634c113 - 6634c0f2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c0f6: 4d 8b 51 60 mov 0x60(%r9),%r10 - 6634c0fa: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c0fe: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c105: 4c 63 09 movslq (%rcx),%r9 - 6634c108: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c10c: 44 89 19 mov %r11d,(%rcx) - 6634c10f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c113: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634c117: 45 85 c9 test %r9d,%r9d - 6634c11a: 74 59 je 6634c175 - 6634c11c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c120: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634c124: 45 29 0a sub %r9d,(%r10) - 6634c127: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634c12e: 45 8b 1a mov (%r10),%r11d - 6634c131: 45 31 d2 xor %r10d,%r10d - 6634c134: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634c138: 45 85 db test %r11d,%r11d - 6634c13b: 41 0f 9f c2 setg %r10b - 6634c13f: 45 3b 11 cmp (%r9),%r10d - 6634c142: 74 31 je 6634c175 - 6634c144: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c148: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634c14c: 45 8b 11 mov (%r9),%r10d - 6634c14f: 45 85 d2 test %r10d,%r10d - 6634c152: 75 21 jne 6634c175 - 6634c154: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c158: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634c15c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c160: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c167: 4c 63 09 movslq (%rcx),%r9 - 6634c16a: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c16e: 44 89 19 mov %r11d,(%rcx) - 6634c171: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c175: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634c179: 45 85 c9 test %r9d,%r9d - 6634c17c: 74 59 je 6634c1d7 - 6634c17e: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c182: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634c186: 45 29 0a sub %r9d,(%r10) - 6634c189: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634c190: 45 8b 0a mov (%r10),%r9d - 6634c193: 45 31 d2 xor %r10d,%r10d - 6634c196: 45 85 c9 test %r9d,%r9d - 6634c199: 4c 8b 48 70 mov 0x70(%rax),%r9 - 6634c19d: 41 0f 9f c2 setg %r10b - 6634c1a1: 45 3b 11 cmp (%r9),%r10d - 6634c1a4: 74 31 je 6634c1d7 - 6634c1a6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c1aa: 4d 8b 49 70 mov 0x70(%r9),%r9 - 6634c1ae: 45 8b 29 mov (%r9),%r13d - 6634c1b1: 45 85 ed test %r13d,%r13d - 6634c1b4: 75 21 jne 6634c1d7 - 6634c1b6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c1ba: 4d 8b 51 70 mov 0x70(%r9),%r10 - 6634c1be: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c1c2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c1c9: 4c 63 09 movslq (%rcx),%r9 - 6634c1cc: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c1d0: 44 89 19 mov %r11d,(%rcx) - 6634c1d3: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c1d7: 44 8b 4a 3c mov 0x3c(%rdx),%r9d - 6634c1db: 45 85 c9 test %r9d,%r9d - 6634c1de: 74 58 je 6634c238 - 6634c1e0: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c1e4: 4d 8b 52 78 mov 0x78(%r10),%r10 - 6634c1e8: 45 29 0a sub %r9d,(%r10) - 6634c1eb: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 6634c1f2: 45 8b 22 mov (%r10),%r12d - 6634c1f5: 45 31 d2 xor %r10d,%r10d - 6634c1f8: 4c 8b 48 78 mov 0x78(%rax),%r9 - 6634c1fc: 45 85 e4 test %r12d,%r12d - 6634c1ff: 41 0f 9f c2 setg %r10b - 6634c203: 45 3b 11 cmp (%r9),%r10d - 6634c206: 74 30 je 6634c238 - 6634c208: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c20c: 4d 8b 49 78 mov 0x78(%r9),%r9 - 6634c210: 41 8b 29 mov (%r9),%ebp - 6634c213: 85 ed test %ebp,%ebp - 6634c215: 75 21 jne 6634c238 - 6634c217: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c21b: 4d 8b 51 78 mov 0x78(%r9),%r10 - 6634c21f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c223: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c22a: 4c 63 09 movslq (%rcx),%r9 - 6634c22d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c231: 44 89 19 mov %r11d,(%rcx) - 6634c234: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c238: 44 8b 4a 40 mov 0x40(%rdx),%r9d - 6634c23c: 45 85 c9 test %r9d,%r9d - 6634c23f: 74 63 je 6634c2a4 - 6634c241: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c245: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 - 6634c24c: 45 29 0a sub %r9d,(%r10) - 6634c24f: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634c256: 41 8b 3a mov (%r10),%edi - 6634c259: 45 31 d2 xor %r10d,%r10d - 6634c25c: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 - 6634c263: 85 ff test %edi,%edi - 6634c265: 41 0f 9f c2 setg %r10b - 6634c269: 45 3b 11 cmp (%r9),%r10d - 6634c26c: 74 36 je 6634c2a4 - 6634c26e: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c272: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 - 6634c279: 41 8b 31 mov (%r9),%esi - 6634c27c: 85 f6 test %esi,%esi - 6634c27e: 75 24 jne 6634c2a4 - 6634c280: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c284: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 - 6634c28b: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c28f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c296: 4c 63 09 movslq (%rcx),%r9 - 6634c299: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c29d: 44 89 19 mov %r11d,(%rcx) - 6634c2a0: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c2a4: 44 8b 4a 44 mov 0x44(%rdx),%r9d - 6634c2a8: 45 85 c9 test %r9d,%r9d - 6634c2ab: 74 65 je 6634c312 - 6634c2ad: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c2b1: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 - 6634c2b8: 45 29 0a sub %r9d,(%r10) - 6634c2bb: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) - 6634c2c2: 45 8b 1a mov (%r10),%r11d - 6634c2c5: 45 31 d2 xor %r10d,%r10d - 6634c2c8: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 - 6634c2cf: 45 85 db test %r11d,%r11d - 6634c2d2: 41 0f 9f c2 setg %r10b - 6634c2d6: 45 3b 11 cmp (%r9),%r10d - 6634c2d9: 74 37 je 6634c312 - 6634c2db: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c2df: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 - 6634c2e6: 45 8b 11 mov (%r9),%r10d - 6634c2e9: 45 85 d2 test %r10d,%r10d - 6634c2ec: 75 24 jne 6634c312 - 6634c2ee: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c2f2: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 - 6634c2f9: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c2fd: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c304: 4c 63 09 movslq (%rcx),%r9 - 6634c307: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c30b: 44 89 19 mov %r11d,(%rcx) - 6634c30e: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c312: 44 8b 4a 48 mov 0x48(%rdx),%r9d - 6634c316: 45 85 c9 test %r9d,%r9d - 6634c319: 0f 84 14 fd ff ff je 6634c033 - 6634c31f: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c323: 48 8b 80 90 00 00 00 mov 0x90(%rax),%rax - 6634c32a: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 - 6634c331: 45 29 0a sub %r9d,(%r10) - 6634c334: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) - 6634c33b: 31 d2 xor %edx,%edx - 6634c33d: 45 8b 0a mov (%r10),%r9d - 6634c340: 45 85 c9 test %r9d,%r9d - 6634c343: 0f 9f c2 setg %dl - 6634c346: 3b 10 cmp (%rax),%edx - 6634c348: 0f 84 e5 fc ff ff je 6634c033 - 6634c34e: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634c352: 48 8b 80 90 00 00 00 mov 0x90(%rax),%rax - 6634c359: 8b 00 mov (%rax),%eax - 6634c35b: 85 c0 test %eax,%eax - 6634c35d: 0f 85 d0 fc ff ff jne 6634c033 - 6634c363: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634c367: 48 8b 90 90 00 00 00 mov 0x90(%rax),%rdx - 6634c36e: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c372: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634c378: 48 63 01 movslq (%rcx),%rax - 6634c37b: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634c37f: 44 89 09 mov %r9d,(%rcx) - 6634c382: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634c386: 48 83 c4 28 add $0x28,%rsp - 6634c38a: 5b pop %rbx - 6634c38b: 5e pop %rsi - 6634c38c: 5f pop %rdi - 6634c38d: 5d pop %rbp - 6634c38e: 41 5c pop %r12 - 6634c390: 41 5d pop %r13 - 6634c392: c3 retq - 6634c393: 0f 1f 00 nopl (%rax) - 6634c396: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634c39d: 00 00 00 +000000006634bdc0 : + 6634bdc0: 41 55 push %r13 + 6634bdc2: 41 54 push %r12 + 6634bdc4: 55 push %rbp + 6634bdc5: 57 push %rdi + 6634bdc6: 56 push %rsi + 6634bdc7: 53 push %rbx + 6634bdc8: 48 83 ec 28 sub $0x28,%rsp + 6634bdcc: 48 8b 51 10 mov 0x10(%rcx),%rdx + 6634bdd0: 48 8b 42 68 mov 0x68(%rdx),%rax + 6634bdd4: 48 89 cb mov %rcx,%rbx + 6634bdd7: 8b 00 mov (%rax),%eax + 6634bdd9: 85 c0 test %eax,%eax + 6634bddb: 0f 84 8f 00 00 00 je 6634be70 + 6634bde1: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634bde5: be 05 00 00 00 mov $0x5,%esi + 6634bdea: 4c 8d 2d 0f 72 00 00 lea 0x720f(%rip),%r13 # 66353000 <.rdata> + 6634bdf1: 4c 8d 25 18 72 00 00 lea 0x7218(%rip),%r12 # 66353010 <.rdata+0x10> + 6634bdf8: 8b 08 mov (%rax),%ecx + 6634bdfa: 48 8b 42 08 mov 0x8(%rdx),%rax + 6634bdfe: 8b 00 mov (%rax),%eax + 6634be00: 8d 04 48 lea (%rax,%rcx,2),%eax + 6634be03: 48 8b 4a 18 mov 0x18(%rdx),%rcx + 6634be07: 48 8b 52 20 mov 0x20(%rdx),%rdx + 6634be0b: 8b 09 mov (%rcx),%ecx + 6634be0d: 8b 12 mov (%rdx),%edx + 6634be0f: 8d 04 88 lea (%rax,%rcx,4),%eax + 6634be12: 8d 3c d0 lea (%rax,%rdx,8),%edi + 6634be15: 48 63 ef movslq %edi,%rbp + 6634be18: 48 c1 e5 02 shl $0x2,%rbp + 6634be1c: 0f 1f 40 00 nopl 0x0(%rax) + 6634be20: 85 ff test %edi,%edi + 6634be22: 78 05 js 6634be29 + 6634be24: 39 7b 38 cmp %edi,0x38(%rbx) + 6634be27: 7f 11 jg 6634be3a + 6634be29: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634be2f: 4c 89 ea mov %r13,%rdx + 6634be32: 4c 89 e1 mov %r12,%rcx + 6634be35: e8 c6 51 00 00 callq 66351000 <_assert> + 6634be3a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634be3e: 89 f2 mov %esi,%edx + 6634be40: 48 89 d9 mov %rbx,%rcx + 6634be43: 83 c6 01 add $0x1,%esi + 6634be46: 83 c7 10 add $0x10,%edi + 6634be49: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634be4d: 48 83 c5 40 add $0x40,%rbp + 6634be51: e8 5a 55 ff ff callq 663413b0 + 6634be56: 83 fe 0d cmp $0xd,%esi + 6634be59: 75 c5 jne 6634be20 + 6634be5b: 48 83 c4 28 add $0x28,%rsp + 6634be5f: 5b pop %rbx + 6634be60: 5e pop %rsi + 6634be61: 5f pop %rdi + 6634be62: 5d pop %rbp + 6634be63: 41 5c pop %r12 + 6634be65: 41 5d pop %r13 + 6634be67: c3 retq + 6634be68: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634be6f: 00 + 6634be70: 48 8b 41 08 mov 0x8(%rcx),%rax + 6634be74: 4c 8b 05 a5 aa 00 00 mov 0xaaa5(%rip),%r8 # 66356920 + 6634be7b: 48 8b 0d ae aa 00 00 mov 0xaaae(%rip),%rcx # 66356930 + 6634be82: 44 8b 48 14 mov 0x14(%rax),%r9d + 6634be86: 45 85 c9 test %r9d,%r9d + 6634be89: 74 59 je 6634bee4 + 6634be8b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634be8f: 4d 8b 52 28 mov 0x28(%r10),%r10 + 6634be93: 45 29 0a sub %r9d,(%r10) + 6634be96: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) + 6634be9d: 45 8b 2a mov (%r10),%r13d + 6634bea0: 45 31 d2 xor %r10d,%r10d + 6634bea3: 4c 8b 4a 28 mov 0x28(%rdx),%r9 + 6634bea7: 45 85 ed test %r13d,%r13d + 6634beaa: 41 0f 9f c2 setg %r10b + 6634beae: 45 3b 11 cmp (%r9),%r10d + 6634beb1: 74 31 je 6634bee4 + 6634beb3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634beb7: 4d 8b 49 28 mov 0x28(%r9),%r9 + 6634bebb: 45 8b 21 mov (%r9),%r12d + 6634bebe: 45 85 e4 test %r12d,%r12d + 6634bec1: 75 21 jne 6634bee4 + 6634bec3: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bec7: 4d 8b 51 28 mov 0x28(%r9),%r10 + 6634becb: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634becf: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bed6: 4c 63 09 movslq (%rcx),%r9 + 6634bed9: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634bedd: 44 89 19 mov %r11d,(%rcx) + 6634bee0: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634bee4: 44 8b 48 18 mov 0x18(%rax),%r9d + 6634bee8: 45 85 c9 test %r9d,%r9d + 6634beeb: 74 57 je 6634bf44 + 6634beed: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634bef1: 4d 8b 52 30 mov 0x30(%r10),%r10 + 6634bef5: 45 29 0a sub %r9d,(%r10) + 6634bef8: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) + 6634beff: 41 8b 2a mov (%r10),%ebp + 6634bf02: 45 31 d2 xor %r10d,%r10d + 6634bf05: 4c 8b 4a 30 mov 0x30(%rdx),%r9 + 6634bf09: 85 ed test %ebp,%ebp + 6634bf0b: 41 0f 9f c2 setg %r10b + 6634bf0f: 45 3b 11 cmp (%r9),%r10d + 6634bf12: 74 30 je 6634bf44 + 6634bf14: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634bf18: 4d 8b 49 30 mov 0x30(%r9),%r9 + 6634bf1c: 41 8b 39 mov (%r9),%edi + 6634bf1f: 85 ff test %edi,%edi + 6634bf21: 75 21 jne 6634bf44 + 6634bf23: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bf27: 4d 8b 51 30 mov 0x30(%r9),%r10 + 6634bf2b: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634bf2f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bf36: 4c 63 09 movslq (%rcx),%r9 + 6634bf39: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634bf3d: 44 89 19 mov %r11d,(%rcx) + 6634bf40: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634bf44: 44 8b 48 1c mov 0x1c(%rax),%r9d + 6634bf48: 45 85 c9 test %r9d,%r9d + 6634bf4b: 74 58 je 6634bfa5 + 6634bf4d: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634bf51: 4d 8b 52 38 mov 0x38(%r10),%r10 + 6634bf55: 45 29 0a sub %r9d,(%r10) + 6634bf58: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) + 6634bf5f: 41 8b 32 mov (%r10),%esi + 6634bf62: 45 31 d2 xor %r10d,%r10d + 6634bf65: 4c 8b 4a 38 mov 0x38(%rdx),%r9 + 6634bf69: 85 f6 test %esi,%esi + 6634bf6b: 41 0f 9f c2 setg %r10b + 6634bf6f: 45 3b 11 cmp (%r9),%r10d + 6634bf72: 74 31 je 6634bfa5 + 6634bf74: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634bf78: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634bf7c: 45 8b 19 mov (%r9),%r11d + 6634bf7f: 45 85 db test %r11d,%r11d + 6634bf82: 75 21 jne 6634bfa5 + 6634bf84: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bf88: 4d 8b 51 38 mov 0x38(%r9),%r10 + 6634bf8c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634bf90: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bf97: 4c 63 09 movslq (%rcx),%r9 + 6634bf9a: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634bf9e: 44 89 19 mov %r11d,(%rcx) + 6634bfa1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634bfa5: 44 8b 48 20 mov 0x20(%rax),%r9d + 6634bfa9: 45 85 c9 test %r9d,%r9d + 6634bfac: 74 5a je 6634c008 + 6634bfae: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634bfb2: 4d 8b 52 40 mov 0x40(%r10),%r10 + 6634bfb6: 45 29 0a sub %r9d,(%r10) + 6634bfb9: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) + 6634bfc0: 45 8b 12 mov (%r10),%r10d + 6634bfc3: 4c 8b 4a 40 mov 0x40(%rdx),%r9 + 6634bfc7: 45 85 d2 test %r10d,%r10d + 6634bfca: 41 0f 9f c2 setg %r10b + 6634bfce: 45 0f b6 d2 movzbl %r10b,%r10d + 6634bfd2: 45 3b 11 cmp (%r9),%r10d + 6634bfd5: 74 31 je 6634c008 + 6634bfd7: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634bfdb: 4d 8b 49 40 mov 0x40(%r9),%r9 + 6634bfdf: 45 8b 09 mov (%r9),%r9d + 6634bfe2: 45 85 c9 test %r9d,%r9d + 6634bfe5: 75 21 jne 6634c008 + 6634bfe7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634bfeb: 4d 8b 51 40 mov 0x40(%r9),%r10 + 6634bfef: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634bff3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634bffa: 4c 63 09 movslq (%rcx),%r9 + 6634bffd: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c001: 44 89 19 mov %r11d,(%rcx) + 6634c004: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c008: 44 8b 48 24 mov 0x24(%rax),%r9d + 6634c00c: 45 85 c9 test %r9d,%r9d + 6634c00f: 74 59 je 6634c06a + 6634c011: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c015: 4d 8b 52 48 mov 0x48(%r10),%r10 + 6634c019: 45 29 0a sub %r9d,(%r10) + 6634c01c: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) + 6634c023: 45 8b 2a mov (%r10),%r13d + 6634c026: 45 31 d2 xor %r10d,%r10d + 6634c029: 4c 8b 4a 48 mov 0x48(%rdx),%r9 + 6634c02d: 45 85 ed test %r13d,%r13d + 6634c030: 41 0f 9f c2 setg %r10b + 6634c034: 45 3b 11 cmp (%r9),%r10d + 6634c037: 74 31 je 6634c06a + 6634c039: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c03d: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634c041: 45 8b 21 mov (%r9),%r12d + 6634c044: 45 85 e4 test %r12d,%r12d + 6634c047: 75 21 jne 6634c06a + 6634c049: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c04d: 4d 8b 51 48 mov 0x48(%r9),%r10 + 6634c051: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c055: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c05c: 4c 63 09 movslq (%rcx),%r9 + 6634c05f: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c063: 44 89 19 mov %r11d,(%rcx) + 6634c066: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c06a: 44 8b 48 28 mov 0x28(%rax),%r9d + 6634c06e: 45 85 c9 test %r9d,%r9d + 6634c071: 74 57 je 6634c0ca + 6634c073: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c077: 4d 8b 52 50 mov 0x50(%r10),%r10 + 6634c07b: 45 29 0a sub %r9d,(%r10) + 6634c07e: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) + 6634c085: 41 8b 2a mov (%r10),%ebp + 6634c088: 45 31 d2 xor %r10d,%r10d + 6634c08b: 4c 8b 4a 50 mov 0x50(%rdx),%r9 + 6634c08f: 85 ed test %ebp,%ebp + 6634c091: 41 0f 9f c2 setg %r10b + 6634c095: 45 3b 11 cmp (%r9),%r10d + 6634c098: 74 30 je 6634c0ca + 6634c09a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c09e: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634c0a2: 41 8b 39 mov (%r9),%edi + 6634c0a5: 85 ff test %edi,%edi + 6634c0a7: 75 21 jne 6634c0ca + 6634c0a9: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c0ad: 4d 8b 51 50 mov 0x50(%r9),%r10 + 6634c0b1: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c0b5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c0bc: 4c 63 09 movslq (%rcx),%r9 + 6634c0bf: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c0c3: 44 89 19 mov %r11d,(%rcx) + 6634c0c6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c0ca: 44 8b 48 2c mov 0x2c(%rax),%r9d + 6634c0ce: 45 85 c9 test %r9d,%r9d + 6634c0d1: 74 58 je 6634c12b + 6634c0d3: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c0d7: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634c0db: 45 29 0a sub %r9d,(%r10) + 6634c0de: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) + 6634c0e5: 41 8b 32 mov (%r10),%esi + 6634c0e8: 45 31 d2 xor %r10d,%r10d + 6634c0eb: 4c 8b 4a 58 mov 0x58(%rdx),%r9 + 6634c0ef: 85 f6 test %esi,%esi + 6634c0f1: 41 0f 9f c2 setg %r10b + 6634c0f5: 45 3b 11 cmp (%r9),%r10d + 6634c0f8: 74 31 je 6634c12b + 6634c0fa: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c0fe: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634c102: 45 8b 19 mov (%r9),%r11d + 6634c105: 45 85 db test %r11d,%r11d + 6634c108: 75 21 jne 6634c12b + 6634c10a: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c10e: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634c112: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c116: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c11d: 4c 63 09 movslq (%rcx),%r9 + 6634c120: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c124: 44 89 19 mov %r11d,(%rcx) + 6634c127: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c12b: 44 8b 48 30 mov 0x30(%rax),%r9d + 6634c12f: 45 85 c9 test %r9d,%r9d + 6634c132: 0f 84 23 fd ff ff je 6634be5b + 6634c138: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c13c: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634c140: 45 29 0a sub %r9d,(%r10) + 6634c143: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) + 6634c14a: 45 31 c9 xor %r9d,%r9d + 6634c14d: 45 8b 12 mov (%r10),%r10d + 6634c150: 48 8b 42 60 mov 0x60(%rdx),%rax + 6634c154: 45 85 d2 test %r10d,%r10d + 6634c157: 41 0f 9f c1 setg %r9b + 6634c15b: 44 3b 08 cmp (%rax),%r9d + 6634c15e: 0f 84 f7 fc ff ff je 6634be5b + 6634c164: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634c168: 48 8b 40 60 mov 0x60(%rax),%rax + 6634c16c: 8b 00 mov (%rax),%eax + 6634c16e: 85 c0 test %eax,%eax + 6634c170: 0f 85 e5 fc ff ff jne 6634be5b + 6634c176: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634c17a: 48 8b 50 60 mov 0x60(%rax),%rdx + 6634c17e: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634c182: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634c188: 48 63 01 movslq (%rcx),%rax + 6634c18b: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634c18f: 44 89 09 mov %r9d,(%rcx) + 6634c192: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634c196: 48 83 c4 28 add $0x28,%rsp + 6634c19a: 5b pop %rbx + 6634c19b: 5e pop %rsi + 6634c19c: 5f pop %rdi + 6634c19d: 5d pop %rbp + 6634c19e: 41 5c pop %r12 + 6634c1a0: 41 5d pop %r13 + 6634c1a2: c3 retq + 6634c1a3: 0f 1f 00 nopl (%rax) + 6634c1a6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634c1ad: 00 00 00 -000000006634c3a0 : - 6634c3a0: 41 55 push %r13 - 6634c3a2: 41 54 push %r12 - 6634c3a4: 55 push %rbp - 6634c3a5: 57 push %rdi - 6634c3a6: 56 push %rsi - 6634c3a7: 53 push %rbx - 6634c3a8: 48 83 ec 28 sub $0x28,%rsp - 6634c3ac: 48 8b 51 10 mov 0x10(%rcx),%rdx - 6634c3b0: 48 8b 42 68 mov 0x68(%rdx),%rax - 6634c3b4: 48 89 cb mov %rcx,%rbx - 6634c3b7: 8b 00 mov (%rax),%eax - 6634c3b9: 85 c0 test %eax,%eax - 6634c3bb: 0f 84 ff 00 00 00 je 6634c4c0 - 6634c3c1: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c3c5: be 14 00 00 00 mov $0x14,%esi - 6634c3ca: 4c 8d 2d 2f 7c 00 00 lea 0x7c2f(%rip),%r13 # 66354000 <.rdata> - 6634c3d1: 4c 8d 25 38 7c 00 00 lea 0x7c38(%rip),%r12 # 66354010 <.rdata+0x10> - 6634c3d8: 8b 08 mov (%rax),%ecx - 6634c3da: 48 8b 42 08 mov 0x8(%rdx),%rax - 6634c3de: 8b 00 mov (%rax),%eax - 6634c3e0: 8d 04 48 lea (%rax,%rcx,2),%eax - 6634c3e3: 48 8b 4a 18 mov 0x18(%rdx),%rcx - 6634c3e7: 48 8b 52 20 mov 0x20(%rdx),%rdx - 6634c3eb: 8b 09 mov (%rcx),%ecx - 6634c3ed: 8b 12 mov (%rdx),%edx - 6634c3ef: 8d 04 88 lea (%rax,%rcx,4),%eax - 6634c3f2: 8d 3c d0 lea (%rax,%rdx,8),%edi - 6634c3f5: 48 63 ef movslq %edi,%rbp - 6634c3f8: 48 c1 e5 02 shl $0x2,%rbp - 6634c3fc: 0f 1f 40 00 nopl 0x0(%rax) - 6634c400: 85 ff test %edi,%edi - 6634c402: 78 05 js 6634c409 - 6634c404: 39 7b 38 cmp %edi,0x38(%rbx) - 6634c407: 7f 11 jg 6634c41a - 6634c409: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634c40f: 4c 89 ea mov %r13,%rdx - 6634c412: 4c 89 e1 mov %r12,%rcx - 6634c415: e8 f6 5d 00 00 callq 66352210 <_assert> - 6634c41a: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634c41e: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634c422: 48 01 f2 add %rsi,%rdx - 6634c425: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634c428: 8b 0a mov (%rdx),%ecx - 6634c42a: 39 c8 cmp %ecx,%eax - 6634c42c: 74 69 je 6634c497 - 6634c42e: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634c432: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634c436: 41 89 c3 mov %eax,%r11d - 6634c439: 41 29 cb sub %ecx,%r11d - 6634c43c: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634c440: 45 01 18 add %r11d,(%r8) - 6634c443: 89 02 mov %eax,(%rdx) - 6634c445: 31 d2 xor %edx,%edx - 6634c447: 41 8b 00 mov (%r8),%eax - 6634c44a: 85 c0 test %eax,%eax - 6634c44c: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634c450: 0f 9f c2 setg %dl - 6634c453: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634c457: 3b 10 cmp (%rax),%edx - 6634c459: 74 3c je 6634c497 - 6634c45b: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634c45f: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634c463: 8b 00 mov (%rax),%eax - 6634c465: 85 c0 test %eax,%eax - 6634c467: 75 2e jne 6634c497 - 6634c469: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634c46d: 48 8b 0d bc b4 00 00 mov 0xb4bc(%rip),%rcx # 66357930 - 6634c474: 4c 8b 05 a5 b4 00 00 mov 0xb4a5(%rip),%r8 # 66357920 - 6634c47b: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634c47f: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c483: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634c489: 48 63 01 movslq (%rcx),%rax - 6634c48c: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634c490: 44 89 09 mov %r9d,(%rcx) - 6634c493: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634c497: 48 83 c6 04 add $0x4,%rsi - 6634c49b: 83 c7 10 add $0x10,%edi - 6634c49e: 48 83 c5 40 add $0x40,%rbp - 6634c4a2: 48 83 fe 34 cmp $0x34,%rsi - 6634c4a6: 0f 85 54 ff ff ff jne 6634c400 - 6634c4ac: 48 83 c4 28 add $0x28,%rsp - 6634c4b0: 5b pop %rbx - 6634c4b1: 5e pop %rsi - 6634c4b2: 5f pop %rdi - 6634c4b3: 5d pop %rbp - 6634c4b4: 41 5c pop %r12 - 6634c4b6: 41 5d pop %r13 - 6634c4b8: c3 retq - 6634c4b9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 6634c4c0: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634c4c4: 4c 8b 05 55 b4 00 00 mov 0xb455(%rip),%r8 # 66357920 - 6634c4cb: 48 8b 0d 5e b4 00 00 mov 0xb45e(%rip),%rcx # 66357930 - 6634c4d2: 44 8b 48 14 mov 0x14(%rax),%r9d - 6634c4d6: 45 85 c9 test %r9d,%r9d - 6634c4d9: 74 59 je 6634c534 - 6634c4db: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c4df: 4c 8b 5a 28 mov 0x28(%rdx),%r11 - 6634c4e3: 4d 8b 52 28 mov 0x28(%r10),%r10 - 6634c4e7: 45 29 0a sub %r9d,(%r10) - 6634c4ea: c7 40 14 00 00 00 00 movl $0x0,0x14(%rax) - 6634c4f1: 45 31 c9 xor %r9d,%r9d - 6634c4f4: 45 8b 2a mov (%r10),%r13d - 6634c4f7: 45 85 ed test %r13d,%r13d - 6634c4fa: 41 0f 9f c1 setg %r9b - 6634c4fe: 45 39 0b cmp %r9d,(%r11) - 6634c501: 74 31 je 6634c534 - 6634c503: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c507: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634c50b: 45 8b 21 mov (%r9),%r12d - 6634c50e: 45 85 e4 test %r12d,%r12d - 6634c511: 75 21 jne 6634c534 - 6634c513: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c517: 4d 8b 51 28 mov 0x28(%r9),%r10 - 6634c51b: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c51f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c526: 4c 63 09 movslq (%rcx),%r9 - 6634c529: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c52d: 44 89 19 mov %r11d,(%rcx) - 6634c530: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c534: 44 8b 48 18 mov 0x18(%rax),%r9d - 6634c538: 45 85 c9 test %r9d,%r9d - 6634c53b: 74 57 je 6634c594 - 6634c53d: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c541: 4d 8b 52 30 mov 0x30(%r10),%r10 - 6634c545: 45 29 0a sub %r9d,(%r10) - 6634c548: c7 40 18 00 00 00 00 movl $0x0,0x18(%rax) - 6634c54f: 41 8b 2a mov (%r10),%ebp - 6634c552: 45 31 d2 xor %r10d,%r10d - 6634c555: 4c 8b 4a 30 mov 0x30(%rdx),%r9 - 6634c559: 85 ed test %ebp,%ebp - 6634c55b: 41 0f 9f c2 setg %r10b - 6634c55f: 45 3b 11 cmp (%r9),%r10d - 6634c562: 74 30 je 6634c594 - 6634c564: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c568: 4d 8b 49 30 mov 0x30(%r9),%r9 - 6634c56c: 41 8b 39 mov (%r9),%edi - 6634c56f: 85 ff test %edi,%edi - 6634c571: 75 21 jne 6634c594 - 6634c573: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c577: 4d 8b 51 30 mov 0x30(%r9),%r10 - 6634c57b: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c57f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c586: 4c 63 09 movslq (%rcx),%r9 - 6634c589: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c58d: 44 89 19 mov %r11d,(%rcx) - 6634c590: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c594: 44 8b 48 1c mov 0x1c(%rax),%r9d - 6634c598: 45 85 c9 test %r9d,%r9d - 6634c59b: 74 58 je 6634c5f5 - 6634c59d: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c5a1: 4d 8b 52 38 mov 0x38(%r10),%r10 - 6634c5a5: 45 29 0a sub %r9d,(%r10) - 6634c5a8: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 6634c5af: 41 8b 32 mov (%r10),%esi - 6634c5b2: 45 31 d2 xor %r10d,%r10d - 6634c5b5: 4c 8b 4a 38 mov 0x38(%rdx),%r9 - 6634c5b9: 85 f6 test %esi,%esi - 6634c5bb: 41 0f 9f c2 setg %r10b - 6634c5bf: 45 3b 11 cmp (%r9),%r10d - 6634c5c2: 74 31 je 6634c5f5 - 6634c5c4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c5c8: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634c5cc: 45 8b 19 mov (%r9),%r11d - 6634c5cf: 45 85 db test %r11d,%r11d - 6634c5d2: 75 21 jne 6634c5f5 - 6634c5d4: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c5d8: 4d 8b 51 38 mov 0x38(%r9),%r10 - 6634c5dc: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c5e0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c5e7: 4c 63 09 movslq (%rcx),%r9 - 6634c5ea: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c5ee: 44 89 19 mov %r11d,(%rcx) - 6634c5f1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c5f5: 44 8b 48 20 mov 0x20(%rax),%r9d - 6634c5f9: 45 85 c9 test %r9d,%r9d - 6634c5fc: 74 5a je 6634c658 - 6634c5fe: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c602: 4d 8b 52 40 mov 0x40(%r10),%r10 - 6634c606: 45 29 0a sub %r9d,(%r10) - 6634c609: c7 40 20 00 00 00 00 movl $0x0,0x20(%rax) - 6634c610: 45 8b 12 mov (%r10),%r10d - 6634c613: 4c 8b 4a 40 mov 0x40(%rdx),%r9 - 6634c617: 45 85 d2 test %r10d,%r10d - 6634c61a: 41 0f 9f c2 setg %r10b - 6634c61e: 45 0f b6 d2 movzbl %r10b,%r10d - 6634c622: 45 3b 11 cmp (%r9),%r10d - 6634c625: 74 31 je 6634c658 - 6634c627: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c62b: 4d 8b 49 40 mov 0x40(%r9),%r9 - 6634c62f: 45 8b 09 mov (%r9),%r9d - 6634c632: 45 85 c9 test %r9d,%r9d - 6634c635: 75 21 jne 6634c658 - 6634c637: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c63b: 4d 8b 51 40 mov 0x40(%r9),%r10 - 6634c63f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c643: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c64a: 4c 63 09 movslq (%rcx),%r9 - 6634c64d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c651: 44 89 19 mov %r11d,(%rcx) - 6634c654: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c658: 44 8b 48 24 mov 0x24(%rax),%r9d - 6634c65c: 45 85 c9 test %r9d,%r9d - 6634c65f: 74 59 je 6634c6ba - 6634c661: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c665: 4d 8b 52 48 mov 0x48(%r10),%r10 - 6634c669: 45 29 0a sub %r9d,(%r10) - 6634c66c: c7 40 24 00 00 00 00 movl $0x0,0x24(%rax) - 6634c673: 45 8b 2a mov (%r10),%r13d - 6634c676: 45 31 d2 xor %r10d,%r10d - 6634c679: 4c 8b 4a 48 mov 0x48(%rdx),%r9 - 6634c67d: 45 85 ed test %r13d,%r13d - 6634c680: 41 0f 9f c2 setg %r10b - 6634c684: 45 3b 11 cmp (%r9),%r10d - 6634c687: 74 31 je 6634c6ba - 6634c689: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c68d: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634c691: 45 8b 21 mov (%r9),%r12d - 6634c694: 45 85 e4 test %r12d,%r12d - 6634c697: 75 21 jne 6634c6ba - 6634c699: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c69d: 4d 8b 51 48 mov 0x48(%r9),%r10 - 6634c6a1: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c6a5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c6ac: 4c 63 09 movslq (%rcx),%r9 - 6634c6af: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c6b3: 44 89 19 mov %r11d,(%rcx) - 6634c6b6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c6ba: 44 8b 48 28 mov 0x28(%rax),%r9d - 6634c6be: 45 85 c9 test %r9d,%r9d - 6634c6c1: 74 57 je 6634c71a - 6634c6c3: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c6c7: 4d 8b 52 50 mov 0x50(%r10),%r10 - 6634c6cb: 45 29 0a sub %r9d,(%r10) - 6634c6ce: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 6634c6d5: 41 8b 2a mov (%r10),%ebp - 6634c6d8: 45 31 d2 xor %r10d,%r10d - 6634c6db: 4c 8b 4a 50 mov 0x50(%rdx),%r9 - 6634c6df: 85 ed test %ebp,%ebp - 6634c6e1: 41 0f 9f c2 setg %r10b - 6634c6e5: 45 3b 11 cmp (%r9),%r10d - 6634c6e8: 74 30 je 6634c71a - 6634c6ea: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c6ee: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634c6f2: 41 8b 39 mov (%r9),%edi - 6634c6f5: 85 ff test %edi,%edi - 6634c6f7: 75 21 jne 6634c71a - 6634c6f9: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c6fd: 4d 8b 51 50 mov 0x50(%r9),%r10 - 6634c701: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c705: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c70c: 4c 63 09 movslq (%rcx),%r9 - 6634c70f: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c713: 44 89 19 mov %r11d,(%rcx) - 6634c716: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c71a: 44 8b 48 2c mov 0x2c(%rax),%r9d - 6634c71e: 45 85 c9 test %r9d,%r9d - 6634c721: 74 58 je 6634c77b - 6634c723: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c727: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634c72b: 45 29 0a sub %r9d,(%r10) - 6634c72e: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 6634c735: 41 8b 32 mov (%r10),%esi - 6634c738: 45 31 d2 xor %r10d,%r10d - 6634c73b: 4c 8b 4a 58 mov 0x58(%rdx),%r9 - 6634c73f: 85 f6 test %esi,%esi - 6634c741: 41 0f 9f c2 setg %r10b - 6634c745: 45 3b 11 cmp (%r9),%r10d - 6634c748: 74 31 je 6634c77b - 6634c74a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c74e: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634c752: 45 8b 19 mov (%r9),%r11d - 6634c755: 45 85 db test %r11d,%r11d - 6634c758: 75 21 jne 6634c77b - 6634c75a: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c75e: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634c762: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c766: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c76d: 4c 63 09 movslq (%rcx),%r9 - 6634c770: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c774: 44 89 19 mov %r11d,(%rcx) - 6634c777: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c77b: 44 8b 48 30 mov 0x30(%rax),%r9d - 6634c77f: 45 85 c9 test %r9d,%r9d - 6634c782: 0f 84 24 fd ff ff je 6634c4ac - 6634c788: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c78c: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634c790: 45 29 0a sub %r9d,(%r10) - 6634c793: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 6634c79a: 45 31 c9 xor %r9d,%r9d - 6634c79d: 45 8b 12 mov (%r10),%r10d - 6634c7a0: 48 8b 42 60 mov 0x60(%rdx),%rax - 6634c7a4: 45 85 d2 test %r10d,%r10d - 6634c7a7: 41 0f 9f c1 setg %r9b - 6634c7ab: 44 3b 08 cmp (%rax),%r9d - 6634c7ae: 0f 84 f8 fc ff ff je 6634c4ac - 6634c7b4: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634c7b8: 48 8b 40 60 mov 0x60(%rax),%rax - 6634c7bc: 8b 00 mov (%rax),%eax - 6634c7be: 85 c0 test %eax,%eax - 6634c7c0: 0f 85 e6 fc ff ff jne 6634c4ac - 6634c7c6: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634c7ca: 48 8b 50 60 mov 0x60(%rax),%rdx - 6634c7ce: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c7d2: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634c7d8: 48 63 01 movslq (%rcx),%rax - 6634c7db: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634c7df: 44 89 09 mov %r9d,(%rcx) - 6634c7e2: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634c7e6: 48 83 c4 28 add $0x28,%rsp - 6634c7ea: 5b pop %rbx - 6634c7eb: 5e pop %rsi - 6634c7ec: 5f pop %rdi - 6634c7ed: 5d pop %rbp - 6634c7ee: 41 5c pop %r12 - 6634c7f0: 41 5d pop %r13 - 6634c7f2: c3 retq - 6634c7f3: 0f 1f 00 nopl (%rax) - 6634c7f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634c7fd: 00 00 00 +000000006634c1b0 : + 6634c1b0: 41 55 push %r13 + 6634c1b2: 41 54 push %r12 + 6634c1b4: 55 push %rbp + 6634c1b5: 57 push %rdi + 6634c1b6: 56 push %rsi + 6634c1b7: 53 push %rbx + 6634c1b8: 48 83 ec 28 sub $0x28,%rsp + 6634c1bc: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634c1c0: 48 8b 90 90 00 00 00 mov 0x90(%rax),%rdx + 6634c1c7: 48 89 cb mov %rcx,%rbx + 6634c1ca: 44 8b 2a mov (%rdx),%r13d + 6634c1cd: 45 85 ed test %r13d,%r13d + 6634c1d0: 0f 84 ca 00 00 00 je 6634c2a0 + 6634c1d6: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634c1da: bf 0a 00 00 00 mov $0xa,%edi + 6634c1df: 4c 8d 2d 1a 6e 00 00 lea 0x6e1a(%rip),%r13 # 66353000 <.rdata> + 6634c1e6: 4c 8d 25 23 6e 00 00 lea 0x6e23(%rip),%r12 # 66353010 <.rdata+0x10> + 6634c1ed: 8b 0a mov (%rdx),%ecx + 6634c1ef: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634c1f3: 8b 12 mov (%rdx),%edx + 6634c1f5: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634c1f8: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634c1fc: 8b 09 mov (%rcx),%ecx + 6634c1fe: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634c201: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634c205: 8b 09 mov (%rcx),%ecx + 6634c207: 8d 14 ca lea (%rdx,%rcx,8),%edx + 6634c20a: 48 8b 48 28 mov 0x28(%rax),%rcx + 6634c20e: 8b 31 mov (%rcx),%esi + 6634c210: 48 8b 48 40 mov 0x40(%rax),%rcx + 6634c214: c1 e6 04 shl $0x4,%esi + 6634c217: 01 d6 add %edx,%esi + 6634c219: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634c21d: 8b 12 mov (%rdx),%edx + 6634c21f: c1 e2 05 shl $0x5,%edx + 6634c222: 01 d6 add %edx,%esi + 6634c224: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634c228: 48 8b 40 48 mov 0x48(%rax),%rax + 6634c22c: 8b 12 mov (%rdx),%edx + 6634c22e: c1 e2 06 shl $0x6,%edx + 6634c231: 01 f2 add %esi,%edx + 6634c233: 8b 31 mov (%rcx),%esi + 6634c235: c1 e6 07 shl $0x7,%esi + 6634c238: 01 f2 add %esi,%edx + 6634c23a: 8b 30 mov (%rax),%esi + 6634c23c: c1 e6 08 shl $0x8,%esi + 6634c23f: 01 d6 add %edx,%esi + 6634c241: 48 63 ee movslq %esi,%rbp + 6634c244: 48 c1 e5 02 shl $0x2,%rbp + 6634c248: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634c24f: 00 + 6634c250: 85 f6 test %esi,%esi + 6634c252: 78 05 js 6634c259 + 6634c254: 39 73 38 cmp %esi,0x38(%rbx) + 6634c257: 7f 11 jg 6634c26a + 6634c259: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634c25f: 4c 89 ea mov %r13,%rdx + 6634c262: 4c 89 e1 mov %r12,%rcx + 6634c265: e8 96 4d 00 00 callq 66351000 <_assert> + 6634c26a: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634c26e: 89 fa mov %edi,%edx + 6634c270: 48 89 d9 mov %rbx,%rcx + 6634c273: 83 c7 01 add $0x1,%edi + 6634c276: 81 c6 00 02 00 00 add $0x200,%esi + 6634c27c: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634c280: 48 81 c5 00 08 00 00 add $0x800,%rbp + 6634c287: e8 24 51 ff ff callq 663413b0 + 6634c28c: 83 ff 12 cmp $0x12,%edi + 6634c28f: 75 bf jne 6634c250 + 6634c291: 48 83 c4 28 add $0x28,%rsp + 6634c295: 5b pop %rbx + 6634c296: 5e pop %rsi + 6634c297: 5f pop %rdi + 6634c298: 5d pop %rbp + 6634c299: 41 5c pop %r12 + 6634c29b: 41 5d pop %r13 + 6634c29d: c3 retq + 6634c29e: 66 90 xchg %ax,%ax + 6634c2a0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634c2a4: 4c 8b 05 75 a6 00 00 mov 0xa675(%rip),%r8 # 66356920 + 6634c2ab: 48 8b 0d 7e a6 00 00 mov 0xa67e(%rip),%rcx # 66356930 + 6634c2b2: 44 8b 4a 28 mov 0x28(%rdx),%r9d + 6634c2b6: 45 85 c9 test %r9d,%r9d + 6634c2b9: 74 58 je 6634c313 + 6634c2bb: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c2bf: 4d 8b 52 50 mov 0x50(%r10),%r10 + 6634c2c3: 45 29 0a sub %r9d,(%r10) + 6634c2c6: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634c2cd: 45 8b 22 mov (%r10),%r12d + 6634c2d0: 45 31 d2 xor %r10d,%r10d + 6634c2d3: 4c 8b 48 50 mov 0x50(%rax),%r9 + 6634c2d7: 45 85 e4 test %r12d,%r12d + 6634c2da: 41 0f 9f c2 setg %r10b + 6634c2de: 45 3b 11 cmp (%r9),%r10d + 6634c2e1: 74 30 je 6634c313 + 6634c2e3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c2e7: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634c2eb: 41 8b 29 mov (%r9),%ebp + 6634c2ee: 85 ed test %ebp,%ebp + 6634c2f0: 75 21 jne 6634c313 + 6634c2f2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c2f6: 4d 8b 51 50 mov 0x50(%r9),%r10 + 6634c2fa: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c2fe: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c305: 4c 63 09 movslq (%rcx),%r9 + 6634c308: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c30c: 44 89 19 mov %r11d,(%rcx) + 6634c30f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c313: 44 8b 4a 2c mov 0x2c(%rdx),%r9d + 6634c317: 45 85 c9 test %r9d,%r9d + 6634c31a: 74 57 je 6634c373 + 6634c31c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c320: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634c324: 45 29 0a sub %r9d,(%r10) + 6634c327: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634c32e: 41 8b 3a mov (%r10),%edi + 6634c331: 45 31 d2 xor %r10d,%r10d + 6634c334: 4c 8b 48 58 mov 0x58(%rax),%r9 + 6634c338: 85 ff test %edi,%edi + 6634c33a: 41 0f 9f c2 setg %r10b + 6634c33e: 45 3b 11 cmp (%r9),%r10d + 6634c341: 74 30 je 6634c373 + 6634c343: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c347: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634c34b: 41 8b 31 mov (%r9),%esi + 6634c34e: 85 f6 test %esi,%esi + 6634c350: 75 21 jne 6634c373 + 6634c352: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c356: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634c35a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c35e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c365: 4c 63 09 movslq (%rcx),%r9 + 6634c368: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c36c: 44 89 19 mov %r11d,(%rcx) + 6634c36f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c373: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634c377: 45 85 c9 test %r9d,%r9d + 6634c37a: 74 59 je 6634c3d5 + 6634c37c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c380: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634c384: 45 29 0a sub %r9d,(%r10) + 6634c387: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634c38e: 45 8b 1a mov (%r10),%r11d + 6634c391: 45 31 d2 xor %r10d,%r10d + 6634c394: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634c398: 45 85 db test %r11d,%r11d + 6634c39b: 41 0f 9f c2 setg %r10b + 6634c39f: 45 3b 11 cmp (%r9),%r10d + 6634c3a2: 74 31 je 6634c3d5 + 6634c3a4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c3a8: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634c3ac: 45 8b 11 mov (%r9),%r10d + 6634c3af: 45 85 d2 test %r10d,%r10d + 6634c3b2: 75 21 jne 6634c3d5 + 6634c3b4: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c3b8: 4d 8b 51 60 mov 0x60(%r9),%r10 + 6634c3bc: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c3c0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c3c7: 4c 63 09 movslq (%rcx),%r9 + 6634c3ca: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c3ce: 44 89 19 mov %r11d,(%rcx) + 6634c3d1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c3d5: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634c3d9: 45 85 c9 test %r9d,%r9d + 6634c3dc: 74 59 je 6634c437 + 6634c3de: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c3e2: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634c3e6: 45 29 0a sub %r9d,(%r10) + 6634c3e9: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634c3f0: 45 8b 0a mov (%r10),%r9d + 6634c3f3: 45 31 d2 xor %r10d,%r10d + 6634c3f6: 45 85 c9 test %r9d,%r9d + 6634c3f9: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634c3fd: 41 0f 9f c2 setg %r10b + 6634c401: 45 3b 11 cmp (%r9),%r10d + 6634c404: 74 31 je 6634c437 + 6634c406: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c40a: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634c40e: 45 8b 29 mov (%r9),%r13d + 6634c411: 45 85 ed test %r13d,%r13d + 6634c414: 75 21 jne 6634c437 + 6634c416: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c41a: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634c41e: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c422: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c429: 4c 63 09 movslq (%rcx),%r9 + 6634c42c: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c430: 44 89 19 mov %r11d,(%rcx) + 6634c433: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c437: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634c43b: 45 85 c9 test %r9d,%r9d + 6634c43e: 74 58 je 6634c498 + 6634c440: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c444: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634c448: 45 29 0a sub %r9d,(%r10) + 6634c44b: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634c452: 45 8b 22 mov (%r10),%r12d + 6634c455: 45 31 d2 xor %r10d,%r10d + 6634c458: 4c 8b 48 70 mov 0x70(%rax),%r9 + 6634c45c: 45 85 e4 test %r12d,%r12d + 6634c45f: 41 0f 9f c2 setg %r10b + 6634c463: 45 3b 11 cmp (%r9),%r10d + 6634c466: 74 30 je 6634c498 + 6634c468: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c46c: 4d 8b 49 70 mov 0x70(%r9),%r9 + 6634c470: 41 8b 29 mov (%r9),%ebp + 6634c473: 85 ed test %ebp,%ebp + 6634c475: 75 21 jne 6634c498 + 6634c477: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c47b: 4d 8b 51 70 mov 0x70(%r9),%r10 + 6634c47f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c483: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c48a: 4c 63 09 movslq (%rcx),%r9 + 6634c48d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c491: 44 89 19 mov %r11d,(%rcx) + 6634c494: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c498: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 6634c49c: 45 85 c9 test %r9d,%r9d + 6634c49f: 74 57 je 6634c4f8 + 6634c4a1: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c4a5: 4d 8b 52 78 mov 0x78(%r10),%r10 + 6634c4a9: 45 29 0a sub %r9d,(%r10) + 6634c4ac: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 6634c4b3: 41 8b 3a mov (%r10),%edi + 6634c4b6: 45 31 d2 xor %r10d,%r10d + 6634c4b9: 4c 8b 48 78 mov 0x78(%rax),%r9 + 6634c4bd: 85 ff test %edi,%edi + 6634c4bf: 41 0f 9f c2 setg %r10b + 6634c4c3: 45 3b 11 cmp (%r9),%r10d + 6634c4c6: 74 30 je 6634c4f8 + 6634c4c8: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c4cc: 4d 8b 49 78 mov 0x78(%r9),%r9 + 6634c4d0: 41 8b 31 mov (%r9),%esi + 6634c4d3: 85 f6 test %esi,%esi + 6634c4d5: 75 21 jne 6634c4f8 + 6634c4d7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c4db: 4d 8b 51 78 mov 0x78(%r9),%r10 + 6634c4df: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c4e3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c4ea: 4c 63 09 movslq (%rcx),%r9 + 6634c4ed: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c4f1: 44 89 19 mov %r11d,(%rcx) + 6634c4f4: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c4f8: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 6634c4fc: 45 85 c9 test %r9d,%r9d + 6634c4ff: 74 65 je 6634c566 + 6634c501: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c505: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634c50c: 45 29 0a sub %r9d,(%r10) + 6634c50f: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634c516: 45 8b 1a mov (%r10),%r11d + 6634c519: 45 31 d2 xor %r10d,%r10d + 6634c51c: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 + 6634c523: 45 85 db test %r11d,%r11d + 6634c526: 41 0f 9f c2 setg %r10b + 6634c52a: 45 3b 11 cmp (%r9),%r10d + 6634c52d: 74 37 je 6634c566 + 6634c52f: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c533: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 + 6634c53a: 45 8b 11 mov (%r9),%r10d + 6634c53d: 45 85 d2 test %r10d,%r10d + 6634c540: 75 24 jne 6634c566 + 6634c542: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c546: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 + 6634c54d: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c551: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c558: 4c 63 09 movslq (%rcx),%r9 + 6634c55b: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c55f: 44 89 19 mov %r11d,(%rcx) + 6634c562: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c566: 44 8b 4a 44 mov 0x44(%rdx),%r9d + 6634c56a: 45 85 c9 test %r9d,%r9d + 6634c56d: 0f 84 1e fd ff ff je 6634c291 + 6634c573: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c577: 48 8b 80 88 00 00 00 mov 0x88(%rax),%rax + 6634c57e: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 + 6634c585: 45 29 0a sub %r9d,(%r10) + 6634c588: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) + 6634c58f: 31 d2 xor %edx,%edx + 6634c591: 45 8b 0a mov (%r10),%r9d + 6634c594: 45 85 c9 test %r9d,%r9d + 6634c597: 0f 9f c2 setg %dl + 6634c59a: 3b 10 cmp (%rax),%edx + 6634c59c: 0f 84 ef fc ff ff je 6634c291 + 6634c5a2: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634c5a6: 48 8b 80 88 00 00 00 mov 0x88(%rax),%rax + 6634c5ad: 8b 00 mov (%rax),%eax + 6634c5af: 85 c0 test %eax,%eax + 6634c5b1: 0f 85 da fc ff ff jne 6634c291 + 6634c5b7: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634c5bb: 48 8b 90 88 00 00 00 mov 0x88(%rax),%rdx + 6634c5c2: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634c5c6: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634c5cc: 48 63 01 movslq (%rcx),%rax + 6634c5cf: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634c5d3: 44 89 09 mov %r9d,(%rcx) + 6634c5d6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634c5da: 48 83 c4 28 add $0x28,%rsp + 6634c5de: 5b pop %rbx + 6634c5df: 5e pop %rsi + 6634c5e0: 5f pop %rdi + 6634c5e1: 5d pop %rbp + 6634c5e2: 41 5c pop %r12 + 6634c5e4: 41 5d pop %r13 + 6634c5e6: c3 retq + 6634c5e7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634c5ee: 00 00 -000000006634c800 : - 6634c800: 41 55 push %r13 - 6634c802: 41 54 push %r12 - 6634c804: 55 push %rbp - 6634c805: 57 push %rdi - 6634c806: 56 push %rsi - 6634c807: 53 push %rbx - 6634c808: 48 83 ec 28 sub $0x28,%rsp - 6634c80c: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634c810: 48 8b 90 a8 00 00 00 mov 0xa8(%rax),%rdx - 6634c817: 48 89 cb mov %rcx,%rbx - 6634c81a: 8b 12 mov (%rdx),%edx - 6634c81c: 85 d2 test %edx,%edx - 6634c81e: 0f 84 5c 01 00 00 je 6634c980 - 6634c824: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634c828: be 34 00 00 00 mov $0x34,%esi - 6634c82d: 4c 8d 2d cc 77 00 00 lea 0x77cc(%rip),%r13 # 66354000 <.rdata> - 6634c834: 4c 8d 25 d5 77 00 00 lea 0x77d5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634c83b: 8b 0a mov (%rdx),%ecx - 6634c83d: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634c841: 8b 12 mov (%rdx),%edx - 6634c843: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634c846: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634c84a: 8b 09 mov (%rcx),%ecx - 6634c84c: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634c84f: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634c853: 8b 09 mov (%rcx),%ecx - 6634c855: 8d 3c ca lea (%rdx,%rcx,8),%edi - 6634c858: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634c85c: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634c860: 8b 12 mov (%rdx),%edx - 6634c862: c1 e2 04 shl $0x4,%edx - 6634c865: 01 d7 add %edx,%edi - 6634c867: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634c86b: 8b 12 mov (%rdx),%edx - 6634c86d: c1 e2 05 shl $0x5,%edx - 6634c870: 01 fa add %edi,%edx - 6634c872: 8b 39 mov (%rcx),%edi - 6634c874: 48 8b 48 40 mov 0x40(%rax),%rcx - 6634c878: c1 e7 06 shl $0x6,%edi - 6634c87b: 01 fa add %edi,%edx - 6634c87d: 8b 39 mov (%rcx),%edi - 6634c87f: 48 8b 48 58 mov 0x58(%rax),%rcx - 6634c883: c1 e7 07 shl $0x7,%edi - 6634c886: 01 d7 add %edx,%edi - 6634c888: 48 8b 50 48 mov 0x48(%rax),%rdx - 6634c88c: 8b 12 mov (%rdx),%edx - 6634c88e: c1 e2 08 shl $0x8,%edx - 6634c891: 01 d7 add %edx,%edi - 6634c893: 48 8b 50 50 mov 0x50(%rax),%rdx - 6634c897: 48 8b 40 60 mov 0x60(%rax),%rax - 6634c89b: 8b 12 mov (%rdx),%edx - 6634c89d: c1 e2 09 shl $0x9,%edx - 6634c8a0: 01 fa add %edi,%edx - 6634c8a2: 8b 39 mov (%rcx),%edi - 6634c8a4: c1 e7 0a shl $0xa,%edi - 6634c8a7: 01 fa add %edi,%edx - 6634c8a9: 8b 38 mov (%rax),%edi - 6634c8ab: c1 e7 0b shl $0xb,%edi - 6634c8ae: 01 d7 add %edx,%edi - 6634c8b0: 48 63 ef movslq %edi,%rbp - 6634c8b3: 48 c1 e5 02 shl $0x2,%rbp - 6634c8b7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634c8be: 00 00 - 6634c8c0: 85 ff test %edi,%edi - 6634c8c2: 78 05 js 6634c8c9 - 6634c8c4: 39 7b 38 cmp %edi,0x38(%rbx) - 6634c8c7: 7f 11 jg 6634c8da - 6634c8c9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634c8cf: 4c 89 ea mov %r13,%rdx - 6634c8d2: 4c 89 e1 mov %r12,%rcx - 6634c8d5: e8 36 59 00 00 callq 66352210 <_assert> - 6634c8da: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634c8de: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634c8e2: 48 01 f2 add %rsi,%rdx - 6634c8e5: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634c8e8: 8b 0a mov (%rdx),%ecx - 6634c8ea: 39 c8 cmp %ecx,%eax - 6634c8ec: 74 69 je 6634c957 - 6634c8ee: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634c8f2: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634c8f6: 41 89 c3 mov %eax,%r11d - 6634c8f9: 41 29 cb sub %ecx,%r11d - 6634c8fc: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634c900: 45 01 18 add %r11d,(%r8) - 6634c903: 89 02 mov %eax,(%rdx) - 6634c905: 31 d2 xor %edx,%edx - 6634c907: 41 8b 00 mov (%r8),%eax - 6634c90a: 85 c0 test %eax,%eax - 6634c90c: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634c910: 0f 9f c2 setg %dl - 6634c913: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634c917: 3b 10 cmp (%rax),%edx - 6634c919: 74 3c je 6634c957 - 6634c91b: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634c91f: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634c923: 8b 00 mov (%rax),%eax - 6634c925: 85 c0 test %eax,%eax - 6634c927: 75 2e jne 6634c957 - 6634c929: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634c92d: 48 8b 0d fc af 00 00 mov 0xaffc(%rip),%rcx # 66357930 - 6634c934: 4c 8b 05 e5 af 00 00 mov 0xafe5(%rip),%r8 # 66357920 - 6634c93b: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634c93f: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634c943: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634c949: 48 63 01 movslq (%rcx),%rax - 6634c94c: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634c950: 44 89 09 mov %r9d,(%rcx) - 6634c953: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634c957: 48 83 c6 04 add $0x4,%rsi - 6634c95b: 81 c7 00 10 00 00 add $0x1000,%edi - 6634c961: 48 81 c5 00 40 00 00 add $0x4000,%rbp - 6634c968: 48 83 fe 54 cmp $0x54,%rsi - 6634c96c: 0f 85 4e ff ff ff jne 6634c8c0 - 6634c972: 48 83 c4 28 add $0x28,%rsp - 6634c976: 5b pop %rbx - 6634c977: 5e pop %rsi - 6634c978: 5f pop %rdi - 6634c979: 5d pop %rbp - 6634c97a: 41 5c pop %r12 - 6634c97c: 41 5d pop %r13 - 6634c97e: c3 retq - 6634c97f: 90 nop - 6634c980: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634c984: 4c 8b 05 95 af 00 00 mov 0xaf95(%rip),%r8 # 66357920 - 6634c98b: 48 8b 0d 9e af 00 00 mov 0xaf9e(%rip),%rcx # 66357930 - 6634c992: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634c996: 45 85 c9 test %r9d,%r9d - 6634c999: 74 58 je 6634c9f3 - 6634c99b: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634c99f: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634c9a3: 45 29 0a sub %r9d,(%r10) - 6634c9a6: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634c9ad: 45 8b 22 mov (%r10),%r12d - 6634c9b0: 45 31 d2 xor %r10d,%r10d - 6634c9b3: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634c9b7: 45 85 e4 test %r12d,%r12d - 6634c9ba: 41 0f 9f c2 setg %r10b - 6634c9be: 45 3b 11 cmp (%r9),%r10d - 6634c9c1: 74 30 je 6634c9f3 - 6634c9c3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634c9c7: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634c9cb: 41 8b 29 mov (%r9),%ebp - 6634c9ce: 85 ed test %ebp,%ebp - 6634c9d0: 75 21 jne 6634c9f3 - 6634c9d2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634c9d6: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634c9da: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634c9de: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634c9e5: 4c 63 09 movslq (%rcx),%r9 - 6634c9e8: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634c9ec: 44 89 19 mov %r11d,(%rcx) - 6634c9ef: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634c9f3: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634c9f7: 45 85 c9 test %r9d,%r9d - 6634c9fa: 74 57 je 6634ca53 - 6634c9fc: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ca00: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634ca04: 45 29 0a sub %r9d,(%r10) - 6634ca07: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634ca0e: 41 8b 3a mov (%r10),%edi - 6634ca11: 45 31 d2 xor %r10d,%r10d - 6634ca14: 4c 8b 48 70 mov 0x70(%rax),%r9 - 6634ca18: 85 ff test %edi,%edi - 6634ca1a: 41 0f 9f c2 setg %r10b - 6634ca1e: 45 3b 11 cmp (%r9),%r10d - 6634ca21: 74 30 je 6634ca53 - 6634ca23: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634ca27: 4d 8b 49 70 mov 0x70(%r9),%r9 - 6634ca2b: 41 8b 31 mov (%r9),%esi - 6634ca2e: 85 f6 test %esi,%esi - 6634ca30: 75 21 jne 6634ca53 - 6634ca32: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634ca36: 4d 8b 51 70 mov 0x70(%r9),%r10 - 6634ca3a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634ca3e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634ca45: 4c 63 09 movslq (%rcx),%r9 - 6634ca48: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634ca4c: 44 89 19 mov %r11d,(%rcx) - 6634ca4f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634ca53: 44 8b 4a 3c mov 0x3c(%rdx),%r9d - 6634ca57: 45 85 c9 test %r9d,%r9d - 6634ca5a: 74 59 je 6634cab5 - 6634ca5c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ca60: 4d 8b 52 78 mov 0x78(%r10),%r10 - 6634ca64: 45 29 0a sub %r9d,(%r10) - 6634ca67: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 6634ca6e: 45 8b 1a mov (%r10),%r11d - 6634ca71: 45 31 d2 xor %r10d,%r10d - 6634ca74: 4c 8b 48 78 mov 0x78(%rax),%r9 - 6634ca78: 45 85 db test %r11d,%r11d - 6634ca7b: 41 0f 9f c2 setg %r10b - 6634ca7f: 45 3b 11 cmp (%r9),%r10d - 6634ca82: 74 31 je 6634cab5 - 6634ca84: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634ca88: 4d 8b 49 78 mov 0x78(%r9),%r9 - 6634ca8c: 45 8b 11 mov (%r9),%r10d - 6634ca8f: 45 85 d2 test %r10d,%r10d - 6634ca92: 75 21 jne 6634cab5 - 6634ca94: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634ca98: 4d 8b 51 78 mov 0x78(%r9),%r10 - 6634ca9c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634caa0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634caa7: 4c 63 09 movslq (%rcx),%r9 - 6634caaa: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634caae: 44 89 19 mov %r11d,(%rcx) - 6634cab1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cab5: 44 8b 4a 40 mov 0x40(%rdx),%r9d - 6634cab9: 45 85 c9 test %r9d,%r9d - 6634cabc: 74 65 je 6634cb23 - 6634cabe: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cac2: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 - 6634cac9: 45 29 0a sub %r9d,(%r10) - 6634cacc: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634cad3: 45 8b 0a mov (%r10),%r9d - 6634cad6: 45 31 d2 xor %r10d,%r10d - 6634cad9: 45 85 c9 test %r9d,%r9d - 6634cadc: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 - 6634cae3: 41 0f 9f c2 setg %r10b - 6634cae7: 45 3b 11 cmp (%r9),%r10d - 6634caea: 74 37 je 6634cb23 - 6634caec: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634caf0: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 - 6634caf7: 45 8b 29 mov (%r9),%r13d - 6634cafa: 45 85 ed test %r13d,%r13d - 6634cafd: 75 24 jne 6634cb23 - 6634caff: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cb03: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 - 6634cb0a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cb0e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cb15: 4c 63 09 movslq (%rcx),%r9 - 6634cb18: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cb1c: 44 89 19 mov %r11d,(%rcx) - 6634cb1f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cb23: 44 8b 4a 44 mov 0x44(%rdx),%r9d - 6634cb27: 45 85 c9 test %r9d,%r9d - 6634cb2a: 74 64 je 6634cb90 - 6634cb2c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cb30: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 - 6634cb37: 45 29 0a sub %r9d,(%r10) - 6634cb3a: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) - 6634cb41: 45 8b 22 mov (%r10),%r12d - 6634cb44: 45 31 d2 xor %r10d,%r10d - 6634cb47: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 - 6634cb4e: 45 85 e4 test %r12d,%r12d - 6634cb51: 41 0f 9f c2 setg %r10b - 6634cb55: 45 3b 11 cmp (%r9),%r10d - 6634cb58: 74 36 je 6634cb90 - 6634cb5a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cb5e: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 - 6634cb65: 41 8b 29 mov (%r9),%ebp - 6634cb68: 85 ed test %ebp,%ebp - 6634cb6a: 75 24 jne 6634cb90 - 6634cb6c: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cb70: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 - 6634cb77: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cb7b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cb82: 4c 63 09 movslq (%rcx),%r9 - 6634cb85: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cb89: 44 89 19 mov %r11d,(%rcx) - 6634cb8c: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cb90: 44 8b 4a 48 mov 0x48(%rdx),%r9d - 6634cb94: 45 85 c9 test %r9d,%r9d - 6634cb97: 74 63 je 6634cbfc - 6634cb99: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cb9d: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 - 6634cba4: 45 29 0a sub %r9d,(%r10) - 6634cba7: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) - 6634cbae: 41 8b 3a mov (%r10),%edi - 6634cbb1: 45 31 d2 xor %r10d,%r10d - 6634cbb4: 4c 8b 88 90 00 00 00 mov 0x90(%rax),%r9 - 6634cbbb: 85 ff test %edi,%edi - 6634cbbd: 41 0f 9f c2 setg %r10b - 6634cbc1: 45 3b 11 cmp (%r9),%r10d - 6634cbc4: 74 36 je 6634cbfc - 6634cbc6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cbca: 4d 8b 89 90 00 00 00 mov 0x90(%r9),%r9 - 6634cbd1: 41 8b 31 mov (%r9),%esi - 6634cbd4: 85 f6 test %esi,%esi - 6634cbd6: 75 24 jne 6634cbfc - 6634cbd8: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cbdc: 4d 8b 91 90 00 00 00 mov 0x90(%r9),%r10 - 6634cbe3: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cbe7: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cbee: 4c 63 09 movslq (%rcx),%r9 - 6634cbf1: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cbf5: 44 89 19 mov %r11d,(%rcx) - 6634cbf8: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cbfc: 44 8b 4a 4c mov 0x4c(%rdx),%r9d - 6634cc00: 45 85 c9 test %r9d,%r9d - 6634cc03: 74 65 je 6634cc6a - 6634cc05: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cc09: 4d 8b 92 98 00 00 00 mov 0x98(%r10),%r10 - 6634cc10: 45 29 0a sub %r9d,(%r10) - 6634cc13: c7 42 4c 00 00 00 00 movl $0x0,0x4c(%rdx) - 6634cc1a: 45 8b 1a mov (%r10),%r11d - 6634cc1d: 45 31 d2 xor %r10d,%r10d - 6634cc20: 4c 8b 88 98 00 00 00 mov 0x98(%rax),%r9 - 6634cc27: 45 85 db test %r11d,%r11d - 6634cc2a: 41 0f 9f c2 setg %r10b - 6634cc2e: 45 3b 11 cmp (%r9),%r10d - 6634cc31: 74 37 je 6634cc6a - 6634cc33: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cc37: 4d 8b 89 98 00 00 00 mov 0x98(%r9),%r9 - 6634cc3e: 45 8b 11 mov (%r9),%r10d - 6634cc41: 45 85 d2 test %r10d,%r10d - 6634cc44: 75 24 jne 6634cc6a - 6634cc46: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cc4a: 4d 8b 91 98 00 00 00 mov 0x98(%r9),%r10 - 6634cc51: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cc55: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cc5c: 4c 63 09 movslq (%rcx),%r9 - 6634cc5f: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cc63: 44 89 19 mov %r11d,(%rcx) - 6634cc66: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cc6a: 44 8b 4a 50 mov 0x50(%rdx),%r9d - 6634cc6e: 45 85 c9 test %r9d,%r9d - 6634cc71: 0f 84 fb fc ff ff je 6634c972 - 6634cc77: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cc7b: 48 8b 80 a0 00 00 00 mov 0xa0(%rax),%rax - 6634cc82: 4d 8b 92 a0 00 00 00 mov 0xa0(%r10),%r10 - 6634cc89: 45 29 0a sub %r9d,(%r10) - 6634cc8c: c7 42 50 00 00 00 00 movl $0x0,0x50(%rdx) - 6634cc93: 31 d2 xor %edx,%edx - 6634cc95: 45 8b 0a mov (%r10),%r9d - 6634cc98: 45 85 c9 test %r9d,%r9d - 6634cc9b: 0f 9f c2 setg %dl - 6634cc9e: 3b 10 cmp (%rax),%edx - 6634cca0: 0f 84 cc fc ff ff je 6634c972 - 6634cca6: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634ccaa: 48 8b 80 a0 00 00 00 mov 0xa0(%rax),%rax - 6634ccb1: 8b 00 mov (%rax),%eax - 6634ccb3: 85 c0 test %eax,%eax - 6634ccb5: 0f 85 b7 fc ff ff jne 6634c972 - 6634ccbb: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634ccbf: 48 8b 90 a0 00 00 00 mov 0xa0(%rax),%rdx - 6634ccc6: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ccca: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ccd0: 48 63 01 movslq (%rcx),%rax - 6634ccd3: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ccd7: 44 89 09 mov %r9d,(%rcx) - 6634ccda: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ccde: 48 83 c4 28 add $0x28,%rsp - 6634cce2: 5b pop %rbx - 6634cce3: 5e pop %rsi - 6634cce4: 5f pop %rdi - 6634cce5: 5d pop %rbp - 6634cce6: 41 5c pop %r12 - 6634cce8: 41 5d pop %r13 - 6634ccea: c3 retq - 6634cceb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) +000000006634c5f0 : + 6634c5f0: 41 55 push %r13 + 6634c5f2: 41 54 push %r12 + 6634c5f4: 55 push %rbp + 6634c5f5: 57 push %rdi + 6634c5f6: 56 push %rsi + 6634c5f7: 53 push %rbx + 6634c5f8: 48 83 ec 28 sub $0x28,%rsp + 6634c5fc: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634c600: 48 8b 90 98 00 00 00 mov 0x98(%rax),%rdx + 6634c607: 48 89 cb mov %rcx,%rbx + 6634c60a: 44 8b 2a mov (%rdx),%r13d + 6634c60d: 45 85 ed test %r13d,%r13d + 6634c610: 0f 84 cb 00 00 00 je 6634c6e1 + 6634c616: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634c61a: bf 0b 00 00 00 mov $0xb,%edi + 6634c61f: 4c 8d 2d da 69 00 00 lea 0x69da(%rip),%r13 # 66353000 <.rdata> + 6634c626: 4c 8d 25 e3 69 00 00 lea 0x69e3(%rip),%r12 # 66353010 <.rdata+0x10> + 6634c62d: 8b 0a mov (%rdx),%ecx + 6634c62f: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634c633: 8b 12 mov (%rdx),%edx + 6634c635: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634c638: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634c63c: 8b 09 mov (%rcx),%ecx + 6634c63e: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634c641: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634c645: 8b 09 mov (%rcx),%ecx + 6634c647: 8d 14 ca lea (%rdx,%rcx,8),%edx + 6634c64a: 48 8b 48 28 mov 0x28(%rax),%rcx + 6634c64e: 8b 31 mov (%rcx),%esi + 6634c650: 48 8b 48 30 mov 0x30(%rax),%rcx + 6634c654: c1 e6 04 shl $0x4,%esi + 6634c657: 01 f2 add %esi,%edx + 6634c659: 8b 31 mov (%rcx),%esi + 6634c65b: 48 8b 48 48 mov 0x48(%rax),%rcx + 6634c65f: c1 e6 05 shl $0x5,%esi + 6634c662: 01 d6 add %edx,%esi + 6634c664: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634c668: 8b 12 mov (%rdx),%edx + 6634c66a: c1 e2 06 shl $0x6,%edx + 6634c66d: 01 d6 add %edx,%esi + 6634c66f: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634c673: 48 8b 40 50 mov 0x50(%rax),%rax + 6634c677: 8b 12 mov (%rdx),%edx + 6634c679: c1 e2 07 shl $0x7,%edx + 6634c67c: 01 f2 add %esi,%edx + 6634c67e: 8b 31 mov (%rcx),%esi + 6634c680: c1 e6 08 shl $0x8,%esi + 6634c683: 01 f2 add %esi,%edx + 6634c685: 8b 30 mov (%rax),%esi + 6634c687: c1 e6 09 shl $0x9,%esi + 6634c68a: 01 d6 add %edx,%esi + 6634c68c: 48 63 ee movslq %esi,%rbp + 6634c68f: 48 c1 e5 02 shl $0x2,%rbp + 6634c693: 85 f6 test %esi,%esi + 6634c695: 78 05 js 6634c69c + 6634c697: 39 73 38 cmp %esi,0x38(%rbx) + 6634c69a: 7f 11 jg 6634c6ad + 6634c69c: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634c6a2: 4c 89 ea mov %r13,%rdx + 6634c6a5: 4c 89 e1 mov %r12,%rcx + 6634c6a8: e8 53 49 00 00 callq 66351000 <_assert> + 6634c6ad: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634c6b1: 89 fa mov %edi,%edx + 6634c6b3: 48 89 d9 mov %rbx,%rcx + 6634c6b6: 83 c7 01 add $0x1,%edi + 6634c6b9: 81 c6 00 04 00 00 add $0x400,%esi + 6634c6bf: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634c6c3: 48 81 c5 00 10 00 00 add $0x1000,%rbp + 6634c6ca: e8 e1 4c ff ff callq 663413b0 + 6634c6cf: 83 ff 13 cmp $0x13,%edi + 6634c6d2: 75 bf jne 6634c693 + 6634c6d4: 48 83 c4 28 add $0x28,%rsp + 6634c6d8: 5b pop %rbx + 6634c6d9: 5e pop %rsi + 6634c6da: 5f pop %rdi + 6634c6db: 5d pop %rbp + 6634c6dc: 41 5c pop %r12 + 6634c6de: 41 5d pop %r13 + 6634c6e0: c3 retq + 6634c6e1: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634c6e5: 4c 8b 05 34 a2 00 00 mov 0xa234(%rip),%r8 # 66356920 + 6634c6ec: 48 8b 0d 3d a2 00 00 mov 0xa23d(%rip),%rcx # 66356930 + 6634c6f3: 44 8b 4a 2c mov 0x2c(%rdx),%r9d + 6634c6f7: 45 85 c9 test %r9d,%r9d + 6634c6fa: 74 58 je 6634c754 + 6634c6fc: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c700: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634c704: 45 29 0a sub %r9d,(%r10) + 6634c707: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634c70e: 45 8b 22 mov (%r10),%r12d + 6634c711: 45 31 d2 xor %r10d,%r10d + 6634c714: 4c 8b 48 58 mov 0x58(%rax),%r9 + 6634c718: 45 85 e4 test %r12d,%r12d + 6634c71b: 41 0f 9f c2 setg %r10b + 6634c71f: 45 3b 11 cmp (%r9),%r10d + 6634c722: 74 30 je 6634c754 + 6634c724: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c728: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634c72c: 41 8b 29 mov (%r9),%ebp + 6634c72f: 85 ed test %ebp,%ebp + 6634c731: 75 21 jne 6634c754 + 6634c733: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c737: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634c73b: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c73f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c746: 4c 63 09 movslq (%rcx),%r9 + 6634c749: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c74d: 44 89 19 mov %r11d,(%rcx) + 6634c750: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c754: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634c758: 45 85 c9 test %r9d,%r9d + 6634c75b: 74 57 je 6634c7b4 + 6634c75d: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c761: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634c765: 45 29 0a sub %r9d,(%r10) + 6634c768: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634c76f: 41 8b 3a mov (%r10),%edi + 6634c772: 45 31 d2 xor %r10d,%r10d + 6634c775: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634c779: 85 ff test %edi,%edi + 6634c77b: 41 0f 9f c2 setg %r10b + 6634c77f: 45 3b 11 cmp (%r9),%r10d + 6634c782: 74 30 je 6634c7b4 + 6634c784: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c788: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634c78c: 41 8b 31 mov (%r9),%esi + 6634c78f: 85 f6 test %esi,%esi + 6634c791: 75 21 jne 6634c7b4 + 6634c793: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c797: 4d 8b 51 60 mov 0x60(%r9),%r10 + 6634c79b: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c79f: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c7a6: 4c 63 09 movslq (%rcx),%r9 + 6634c7a9: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c7ad: 44 89 19 mov %r11d,(%rcx) + 6634c7b0: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c7b4: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634c7b8: 45 85 c9 test %r9d,%r9d + 6634c7bb: 74 59 je 6634c816 + 6634c7bd: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c7c1: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634c7c5: 45 29 0a sub %r9d,(%r10) + 6634c7c8: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634c7cf: 45 8b 1a mov (%r10),%r11d + 6634c7d2: 45 31 d2 xor %r10d,%r10d + 6634c7d5: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634c7d9: 45 85 db test %r11d,%r11d + 6634c7dc: 41 0f 9f c2 setg %r10b + 6634c7e0: 45 3b 11 cmp (%r9),%r10d + 6634c7e3: 74 31 je 6634c816 + 6634c7e5: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c7e9: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634c7ed: 45 8b 11 mov (%r9),%r10d + 6634c7f0: 45 85 d2 test %r10d,%r10d + 6634c7f3: 75 21 jne 6634c816 + 6634c7f5: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c7f9: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634c7fd: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c801: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c808: 4c 63 09 movslq (%rcx),%r9 + 6634c80b: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c80f: 44 89 19 mov %r11d,(%rcx) + 6634c812: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c816: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634c81a: 45 85 c9 test %r9d,%r9d + 6634c81d: 74 59 je 6634c878 + 6634c81f: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c823: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634c827: 45 29 0a sub %r9d,(%r10) + 6634c82a: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634c831: 45 8b 0a mov (%r10),%r9d + 6634c834: 45 31 d2 xor %r10d,%r10d + 6634c837: 45 85 c9 test %r9d,%r9d + 6634c83a: 4c 8b 48 70 mov 0x70(%rax),%r9 + 6634c83e: 41 0f 9f c2 setg %r10b + 6634c842: 45 3b 11 cmp (%r9),%r10d + 6634c845: 74 31 je 6634c878 + 6634c847: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c84b: 4d 8b 49 70 mov 0x70(%r9),%r9 + 6634c84f: 45 8b 29 mov (%r9),%r13d + 6634c852: 45 85 ed test %r13d,%r13d + 6634c855: 75 21 jne 6634c878 + 6634c857: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c85b: 4d 8b 51 70 mov 0x70(%r9),%r10 + 6634c85f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c863: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c86a: 4c 63 09 movslq (%rcx),%r9 + 6634c86d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c871: 44 89 19 mov %r11d,(%rcx) + 6634c874: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c878: 44 8b 4a 3c mov 0x3c(%rdx),%r9d + 6634c87c: 45 85 c9 test %r9d,%r9d + 6634c87f: 74 58 je 6634c8d9 + 6634c881: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c885: 4d 8b 52 78 mov 0x78(%r10),%r10 + 6634c889: 45 29 0a sub %r9d,(%r10) + 6634c88c: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) + 6634c893: 45 8b 22 mov (%r10),%r12d + 6634c896: 45 31 d2 xor %r10d,%r10d + 6634c899: 4c 8b 48 78 mov 0x78(%rax),%r9 + 6634c89d: 45 85 e4 test %r12d,%r12d + 6634c8a0: 41 0f 9f c2 setg %r10b + 6634c8a4: 45 3b 11 cmp (%r9),%r10d + 6634c8a7: 74 30 je 6634c8d9 + 6634c8a9: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c8ad: 4d 8b 49 78 mov 0x78(%r9),%r9 + 6634c8b1: 41 8b 29 mov (%r9),%ebp + 6634c8b4: 85 ed test %ebp,%ebp + 6634c8b6: 75 21 jne 6634c8d9 + 6634c8b8: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c8bc: 4d 8b 51 78 mov 0x78(%r9),%r10 + 6634c8c0: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c8c4: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c8cb: 4c 63 09 movslq (%rcx),%r9 + 6634c8ce: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c8d2: 44 89 19 mov %r11d,(%rcx) + 6634c8d5: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c8d9: 44 8b 4a 40 mov 0x40(%rdx),%r9d + 6634c8dd: 45 85 c9 test %r9d,%r9d + 6634c8e0: 74 63 je 6634c945 + 6634c8e2: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c8e6: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 + 6634c8ed: 45 29 0a sub %r9d,(%r10) + 6634c8f0: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) + 6634c8f7: 41 8b 3a mov (%r10),%edi + 6634c8fa: 45 31 d2 xor %r10d,%r10d + 6634c8fd: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 + 6634c904: 85 ff test %edi,%edi + 6634c906: 41 0f 9f c2 setg %r10b + 6634c90a: 45 3b 11 cmp (%r9),%r10d + 6634c90d: 74 36 je 6634c945 + 6634c90f: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c913: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 + 6634c91a: 41 8b 31 mov (%r9),%esi + 6634c91d: 85 f6 test %esi,%esi + 6634c91f: 75 24 jne 6634c945 + 6634c921: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c925: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 + 6634c92c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c930: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c937: 4c 63 09 movslq (%rcx),%r9 + 6634c93a: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c93e: 44 89 19 mov %r11d,(%rcx) + 6634c941: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c945: 44 8b 4a 44 mov 0x44(%rdx),%r9d + 6634c949: 45 85 c9 test %r9d,%r9d + 6634c94c: 74 65 je 6634c9b3 + 6634c94e: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c952: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 + 6634c959: 45 29 0a sub %r9d,(%r10) + 6634c95c: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) + 6634c963: 45 8b 1a mov (%r10),%r11d + 6634c966: 45 31 d2 xor %r10d,%r10d + 6634c969: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 + 6634c970: 45 85 db test %r11d,%r11d + 6634c973: 41 0f 9f c2 setg %r10b + 6634c977: 45 3b 11 cmp (%r9),%r10d + 6634c97a: 74 37 je 6634c9b3 + 6634c97c: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634c980: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 + 6634c987: 45 8b 11 mov (%r9),%r10d + 6634c98a: 45 85 d2 test %r10d,%r10d + 6634c98d: 75 24 jne 6634c9b3 + 6634c98f: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634c993: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 + 6634c99a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634c99e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634c9a5: 4c 63 09 movslq (%rcx),%r9 + 6634c9a8: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634c9ac: 44 89 19 mov %r11d,(%rcx) + 6634c9af: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634c9b3: 44 8b 4a 48 mov 0x48(%rdx),%r9d + 6634c9b7: 45 85 c9 test %r9d,%r9d + 6634c9ba: 0f 84 14 fd ff ff je 6634c6d4 + 6634c9c0: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634c9c4: 48 8b 80 90 00 00 00 mov 0x90(%rax),%rax + 6634c9cb: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 + 6634c9d2: 45 29 0a sub %r9d,(%r10) + 6634c9d5: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) + 6634c9dc: 31 d2 xor %edx,%edx + 6634c9de: 45 8b 0a mov (%r10),%r9d + 6634c9e1: 45 85 c9 test %r9d,%r9d + 6634c9e4: 0f 9f c2 setg %dl + 6634c9e7: 3b 10 cmp (%rax),%edx + 6634c9e9: 0f 84 e5 fc ff ff je 6634c6d4 + 6634c9ef: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634c9f3: 48 8b 80 90 00 00 00 mov 0x90(%rax),%rax + 6634c9fa: 8b 00 mov (%rax),%eax + 6634c9fc: 85 c0 test %eax,%eax + 6634c9fe: 0f 85 d0 fc ff ff jne 6634c6d4 + 6634ca04: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634ca08: 48 8b 90 90 00 00 00 mov 0x90(%rax),%rdx + 6634ca0f: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634ca13: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634ca19: 48 63 01 movslq (%rcx),%rax + 6634ca1c: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634ca20: 44 89 09 mov %r9d,(%rcx) + 6634ca23: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634ca27: 48 83 c4 28 add $0x28,%rsp + 6634ca2b: 5b pop %rbx + 6634ca2c: 5e pop %rsi + 6634ca2d: 5f pop %rdi + 6634ca2e: 5d pop %rbp + 6634ca2f: 41 5c pop %r12 + 6634ca31: 41 5d pop %r13 + 6634ca33: c3 retq + 6634ca34: 66 90 xchg %ax,%ax + 6634ca36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634ca3d: 00 00 00 -000000006634ccf0 : - 6634ccf0: 41 55 push %r13 - 6634ccf2: 41 54 push %r12 - 6634ccf4: 55 push %rbp - 6634ccf5: 57 push %rdi - 6634ccf6: 56 push %rsi - 6634ccf7: 53 push %rbx - 6634ccf8: 48 83 ec 28 sub $0x28,%rsp - 6634ccfc: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634cd00: 48 8b 90 88 00 00 00 mov 0x88(%rax),%rdx - 6634cd07: 48 89 cb mov %rcx,%rbx - 6634cd0a: 8b 12 mov (%rdx),%edx - 6634cd0c: 85 d2 test %edx,%edx - 6634cd0e: 0f 84 2c 01 00 00 je 6634ce40 - 6634cd14: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634cd18: be 24 00 00 00 mov $0x24,%esi - 6634cd1d: 4c 8d 2d dc 72 00 00 lea 0x72dc(%rip),%r13 # 66354000 <.rdata> - 6634cd24: 4c 8d 25 e5 72 00 00 lea 0x72e5(%rip),%r12 # 66354010 <.rdata+0x10> - 6634cd2b: 8b 0a mov (%rdx),%ecx - 6634cd2d: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634cd31: 8b 12 mov (%rdx),%edx - 6634cd33: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634cd36: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634cd3a: 8b 09 mov (%rcx),%ecx - 6634cd3c: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634cd3f: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634cd43: 8b 09 mov (%rcx),%ecx - 6634cd45: 8d 3c ca lea (%rdx,%rcx,8),%edi - 6634cd48: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634cd4c: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634cd50: 8b 12 mov (%rdx),%edx - 6634cd52: c1 e2 04 shl $0x4,%edx - 6634cd55: 01 d7 add %edx,%edi - 6634cd57: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634cd5b: 48 8b 40 40 mov 0x40(%rax),%rax - 6634cd5f: 8b 12 mov (%rdx),%edx - 6634cd61: c1 e2 05 shl $0x5,%edx - 6634cd64: 01 fa add %edi,%edx - 6634cd66: 8b 39 mov (%rcx),%edi - 6634cd68: c1 e7 06 shl $0x6,%edi - 6634cd6b: 01 fa add %edi,%edx - 6634cd6d: 8b 38 mov (%rax),%edi - 6634cd6f: c1 e7 07 shl $0x7,%edi - 6634cd72: 01 d7 add %edx,%edi - 6634cd74: 48 63 ef movslq %edi,%rbp - 6634cd77: 48 c1 e5 02 shl $0x2,%rbp - 6634cd7b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634cd80: 85 ff test %edi,%edi - 6634cd82: 78 05 js 6634cd89 - 6634cd84: 39 7b 38 cmp %edi,0x38(%rbx) - 6634cd87: 7f 11 jg 6634cd9a - 6634cd89: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634cd8f: 4c 89 ea mov %r13,%rdx - 6634cd92: 4c 89 e1 mov %r12,%rcx - 6634cd95: e8 76 54 00 00 callq 66352210 <_assert> - 6634cd9a: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634cd9e: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634cda2: 48 01 f2 add %rsi,%rdx - 6634cda5: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634cda8: 8b 0a mov (%rdx),%ecx - 6634cdaa: 39 c8 cmp %ecx,%eax - 6634cdac: 74 69 je 6634ce17 - 6634cdae: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634cdb2: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634cdb6: 41 89 c3 mov %eax,%r11d - 6634cdb9: 41 29 cb sub %ecx,%r11d - 6634cdbc: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634cdc0: 45 01 18 add %r11d,(%r8) - 6634cdc3: 89 02 mov %eax,(%rdx) - 6634cdc5: 31 d2 xor %edx,%edx - 6634cdc7: 41 8b 00 mov (%r8),%eax - 6634cdca: 85 c0 test %eax,%eax - 6634cdcc: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634cdd0: 0f 9f c2 setg %dl - 6634cdd3: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634cdd7: 3b 10 cmp (%rax),%edx - 6634cdd9: 74 3c je 6634ce17 - 6634cddb: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634cddf: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634cde3: 8b 00 mov (%rax),%eax - 6634cde5: 85 c0 test %eax,%eax - 6634cde7: 75 2e jne 6634ce17 - 6634cde9: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634cded: 48 8b 0d 3c ab 00 00 mov 0xab3c(%rip),%rcx # 66357930 - 6634cdf4: 4c 8b 05 25 ab 00 00 mov 0xab25(%rip),%r8 # 66357920 - 6634cdfb: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634cdff: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ce03: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ce09: 48 63 01 movslq (%rcx),%rax - 6634ce0c: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ce10: 44 89 09 mov %r9d,(%rcx) - 6634ce13: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ce17: 48 83 c6 04 add $0x4,%rsi - 6634ce1b: 81 c7 00 01 00 00 add $0x100,%edi - 6634ce21: 48 81 c5 00 04 00 00 add $0x400,%rbp - 6634ce28: 48 83 fe 44 cmp $0x44,%rsi - 6634ce2c: 0f 85 4e ff ff ff jne 6634cd80 - 6634ce32: 48 83 c4 28 add $0x28,%rsp - 6634ce36: 5b pop %rbx - 6634ce37: 5e pop %rsi - 6634ce38: 5f pop %rdi - 6634ce39: 5d pop %rbp - 6634ce3a: 41 5c pop %r12 - 6634ce3c: 41 5d pop %r13 - 6634ce3e: c3 retq - 6634ce3f: 90 nop - 6634ce40: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634ce44: 4c 8b 05 d5 aa 00 00 mov 0xaad5(%rip),%r8 # 66357920 - 6634ce4b: 48 8b 0d de aa 00 00 mov 0xaade(%rip),%rcx # 66357930 - 6634ce52: 44 8b 4a 24 mov 0x24(%rdx),%r9d - 6634ce56: 45 85 c9 test %r9d,%r9d - 6634ce59: 74 58 je 6634ceb3 - 6634ce5b: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ce5f: 4d 8b 52 48 mov 0x48(%r10),%r10 - 6634ce63: 45 29 0a sub %r9d,(%r10) - 6634ce66: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 6634ce6d: 45 8b 22 mov (%r10),%r12d - 6634ce70: 45 31 d2 xor %r10d,%r10d - 6634ce73: 4c 8b 48 48 mov 0x48(%rax),%r9 - 6634ce77: 45 85 e4 test %r12d,%r12d - 6634ce7a: 41 0f 9f c2 setg %r10b - 6634ce7e: 45 3b 11 cmp (%r9),%r10d - 6634ce81: 74 30 je 6634ceb3 - 6634ce83: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634ce87: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634ce8b: 41 8b 29 mov (%r9),%ebp - 6634ce8e: 85 ed test %ebp,%ebp - 6634ce90: 75 21 jne 6634ceb3 - 6634ce92: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634ce96: 4d 8b 51 48 mov 0x48(%r9),%r10 - 6634ce9a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634ce9e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cea5: 4c 63 09 movslq (%rcx),%r9 - 6634cea8: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634ceac: 44 89 19 mov %r11d,(%rcx) - 6634ceaf: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634ceb3: 44 8b 4a 28 mov 0x28(%rdx),%r9d - 6634ceb7: 45 85 c9 test %r9d,%r9d - 6634ceba: 74 57 je 6634cf13 - 6634cebc: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cec0: 4d 8b 52 50 mov 0x50(%r10),%r10 - 6634cec4: 45 29 0a sub %r9d,(%r10) - 6634cec7: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634cece: 41 8b 3a mov (%r10),%edi - 6634ced1: 45 31 d2 xor %r10d,%r10d - 6634ced4: 4c 8b 48 50 mov 0x50(%rax),%r9 - 6634ced8: 85 ff test %edi,%edi - 6634ceda: 41 0f 9f c2 setg %r10b - 6634cede: 45 3b 11 cmp (%r9),%r10d - 6634cee1: 74 30 je 6634cf13 - 6634cee3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cee7: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634ceeb: 41 8b 31 mov (%r9),%esi - 6634ceee: 85 f6 test %esi,%esi - 6634cef0: 75 21 jne 6634cf13 - 6634cef2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cef6: 4d 8b 51 50 mov 0x50(%r9),%r10 - 6634cefa: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cefe: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cf05: 4c 63 09 movslq (%rcx),%r9 - 6634cf08: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cf0c: 44 89 19 mov %r11d,(%rcx) - 6634cf0f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cf13: 44 8b 4a 2c mov 0x2c(%rdx),%r9d - 6634cf17: 45 85 c9 test %r9d,%r9d - 6634cf1a: 74 59 je 6634cf75 - 6634cf1c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cf20: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634cf24: 45 29 0a sub %r9d,(%r10) - 6634cf27: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 6634cf2e: 45 8b 1a mov (%r10),%r11d - 6634cf31: 45 31 d2 xor %r10d,%r10d - 6634cf34: 4c 8b 48 58 mov 0x58(%rax),%r9 - 6634cf38: 45 85 db test %r11d,%r11d - 6634cf3b: 41 0f 9f c2 setg %r10b - 6634cf3f: 45 3b 11 cmp (%r9),%r10d - 6634cf42: 74 31 je 6634cf75 - 6634cf44: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cf48: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634cf4c: 45 8b 11 mov (%r9),%r10d - 6634cf4f: 45 85 d2 test %r10d,%r10d - 6634cf52: 75 21 jne 6634cf75 - 6634cf54: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cf58: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634cf5c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cf60: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cf67: 4c 63 09 movslq (%rcx),%r9 - 6634cf6a: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cf6e: 44 89 19 mov %r11d,(%rcx) - 6634cf71: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cf75: 44 8b 4a 30 mov 0x30(%rdx),%r9d - 6634cf79: 45 85 c9 test %r9d,%r9d - 6634cf7c: 74 59 je 6634cfd7 - 6634cf7e: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cf82: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634cf86: 45 29 0a sub %r9d,(%r10) - 6634cf89: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634cf90: 45 8b 0a mov (%r10),%r9d - 6634cf93: 45 31 d2 xor %r10d,%r10d - 6634cf96: 45 85 c9 test %r9d,%r9d - 6634cf99: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634cf9d: 41 0f 9f c2 setg %r10b - 6634cfa1: 45 3b 11 cmp (%r9),%r10d - 6634cfa4: 74 31 je 6634cfd7 - 6634cfa6: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634cfaa: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634cfae: 45 8b 29 mov (%r9),%r13d - 6634cfb1: 45 85 ed test %r13d,%r13d - 6634cfb4: 75 21 jne 6634cfd7 - 6634cfb6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634cfba: 4d 8b 51 60 mov 0x60(%r9),%r10 - 6634cfbe: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634cfc2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634cfc9: 4c 63 09 movslq (%rcx),%r9 - 6634cfcc: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634cfd0: 44 89 19 mov %r11d,(%rcx) - 6634cfd3: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634cfd7: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634cfdb: 45 85 c9 test %r9d,%r9d - 6634cfde: 74 58 je 6634d038 - 6634cfe0: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634cfe4: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634cfe8: 45 29 0a sub %r9d,(%r10) - 6634cfeb: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634cff2: 45 8b 22 mov (%r10),%r12d - 6634cff5: 45 31 d2 xor %r10d,%r10d - 6634cff8: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634cffc: 45 85 e4 test %r12d,%r12d - 6634cfff: 41 0f 9f c2 setg %r10b - 6634d003: 45 3b 11 cmp (%r9),%r10d - 6634d006: 74 30 je 6634d038 - 6634d008: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d00c: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634d010: 41 8b 29 mov (%r9),%ebp - 6634d013: 85 ed test %ebp,%ebp - 6634d015: 75 21 jne 6634d038 - 6634d017: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d01b: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634d01f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d023: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d02a: 4c 63 09 movslq (%rcx),%r9 - 6634d02d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d031: 44 89 19 mov %r11d,(%rcx) - 6634d034: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d038: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634d03c: 45 85 c9 test %r9d,%r9d - 6634d03f: 74 57 je 6634d098 - 6634d041: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d045: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634d049: 45 29 0a sub %r9d,(%r10) - 6634d04c: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634d053: 41 8b 3a mov (%r10),%edi - 6634d056: 45 31 d2 xor %r10d,%r10d - 6634d059: 4c 8b 48 70 mov 0x70(%rax),%r9 - 6634d05d: 85 ff test %edi,%edi - 6634d05f: 41 0f 9f c2 setg %r10b - 6634d063: 45 3b 11 cmp (%r9),%r10d - 6634d066: 74 30 je 6634d098 - 6634d068: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d06c: 4d 8b 49 70 mov 0x70(%r9),%r9 - 6634d070: 41 8b 31 mov (%r9),%esi - 6634d073: 85 f6 test %esi,%esi - 6634d075: 75 21 jne 6634d098 - 6634d077: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d07b: 4d 8b 51 70 mov 0x70(%r9),%r10 - 6634d07f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d083: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d08a: 4c 63 09 movslq (%rcx),%r9 - 6634d08d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d091: 44 89 19 mov %r11d,(%rcx) - 6634d094: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d098: 44 8b 4a 3c mov 0x3c(%rdx),%r9d - 6634d09c: 45 85 c9 test %r9d,%r9d - 6634d09f: 74 59 je 6634d0fa - 6634d0a1: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d0a5: 4d 8b 52 78 mov 0x78(%r10),%r10 - 6634d0a9: 45 29 0a sub %r9d,(%r10) - 6634d0ac: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 6634d0b3: 45 8b 1a mov (%r10),%r11d - 6634d0b6: 45 31 d2 xor %r10d,%r10d - 6634d0b9: 4c 8b 48 78 mov 0x78(%rax),%r9 - 6634d0bd: 45 85 db test %r11d,%r11d - 6634d0c0: 41 0f 9f c2 setg %r10b - 6634d0c4: 45 3b 11 cmp (%r9),%r10d - 6634d0c7: 74 31 je 6634d0fa - 6634d0c9: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d0cd: 4d 8b 49 78 mov 0x78(%r9),%r9 - 6634d0d1: 45 8b 11 mov (%r9),%r10d - 6634d0d4: 45 85 d2 test %r10d,%r10d - 6634d0d7: 75 21 jne 6634d0fa - 6634d0d9: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d0dd: 4d 8b 51 78 mov 0x78(%r9),%r10 - 6634d0e1: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d0e5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d0ec: 4c 63 09 movslq (%rcx),%r9 - 6634d0ef: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d0f3: 44 89 19 mov %r11d,(%rcx) - 6634d0f6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d0fa: 44 8b 4a 40 mov 0x40(%rdx),%r9d - 6634d0fe: 45 85 c9 test %r9d,%r9d - 6634d101: 0f 84 2b fd ff ff je 6634ce32 - 6634d107: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d10b: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax - 6634d112: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 - 6634d119: 45 29 0a sub %r9d,(%r10) - 6634d11c: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634d123: 31 d2 xor %edx,%edx - 6634d125: 45 8b 0a mov (%r10),%r9d - 6634d128: 45 85 c9 test %r9d,%r9d - 6634d12b: 0f 9f c2 setg %dl - 6634d12e: 3b 10 cmp (%rax),%edx - 6634d130: 0f 84 fc fc ff ff je 6634ce32 - 6634d136: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634d13a: 48 8b 80 80 00 00 00 mov 0x80(%rax),%rax - 6634d141: 8b 00 mov (%rax),%eax - 6634d143: 85 c0 test %eax,%eax - 6634d145: 0f 85 e7 fc ff ff jne 6634ce32 - 6634d14b: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634d14f: 48 8b 90 80 00 00 00 mov 0x80(%rax),%rdx - 6634d156: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634d15a: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634d160: 48 63 01 movslq (%rcx),%rax - 6634d163: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634d167: 44 89 09 mov %r9d,(%rcx) - 6634d16a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634d16e: 48 83 c4 28 add $0x28,%rsp - 6634d172: 5b pop %rbx - 6634d173: 5e pop %rsi - 6634d174: 5f pop %rdi - 6634d175: 5d pop %rbp - 6634d176: 41 5c pop %r12 - 6634d178: 41 5d pop %r13 - 6634d17a: c3 retq - 6634d17b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) +000000006634ca40 : + 6634ca40: 41 55 push %r13 + 6634ca42: 41 54 push %r12 + 6634ca44: 55 push %rbp + 6634ca45: 57 push %rdi + 6634ca46: 56 push %rsi + 6634ca47: 53 push %rbx + 6634ca48: 48 83 ec 28 sub $0x28,%rsp + 6634ca4c: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634ca50: 48 8b 50 78 mov 0x78(%rax),%rdx + 6634ca54: 48 89 cb mov %rcx,%rbx + 6634ca57: 44 8b 2a mov (%rdx),%r13d + 6634ca5a: 45 85 ed test %r13d,%r13d + 6634ca5d: 0f 84 9d 00 00 00 je 6634cb00 + 6634ca63: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634ca67: bf 07 00 00 00 mov $0x7,%edi + 6634ca6c: 4c 8d 2d 8d 65 00 00 lea 0x658d(%rip),%r13 # 66353000 <.rdata> + 6634ca73: 4c 8d 25 96 65 00 00 lea 0x6596(%rip),%r12 # 66353010 <.rdata+0x10> + 6634ca7a: 8b 0a mov (%rdx),%ecx + 6634ca7c: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634ca80: 8b 12 mov (%rdx),%edx + 6634ca82: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634ca85: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634ca89: 8b 09 mov (%rcx),%ecx + 6634ca8b: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634ca8e: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634ca92: 8b 09 mov (%rcx),%ecx + 6634ca94: 8d 14 ca lea (%rdx,%rcx,8),%edx + 6634ca97: 48 8b 48 28 mov 0x28(%rax),%rcx + 6634ca9b: 48 8b 40 30 mov 0x30(%rax),%rax + 6634ca9f: 8b 31 mov (%rcx),%esi + 6634caa1: c1 e6 04 shl $0x4,%esi + 6634caa4: 01 f2 add %esi,%edx + 6634caa6: 8b 30 mov (%rax),%esi + 6634caa8: c1 e6 05 shl $0x5,%esi + 6634caab: 01 d6 add %edx,%esi + 6634caad: 48 63 ee movslq %esi,%rbp + 6634cab0: 48 c1 e5 02 shl $0x2,%rbp + 6634cab4: 85 f6 test %esi,%esi + 6634cab6: 78 05 js 6634cabd + 6634cab8: 39 73 38 cmp %esi,0x38(%rbx) + 6634cabb: 7f 11 jg 6634cace + 6634cabd: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634cac3: 4c 89 ea mov %r13,%rdx + 6634cac6: 4c 89 e1 mov %r12,%rcx + 6634cac9: e8 32 45 00 00 callq 66351000 <_assert> + 6634cace: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634cad2: 89 fa mov %edi,%edx + 6634cad4: 48 89 d9 mov %rbx,%rcx + 6634cad7: 83 c7 01 add $0x1,%edi + 6634cada: 83 c6 40 add $0x40,%esi + 6634cadd: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634cae1: 48 81 c5 00 01 00 00 add $0x100,%rbp + 6634cae8: e8 c3 48 ff ff callq 663413b0 + 6634caed: 83 ff 0f cmp $0xf,%edi + 6634caf0: 75 c2 jne 6634cab4 + 6634caf2: 48 83 c4 28 add $0x28,%rsp + 6634caf6: 5b pop %rbx + 6634caf7: 5e pop %rsi + 6634caf8: 5f pop %rdi + 6634caf9: 5d pop %rbp + 6634cafa: 41 5c pop %r12 + 6634cafc: 41 5d pop %r13 + 6634cafe: c3 retq + 6634caff: 90 nop + 6634cb00: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634cb04: 4c 8b 05 15 9e 00 00 mov 0x9e15(%rip),%r8 # 66356920 + 6634cb0b: 48 8b 0d 1e 9e 00 00 mov 0x9e1e(%rip),%rcx # 66356930 + 6634cb12: 44 8b 4a 1c mov 0x1c(%rdx),%r9d + 6634cb16: 45 85 c9 test %r9d,%r9d + 6634cb19: 74 58 je 6634cb73 + 6634cb1b: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cb1f: 4d 8b 52 38 mov 0x38(%r10),%r10 + 6634cb23: 45 29 0a sub %r9d,(%r10) + 6634cb26: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 6634cb2d: 45 8b 22 mov (%r10),%r12d + 6634cb30: 45 31 d2 xor %r10d,%r10d + 6634cb33: 4c 8b 48 38 mov 0x38(%rax),%r9 + 6634cb37: 45 85 e4 test %r12d,%r12d + 6634cb3a: 41 0f 9f c2 setg %r10b + 6634cb3e: 45 3b 11 cmp (%r9),%r10d + 6634cb41: 74 30 je 6634cb73 + 6634cb43: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cb47: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634cb4b: 41 8b 29 mov (%r9),%ebp + 6634cb4e: 85 ed test %ebp,%ebp + 6634cb50: 75 21 jne 6634cb73 + 6634cb52: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cb56: 4d 8b 51 38 mov 0x38(%r9),%r10 + 6634cb5a: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cb5e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cb65: 4c 63 09 movslq (%rcx),%r9 + 6634cb68: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cb6c: 44 89 19 mov %r11d,(%rcx) + 6634cb6f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cb73: 44 8b 4a 20 mov 0x20(%rdx),%r9d + 6634cb77: 45 85 c9 test %r9d,%r9d + 6634cb7a: 74 57 je 6634cbd3 + 6634cb7c: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cb80: 4d 8b 52 40 mov 0x40(%r10),%r10 + 6634cb84: 45 29 0a sub %r9d,(%r10) + 6634cb87: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 6634cb8e: 41 8b 3a mov (%r10),%edi + 6634cb91: 45 31 d2 xor %r10d,%r10d + 6634cb94: 4c 8b 48 40 mov 0x40(%rax),%r9 + 6634cb98: 85 ff test %edi,%edi + 6634cb9a: 41 0f 9f c2 setg %r10b + 6634cb9e: 45 3b 11 cmp (%r9),%r10d + 6634cba1: 74 30 je 6634cbd3 + 6634cba3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cba7: 4d 8b 49 40 mov 0x40(%r9),%r9 + 6634cbab: 41 8b 31 mov (%r9),%esi + 6634cbae: 85 f6 test %esi,%esi + 6634cbb0: 75 21 jne 6634cbd3 + 6634cbb2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cbb6: 4d 8b 51 40 mov 0x40(%r9),%r10 + 6634cbba: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cbbe: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cbc5: 4c 63 09 movslq (%rcx),%r9 + 6634cbc8: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cbcc: 44 89 19 mov %r11d,(%rcx) + 6634cbcf: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cbd3: 44 8b 4a 24 mov 0x24(%rdx),%r9d + 6634cbd7: 45 85 c9 test %r9d,%r9d + 6634cbda: 74 59 je 6634cc35 + 6634cbdc: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cbe0: 4d 8b 52 48 mov 0x48(%r10),%r10 + 6634cbe4: 45 29 0a sub %r9d,(%r10) + 6634cbe7: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 6634cbee: 45 8b 1a mov (%r10),%r11d + 6634cbf1: 45 31 d2 xor %r10d,%r10d + 6634cbf4: 4c 8b 48 48 mov 0x48(%rax),%r9 + 6634cbf8: 45 85 db test %r11d,%r11d + 6634cbfb: 41 0f 9f c2 setg %r10b + 6634cbff: 45 3b 11 cmp (%r9),%r10d + 6634cc02: 74 31 je 6634cc35 + 6634cc04: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cc08: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634cc0c: 45 8b 11 mov (%r9),%r10d + 6634cc0f: 45 85 d2 test %r10d,%r10d + 6634cc12: 75 21 jne 6634cc35 + 6634cc14: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cc18: 4d 8b 51 48 mov 0x48(%r9),%r10 + 6634cc1c: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cc20: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cc27: 4c 63 09 movslq (%rcx),%r9 + 6634cc2a: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cc2e: 44 89 19 mov %r11d,(%rcx) + 6634cc31: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cc35: 44 8b 4a 28 mov 0x28(%rdx),%r9d + 6634cc39: 45 85 c9 test %r9d,%r9d + 6634cc3c: 74 59 je 6634cc97 + 6634cc3e: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cc42: 4d 8b 52 50 mov 0x50(%r10),%r10 + 6634cc46: 45 29 0a sub %r9d,(%r10) + 6634cc49: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634cc50: 45 8b 0a mov (%r10),%r9d + 6634cc53: 45 31 d2 xor %r10d,%r10d + 6634cc56: 45 85 c9 test %r9d,%r9d + 6634cc59: 4c 8b 48 50 mov 0x50(%rax),%r9 + 6634cc5d: 41 0f 9f c2 setg %r10b + 6634cc61: 45 3b 11 cmp (%r9),%r10d + 6634cc64: 74 31 je 6634cc97 + 6634cc66: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cc6a: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634cc6e: 45 8b 29 mov (%r9),%r13d + 6634cc71: 45 85 ed test %r13d,%r13d + 6634cc74: 75 21 jne 6634cc97 + 6634cc76: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cc7a: 4d 8b 51 50 mov 0x50(%r9),%r10 + 6634cc7e: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cc82: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cc89: 4c 63 09 movslq (%rcx),%r9 + 6634cc8c: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cc90: 44 89 19 mov %r11d,(%rcx) + 6634cc93: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cc97: 44 8b 4a 2c mov 0x2c(%rdx),%r9d + 6634cc9b: 45 85 c9 test %r9d,%r9d + 6634cc9e: 74 58 je 6634ccf8 + 6634cca0: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cca4: 4d 8b 52 58 mov 0x58(%r10),%r10 + 6634cca8: 45 29 0a sub %r9d,(%r10) + 6634ccab: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634ccb2: 45 8b 22 mov (%r10),%r12d + 6634ccb5: 45 31 d2 xor %r10d,%r10d + 6634ccb8: 4c 8b 48 58 mov 0x58(%rax),%r9 + 6634ccbc: 45 85 e4 test %r12d,%r12d + 6634ccbf: 41 0f 9f c2 setg %r10b + 6634ccc3: 45 3b 11 cmp (%r9),%r10d + 6634ccc6: 74 30 je 6634ccf8 + 6634ccc8: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cccc: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634ccd0: 41 8b 29 mov (%r9),%ebp + 6634ccd3: 85 ed test %ebp,%ebp + 6634ccd5: 75 21 jne 6634ccf8 + 6634ccd7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634ccdb: 4d 8b 51 58 mov 0x58(%r9),%r10 + 6634ccdf: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cce3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634ccea: 4c 63 09 movslq (%rcx),%r9 + 6634cced: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634ccf1: 44 89 19 mov %r11d,(%rcx) + 6634ccf4: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634ccf8: 44 8b 4a 30 mov 0x30(%rdx),%r9d + 6634ccfc: 45 85 c9 test %r9d,%r9d + 6634ccff: 74 57 je 6634cd58 + 6634cd01: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cd05: 4d 8b 52 60 mov 0x60(%r10),%r10 + 6634cd09: 45 29 0a sub %r9d,(%r10) + 6634cd0c: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634cd13: 41 8b 3a mov (%r10),%edi + 6634cd16: 45 31 d2 xor %r10d,%r10d + 6634cd19: 4c 8b 48 60 mov 0x60(%rax),%r9 + 6634cd1d: 85 ff test %edi,%edi + 6634cd1f: 41 0f 9f c2 setg %r10b + 6634cd23: 45 3b 11 cmp (%r9),%r10d + 6634cd26: 74 30 je 6634cd58 + 6634cd28: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cd2c: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634cd30: 41 8b 31 mov (%r9),%esi + 6634cd33: 85 f6 test %esi,%esi + 6634cd35: 75 21 jne 6634cd58 + 6634cd37: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cd3b: 4d 8b 51 60 mov 0x60(%r9),%r10 + 6634cd3f: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cd43: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cd4a: 4c 63 09 movslq (%rcx),%r9 + 6634cd4d: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cd51: 44 89 19 mov %r11d,(%rcx) + 6634cd54: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cd58: 44 8b 4a 34 mov 0x34(%rdx),%r9d + 6634cd5c: 45 85 c9 test %r9d,%r9d + 6634cd5f: 74 59 je 6634cdba + 6634cd61: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cd65: 4d 8b 52 68 mov 0x68(%r10),%r10 + 6634cd69: 45 29 0a sub %r9d,(%r10) + 6634cd6c: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634cd73: 45 8b 1a mov (%r10),%r11d + 6634cd76: 45 31 d2 xor %r10d,%r10d + 6634cd79: 4c 8b 48 68 mov 0x68(%rax),%r9 + 6634cd7d: 45 85 db test %r11d,%r11d + 6634cd80: 41 0f 9f c2 setg %r10b + 6634cd84: 45 3b 11 cmp (%r9),%r10d + 6634cd87: 74 31 je 6634cdba + 6634cd89: 4c 8b 4b 20 mov 0x20(%rbx),%r9 + 6634cd8d: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634cd91: 45 8b 11 mov (%r9),%r10d + 6634cd94: 45 85 d2 test %r10d,%r10d + 6634cd97: 75 21 jne 6634cdba + 6634cd99: 4c 8b 4b 28 mov 0x28(%rbx),%r9 + 6634cd9d: 4d 8b 51 68 mov 0x68(%r9),%r10 + 6634cda1: 4d 8b 4a 10 mov 0x10(%r10),%r9 + 6634cda5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) + 6634cdac: 4c 63 09 movslq (%rcx),%r9 + 6634cdaf: 45 8d 59 01 lea 0x1(%r9),%r11d + 6634cdb3: 44 89 19 mov %r11d,(%rcx) + 6634cdb6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) + 6634cdba: 44 8b 4a 38 mov 0x38(%rdx),%r9d + 6634cdbe: 45 85 c9 test %r9d,%r9d + 6634cdc1: 0f 84 2b fd ff ff je 6634caf2 + 6634cdc7: 4c 8b 53 18 mov 0x18(%rbx),%r10 + 6634cdcb: 48 8b 40 70 mov 0x70(%rax),%rax + 6634cdcf: 4d 8b 52 70 mov 0x70(%r10),%r10 + 6634cdd3: 45 29 0a sub %r9d,(%r10) + 6634cdd6: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) + 6634cddd: 31 d2 xor %edx,%edx + 6634cddf: 45 8b 0a mov (%r10),%r9d + 6634cde2: 45 85 c9 test %r9d,%r9d + 6634cde5: 0f 9f c2 setg %dl + 6634cde8: 3b 10 cmp (%rax),%edx + 6634cdea: 0f 84 02 fd ff ff je 6634caf2 + 6634cdf0: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634cdf4: 48 8b 40 70 mov 0x70(%rax),%rax + 6634cdf8: 8b 00 mov (%rax),%eax + 6634cdfa: 85 c0 test %eax,%eax + 6634cdfc: 0f 85 f0 fc ff ff jne 6634caf2 + 6634ce02: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634ce06: 48 8b 50 70 mov 0x70(%rax),%rdx + 6634ce0a: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634ce0e: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634ce14: 48 63 01 movslq (%rcx),%rax + 6634ce17: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634ce1b: 44 89 09 mov %r9d,(%rcx) + 6634ce1e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634ce22: 48 83 c4 28 add $0x28,%rsp + 6634ce26: 5b pop %rbx + 6634ce27: 5e pop %rsi + 6634ce28: 5f pop %rdi + 6634ce29: 5d pop %rbp + 6634ce2a: 41 5c pop %r12 + 6634ce2c: 41 5d pop %r13 + 6634ce2e: c3 retq + 6634ce2f: 90 nop -000000006634d180 : - 6634d180: 41 55 push %r13 - 6634d182: 41 54 push %r12 - 6634d184: 55 push %rbp - 6634d185: 57 push %rdi - 6634d186: 56 push %rsi - 6634d187: 53 push %rbx - 6634d188: 48 83 ec 28 sub $0x28,%rsp - 6634d18c: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634d190: 48 8b 90 a0 00 00 00 mov 0xa0(%rax),%rdx - 6634d197: 48 89 cb mov %rcx,%rbx - 6634d19a: 8b 12 mov (%rdx),%edx - 6634d19c: 85 d2 test %edx,%edx - 6634d19e: 0f 84 4c 01 00 00 je 6634d2f0 - 6634d1a4: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634d1a8: be 30 00 00 00 mov $0x30,%esi - 6634d1ad: 4c 8d 2d 4c 6e 00 00 lea 0x6e4c(%rip),%r13 # 66354000 <.rdata> - 6634d1b4: 4c 8d 25 55 6e 00 00 lea 0x6e55(%rip),%r12 # 66354010 <.rdata+0x10> - 6634d1bb: 8b 0a mov (%rdx),%ecx - 6634d1bd: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634d1c1: 8b 12 mov (%rdx),%edx - 6634d1c3: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634d1c6: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634d1ca: 8b 09 mov (%rcx),%ecx - 6634d1cc: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634d1cf: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634d1d3: 8b 09 mov (%rcx),%ecx - 6634d1d5: 8d 3c ca lea (%rdx,%rcx,8),%edi - 6634d1d8: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634d1dc: 48 8b 48 30 mov 0x30(%rax),%rcx - 6634d1e0: 8b 12 mov (%rdx),%edx - 6634d1e2: c1 e2 04 shl $0x4,%edx - 6634d1e5: 01 fa add %edi,%edx - 6634d1e7: 8b 39 mov (%rcx),%edi - 6634d1e9: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634d1ed: c1 e7 05 shl $0x5,%edi - 6634d1f0: 01 fa add %edi,%edx - 6634d1f2: 8b 39 mov (%rcx),%edi - 6634d1f4: 48 8b 48 50 mov 0x50(%rax),%rcx - 6634d1f8: c1 e7 06 shl $0x6,%edi - 6634d1fb: 01 d7 add %edx,%edi - 6634d1fd: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634d201: 8b 12 mov (%rdx),%edx - 6634d203: c1 e2 07 shl $0x7,%edx - 6634d206: 01 d7 add %edx,%edi - 6634d208: 48 8b 50 48 mov 0x48(%rax),%rdx - 6634d20c: 48 8b 40 58 mov 0x58(%rax),%rax - 6634d210: 8b 12 mov (%rdx),%edx - 6634d212: c1 e2 08 shl $0x8,%edx - 6634d215: 01 fa add %edi,%edx - 6634d217: 8b 39 mov (%rcx),%edi - 6634d219: c1 e7 09 shl $0x9,%edi - 6634d21c: 01 fa add %edi,%edx - 6634d21e: 8b 38 mov (%rax),%edi - 6634d220: c1 e7 0a shl $0xa,%edi - 6634d223: 01 d7 add %edx,%edi - 6634d225: 48 63 ef movslq %edi,%rbp - 6634d228: 48 c1 e5 02 shl $0x2,%rbp - 6634d22c: 0f 1f 40 00 nopl 0x0(%rax) - 6634d230: 85 ff test %edi,%edi - 6634d232: 78 05 js 6634d239 - 6634d234: 39 7b 38 cmp %edi,0x38(%rbx) - 6634d237: 7f 11 jg 6634d24a - 6634d239: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634d23f: 4c 89 ea mov %r13,%rdx - 6634d242: 4c 89 e1 mov %r12,%rcx - 6634d245: e8 c6 4f 00 00 callq 66352210 <_assert> - 6634d24a: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634d24e: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634d252: 48 01 f2 add %rsi,%rdx - 6634d255: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634d258: 8b 0a mov (%rdx),%ecx - 6634d25a: 39 c8 cmp %ecx,%eax - 6634d25c: 74 69 je 6634d2c7 - 6634d25e: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634d262: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634d266: 41 89 c3 mov %eax,%r11d - 6634d269: 41 29 cb sub %ecx,%r11d - 6634d26c: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634d270: 45 01 18 add %r11d,(%r8) - 6634d273: 89 02 mov %eax,(%rdx) - 6634d275: 31 d2 xor %edx,%edx - 6634d277: 41 8b 00 mov (%r8),%eax - 6634d27a: 85 c0 test %eax,%eax - 6634d27c: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634d280: 0f 9f c2 setg %dl - 6634d283: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634d287: 3b 10 cmp (%rax),%edx - 6634d289: 74 3c je 6634d2c7 - 6634d28b: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634d28f: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634d293: 8b 00 mov (%rax),%eax - 6634d295: 85 c0 test %eax,%eax - 6634d297: 75 2e jne 6634d2c7 - 6634d299: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634d29d: 48 8b 0d 8c a6 00 00 mov 0xa68c(%rip),%rcx # 66357930 - 6634d2a4: 4c 8b 05 75 a6 00 00 mov 0xa675(%rip),%r8 # 66357920 - 6634d2ab: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634d2af: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634d2b3: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634d2b9: 48 63 01 movslq (%rcx),%rax - 6634d2bc: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634d2c0: 44 89 09 mov %r9d,(%rcx) - 6634d2c3: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634d2c7: 48 83 c6 04 add $0x4,%rsi - 6634d2cb: 81 c7 00 08 00 00 add $0x800,%edi - 6634d2d1: 48 81 c5 00 20 00 00 add $0x2000,%rbp - 6634d2d8: 48 83 fe 50 cmp $0x50,%rsi - 6634d2dc: 0f 85 4e ff ff ff jne 6634d230 - 6634d2e2: 48 83 c4 28 add $0x28,%rsp - 6634d2e6: 5b pop %rbx - 6634d2e7: 5e pop %rsi - 6634d2e8: 5f pop %rdi - 6634d2e9: 5d pop %rbp - 6634d2ea: 41 5c pop %r12 - 6634d2ec: 41 5d pop %r13 - 6634d2ee: c3 retq - 6634d2ef: 90 nop - 6634d2f0: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634d2f4: 4c 8b 05 25 a6 00 00 mov 0xa625(%rip),%r8 # 66357920 - 6634d2fb: 48 8b 0d 2e a6 00 00 mov 0xa62e(%rip),%rcx # 66357930 - 6634d302: 44 8b 4a 30 mov 0x30(%rdx),%r9d - 6634d306: 45 85 c9 test %r9d,%r9d - 6634d309: 74 58 je 6634d363 - 6634d30b: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d30f: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634d313: 45 29 0a sub %r9d,(%r10) - 6634d316: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634d31d: 45 8b 22 mov (%r10),%r12d - 6634d320: 45 31 d2 xor %r10d,%r10d - 6634d323: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634d327: 45 85 e4 test %r12d,%r12d - 6634d32a: 41 0f 9f c2 setg %r10b - 6634d32e: 45 3b 11 cmp (%r9),%r10d - 6634d331: 74 30 je 6634d363 - 6634d333: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d337: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634d33b: 41 8b 29 mov (%r9),%ebp - 6634d33e: 85 ed test %ebp,%ebp - 6634d340: 75 21 jne 6634d363 - 6634d342: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d346: 4d 8b 51 60 mov 0x60(%r9),%r10 - 6634d34a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d34e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d355: 4c 63 09 movslq (%rcx),%r9 - 6634d358: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d35c: 44 89 19 mov %r11d,(%rcx) - 6634d35f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d363: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634d367: 45 85 c9 test %r9d,%r9d - 6634d36a: 74 57 je 6634d3c3 - 6634d36c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d370: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634d374: 45 29 0a sub %r9d,(%r10) - 6634d377: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634d37e: 41 8b 3a mov (%r10),%edi - 6634d381: 45 31 d2 xor %r10d,%r10d - 6634d384: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634d388: 85 ff test %edi,%edi - 6634d38a: 41 0f 9f c2 setg %r10b - 6634d38e: 45 3b 11 cmp (%r9),%r10d - 6634d391: 74 30 je 6634d3c3 - 6634d393: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d397: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634d39b: 41 8b 31 mov (%r9),%esi - 6634d39e: 85 f6 test %esi,%esi - 6634d3a0: 75 21 jne 6634d3c3 - 6634d3a2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d3a6: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634d3aa: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d3ae: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d3b5: 4c 63 09 movslq (%rcx),%r9 - 6634d3b8: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d3bc: 44 89 19 mov %r11d,(%rcx) - 6634d3bf: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d3c3: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634d3c7: 45 85 c9 test %r9d,%r9d - 6634d3ca: 74 59 je 6634d425 - 6634d3cc: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d3d0: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634d3d4: 45 29 0a sub %r9d,(%r10) - 6634d3d7: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634d3de: 45 8b 1a mov (%r10),%r11d - 6634d3e1: 45 31 d2 xor %r10d,%r10d - 6634d3e4: 4c 8b 48 70 mov 0x70(%rax),%r9 - 6634d3e8: 45 85 db test %r11d,%r11d - 6634d3eb: 41 0f 9f c2 setg %r10b - 6634d3ef: 45 3b 11 cmp (%r9),%r10d - 6634d3f2: 74 31 je 6634d425 - 6634d3f4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d3f8: 4d 8b 49 70 mov 0x70(%r9),%r9 - 6634d3fc: 45 8b 11 mov (%r9),%r10d - 6634d3ff: 45 85 d2 test %r10d,%r10d - 6634d402: 75 21 jne 6634d425 - 6634d404: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d408: 4d 8b 51 70 mov 0x70(%r9),%r10 - 6634d40c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d410: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d417: 4c 63 09 movslq (%rcx),%r9 - 6634d41a: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d41e: 44 89 19 mov %r11d,(%rcx) - 6634d421: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d425: 44 8b 4a 3c mov 0x3c(%rdx),%r9d - 6634d429: 45 85 c9 test %r9d,%r9d - 6634d42c: 74 59 je 6634d487 - 6634d42e: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d432: 4d 8b 52 78 mov 0x78(%r10),%r10 - 6634d436: 45 29 0a sub %r9d,(%r10) - 6634d439: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 6634d440: 45 8b 0a mov (%r10),%r9d - 6634d443: 45 31 d2 xor %r10d,%r10d - 6634d446: 45 85 c9 test %r9d,%r9d - 6634d449: 4c 8b 48 78 mov 0x78(%rax),%r9 - 6634d44d: 41 0f 9f c2 setg %r10b - 6634d451: 45 3b 11 cmp (%r9),%r10d - 6634d454: 74 31 je 6634d487 - 6634d456: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d45a: 4d 8b 49 78 mov 0x78(%r9),%r9 - 6634d45e: 45 8b 29 mov (%r9),%r13d - 6634d461: 45 85 ed test %r13d,%r13d - 6634d464: 75 21 jne 6634d487 - 6634d466: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d46a: 4d 8b 51 78 mov 0x78(%r9),%r10 - 6634d46e: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d472: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d479: 4c 63 09 movslq (%rcx),%r9 - 6634d47c: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d480: 44 89 19 mov %r11d,(%rcx) - 6634d483: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d487: 44 8b 4a 40 mov 0x40(%rdx),%r9d - 6634d48b: 45 85 c9 test %r9d,%r9d - 6634d48e: 74 64 je 6634d4f4 - 6634d490: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d494: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 - 6634d49b: 45 29 0a sub %r9d,(%r10) - 6634d49e: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634d4a5: 45 8b 22 mov (%r10),%r12d - 6634d4a8: 45 31 d2 xor %r10d,%r10d - 6634d4ab: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 - 6634d4b2: 45 85 e4 test %r12d,%r12d - 6634d4b5: 41 0f 9f c2 setg %r10b - 6634d4b9: 45 3b 11 cmp (%r9),%r10d - 6634d4bc: 74 36 je 6634d4f4 - 6634d4be: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d4c2: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 - 6634d4c9: 41 8b 29 mov (%r9),%ebp - 6634d4cc: 85 ed test %ebp,%ebp - 6634d4ce: 75 24 jne 6634d4f4 - 6634d4d0: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d4d4: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 - 6634d4db: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d4df: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d4e6: 4c 63 09 movslq (%rcx),%r9 - 6634d4e9: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d4ed: 44 89 19 mov %r11d,(%rcx) - 6634d4f0: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d4f4: 44 8b 4a 44 mov 0x44(%rdx),%r9d - 6634d4f8: 45 85 c9 test %r9d,%r9d - 6634d4fb: 74 63 je 6634d560 - 6634d4fd: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d501: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 - 6634d508: 45 29 0a sub %r9d,(%r10) - 6634d50b: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) - 6634d512: 41 8b 3a mov (%r10),%edi - 6634d515: 45 31 d2 xor %r10d,%r10d - 6634d518: 4c 8b 88 88 00 00 00 mov 0x88(%rax),%r9 - 6634d51f: 85 ff test %edi,%edi - 6634d521: 41 0f 9f c2 setg %r10b - 6634d525: 45 3b 11 cmp (%r9),%r10d - 6634d528: 74 36 je 6634d560 - 6634d52a: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d52e: 4d 8b 89 88 00 00 00 mov 0x88(%r9),%r9 - 6634d535: 41 8b 31 mov (%r9),%esi - 6634d538: 85 f6 test %esi,%esi - 6634d53a: 75 24 jne 6634d560 - 6634d53c: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d540: 4d 8b 91 88 00 00 00 mov 0x88(%r9),%r10 - 6634d547: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d54b: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d552: 4c 63 09 movslq (%rcx),%r9 - 6634d555: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d559: 44 89 19 mov %r11d,(%rcx) - 6634d55c: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d560: 44 8b 4a 48 mov 0x48(%rdx),%r9d - 6634d564: 45 85 c9 test %r9d,%r9d - 6634d567: 74 65 je 6634d5ce - 6634d569: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d56d: 4d 8b 92 90 00 00 00 mov 0x90(%r10),%r10 - 6634d574: 45 29 0a sub %r9d,(%r10) - 6634d577: c7 42 48 00 00 00 00 movl $0x0,0x48(%rdx) - 6634d57e: 45 8b 1a mov (%r10),%r11d - 6634d581: 45 31 d2 xor %r10d,%r10d - 6634d584: 4c 8b 88 90 00 00 00 mov 0x90(%rax),%r9 - 6634d58b: 45 85 db test %r11d,%r11d - 6634d58e: 41 0f 9f c2 setg %r10b - 6634d592: 45 3b 11 cmp (%r9),%r10d - 6634d595: 74 37 je 6634d5ce - 6634d597: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d59b: 4d 8b 89 90 00 00 00 mov 0x90(%r9),%r9 - 6634d5a2: 45 8b 11 mov (%r9),%r10d - 6634d5a5: 45 85 d2 test %r10d,%r10d - 6634d5a8: 75 24 jne 6634d5ce - 6634d5aa: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d5ae: 4d 8b 91 90 00 00 00 mov 0x90(%r9),%r10 - 6634d5b5: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d5b9: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d5c0: 4c 63 09 movslq (%rcx),%r9 - 6634d5c3: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d5c7: 44 89 19 mov %r11d,(%rcx) - 6634d5ca: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d5ce: 44 8b 4a 4c mov 0x4c(%rdx),%r9d - 6634d5d2: 45 85 c9 test %r9d,%r9d - 6634d5d5: 0f 84 07 fd ff ff je 6634d2e2 - 6634d5db: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d5df: 48 8b 80 98 00 00 00 mov 0x98(%rax),%rax - 6634d5e6: 4d 8b 92 98 00 00 00 mov 0x98(%r10),%r10 - 6634d5ed: 45 29 0a sub %r9d,(%r10) - 6634d5f0: c7 42 4c 00 00 00 00 movl $0x0,0x4c(%rdx) - 6634d5f7: 31 d2 xor %edx,%edx - 6634d5f9: 45 8b 0a mov (%r10),%r9d - 6634d5fc: 45 85 c9 test %r9d,%r9d - 6634d5ff: 0f 9f c2 setg %dl - 6634d602: 3b 10 cmp (%rax),%edx - 6634d604: 0f 84 d8 fc ff ff je 6634d2e2 - 6634d60a: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634d60e: 48 8b 80 98 00 00 00 mov 0x98(%rax),%rax - 6634d615: 8b 00 mov (%rax),%eax - 6634d617: 85 c0 test %eax,%eax - 6634d619: 0f 85 c3 fc ff ff jne 6634d2e2 - 6634d61f: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634d623: 48 8b 90 98 00 00 00 mov 0x98(%rax),%rdx - 6634d62a: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634d62e: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634d634: 48 63 01 movslq (%rcx),%rax - 6634d637: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634d63b: 44 89 09 mov %r9d,(%rcx) - 6634d63e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634d642: 48 83 c4 28 add $0x28,%rsp - 6634d646: 5b pop %rbx - 6634d647: 5e pop %rsi - 6634d648: 5f pop %rdi - 6634d649: 5d pop %rbp - 6634d64a: 41 5c pop %r12 - 6634d64c: 41 5d pop %r13 - 6634d64e: c3 retq - 6634d64f: 90 nop +000000006634ce30 : + 6634ce30: 56 push %rsi + 6634ce31: 53 push %rbx + 6634ce32: 48 83 ec 28 sub $0x28,%rsp + 6634ce36: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634ce3a: 48 8b 50 58 mov 0x58(%rax),%rdx + 6634ce3e: 48 89 ce mov %rcx,%rsi + 6634ce41: 44 8b 02 mov (%rdx),%r8d + 6634ce44: 45 85 c0 test %r8d,%r8d + 6634ce47: 0f 84 f8 00 00 00 je 6634cf45 + 6634ce4d: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634ce51: 8b 0a mov (%rdx),%ecx + 6634ce53: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634ce57: 8b 12 mov (%rdx),%edx + 6634ce59: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634ce5c: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634ce60: 8b 09 mov (%rcx),%ecx + 6634ce62: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634ce65: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634ce69: 8b 09 mov (%rcx),%ecx + 6634ce6b: 8d 1c ca lea (%rdx,%rcx,8),%ebx + 6634ce6e: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634ce72: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634ce76: 8b 12 mov (%rdx),%edx + 6634ce78: c1 e2 04 shl $0x4,%edx + 6634ce7b: 01 d3 add %edx,%ebx + 6634ce7d: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634ce81: 8b 12 mov (%rdx),%edx + 6634ce83: c1 e2 05 shl $0x5,%edx + 6634ce86: 01 da add %ebx,%edx + 6634ce88: 8b 19 mov (%rcx),%ebx + 6634ce8a: 48 8b 48 40 mov 0x40(%rax),%rcx + 6634ce8e: 48 8b 40 48 mov 0x48(%rax),%rax + 6634ce92: c1 e3 06 shl $0x6,%ebx + 6634ce95: 01 da add %ebx,%edx + 6634ce97: 8b 19 mov (%rcx),%ebx + 6634ce99: 8b 00 mov (%rax),%eax + 6634ce9b: c1 e3 07 shl $0x7,%ebx + 6634ce9e: 01 d3 add %edx,%ebx + 6634cea0: c1 e0 08 shl $0x8,%eax + 6634cea3: 01 c3 add %eax,%ebx + 6634cea5: 78 05 js 6634ceac + 6634cea7: 3b 5e 38 cmp 0x38(%rsi),%ebx + 6634ceaa: 7c 19 jl 6634cec5 + 6634ceac: 48 8d 15 4d 61 00 00 lea 0x614d(%rip),%rdx # 66353000 <.rdata> + 6634ceb3: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634ceb9: 48 8d 0d 50 61 00 00 lea 0x6150(%rip),%rcx # 66353010 <.rdata+0x10> + 6634cec0: e8 3b 41 00 00 callq 66351000 <_assert> + 6634cec5: 48 8b 56 40 mov 0x40(%rsi),%rdx + 6634cec9: 48 63 c3 movslq %ebx,%rax + 6634cecc: 8b 04 82 mov (%rdx,%rax,4),%eax + 6634cecf: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634ced3: 8b 4a 28 mov 0x28(%rdx),%ecx + 6634ced6: 39 c8 cmp %ecx,%eax + 6634ced8: 74 64 je 6634cf3e + 6634ceda: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634cede: 89 c3 mov %eax,%ebx + 6634cee0: 29 cb sub %ecx,%ebx + 6634cee2: 4d 8b 40 50 mov 0x50(%r8),%r8 + 6634cee6: 41 01 18 add %ebx,(%r8) + 6634cee9: 89 42 28 mov %eax,0x28(%rdx) + 6634ceec: 31 d2 xor %edx,%edx + 6634ceee: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634cef2: 41 8b 08 mov (%r8),%ecx + 6634cef5: 48 8b 40 50 mov 0x50(%rax),%rax + 6634cef9: 85 c9 test %ecx,%ecx + 6634cefb: 0f 9f c2 setg %dl + 6634cefe: 3b 10 cmp (%rax),%edx + 6634cf00: 74 3c je 6634cf3e + 6634cf02: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634cf06: 48 8b 40 50 mov 0x50(%rax),%rax + 6634cf0a: 8b 00 mov (%rax),%eax + 6634cf0c: 85 c0 test %eax,%eax + 6634cf0e: 75 2e jne 6634cf3e + 6634cf10: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634cf14: 48 8b 0d 15 9a 00 00 mov 0x9a15(%rip),%rcx # 66356930 + 6634cf1b: 4c 8b 05 fe 99 00 00 mov 0x99fe(%rip),%r8 # 66356920 + 6634cf22: 48 8b 50 50 mov 0x50(%rax),%rdx + 6634cf26: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634cf2a: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634cf30: 48 63 01 movslq (%rcx),%rax + 6634cf33: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634cf37: 44 89 09 mov %r9d,(%rcx) + 6634cf3a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634cf3e: 48 83 c4 28 add $0x28,%rsp + 6634cf42: 5b pop %rbx + 6634cf43: 5e pop %rsi + 6634cf44: c3 retq + 6634cf45: ba 0a 00 00 00 mov $0xa,%edx + 6634cf4a: 48 83 c4 28 add $0x28,%rsp + 6634cf4e: 5b pop %rbx + 6634cf4f: 5e pop %rsi + 6634cf50: e9 db 44 ff ff jmpq 66341430 + 6634cf55: 90 nop + 6634cf56: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634cf5d: 00 00 00 -000000006634d650 : - 6634d650: 41 55 push %r13 - 6634d652: 41 54 push %r12 - 6634d654: 55 push %rbp - 6634d655: 57 push %rdi - 6634d656: 56 push %rsi - 6634d657: 53 push %rbx - 6634d658: 48 83 ec 28 sub $0x28,%rsp - 6634d65c: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634d660: 48 8b 90 90 00 00 00 mov 0x90(%rax),%rdx - 6634d667: 48 89 cb mov %rcx,%rbx - 6634d66a: 8b 12 mov (%rdx),%edx - 6634d66c: 85 d2 test %edx,%edx - 6634d66e: 0f 84 3c 01 00 00 je 6634d7b0 - 6634d674: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634d678: be 28 00 00 00 mov $0x28,%esi - 6634d67d: 4c 8d 2d 7c 69 00 00 lea 0x697c(%rip),%r13 # 66354000 <.rdata> - 6634d684: 4c 8d 25 85 69 00 00 lea 0x6985(%rip),%r12 # 66354010 <.rdata+0x10> - 6634d68b: 8b 0a mov (%rdx),%ecx - 6634d68d: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634d691: 8b 12 mov (%rdx),%edx - 6634d693: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634d696: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634d69a: 8b 09 mov (%rcx),%ecx - 6634d69c: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634d69f: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634d6a3: 8b 09 mov (%rcx),%ecx - 6634d6a5: 8d 14 ca lea (%rdx,%rcx,8),%edx - 6634d6a8: 48 8b 48 28 mov 0x28(%rax),%rcx - 6634d6ac: 8b 39 mov (%rcx),%edi - 6634d6ae: 48 8b 48 40 mov 0x40(%rax),%rcx - 6634d6b2: c1 e7 04 shl $0x4,%edi - 6634d6b5: 01 d7 add %edx,%edi - 6634d6b7: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634d6bb: 8b 12 mov (%rdx),%edx - 6634d6bd: c1 e2 05 shl $0x5,%edx - 6634d6c0: 01 d7 add %edx,%edi - 6634d6c2: 48 8b 50 38 mov 0x38(%rax),%rdx - 6634d6c6: 48 8b 40 48 mov 0x48(%rax),%rax - 6634d6ca: 8b 12 mov (%rdx),%edx - 6634d6cc: c1 e2 06 shl $0x6,%edx - 6634d6cf: 01 fa add %edi,%edx - 6634d6d1: 8b 39 mov (%rcx),%edi - 6634d6d3: c1 e7 07 shl $0x7,%edi - 6634d6d6: 01 fa add %edi,%edx - 6634d6d8: 8b 38 mov (%rax),%edi - 6634d6da: c1 e7 08 shl $0x8,%edi - 6634d6dd: 01 d7 add %edx,%edi - 6634d6df: 48 63 ef movslq %edi,%rbp - 6634d6e2: 48 c1 e5 02 shl $0x2,%rbp - 6634d6e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634d6ed: 00 00 00 - 6634d6f0: 85 ff test %edi,%edi - 6634d6f2: 78 05 js 6634d6f9 - 6634d6f4: 39 7b 38 cmp %edi,0x38(%rbx) - 6634d6f7: 7f 11 jg 6634d70a - 6634d6f9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634d6ff: 4c 89 ea mov %r13,%rdx - 6634d702: 4c 89 e1 mov %r12,%rcx - 6634d705: e8 06 4b 00 00 callq 66352210 <_assert> - 6634d70a: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634d70e: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634d712: 48 01 f2 add %rsi,%rdx - 6634d715: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634d718: 8b 0a mov (%rdx),%ecx - 6634d71a: 39 c8 cmp %ecx,%eax - 6634d71c: 74 69 je 6634d787 - 6634d71e: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634d722: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634d726: 41 89 c3 mov %eax,%r11d - 6634d729: 41 29 cb sub %ecx,%r11d - 6634d72c: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634d730: 45 01 18 add %r11d,(%r8) - 6634d733: 89 02 mov %eax,(%rdx) - 6634d735: 31 d2 xor %edx,%edx - 6634d737: 41 8b 00 mov (%r8),%eax - 6634d73a: 85 c0 test %eax,%eax - 6634d73c: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634d740: 0f 9f c2 setg %dl - 6634d743: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634d747: 3b 10 cmp (%rax),%edx - 6634d749: 74 3c je 6634d787 - 6634d74b: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634d74f: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634d753: 8b 00 mov (%rax),%eax - 6634d755: 85 c0 test %eax,%eax - 6634d757: 75 2e jne 6634d787 - 6634d759: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634d75d: 48 8b 0d cc a1 00 00 mov 0xa1cc(%rip),%rcx # 66357930 - 6634d764: 4c 8b 05 b5 a1 00 00 mov 0xa1b5(%rip),%r8 # 66357920 - 6634d76b: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634d76f: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634d773: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634d779: 48 63 01 movslq (%rcx),%rax - 6634d77c: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634d780: 44 89 09 mov %r9d,(%rcx) - 6634d783: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634d787: 48 83 c6 04 add $0x4,%rsi - 6634d78b: 81 c7 00 02 00 00 add $0x200,%edi - 6634d791: 48 81 c5 00 08 00 00 add $0x800,%rbp - 6634d798: 48 83 fe 48 cmp $0x48,%rsi - 6634d79c: 0f 85 4e ff ff ff jne 6634d6f0 - 6634d7a2: 48 83 c4 28 add $0x28,%rsp - 6634d7a6: 5b pop %rbx - 6634d7a7: 5e pop %rsi - 6634d7a8: 5f pop %rdi - 6634d7a9: 5d pop %rbp - 6634d7aa: 41 5c pop %r12 - 6634d7ac: 41 5d pop %r13 - 6634d7ae: c3 retq - 6634d7af: 90 nop - 6634d7b0: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634d7b4: 4c 8b 05 65 a1 00 00 mov 0xa165(%rip),%r8 # 66357920 - 6634d7bb: 48 8b 0d 6e a1 00 00 mov 0xa16e(%rip),%rcx # 66357930 - 6634d7c2: 44 8b 4a 28 mov 0x28(%rdx),%r9d - 6634d7c6: 45 85 c9 test %r9d,%r9d - 6634d7c9: 74 58 je 6634d823 - 6634d7cb: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d7cf: 4d 8b 52 50 mov 0x50(%r10),%r10 - 6634d7d3: 45 29 0a sub %r9d,(%r10) - 6634d7d6: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634d7dd: 45 8b 22 mov (%r10),%r12d - 6634d7e0: 45 31 d2 xor %r10d,%r10d - 6634d7e3: 4c 8b 48 50 mov 0x50(%rax),%r9 - 6634d7e7: 45 85 e4 test %r12d,%r12d - 6634d7ea: 41 0f 9f c2 setg %r10b - 6634d7ee: 45 3b 11 cmp (%r9),%r10d - 6634d7f1: 74 30 je 6634d823 - 6634d7f3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d7f7: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634d7fb: 41 8b 29 mov (%r9),%ebp - 6634d7fe: 85 ed test %ebp,%ebp - 6634d800: 75 21 jne 6634d823 - 6634d802: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d806: 4d 8b 51 50 mov 0x50(%r9),%r10 - 6634d80a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d80e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d815: 4c 63 09 movslq (%rcx),%r9 - 6634d818: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d81c: 44 89 19 mov %r11d,(%rcx) - 6634d81f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d823: 44 8b 4a 2c mov 0x2c(%rdx),%r9d - 6634d827: 45 85 c9 test %r9d,%r9d - 6634d82a: 74 57 je 6634d883 - 6634d82c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d830: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634d834: 45 29 0a sub %r9d,(%r10) - 6634d837: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 6634d83e: 41 8b 3a mov (%r10),%edi - 6634d841: 45 31 d2 xor %r10d,%r10d - 6634d844: 4c 8b 48 58 mov 0x58(%rax),%r9 - 6634d848: 85 ff test %edi,%edi - 6634d84a: 41 0f 9f c2 setg %r10b - 6634d84e: 45 3b 11 cmp (%r9),%r10d - 6634d851: 74 30 je 6634d883 - 6634d853: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d857: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634d85b: 41 8b 31 mov (%r9),%esi - 6634d85e: 85 f6 test %esi,%esi - 6634d860: 75 21 jne 6634d883 - 6634d862: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d866: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634d86a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d86e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d875: 4c 63 09 movslq (%rcx),%r9 - 6634d878: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d87c: 44 89 19 mov %r11d,(%rcx) - 6634d87f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d883: 44 8b 4a 30 mov 0x30(%rdx),%r9d - 6634d887: 45 85 c9 test %r9d,%r9d - 6634d88a: 74 59 je 6634d8e5 - 6634d88c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d890: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634d894: 45 29 0a sub %r9d,(%r10) - 6634d897: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634d89e: 45 8b 1a mov (%r10),%r11d - 6634d8a1: 45 31 d2 xor %r10d,%r10d - 6634d8a4: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634d8a8: 45 85 db test %r11d,%r11d - 6634d8ab: 41 0f 9f c2 setg %r10b - 6634d8af: 45 3b 11 cmp (%r9),%r10d - 6634d8b2: 74 31 je 6634d8e5 - 6634d8b4: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d8b8: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634d8bc: 45 8b 11 mov (%r9),%r10d - 6634d8bf: 45 85 d2 test %r10d,%r10d - 6634d8c2: 75 21 jne 6634d8e5 - 6634d8c4: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d8c8: 4d 8b 51 60 mov 0x60(%r9),%r10 - 6634d8cc: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d8d0: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d8d7: 4c 63 09 movslq (%rcx),%r9 - 6634d8da: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d8de: 44 89 19 mov %r11d,(%rcx) - 6634d8e1: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d8e5: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634d8e9: 45 85 c9 test %r9d,%r9d - 6634d8ec: 74 59 je 6634d947 - 6634d8ee: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d8f2: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634d8f6: 45 29 0a sub %r9d,(%r10) - 6634d8f9: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634d900: 45 8b 0a mov (%r10),%r9d - 6634d903: 45 31 d2 xor %r10d,%r10d - 6634d906: 45 85 c9 test %r9d,%r9d - 6634d909: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634d90d: 41 0f 9f c2 setg %r10b - 6634d911: 45 3b 11 cmp (%r9),%r10d - 6634d914: 74 31 je 6634d947 - 6634d916: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d91a: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634d91e: 45 8b 29 mov (%r9),%r13d - 6634d921: 45 85 ed test %r13d,%r13d - 6634d924: 75 21 jne 6634d947 - 6634d926: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d92a: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634d92e: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d932: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d939: 4c 63 09 movslq (%rcx),%r9 - 6634d93c: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d940: 44 89 19 mov %r11d,(%rcx) - 6634d943: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d947: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634d94b: 45 85 c9 test %r9d,%r9d - 6634d94e: 74 58 je 6634d9a8 - 6634d950: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d954: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634d958: 45 29 0a sub %r9d,(%r10) - 6634d95b: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634d962: 45 8b 22 mov (%r10),%r12d - 6634d965: 45 31 d2 xor %r10d,%r10d - 6634d968: 4c 8b 48 70 mov 0x70(%rax),%r9 - 6634d96c: 45 85 e4 test %r12d,%r12d - 6634d96f: 41 0f 9f c2 setg %r10b - 6634d973: 45 3b 11 cmp (%r9),%r10d - 6634d976: 74 30 je 6634d9a8 - 6634d978: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d97c: 4d 8b 49 70 mov 0x70(%r9),%r9 - 6634d980: 41 8b 29 mov (%r9),%ebp - 6634d983: 85 ed test %ebp,%ebp - 6634d985: 75 21 jne 6634d9a8 - 6634d987: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d98b: 4d 8b 51 70 mov 0x70(%r9),%r10 - 6634d98f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d993: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d99a: 4c 63 09 movslq (%rcx),%r9 - 6634d99d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634d9a1: 44 89 19 mov %r11d,(%rcx) - 6634d9a4: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634d9a8: 44 8b 4a 3c mov 0x3c(%rdx),%r9d - 6634d9ac: 45 85 c9 test %r9d,%r9d - 6634d9af: 74 57 je 6634da08 - 6634d9b1: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634d9b5: 4d 8b 52 78 mov 0x78(%r10),%r10 - 6634d9b9: 45 29 0a sub %r9d,(%r10) - 6634d9bc: c7 42 3c 00 00 00 00 movl $0x0,0x3c(%rdx) - 6634d9c3: 41 8b 3a mov (%r10),%edi - 6634d9c6: 45 31 d2 xor %r10d,%r10d - 6634d9c9: 4c 8b 48 78 mov 0x78(%rax),%r9 - 6634d9cd: 85 ff test %edi,%edi - 6634d9cf: 41 0f 9f c2 setg %r10b - 6634d9d3: 45 3b 11 cmp (%r9),%r10d - 6634d9d6: 74 30 je 6634da08 - 6634d9d8: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634d9dc: 4d 8b 49 78 mov 0x78(%r9),%r9 - 6634d9e0: 41 8b 31 mov (%r9),%esi - 6634d9e3: 85 f6 test %esi,%esi - 6634d9e5: 75 21 jne 6634da08 - 6634d9e7: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634d9eb: 4d 8b 51 78 mov 0x78(%r9),%r10 - 6634d9ef: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634d9f3: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634d9fa: 4c 63 09 movslq (%rcx),%r9 - 6634d9fd: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634da01: 44 89 19 mov %r11d,(%rcx) - 6634da04: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634da08: 44 8b 4a 40 mov 0x40(%rdx),%r9d - 6634da0c: 45 85 c9 test %r9d,%r9d - 6634da0f: 74 65 je 6634da76 - 6634da11: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634da15: 4d 8b 92 80 00 00 00 mov 0x80(%r10),%r10 - 6634da1c: 45 29 0a sub %r9d,(%r10) - 6634da1f: c7 42 40 00 00 00 00 movl $0x0,0x40(%rdx) - 6634da26: 45 8b 1a mov (%r10),%r11d - 6634da29: 45 31 d2 xor %r10d,%r10d - 6634da2c: 4c 8b 88 80 00 00 00 mov 0x80(%rax),%r9 - 6634da33: 45 85 db test %r11d,%r11d - 6634da36: 41 0f 9f c2 setg %r10b - 6634da3a: 45 3b 11 cmp (%r9),%r10d - 6634da3d: 74 37 je 6634da76 - 6634da3f: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634da43: 4d 8b 89 80 00 00 00 mov 0x80(%r9),%r9 - 6634da4a: 45 8b 11 mov (%r9),%r10d - 6634da4d: 45 85 d2 test %r10d,%r10d - 6634da50: 75 24 jne 6634da76 - 6634da52: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634da56: 4d 8b 91 80 00 00 00 mov 0x80(%r9),%r10 - 6634da5d: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634da61: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634da68: 4c 63 09 movslq (%rcx),%r9 - 6634da6b: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634da6f: 44 89 19 mov %r11d,(%rcx) - 6634da72: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634da76: 44 8b 4a 44 mov 0x44(%rdx),%r9d - 6634da7a: 45 85 c9 test %r9d,%r9d - 6634da7d: 0f 84 1f fd ff ff je 6634d7a2 - 6634da83: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634da87: 48 8b 80 88 00 00 00 mov 0x88(%rax),%rax - 6634da8e: 4d 8b 92 88 00 00 00 mov 0x88(%r10),%r10 - 6634da95: 45 29 0a sub %r9d,(%r10) - 6634da98: c7 42 44 00 00 00 00 movl $0x0,0x44(%rdx) - 6634da9f: 31 d2 xor %edx,%edx - 6634daa1: 45 8b 0a mov (%r10),%r9d - 6634daa4: 45 85 c9 test %r9d,%r9d - 6634daa7: 0f 9f c2 setg %dl - 6634daaa: 3b 10 cmp (%rax),%edx - 6634daac: 0f 84 f0 fc ff ff je 6634d7a2 - 6634dab2: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634dab6: 48 8b 80 88 00 00 00 mov 0x88(%rax),%rax - 6634dabd: 8b 00 mov (%rax),%eax - 6634dabf: 85 c0 test %eax,%eax - 6634dac1: 0f 85 db fc ff ff jne 6634d7a2 - 6634dac7: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634dacb: 48 8b 90 88 00 00 00 mov 0x88(%rax),%rdx - 6634dad2: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634dad6: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634dadc: 48 63 01 movslq (%rcx),%rax - 6634dadf: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634dae3: 44 89 09 mov %r9d,(%rcx) - 6634dae6: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634daea: 48 83 c4 28 add $0x28,%rsp - 6634daee: 5b pop %rbx - 6634daef: 5e pop %rsi - 6634daf0: 5f pop %rdi - 6634daf1: 5d pop %rbp - 6634daf2: 41 5c pop %r12 - 6634daf4: 41 5d pop %r13 - 6634daf6: c3 retq - 6634daf7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634dafe: 00 00 +000000006634cf60 : + 6634cf60: 56 push %rsi + 6634cf61: 53 push %rbx + 6634cf62: 48 83 ec 28 sub $0x28,%rsp + 6634cf66: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634cf6a: 48 8b 50 50 mov 0x50(%rax),%rdx + 6634cf6e: 48 89 ce mov %rcx,%rsi + 6634cf71: 44 8b 02 mov (%rdx),%r8d + 6634cf74: 45 85 c0 test %r8d,%r8d + 6634cf77: 0f 84 f3 00 00 00 je 6634d070 + 6634cf7d: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634cf81: 8b 0a mov (%rdx),%ecx + 6634cf83: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634cf87: 8b 12 mov (%rdx),%edx + 6634cf89: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634cf8c: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634cf90: 8b 09 mov (%rcx),%ecx + 6634cf92: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634cf95: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634cf99: 8b 09 mov (%rcx),%ecx + 6634cf9b: 8d 1c ca lea (%rdx,%rcx,8),%ebx + 6634cf9e: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634cfa2: 48 8b 48 30 mov 0x30(%rax),%rcx + 6634cfa6: 8b 12 mov (%rdx),%edx + 6634cfa8: c1 e2 04 shl $0x4,%edx + 6634cfab: 01 da add %ebx,%edx + 6634cfad: 8b 19 mov (%rcx),%ebx + 6634cfaf: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634cfb3: 48 8b 40 40 mov 0x40(%rax),%rax + 6634cfb7: c1 e3 05 shl $0x5,%ebx + 6634cfba: 01 da add %ebx,%edx + 6634cfbc: 8b 19 mov (%rcx),%ebx + 6634cfbe: 8b 00 mov (%rax),%eax + 6634cfc0: c1 e3 06 shl $0x6,%ebx + 6634cfc3: 01 d3 add %edx,%ebx + 6634cfc5: c1 e0 07 shl $0x7,%eax + 6634cfc8: 01 c3 add %eax,%ebx + 6634cfca: 78 05 js 6634cfd1 + 6634cfcc: 3b 5e 38 cmp 0x38(%rsi),%ebx + 6634cfcf: 7c 19 jl 6634cfea + 6634cfd1: 48 8d 15 28 60 00 00 lea 0x6028(%rip),%rdx # 66353000 <.rdata> + 6634cfd8: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634cfde: 48 8d 0d 2b 60 00 00 lea 0x602b(%rip),%rcx # 66353010 <.rdata+0x10> + 6634cfe5: e8 16 40 00 00 callq 66351000 <_assert> + 6634cfea: 48 8b 56 40 mov 0x40(%rsi),%rdx + 6634cfee: 48 63 c3 movslq %ebx,%rax + 6634cff1: 8b 04 82 mov (%rdx,%rax,4),%eax + 6634cff4: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634cff8: 8b 4a 24 mov 0x24(%rdx),%ecx + 6634cffb: 39 c8 cmp %ecx,%eax + 6634cffd: 74 64 je 6634d063 + 6634cfff: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634d003: 89 c3 mov %eax,%ebx + 6634d005: 29 cb sub %ecx,%ebx + 6634d007: 4d 8b 40 48 mov 0x48(%r8),%r8 + 6634d00b: 41 01 18 add %ebx,(%r8) + 6634d00e: 89 42 24 mov %eax,0x24(%rdx) + 6634d011: 31 d2 xor %edx,%edx + 6634d013: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634d017: 41 8b 08 mov (%r8),%ecx + 6634d01a: 48 8b 40 48 mov 0x48(%rax),%rax + 6634d01e: 85 c9 test %ecx,%ecx + 6634d020: 0f 9f c2 setg %dl + 6634d023: 3b 10 cmp (%rax),%edx + 6634d025: 74 3c je 6634d063 + 6634d027: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634d02b: 48 8b 40 48 mov 0x48(%rax),%rax + 6634d02f: 8b 00 mov (%rax),%eax + 6634d031: 85 c0 test %eax,%eax + 6634d033: 75 2e jne 6634d063 + 6634d035: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634d039: 48 8b 0d f0 98 00 00 mov 0x98f0(%rip),%rcx # 66356930 + 6634d040: 4c 8b 05 d9 98 00 00 mov 0x98d9(%rip),%r8 # 66356920 + 6634d047: 48 8b 50 48 mov 0x48(%rax),%rdx + 6634d04b: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d04f: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634d055: 48 63 01 movslq (%rcx),%rax + 6634d058: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634d05c: 44 89 09 mov %r9d,(%rcx) + 6634d05f: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634d063: 48 83 c4 28 add $0x28,%rsp + 6634d067: 5b pop %rbx + 6634d068: 5e pop %rsi + 6634d069: c3 retq + 6634d06a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 6634d070: ba 09 00 00 00 mov $0x9,%edx + 6634d075: 48 83 c4 28 add $0x28,%rsp + 6634d079: 5b pop %rbx + 6634d07a: 5e pop %rsi + 6634d07b: e9 b0 43 ff ff jmpq 66341430 -000000006634db00 : - 6634db00: 41 55 push %r13 - 6634db02: 41 54 push %r12 - 6634db04: 55 push %rbp - 6634db05: 57 push %rdi - 6634db06: 56 push %rsi - 6634db07: 53 push %rbx - 6634db08: 48 83 ec 28 sub $0x28,%rsp - 6634db0c: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634db10: 48 8b 50 78 mov 0x78(%rax),%rdx - 6634db14: 48 89 cb mov %rcx,%rbx - 6634db17: 8b 12 mov (%rdx),%edx - 6634db19: 85 d2 test %edx,%edx - 6634db1b: 0f 84 0f 01 00 00 je 6634dc30 - 6634db21: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634db25: be 1c 00 00 00 mov $0x1c,%esi - 6634db2a: 4c 8d 2d cf 64 00 00 lea 0x64cf(%rip),%r13 # 66354000 <.rdata> - 6634db31: 4c 8d 25 d8 64 00 00 lea 0x64d8(%rip),%r12 # 66354010 <.rdata+0x10> - 6634db38: 8b 0a mov (%rdx),%ecx - 6634db3a: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634db3e: 8b 12 mov (%rdx),%edx - 6634db40: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634db43: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634db47: 8b 09 mov (%rcx),%ecx - 6634db49: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634db4c: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634db50: 8b 09 mov (%rcx),%ecx - 6634db52: 8d 14 ca lea (%rdx,%rcx,8),%edx - 6634db55: 48 8b 48 28 mov 0x28(%rax),%rcx - 6634db59: 48 8b 40 30 mov 0x30(%rax),%rax - 6634db5d: 8b 39 mov (%rcx),%edi - 6634db5f: c1 e7 04 shl $0x4,%edi - 6634db62: 01 fa add %edi,%edx - 6634db64: 8b 38 mov (%rax),%edi - 6634db66: c1 e7 05 shl $0x5,%edi - 6634db69: 01 d7 add %edx,%edi - 6634db6b: 48 63 ef movslq %edi,%rbp - 6634db6e: 48 c1 e5 02 shl $0x2,%rbp - 6634db72: 85 ff test %edi,%edi - 6634db74: 78 05 js 6634db7b - 6634db76: 39 7b 38 cmp %edi,0x38(%rbx) - 6634db79: 7f 11 jg 6634db8c - 6634db7b: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634db81: 4c 89 ea mov %r13,%rdx - 6634db84: 4c 89 e1 mov %r12,%rcx - 6634db87: e8 84 46 00 00 callq 66352210 <_assert> - 6634db8c: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634db90: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634db94: 48 01 f2 add %rsi,%rdx - 6634db97: 8b 04 28 mov (%rax,%rbp,1),%eax - 6634db9a: 8b 0a mov (%rdx),%ecx - 6634db9c: 39 c8 cmp %ecx,%eax - 6634db9e: 74 69 je 6634dc09 - 6634dba0: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634dba4: 4c 8d 0c 36 lea (%rsi,%rsi,1),%r9 - 6634dba8: 41 89 c3 mov %eax,%r11d - 6634dbab: 41 29 cb sub %ecx,%r11d - 6634dbae: 4d 8b 04 70 mov (%r8,%rsi,2),%r8 - 6634dbb2: 45 01 18 add %r11d,(%r8) - 6634dbb5: 89 02 mov %eax,(%rdx) - 6634dbb7: 31 d2 xor %edx,%edx - 6634dbb9: 41 8b 00 mov (%r8),%eax - 6634dbbc: 85 c0 test %eax,%eax - 6634dbbe: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634dbc2: 0f 9f c2 setg %dl - 6634dbc5: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634dbc9: 3b 10 cmp (%rax),%edx - 6634dbcb: 74 3c je 6634dc09 - 6634dbcd: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634dbd1: 48 8b 04 70 mov (%rax,%rsi,2),%rax - 6634dbd5: 8b 00 mov (%rax),%eax - 6634dbd7: 85 c0 test %eax,%eax - 6634dbd9: 75 2e jne 6634dc09 - 6634dbdb: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634dbdf: 48 8b 0d 4a 9d 00 00 mov 0x9d4a(%rip),%rcx # 66357930 - 6634dbe6: 4c 8b 05 33 9d 00 00 mov 0x9d33(%rip),%r8 # 66357920 - 6634dbed: 4a 8b 14 08 mov (%rax,%r9,1),%rdx - 6634dbf1: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634dbf5: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634dbfb: 48 63 01 movslq (%rcx),%rax - 6634dbfe: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634dc02: 44 89 09 mov %r9d,(%rcx) - 6634dc05: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634dc09: 48 83 c6 04 add $0x4,%rsi - 6634dc0d: 83 c7 40 add $0x40,%edi - 6634dc10: 48 81 c5 00 01 00 00 add $0x100,%rbp - 6634dc17: 48 83 fe 3c cmp $0x3c,%rsi - 6634dc1b: 0f 85 51 ff ff ff jne 6634db72 - 6634dc21: 48 83 c4 28 add $0x28,%rsp - 6634dc25: 5b pop %rbx - 6634dc26: 5e pop %rsi - 6634dc27: 5f pop %rdi - 6634dc28: 5d pop %rbp - 6634dc29: 41 5c pop %r12 - 6634dc2b: 41 5d pop %r13 - 6634dc2d: c3 retq - 6634dc2e: 66 90 xchg %ax,%ax - 6634dc30: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634dc34: 4c 8b 05 e5 9c 00 00 mov 0x9ce5(%rip),%r8 # 66357920 - 6634dc3b: 48 8b 0d ee 9c 00 00 mov 0x9cee(%rip),%rcx # 66357930 - 6634dc42: 44 8b 4a 1c mov 0x1c(%rdx),%r9d - 6634dc46: 45 85 c9 test %r9d,%r9d - 6634dc49: 74 58 je 6634dca3 - 6634dc4b: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634dc4f: 4d 8b 52 38 mov 0x38(%r10),%r10 - 6634dc53: 45 29 0a sub %r9d,(%r10) - 6634dc56: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) - 6634dc5d: 45 8b 22 mov (%r10),%r12d - 6634dc60: 45 31 d2 xor %r10d,%r10d - 6634dc63: 4c 8b 48 38 mov 0x38(%rax),%r9 - 6634dc67: 45 85 e4 test %r12d,%r12d - 6634dc6a: 41 0f 9f c2 setg %r10b - 6634dc6e: 45 3b 11 cmp (%r9),%r10d - 6634dc71: 74 30 je 6634dca3 - 6634dc73: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634dc77: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634dc7b: 41 8b 29 mov (%r9),%ebp - 6634dc7e: 85 ed test %ebp,%ebp - 6634dc80: 75 21 jne 6634dca3 - 6634dc82: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634dc86: 4d 8b 51 38 mov 0x38(%r9),%r10 - 6634dc8a: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634dc8e: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634dc95: 4c 63 09 movslq (%rcx),%r9 - 6634dc98: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634dc9c: 44 89 19 mov %r11d,(%rcx) - 6634dc9f: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634dca3: 44 8b 4a 20 mov 0x20(%rdx),%r9d - 6634dca7: 45 85 c9 test %r9d,%r9d - 6634dcaa: 74 57 je 6634dd03 - 6634dcac: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634dcb0: 4d 8b 52 40 mov 0x40(%r10),%r10 - 6634dcb4: 45 29 0a sub %r9d,(%r10) - 6634dcb7: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) - 6634dcbe: 41 8b 3a mov (%r10),%edi - 6634dcc1: 45 31 d2 xor %r10d,%r10d - 6634dcc4: 4c 8b 48 40 mov 0x40(%rax),%r9 - 6634dcc8: 85 ff test %edi,%edi - 6634dcca: 41 0f 9f c2 setg %r10b - 6634dcce: 45 3b 11 cmp (%r9),%r10d - 6634dcd1: 74 30 je 6634dd03 - 6634dcd3: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634dcd7: 4d 8b 49 40 mov 0x40(%r9),%r9 - 6634dcdb: 41 8b 31 mov (%r9),%esi - 6634dcde: 85 f6 test %esi,%esi - 6634dce0: 75 21 jne 6634dd03 - 6634dce2: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634dce6: 4d 8b 51 40 mov 0x40(%r9),%r10 - 6634dcea: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634dcee: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634dcf5: 4c 63 09 movslq (%rcx),%r9 - 6634dcf8: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634dcfc: 44 89 19 mov %r11d,(%rcx) - 6634dcff: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634dd03: 44 8b 4a 24 mov 0x24(%rdx),%r9d - 6634dd07: 45 85 c9 test %r9d,%r9d - 6634dd0a: 74 59 je 6634dd65 - 6634dd0c: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634dd10: 4d 8b 52 48 mov 0x48(%r10),%r10 - 6634dd14: 45 29 0a sub %r9d,(%r10) - 6634dd17: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 6634dd1e: 45 8b 1a mov (%r10),%r11d - 6634dd21: 45 31 d2 xor %r10d,%r10d - 6634dd24: 4c 8b 48 48 mov 0x48(%rax),%r9 - 6634dd28: 45 85 db test %r11d,%r11d - 6634dd2b: 41 0f 9f c2 setg %r10b - 6634dd2f: 45 3b 11 cmp (%r9),%r10d - 6634dd32: 74 31 je 6634dd65 - 6634dd34: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634dd38: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634dd3c: 45 8b 11 mov (%r9),%r10d - 6634dd3f: 45 85 d2 test %r10d,%r10d - 6634dd42: 75 21 jne 6634dd65 - 6634dd44: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634dd48: 4d 8b 51 48 mov 0x48(%r9),%r10 - 6634dd4c: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634dd50: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634dd57: 4c 63 09 movslq (%rcx),%r9 - 6634dd5a: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634dd5e: 44 89 19 mov %r11d,(%rcx) - 6634dd61: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634dd65: 44 8b 4a 28 mov 0x28(%rdx),%r9d - 6634dd69: 45 85 c9 test %r9d,%r9d - 6634dd6c: 74 59 je 6634ddc7 - 6634dd6e: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634dd72: 4d 8b 52 50 mov 0x50(%r10),%r10 - 6634dd76: 45 29 0a sub %r9d,(%r10) - 6634dd79: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634dd80: 45 8b 0a mov (%r10),%r9d - 6634dd83: 45 31 d2 xor %r10d,%r10d - 6634dd86: 45 85 c9 test %r9d,%r9d - 6634dd89: 4c 8b 48 50 mov 0x50(%rax),%r9 - 6634dd8d: 41 0f 9f c2 setg %r10b - 6634dd91: 45 3b 11 cmp (%r9),%r10d - 6634dd94: 74 31 je 6634ddc7 - 6634dd96: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634dd9a: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634dd9e: 45 8b 29 mov (%r9),%r13d - 6634dda1: 45 85 ed test %r13d,%r13d - 6634dda4: 75 21 jne 6634ddc7 - 6634dda6: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634ddaa: 4d 8b 51 50 mov 0x50(%r9),%r10 - 6634ddae: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634ddb2: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634ddb9: 4c 63 09 movslq (%rcx),%r9 - 6634ddbc: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634ddc0: 44 89 19 mov %r11d,(%rcx) - 6634ddc3: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634ddc7: 44 8b 4a 2c mov 0x2c(%rdx),%r9d - 6634ddcb: 45 85 c9 test %r9d,%r9d - 6634ddce: 74 58 je 6634de28 - 6634ddd0: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634ddd4: 4d 8b 52 58 mov 0x58(%r10),%r10 - 6634ddd8: 45 29 0a sub %r9d,(%r10) - 6634dddb: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 6634dde2: 45 8b 22 mov (%r10),%r12d - 6634dde5: 45 31 d2 xor %r10d,%r10d - 6634dde8: 4c 8b 48 58 mov 0x58(%rax),%r9 - 6634ddec: 45 85 e4 test %r12d,%r12d - 6634ddef: 41 0f 9f c2 setg %r10b - 6634ddf3: 45 3b 11 cmp (%r9),%r10d - 6634ddf6: 74 30 je 6634de28 - 6634ddf8: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634ddfc: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634de00: 41 8b 29 mov (%r9),%ebp - 6634de03: 85 ed test %ebp,%ebp - 6634de05: 75 21 jne 6634de28 - 6634de07: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634de0b: 4d 8b 51 58 mov 0x58(%r9),%r10 - 6634de0f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634de13: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634de1a: 4c 63 09 movslq (%rcx),%r9 - 6634de1d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634de21: 44 89 19 mov %r11d,(%rcx) - 6634de24: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634de28: 44 8b 4a 30 mov 0x30(%rdx),%r9d - 6634de2c: 45 85 c9 test %r9d,%r9d - 6634de2f: 74 57 je 6634de88 - 6634de31: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634de35: 4d 8b 52 60 mov 0x60(%r10),%r10 - 6634de39: 45 29 0a sub %r9d,(%r10) - 6634de3c: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634de43: 41 8b 3a mov (%r10),%edi - 6634de46: 45 31 d2 xor %r10d,%r10d - 6634de49: 4c 8b 48 60 mov 0x60(%rax),%r9 - 6634de4d: 85 ff test %edi,%edi - 6634de4f: 41 0f 9f c2 setg %r10b - 6634de53: 45 3b 11 cmp (%r9),%r10d - 6634de56: 74 30 je 6634de88 - 6634de58: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634de5c: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634de60: 41 8b 31 mov (%r9),%esi - 6634de63: 85 f6 test %esi,%esi - 6634de65: 75 21 jne 6634de88 - 6634de67: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634de6b: 4d 8b 51 60 mov 0x60(%r9),%r10 - 6634de6f: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634de73: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634de7a: 4c 63 09 movslq (%rcx),%r9 - 6634de7d: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634de81: 44 89 19 mov %r11d,(%rcx) - 6634de84: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634de88: 44 8b 4a 34 mov 0x34(%rdx),%r9d - 6634de8c: 45 85 c9 test %r9d,%r9d - 6634de8f: 74 59 je 6634deea - 6634de91: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634de95: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634de99: 45 29 0a sub %r9d,(%r10) - 6634de9c: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) - 6634dea3: 45 8b 1a mov (%r10),%r11d - 6634dea6: 45 31 d2 xor %r10d,%r10d - 6634dea9: 4c 8b 48 68 mov 0x68(%rax),%r9 - 6634dead: 45 85 db test %r11d,%r11d - 6634deb0: 41 0f 9f c2 setg %r10b - 6634deb4: 45 3b 11 cmp (%r9),%r10d - 6634deb7: 74 31 je 6634deea - 6634deb9: 4c 8b 4b 20 mov 0x20(%rbx),%r9 - 6634debd: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634dec1: 45 8b 11 mov (%r9),%r10d - 6634dec4: 45 85 d2 test %r10d,%r10d - 6634dec7: 75 21 jne 6634deea - 6634dec9: 4c 8b 4b 28 mov 0x28(%rbx),%r9 - 6634decd: 4d 8b 51 68 mov 0x68(%r9),%r10 - 6634ded1: 4d 8b 4a 10 mov 0x10(%r10),%r9 - 6634ded5: 41 c7 01 01 00 00 00 movl $0x1,(%r9) - 6634dedc: 4c 63 09 movslq (%rcx),%r9 - 6634dedf: 45 8d 59 01 lea 0x1(%r9),%r11d - 6634dee3: 44 89 19 mov %r11d,(%rcx) - 6634dee6: 4f 89 14 c8 mov %r10,(%r8,%r9,8) - 6634deea: 44 8b 4a 38 mov 0x38(%rdx),%r9d - 6634deee: 45 85 c9 test %r9d,%r9d - 6634def1: 0f 84 2a fd ff ff je 6634dc21 - 6634def7: 4c 8b 53 18 mov 0x18(%rbx),%r10 - 6634defb: 48 8b 40 70 mov 0x70(%rax),%rax - 6634deff: 4d 8b 52 70 mov 0x70(%r10),%r10 - 6634df03: 45 29 0a sub %r9d,(%r10) - 6634df06: c7 42 38 00 00 00 00 movl $0x0,0x38(%rdx) - 6634df0d: 31 d2 xor %edx,%edx - 6634df0f: 45 8b 0a mov (%r10),%r9d - 6634df12: 45 85 c9 test %r9d,%r9d - 6634df15: 0f 9f c2 setg %dl - 6634df18: 3b 10 cmp (%rax),%edx - 6634df1a: 0f 84 01 fd ff ff je 6634dc21 - 6634df20: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634df24: 48 8b 40 70 mov 0x70(%rax),%rax - 6634df28: 8b 00 mov (%rax),%eax - 6634df2a: 85 c0 test %eax,%eax - 6634df2c: 0f 85 ef fc ff ff jne 6634dc21 - 6634df32: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634df36: 48 8b 50 70 mov 0x70(%rax),%rdx - 6634df3a: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634df3e: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634df44: 48 63 01 movslq (%rcx),%rax - 6634df47: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634df4b: 44 89 09 mov %r9d,(%rcx) - 6634df4e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634df52: 48 83 c4 28 add $0x28,%rsp - 6634df56: 5b pop %rbx - 6634df57: 5e pop %rsi - 6634df58: 5f pop %rdi - 6634df59: 5d pop %rbp - 6634df5a: 41 5c pop %r12 - 6634df5c: 41 5d pop %r13 - 6634df5e: c3 retq - 6634df5f: 90 nop +000000006634d080 : + 6634d080: 56 push %rsi + 6634d081: 53 push %rbx + 6634d082: 48 83 ec 28 sub $0x28,%rsp + 6634d086: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634d08a: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634d08e: 48 89 cb mov %rcx,%rbx + 6634d091: 44 8b 02 mov (%rdx),%r8d + 6634d094: 45 85 c0 test %r8d,%r8d + 6634d097: 0f 84 c3 00 00 00 je 6634d160 + 6634d09d: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634d0a1: 8b 0a mov (%rdx),%ecx + 6634d0a3: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634d0a7: 8b 12 mov (%rdx),%edx + 6634d0a9: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634d0ac: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634d0b0: 48 8b 40 20 mov 0x20(%rax),%rax + 6634d0b4: 8b 09 mov (%rcx),%ecx + 6634d0b6: 8b 00 mov (%rax),%eax + 6634d0b8: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634d0bb: 8d 34 c2 lea (%rdx,%rax,8),%esi + 6634d0be: 85 f6 test %esi,%esi + 6634d0c0: 78 05 js 6634d0c7 + 6634d0c2: 3b 73 38 cmp 0x38(%rbx),%esi + 6634d0c5: 7c 19 jl 6634d0e0 + 6634d0c7: 48 8d 15 32 5f 00 00 lea 0x5f32(%rip),%rdx # 66353000 <.rdata> + 6634d0ce: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634d0d4: 48 8d 0d 35 5f 00 00 lea 0x5f35(%rip),%rcx # 66353010 <.rdata+0x10> + 6634d0db: e8 20 3f 00 00 callq 66351000 <_assert> + 6634d0e0: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634d0e4: 48 63 f6 movslq %esi,%rsi + 6634d0e7: 48 8b 53 08 mov 0x8(%rbx),%rdx + 6634d0eb: 8b 04 b0 mov (%rax,%rsi,4),%eax + 6634d0ee: 8b 4a 14 mov 0x14(%rdx),%ecx + 6634d0f1: 39 c8 cmp %ecx,%eax + 6634d0f3: 74 64 je 6634d159 + 6634d0f5: 4c 8b 43 18 mov 0x18(%rbx),%r8 + 6634d0f9: 89 c6 mov %eax,%esi + 6634d0fb: 29 ce sub %ecx,%esi + 6634d0fd: 4d 8b 40 28 mov 0x28(%r8),%r8 + 6634d101: 41 01 30 add %esi,(%r8) + 6634d104: 89 42 14 mov %eax,0x14(%rdx) + 6634d107: 31 d2 xor %edx,%edx + 6634d109: 48 8b 43 10 mov 0x10(%rbx),%rax + 6634d10d: 41 8b 08 mov (%r8),%ecx + 6634d110: 48 8b 40 28 mov 0x28(%rax),%rax + 6634d114: 85 c9 test %ecx,%ecx + 6634d116: 0f 9f c2 setg %dl + 6634d119: 3b 10 cmp (%rax),%edx + 6634d11b: 74 3c je 6634d159 + 6634d11d: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634d121: 48 8b 40 28 mov 0x28(%rax),%rax + 6634d125: 8b 00 mov (%rax),%eax + 6634d127: 85 c0 test %eax,%eax + 6634d129: 75 2e jne 6634d159 + 6634d12b: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634d12f: 48 8b 0d fa 97 00 00 mov 0x97fa(%rip),%rcx # 66356930 + 6634d136: 4c 8b 05 e3 97 00 00 mov 0x97e3(%rip),%r8 # 66356920 + 6634d13d: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634d141: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d145: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634d14b: 48 63 01 movslq (%rcx),%rax + 6634d14e: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634d152: 44 89 09 mov %r9d,(%rcx) + 6634d155: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634d159: 48 83 c4 28 add $0x28,%rsp + 6634d15d: 5b pop %rbx + 6634d15e: 5e pop %rsi + 6634d15f: c3 retq + 6634d160: ba 05 00 00 00 mov $0x5,%edx + 6634d165: 48 83 c4 28 add $0x28,%rsp + 6634d169: 5b pop %rbx + 6634d16a: 5e pop %rsi + 6634d16b: e9 c0 42 ff ff jmpq 66341430 -000000006634df60 : - 6634df60: 57 push %rdi - 6634df61: 56 push %rsi - 6634df62: 53 push %rbx - 6634df63: 48 83 ec 20 sub $0x20,%rsp - 6634df67: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634df6b: 48 8b 50 68 mov 0x68(%rax),%rdx - 6634df6f: 48 89 cb mov %rcx,%rbx - 6634df72: 8b 32 mov (%rdx),%esi - 6634df74: 85 f6 test %esi,%esi - 6634df76: 0f 84 14 02 00 00 je 6634e190 - 6634df7c: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634df80: 8b 0a mov (%rdx),%ecx - 6634df82: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634df86: 8b 12 mov (%rdx),%edx - 6634df88: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634df8b: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634df8f: 8b 09 mov (%rcx),%ecx - 6634df91: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634df94: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634df98: 8b 09 mov (%rcx),%ecx - 6634df9a: 8d 34 ca lea (%rdx,%rcx,8),%esi - 6634df9d: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634dfa1: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634dfa5: 8b 12 mov (%rdx),%edx - 6634dfa7: c1 e2 04 shl $0x4,%edx - 6634dfaa: 01 d6 add %edx,%esi - 6634dfac: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634dfb0: 48 8b 40 40 mov 0x40(%rax),%rax - 6634dfb4: 8b 12 mov (%rdx),%edx - 6634dfb6: c1 e2 05 shl $0x5,%edx - 6634dfb9: 01 f2 add %esi,%edx - 6634dfbb: 8b 31 mov (%rcx),%esi - 6634dfbd: c1 e6 06 shl $0x6,%esi - 6634dfc0: 01 f2 add %esi,%edx - 6634dfc2: 8b 30 mov (%rax),%esi - 6634dfc4: c1 e6 07 shl $0x7,%esi - 6634dfc7: 01 d6 add %edx,%esi - 6634dfc9: 0f 88 71 03 00 00 js 6634e340 - 6634dfcf: 3b 73 38 cmp 0x38(%rbx),%esi - 6634dfd2: 0f 8d 68 03 00 00 jge 6634e340 - 6634dfd8: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634dfdc: 48 63 c6 movslq %esi,%rax - 6634dfdf: 8b 0c 82 mov (%rdx,%rax,4),%ecx - 6634dfe2: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634dfe6: 44 8b 40 24 mov 0x24(%rax),%r8d - 6634dfea: 41 39 c8 cmp %ecx,%r8d - 6634dfed: 74 3f je 6634e02e - 6634dfef: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634dff3: 89 cf mov %ecx,%edi - 6634dff5: 44 29 c7 sub %r8d,%edi - 6634dff8: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634dffc: 41 01 39 add %edi,(%r9) - 6634dfff: 89 48 24 mov %ecx,0x24(%rax) - 6634e002: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634e006: 45 8b 19 mov (%r9),%r11d - 6634e009: 4c 8b 41 48 mov 0x48(%rcx),%r8 - 6634e00d: 31 c9 xor %ecx,%ecx - 6634e00f: 45 85 db test %r11d,%r11d - 6634e012: 0f 9f c1 setg %cl - 6634e015: 41 39 08 cmp %ecx,(%r8) - 6634e018: 74 14 je 6634e02e - 6634e01a: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634e01e: 48 8b 49 48 mov 0x48(%rcx),%rcx - 6634e022: 44 8b 11 mov (%rcx),%r10d - 6634e025: 45 85 d2 test %r10d,%r10d - 6634e028: 0f 84 32 04 00 00 je 6634e460 - 6634e02e: 89 f7 mov %esi,%edi - 6634e030: 81 c7 00 01 00 00 add $0x100,%edi - 6634e036: 0f 88 24 03 00 00 js 6634e360 - 6634e03c: 39 7b 38 cmp %edi,0x38(%rbx) - 6634e03f: 0f 8e 1b 03 00 00 jle 6634e360 - 6634e045: 48 63 ff movslq %edi,%rdi - 6634e048: 44 8b 40 28 mov 0x28(%rax),%r8d - 6634e04c: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634e04f: 44 39 c1 cmp %r8d,%ecx - 6634e052: 74 41 je 6634e095 - 6634e054: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e058: 89 cf mov %ecx,%edi - 6634e05a: 44 29 c7 sub %r8d,%edi - 6634e05d: 45 31 c0 xor %r8d,%r8d - 6634e060: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634e064: 41 01 39 add %edi,(%r9) - 6634e067: 89 48 28 mov %ecx,0x28(%rax) - 6634e06a: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634e06e: 45 8b 09 mov (%r9),%r9d - 6634e071: 48 8b 49 50 mov 0x50(%rcx),%rcx - 6634e075: 45 85 c9 test %r9d,%r9d - 6634e078: 41 0f 9f c0 setg %r8b - 6634e07c: 44 3b 01 cmp (%rcx),%r8d - 6634e07f: 74 14 je 6634e095 - 6634e081: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634e085: 48 8b 49 50 mov 0x50(%rcx),%rcx - 6634e089: 44 8b 01 mov (%rcx),%r8d - 6634e08c: 45 85 c0 test %r8d,%r8d - 6634e08f: 0f 84 8e 03 00 00 je 6634e423 - 6634e095: 89 f7 mov %esi,%edi - 6634e097: 81 c7 00 02 00 00 add $0x200,%edi - 6634e09d: 0f 88 ed 02 00 00 js 6634e390 - 6634e0a3: 3b 7b 38 cmp 0x38(%rbx),%edi - 6634e0a6: 0f 8d e4 02 00 00 jge 6634e390 - 6634e0ac: 48 63 ff movslq %edi,%rdi - 6634e0af: 44 8b 40 2c mov 0x2c(%rax),%r8d - 6634e0b3: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634e0b6: 44 39 c1 cmp %r8d,%ecx - 6634e0b9: 74 3e je 6634e0f9 - 6634e0bb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e0bf: 89 cf mov %ecx,%edi - 6634e0c1: 44 29 c7 sub %r8d,%edi - 6634e0c4: 45 31 c0 xor %r8d,%r8d - 6634e0c7: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634e0cb: 41 01 39 add %edi,(%r9) - 6634e0ce: 89 48 2c mov %ecx,0x2c(%rax) - 6634e0d1: 41 8b 09 mov (%r9),%ecx - 6634e0d4: 85 c9 test %ecx,%ecx - 6634e0d6: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634e0da: 41 0f 9f c0 setg %r8b - 6634e0de: 48 8b 49 58 mov 0x58(%rcx),%rcx - 6634e0e2: 44 3b 01 cmp (%rcx),%r8d - 6634e0e5: 74 12 je 6634e0f9 - 6634e0e7: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634e0eb: 48 8b 49 58 mov 0x58(%rcx),%rcx - 6634e0ef: 8b 39 mov (%rcx),%edi - 6634e0f1: 85 ff test %edi,%edi - 6634e0f3: 0f 84 f7 02 00 00 je 6634e3f0 - 6634e0f9: 81 c6 00 03 00 00 add $0x300,%esi - 6634e0ff: 0f 88 bb 02 00 00 js 6634e3c0 - 6634e105: 3b 73 38 cmp 0x38(%rbx),%esi - 6634e108: 0f 8d b2 02 00 00 jge 6634e3c0 - 6634e10e: 48 63 f6 movslq %esi,%rsi - 6634e111: 8b 48 30 mov 0x30(%rax),%ecx - 6634e114: 8b 14 b2 mov (%rdx,%rsi,4),%edx - 6634e117: 39 ca cmp %ecx,%edx - 6634e119: 74 67 je 6634e182 - 6634e11b: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634e11f: 89 d7 mov %edx,%edi - 6634e121: 29 cf sub %ecx,%edi - 6634e123: 4d 8b 40 60 mov 0x60(%r8),%r8 - 6634e127: 41 01 38 add %edi,(%r8) - 6634e12a: 89 50 30 mov %edx,0x30(%rax) - 6634e12d: 31 d2 xor %edx,%edx - 6634e12f: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634e133: 45 8b 18 mov (%r8),%r11d - 6634e136: 48 8b 40 60 mov 0x60(%rax),%rax - 6634e13a: 45 85 db test %r11d,%r11d - 6634e13d: 0f 9f c2 setg %dl - 6634e140: 3b 10 cmp (%rax),%edx - 6634e142: 74 3e je 6634e182 - 6634e144: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634e148: 48 8b 40 60 mov 0x60(%rax),%rax - 6634e14c: 44 8b 10 mov (%rax),%r10d - 6634e14f: 45 85 d2 test %r10d,%r10d - 6634e152: 75 2e jne 6634e182 - 6634e154: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634e158: 48 8b 0d d1 97 00 00 mov 0x97d1(%rip),%rcx # 66357930 - 6634e15f: 4c 8b 05 ba 97 00 00 mov 0x97ba(%rip),%r8 # 66357920 - 6634e166: 48 8b 50 60 mov 0x60(%rax),%rdx - 6634e16a: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e16e: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634e174: 48 63 01 movslq (%rcx),%rax - 6634e177: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634e17b: 44 89 09 mov %r9d,(%rcx) - 6634e17e: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634e182: 48 83 c4 20 add $0x20,%rsp - 6634e186: 5b pop %rbx - 6634e187: 5e pop %rsi - 6634e188: 5f pop %rdi - 6634e189: c3 retq - 6634e18a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 6634e190: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634e194: 4c 8b 15 85 97 00 00 mov 0x9785(%rip),%r10 # 66357920 - 6634e19b: 48 8b 0d 8e 97 00 00 mov 0x978e(%rip),%rcx # 66357930 - 6634e1a2: 44 8b 42 24 mov 0x24(%rdx),%r8d - 6634e1a6: 45 85 c0 test %r8d,%r8d - 6634e1a9: 74 5a je 6634e205 - 6634e1ab: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e1af: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634e1b3: 45 29 01 sub %r8d,(%r9) - 6634e1b6: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 6634e1bd: 45 8b 09 mov (%r9),%r9d - 6634e1c0: 4c 8b 40 48 mov 0x48(%rax),%r8 - 6634e1c4: 45 85 c9 test %r9d,%r9d - 6634e1c7: 41 0f 9f c1 setg %r9b - 6634e1cb: 45 0f b6 c9 movzbl %r9b,%r9d - 6634e1cf: 45 3b 08 cmp (%r8),%r9d - 6634e1d2: 74 31 je 6634e205 - 6634e1d4: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e1d8: 4d 8b 40 48 mov 0x48(%r8),%r8 - 6634e1dc: 45 8b 00 mov (%r8),%r8d - 6634e1df: 45 85 c0 test %r8d,%r8d - 6634e1e2: 75 21 jne 6634e205 - 6634e1e4: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e1e8: 4d 8b 48 48 mov 0x48(%r8),%r9 - 6634e1ec: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e1f0: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e1f7: 4c 63 01 movslq (%rcx),%r8 - 6634e1fa: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e1fe: 44 89 19 mov %r11d,(%rcx) - 6634e201: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e205: 44 8b 42 28 mov 0x28(%rdx),%r8d - 6634e209: 45 85 c0 test %r8d,%r8d - 6634e20c: 74 57 je 6634e265 - 6634e20e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e212: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634e216: 45 29 01 sub %r8d,(%r9) - 6634e219: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634e220: 41 8b 39 mov (%r9),%edi - 6634e223: 45 31 c9 xor %r9d,%r9d - 6634e226: 4c 8b 40 50 mov 0x50(%rax),%r8 - 6634e22a: 85 ff test %edi,%edi - 6634e22c: 41 0f 9f c1 setg %r9b - 6634e230: 45 3b 08 cmp (%r8),%r9d - 6634e233: 74 30 je 6634e265 - 6634e235: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e239: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634e23d: 41 8b 30 mov (%r8),%esi - 6634e240: 85 f6 test %esi,%esi - 6634e242: 75 21 jne 6634e265 - 6634e244: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e248: 4d 8b 48 50 mov 0x50(%r8),%r9 - 6634e24c: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e250: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e257: 4c 63 01 movslq (%rcx),%r8 - 6634e25a: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e25e: 44 89 19 mov %r11d,(%rcx) - 6634e261: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e265: 44 8b 42 2c mov 0x2c(%rdx),%r8d - 6634e269: 45 85 c0 test %r8d,%r8d - 6634e26c: 74 59 je 6634e2c7 - 6634e26e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e272: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634e276: 45 29 01 sub %r8d,(%r9) - 6634e279: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) - 6634e280: 45 8b 19 mov (%r9),%r11d - 6634e283: 45 31 c9 xor %r9d,%r9d - 6634e286: 4c 8b 40 58 mov 0x58(%rax),%r8 - 6634e28a: 45 85 db test %r11d,%r11d - 6634e28d: 41 0f 9f c1 setg %r9b - 6634e291: 45 3b 08 cmp (%r8),%r9d - 6634e294: 74 31 je 6634e2c7 - 6634e296: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e29a: 4d 8b 40 58 mov 0x58(%r8),%r8 - 6634e29e: 45 8b 08 mov (%r8),%r9d - 6634e2a1: 45 85 c9 test %r9d,%r9d - 6634e2a4: 75 21 jne 6634e2c7 - 6634e2a6: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e2aa: 4d 8b 48 58 mov 0x58(%r8),%r9 - 6634e2ae: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e2b2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e2b9: 4c 63 01 movslq (%rcx),%r8 - 6634e2bc: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e2c0: 44 89 19 mov %r11d,(%rcx) - 6634e2c3: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e2c7: 44 8b 42 30 mov 0x30(%rdx),%r8d - 6634e2cb: 45 85 c0 test %r8d,%r8d - 6634e2ce: 0f 84 ae fe ff ff je 6634e182 - 6634e2d4: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e2d8: 48 8b 40 60 mov 0x60(%rax),%rax - 6634e2dc: 4d 8b 49 60 mov 0x60(%r9),%r9 +000000006634d170 : + 6634d170: 56 push %rsi + 6634d171: 53 push %rbx + 6634d172: 48 83 ec 28 sub $0x28,%rsp + 6634d176: 48 8b 51 10 mov 0x10(%rcx),%rdx + 6634d17a: 48 8b 42 40 mov 0x40(%rdx),%rax + 6634d17e: 48 89 ce mov %rcx,%rsi + 6634d181: 44 8b 00 mov (%rax),%r8d + 6634d184: 45 85 c0 test %r8d,%r8d + 6634d187: 0f 84 d7 00 00 00 je 6634d264 + 6634d18d: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d191: 8b 08 mov (%rax),%ecx + 6634d193: 48 8b 42 08 mov 0x8(%rdx),%rax + 6634d197: 8b 00 mov (%rax),%eax + 6634d199: 8d 04 48 lea (%rax,%rcx,2),%eax + 6634d19c: 48 8b 4a 18 mov 0x18(%rdx),%rcx + 6634d1a0: 8b 09 mov (%rcx),%ecx + 6634d1a2: 8d 04 88 lea (%rax,%rcx,4),%eax + 6634d1a5: 48 8b 4a 20 mov 0x20(%rdx),%rcx + 6634d1a9: 8b 09 mov (%rcx),%ecx + 6634d1ab: 8d 04 c8 lea (%rax,%rcx,8),%eax + 6634d1ae: 48 8b 4a 28 mov 0x28(%rdx),%rcx + 6634d1b2: 8b 19 mov (%rcx),%ebx + 6634d1b4: c1 e3 04 shl $0x4,%ebx + 6634d1b7: 01 c3 add %eax,%ebx + 6634d1b9: 48 8b 42 30 mov 0x30(%rdx),%rax + 6634d1bd: 8b 00 mov (%rax),%eax + 6634d1bf: c1 e0 05 shl $0x5,%eax + 6634d1c2: 01 c3 add %eax,%ebx + 6634d1c4: 78 05 js 6634d1cb + 6634d1c6: 3b 5e 38 cmp 0x38(%rsi),%ebx + 6634d1c9: 7c 19 jl 6634d1e4 + 6634d1cb: 48 8d 15 2e 5e 00 00 lea 0x5e2e(%rip),%rdx # 66353000 <.rdata> + 6634d1d2: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634d1d8: 48 8d 0d 31 5e 00 00 lea 0x5e31(%rip),%rcx # 66353010 <.rdata+0x10> + 6634d1df: e8 1c 3e 00 00 callq 66351000 <_assert> + 6634d1e4: 48 8b 56 40 mov 0x40(%rsi),%rdx + 6634d1e8: 48 63 c3 movslq %ebx,%rax + 6634d1eb: 8b 04 82 mov (%rdx,%rax,4),%eax + 6634d1ee: 48 8b 56 08 mov 0x8(%rsi),%rdx + 6634d1f2: 8b 4a 1c mov 0x1c(%rdx),%ecx + 6634d1f5: 39 c8 cmp %ecx,%eax + 6634d1f7: 74 64 je 6634d25d + 6634d1f9: 4c 8b 46 18 mov 0x18(%rsi),%r8 + 6634d1fd: 89 c3 mov %eax,%ebx + 6634d1ff: 29 cb sub %ecx,%ebx + 6634d201: 4d 8b 40 38 mov 0x38(%r8),%r8 + 6634d205: 41 01 18 add %ebx,(%r8) + 6634d208: 89 42 1c mov %eax,0x1c(%rdx) + 6634d20b: 31 d2 xor %edx,%edx + 6634d20d: 48 8b 46 10 mov 0x10(%rsi),%rax + 6634d211: 41 8b 08 mov (%r8),%ecx + 6634d214: 48 8b 40 38 mov 0x38(%rax),%rax + 6634d218: 85 c9 test %ecx,%ecx + 6634d21a: 0f 9f c2 setg %dl + 6634d21d: 3b 10 cmp (%rax),%edx + 6634d21f: 74 3c je 6634d25d + 6634d221: 48 8b 46 20 mov 0x20(%rsi),%rax + 6634d225: 48 8b 40 38 mov 0x38(%rax),%rax + 6634d229: 8b 00 mov (%rax),%eax + 6634d22b: 85 c0 test %eax,%eax + 6634d22d: 75 2e jne 6634d25d + 6634d22f: 48 8b 46 28 mov 0x28(%rsi),%rax + 6634d233: 48 8b 0d f6 96 00 00 mov 0x96f6(%rip),%rcx # 66356930 + 6634d23a: 4c 8b 05 df 96 00 00 mov 0x96df(%rip),%r8 # 66356920 + 6634d241: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634d245: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d249: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634d24f: 48 63 01 movslq (%rcx),%rax + 6634d252: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634d256: 44 89 09 mov %r9d,(%rcx) + 6634d259: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634d25d: 48 83 c4 28 add $0x28,%rsp + 6634d261: 5b pop %rbx + 6634d262: 5e pop %rsi + 6634d263: c3 retq + 6634d264: ba 07 00 00 00 mov $0x7,%edx + 6634d269: 48 83 c4 28 add $0x28,%rsp + 6634d26d: 5b pop %rbx + 6634d26e: 5e pop %rsi + 6634d26f: e9 bc 41 ff ff jmpq 66341430 + 6634d274: 66 90 xchg %ax,%ax + 6634d276: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634d27d: 00 00 00 + +000000006634d280 : + 6634d280: 41 55 push %r13 + 6634d282: 41 54 push %r12 + 6634d284: 55 push %rbp + 6634d285: 57 push %rdi + 6634d286: 56 push %rsi + 6634d287: 53 push %rbx + 6634d288: 48 83 ec 28 sub $0x28,%rsp + 6634d28c: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634d290: 48 8b 50 48 mov 0x48(%rax),%rdx + 6634d294: 48 89 cb mov %rcx,%rbx + 6634d297: 44 8b 2a mov (%rdx),%r13d + 6634d29a: 45 85 ed test %r13d,%r13d + 6634d29d: 0f 84 8d 00 00 00 je 6634d330 + 6634d2a3: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634d2a7: be 05 00 00 00 mov $0x5,%esi + 6634d2ac: 4c 8d 2d 4d 5d 00 00 lea 0x5d4d(%rip),%r13 # 66353000 <.rdata> + 6634d2b3: 4c 8d 25 56 5d 00 00 lea 0x5d56(%rip),%r12 # 66353010 <.rdata+0x10> + 6634d2ba: 8b 0a mov (%rdx),%ecx + 6634d2bc: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634d2c0: 8b 12 mov (%rdx),%edx + 6634d2c2: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634d2c5: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634d2c9: 48 8b 40 20 mov 0x20(%rax),%rax + 6634d2cd: 8b 09 mov (%rcx),%ecx + 6634d2cf: 8b 00 mov (%rax),%eax + 6634d2d1: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634d2d4: 8d 3c c2 lea (%rdx,%rax,8),%edi + 6634d2d7: 48 63 ef movslq %edi,%rbp + 6634d2da: 48 c1 e5 02 shl $0x2,%rbp + 6634d2de: 85 ff test %edi,%edi + 6634d2e0: 78 05 js 6634d2e7 + 6634d2e2: 3b 7b 38 cmp 0x38(%rbx),%edi + 6634d2e5: 7c 11 jl 6634d2f8 + 6634d2e7: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634d2ed: 4c 89 ea mov %r13,%rdx + 6634d2f0: 4c 89 e1 mov %r12,%rcx + 6634d2f3: e8 08 3d 00 00 callq 66351000 <_assert> + 6634d2f8: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634d2fc: 89 f2 mov %esi,%edx + 6634d2fe: 48 89 d9 mov %rbx,%rcx + 6634d301: 83 c6 01 add $0x1,%esi + 6634d304: 83 c7 10 add $0x10,%edi + 6634d307: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634d30b: 48 83 c5 40 add $0x40,%rbp + 6634d30f: e8 9c 40 ff ff callq 663413b0 + 6634d314: 83 fe 09 cmp $0x9,%esi + 6634d317: 75 c5 jne 6634d2de + 6634d319: 48 83 c4 28 add $0x28,%rsp + 6634d31d: 5b pop %rbx + 6634d31e: 5e pop %rsi + 6634d31f: 5f pop %rdi + 6634d320: 5d pop %rbp + 6634d321: 41 5c pop %r12 + 6634d323: 41 5d pop %r13 + 6634d325: c3 retq + 6634d326: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634d32d: 00 00 00 + 6634d330: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634d334: 4c 8b 15 e5 95 00 00 mov 0x95e5(%rip),%r10 # 66356920 + 6634d33b: 48 8b 0d ee 95 00 00 mov 0x95ee(%rip),%rcx # 66356930 + 6634d342: 44 8b 42 14 mov 0x14(%rdx),%r8d + 6634d346: 45 85 c0 test %r8d,%r8d + 6634d349: 74 58 je 6634d3a3 + 6634d34b: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d34f: 4d 8b 49 28 mov 0x28(%r9),%r9 + 6634d353: 45 29 01 sub %r8d,(%r9) + 6634d356: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) + 6634d35d: 45 8b 21 mov (%r9),%r12d + 6634d360: 45 31 c9 xor %r9d,%r9d + 6634d363: 4c 8b 40 28 mov 0x28(%rax),%r8 + 6634d367: 45 85 e4 test %r12d,%r12d + 6634d36a: 41 0f 9f c1 setg %r9b + 6634d36e: 45 3b 08 cmp (%r8),%r9d + 6634d371: 74 30 je 6634d3a3 + 6634d373: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634d377: 4d 8b 40 28 mov 0x28(%r8),%r8 + 6634d37b: 41 8b 28 mov (%r8),%ebp + 6634d37e: 85 ed test %ebp,%ebp + 6634d380: 75 21 jne 6634d3a3 + 6634d382: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634d386: 4d 8b 48 28 mov 0x28(%r8),%r9 + 6634d38a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634d38e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634d395: 4c 63 01 movslq (%rcx),%r8 + 6634d398: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634d39c: 44 89 19 mov %r11d,(%rcx) + 6634d39f: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634d3a3: 44 8b 42 18 mov 0x18(%rdx),%r8d + 6634d3a7: 45 85 c0 test %r8d,%r8d + 6634d3aa: 74 57 je 6634d403 + 6634d3ac: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d3b0: 4d 8b 49 30 mov 0x30(%r9),%r9 + 6634d3b4: 45 29 01 sub %r8d,(%r9) + 6634d3b7: c7 42 18 00 00 00 00 movl $0x0,0x18(%rdx) + 6634d3be: 41 8b 39 mov (%r9),%edi + 6634d3c1: 45 31 c9 xor %r9d,%r9d + 6634d3c4: 4c 8b 40 30 mov 0x30(%rax),%r8 + 6634d3c8: 85 ff test %edi,%edi + 6634d3ca: 41 0f 9f c1 setg %r9b + 6634d3ce: 45 3b 08 cmp (%r8),%r9d + 6634d3d1: 74 30 je 6634d403 + 6634d3d3: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634d3d7: 4d 8b 40 30 mov 0x30(%r8),%r8 + 6634d3db: 41 8b 30 mov (%r8),%esi + 6634d3de: 85 f6 test %esi,%esi + 6634d3e0: 75 21 jne 6634d403 + 6634d3e2: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634d3e6: 4d 8b 48 30 mov 0x30(%r8),%r9 + 6634d3ea: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634d3ee: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634d3f5: 4c 63 01 movslq (%rcx),%r8 + 6634d3f8: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634d3fc: 44 89 19 mov %r11d,(%rcx) + 6634d3ff: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634d403: 44 8b 42 1c mov 0x1c(%rdx),%r8d + 6634d407: 45 85 c0 test %r8d,%r8d + 6634d40a: 74 59 je 6634d465 + 6634d40c: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d410: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634d414: 45 29 01 sub %r8d,(%r9) + 6634d417: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 6634d41e: 45 8b 19 mov (%r9),%r11d + 6634d421: 45 31 c9 xor %r9d,%r9d + 6634d424: 4c 8b 40 38 mov 0x38(%rax),%r8 + 6634d428: 45 85 db test %r11d,%r11d + 6634d42b: 41 0f 9f c1 setg %r9b + 6634d42f: 45 3b 08 cmp (%r8),%r9d + 6634d432: 74 31 je 6634d465 + 6634d434: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634d438: 4d 8b 40 38 mov 0x38(%r8),%r8 + 6634d43c: 45 8b 08 mov (%r8),%r9d + 6634d43f: 45 85 c9 test %r9d,%r9d + 6634d442: 75 21 jne 6634d465 + 6634d444: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634d448: 4d 8b 48 38 mov 0x38(%r8),%r9 + 6634d44c: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634d450: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634d457: 4c 63 01 movslq (%rcx),%r8 + 6634d45a: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634d45e: 44 89 19 mov %r11d,(%rcx) + 6634d461: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634d465: 44 8b 42 20 mov 0x20(%rdx),%r8d + 6634d469: 45 85 c0 test %r8d,%r8d + 6634d46c: 0f 84 a7 fe ff ff je 6634d319 + 6634d472: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d476: 48 8b 40 40 mov 0x40(%rax),%rax + 6634d47a: 4d 8b 49 40 mov 0x40(%r9),%r9 + 6634d47e: 45 29 01 sub %r8d,(%r9) + 6634d481: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 6634d488: 31 d2 xor %edx,%edx + 6634d48a: 45 8b 01 mov (%r9),%r8d + 6634d48d: 45 85 c0 test %r8d,%r8d + 6634d490: 0f 9f c2 setg %dl + 6634d493: 3b 10 cmp (%rax),%edx + 6634d495: 0f 84 7e fe ff ff je 6634d319 + 6634d49b: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634d49f: 48 8b 40 40 mov 0x40(%rax),%rax + 6634d4a3: 8b 00 mov (%rax),%eax + 6634d4a5: 85 c0 test %eax,%eax + 6634d4a7: 0f 85 6c fe ff ff jne 6634d319 + 6634d4ad: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634d4b1: 48 8b 50 40 mov 0x40(%rax),%rdx + 6634d4b5: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d4b9: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634d4bf: 48 63 01 movslq (%rcx),%rax + 6634d4c2: 44 8d 40 01 lea 0x1(%rax),%r8d + 6634d4c6: 44 89 01 mov %r8d,(%rcx) + 6634d4c9: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634d4cd: 48 83 c4 28 add $0x28,%rsp + 6634d4d1: 5b pop %rbx + 6634d4d2: 5e pop %rsi + 6634d4d3: 5f pop %rdi + 6634d4d4: 5d pop %rbp + 6634d4d5: 41 5c pop %r12 + 6634d4d7: 41 5d pop %r13 + 6634d4d9: c3 retq + 6634d4da: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + +000000006634d4e0 : + 6634d4e0: 41 55 push %r13 + 6634d4e2: 41 54 push %r12 + 6634d4e4: 55 push %rbp + 6634d4e5: 57 push %rdi + 6634d4e6: 56 push %rsi + 6634d4e7: 53 push %rbx + 6634d4e8: 48 83 ec 28 sub $0x28,%rsp + 6634d4ec: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634d4f0: 48 8b 50 58 mov 0x58(%rax),%rdx + 6634d4f4: 48 89 cb mov %rcx,%rbx + 6634d4f7: 44 8b 2a mov (%rdx),%r13d + 6634d4fa: 45 85 ed test %r13d,%r13d + 6634d4fd: 0f 84 9d 00 00 00 je 6634d5a0 + 6634d503: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634d507: bf 07 00 00 00 mov $0x7,%edi + 6634d50c: 4c 8d 2d ed 5a 00 00 lea 0x5aed(%rip),%r13 # 66353000 <.rdata> + 6634d513: 4c 8d 25 f6 5a 00 00 lea 0x5af6(%rip),%r12 # 66353010 <.rdata+0x10> + 6634d51a: 8b 0a mov (%rdx),%ecx + 6634d51c: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634d520: 8b 12 mov (%rdx),%edx + 6634d522: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634d525: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634d529: 8b 09 mov (%rcx),%ecx + 6634d52b: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634d52e: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634d532: 8b 09 mov (%rcx),%ecx + 6634d534: 8d 14 ca lea (%rdx,%rcx,8),%edx + 6634d537: 48 8b 48 28 mov 0x28(%rax),%rcx + 6634d53b: 48 8b 40 30 mov 0x30(%rax),%rax + 6634d53f: 8b 31 mov (%rcx),%esi + 6634d541: c1 e6 04 shl $0x4,%esi + 6634d544: 01 f2 add %esi,%edx + 6634d546: 8b 30 mov (%rax),%esi + 6634d548: c1 e6 05 shl $0x5,%esi + 6634d54b: 01 d6 add %edx,%esi + 6634d54d: 48 63 ee movslq %esi,%rbp + 6634d550: 48 c1 e5 02 shl $0x2,%rbp + 6634d554: 85 f6 test %esi,%esi + 6634d556: 78 05 js 6634d55d + 6634d558: 3b 73 38 cmp 0x38(%rbx),%esi + 6634d55b: 7c 11 jl 6634d56e + 6634d55d: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634d563: 4c 89 ea mov %r13,%rdx + 6634d566: 4c 89 e1 mov %r12,%rcx + 6634d569: e8 92 3a 00 00 callq 66351000 <_assert> + 6634d56e: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634d572: 89 fa mov %edi,%edx + 6634d574: 48 89 d9 mov %rbx,%rcx + 6634d577: 83 c7 01 add $0x1,%edi + 6634d57a: 83 c6 40 add $0x40,%esi + 6634d57d: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634d581: 48 81 c5 00 01 00 00 add $0x100,%rbp + 6634d588: e8 23 3e ff ff callq 663413b0 + 6634d58d: 83 ff 0b cmp $0xb,%edi + 6634d590: 75 c2 jne 6634d554 + 6634d592: 48 83 c4 28 add $0x28,%rsp + 6634d596: 5b pop %rbx + 6634d597: 5e pop %rsi + 6634d598: 5f pop %rdi + 6634d599: 5d pop %rbp + 6634d59a: 41 5c pop %r12 + 6634d59c: 41 5d pop %r13 + 6634d59e: c3 retq + 6634d59f: 90 nop + 6634d5a0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634d5a4: 4c 8b 15 75 93 00 00 mov 0x9375(%rip),%r10 # 66356920 + 6634d5ab: 48 8b 0d 7e 93 00 00 mov 0x937e(%rip),%rcx # 66356930 + 6634d5b2: 44 8b 42 1c mov 0x1c(%rdx),%r8d + 6634d5b6: 45 85 c0 test %r8d,%r8d + 6634d5b9: 74 58 je 6634d613 + 6634d5bb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d5bf: 4d 8b 49 38 mov 0x38(%r9),%r9 + 6634d5c3: 45 29 01 sub %r8d,(%r9) + 6634d5c6: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) + 6634d5cd: 45 8b 21 mov (%r9),%r12d + 6634d5d0: 45 31 c9 xor %r9d,%r9d + 6634d5d3: 4c 8b 40 38 mov 0x38(%rax),%r8 + 6634d5d7: 45 85 e4 test %r12d,%r12d + 6634d5da: 41 0f 9f c1 setg %r9b + 6634d5de: 45 3b 08 cmp (%r8),%r9d + 6634d5e1: 74 30 je 6634d613 + 6634d5e3: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634d5e7: 4d 8b 40 38 mov 0x38(%r8),%r8 + 6634d5eb: 41 8b 28 mov (%r8),%ebp + 6634d5ee: 85 ed test %ebp,%ebp + 6634d5f0: 75 21 jne 6634d613 + 6634d5f2: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634d5f6: 4d 8b 48 38 mov 0x38(%r8),%r9 + 6634d5fa: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634d5fe: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634d605: 4c 63 01 movslq (%rcx),%r8 + 6634d608: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634d60c: 44 89 19 mov %r11d,(%rcx) + 6634d60f: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634d613: 44 8b 42 20 mov 0x20(%rdx),%r8d + 6634d617: 45 85 c0 test %r8d,%r8d + 6634d61a: 74 57 je 6634d673 + 6634d61c: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d620: 4d 8b 49 40 mov 0x40(%r9),%r9 + 6634d624: 45 29 01 sub %r8d,(%r9) + 6634d627: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) + 6634d62e: 41 8b 39 mov (%r9),%edi + 6634d631: 45 31 c9 xor %r9d,%r9d + 6634d634: 4c 8b 40 40 mov 0x40(%rax),%r8 + 6634d638: 85 ff test %edi,%edi + 6634d63a: 41 0f 9f c1 setg %r9b + 6634d63e: 45 3b 08 cmp (%r8),%r9d + 6634d641: 74 30 je 6634d673 + 6634d643: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634d647: 4d 8b 40 40 mov 0x40(%r8),%r8 + 6634d64b: 41 8b 30 mov (%r8),%esi + 6634d64e: 85 f6 test %esi,%esi + 6634d650: 75 21 jne 6634d673 + 6634d652: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634d656: 4d 8b 48 40 mov 0x40(%r8),%r9 + 6634d65a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634d65e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634d665: 4c 63 01 movslq (%rcx),%r8 + 6634d668: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634d66c: 44 89 19 mov %r11d,(%rcx) + 6634d66f: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634d673: 44 8b 42 24 mov 0x24(%rdx),%r8d + 6634d677: 45 85 c0 test %r8d,%r8d + 6634d67a: 74 59 je 6634d6d5 + 6634d67c: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d680: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634d684: 45 29 01 sub %r8d,(%r9) + 6634d687: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 6634d68e: 45 8b 19 mov (%r9),%r11d + 6634d691: 45 31 c9 xor %r9d,%r9d + 6634d694: 4c 8b 40 48 mov 0x48(%rax),%r8 + 6634d698: 45 85 db test %r11d,%r11d + 6634d69b: 41 0f 9f c1 setg %r9b + 6634d69f: 45 3b 08 cmp (%r8),%r9d + 6634d6a2: 74 31 je 6634d6d5 + 6634d6a4: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634d6a8: 4d 8b 40 48 mov 0x48(%r8),%r8 + 6634d6ac: 45 8b 08 mov (%r8),%r9d + 6634d6af: 45 85 c9 test %r9d,%r9d + 6634d6b2: 75 21 jne 6634d6d5 + 6634d6b4: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634d6b8: 4d 8b 48 48 mov 0x48(%r8),%r9 + 6634d6bc: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634d6c0: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634d6c7: 4c 63 01 movslq (%rcx),%r8 + 6634d6ca: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634d6ce: 44 89 19 mov %r11d,(%rcx) + 6634d6d1: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634d6d5: 44 8b 42 28 mov 0x28(%rdx),%r8d + 6634d6d9: 45 85 c0 test %r8d,%r8d + 6634d6dc: 0f 84 b0 fe ff ff je 6634d592 + 6634d6e2: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d6e6: 48 8b 40 50 mov 0x50(%rax),%rax + 6634d6ea: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634d6ee: 45 29 01 sub %r8d,(%r9) + 6634d6f1: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634d6f8: 31 d2 xor %edx,%edx + 6634d6fa: 45 8b 01 mov (%r9),%r8d + 6634d6fd: 45 85 c0 test %r8d,%r8d + 6634d700: 0f 9f c2 setg %dl + 6634d703: 3b 10 cmp (%rax),%edx + 6634d705: 0f 84 87 fe ff ff je 6634d592 + 6634d70b: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634d70f: 48 8b 40 50 mov 0x50(%rax),%rax + 6634d713: 8b 00 mov (%rax),%eax + 6634d715: 85 c0 test %eax,%eax + 6634d717: 0f 85 75 fe ff ff jne 6634d592 + 6634d71d: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634d721: 48 8b 50 50 mov 0x50(%rax),%rdx + 6634d725: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d729: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634d72f: 48 63 01 movslq (%rcx),%rax + 6634d732: 44 8d 40 01 lea 0x1(%rax),%r8d + 6634d736: 44 89 01 mov %r8d,(%rcx) + 6634d739: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634d73d: 48 83 c4 28 add $0x28,%rsp + 6634d741: 5b pop %rbx + 6634d742: 5e pop %rsi + 6634d743: 5f pop %rdi + 6634d744: 5d pop %rbp + 6634d745: 41 5c pop %r12 + 6634d747: 41 5d pop %r13 + 6634d749: c3 retq + 6634d74a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + +000000006634d750 : + 6634d750: 41 55 push %r13 + 6634d752: 41 54 push %r12 + 6634d754: 55 push %rbp + 6634d755: 57 push %rdi + 6634d756: 56 push %rsi + 6634d757: 53 push %rbx + 6634d758: 48 83 ec 28 sub $0x28,%rsp + 6634d75c: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634d760: 48 8b 50 70 mov 0x70(%rax),%rdx + 6634d764: 48 89 cb mov %rcx,%rbx + 6634d767: 44 8b 2a mov (%rdx),%r13d + 6634d76a: 45 85 ed test %r13d,%r13d + 6634d76d: 0f 84 c0 00 00 00 je 6634d833 + 6634d773: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634d777: bf 0a 00 00 00 mov $0xa,%edi + 6634d77c: 4c 8d 2d 7d 58 00 00 lea 0x587d(%rip),%r13 # 66353000 <.rdata> + 6634d783: 4c 8d 25 86 58 00 00 lea 0x5886(%rip),%r12 # 66353010 <.rdata+0x10> + 6634d78a: 8b 0a mov (%rdx),%ecx + 6634d78c: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634d790: 8b 12 mov (%rdx),%edx + 6634d792: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634d795: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634d799: 8b 09 mov (%rcx),%ecx + 6634d79b: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634d79e: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634d7a2: 8b 09 mov (%rcx),%ecx + 6634d7a4: 8d 14 ca lea (%rdx,%rcx,8),%edx + 6634d7a7: 48 8b 48 28 mov 0x28(%rax),%rcx + 6634d7ab: 8b 31 mov (%rcx),%esi + 6634d7ad: 48 8b 48 40 mov 0x40(%rax),%rcx + 6634d7b1: c1 e6 04 shl $0x4,%esi + 6634d7b4: 01 d6 add %edx,%esi + 6634d7b6: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634d7ba: 8b 12 mov (%rdx),%edx + 6634d7bc: c1 e2 05 shl $0x5,%edx + 6634d7bf: 01 d6 add %edx,%esi + 6634d7c1: 48 8b 50 38 mov 0x38(%rax),%rdx + 6634d7c5: 48 8b 40 48 mov 0x48(%rax),%rax + 6634d7c9: 8b 12 mov (%rdx),%edx + 6634d7cb: c1 e2 06 shl $0x6,%edx + 6634d7ce: 01 f2 add %esi,%edx + 6634d7d0: 8b 31 mov (%rcx),%esi + 6634d7d2: c1 e6 07 shl $0x7,%esi + 6634d7d5: 01 f2 add %esi,%edx + 6634d7d7: 8b 30 mov (%rax),%esi + 6634d7d9: c1 e6 08 shl $0x8,%esi + 6634d7dc: 01 d6 add %edx,%esi + 6634d7de: 48 63 ee movslq %esi,%rbp + 6634d7e1: 48 c1 e5 02 shl $0x2,%rbp + 6634d7e5: 85 f6 test %esi,%esi + 6634d7e7: 78 05 js 6634d7ee + 6634d7e9: 3b 73 38 cmp 0x38(%rbx),%esi + 6634d7ec: 7c 11 jl 6634d7ff + 6634d7ee: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634d7f4: 4c 89 ea mov %r13,%rdx + 6634d7f7: 4c 89 e1 mov %r12,%rcx + 6634d7fa: e8 01 38 00 00 callq 66351000 <_assert> + 6634d7ff: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634d803: 89 fa mov %edi,%edx + 6634d805: 48 89 d9 mov %rbx,%rcx + 6634d808: 83 c7 01 add $0x1,%edi + 6634d80b: 81 c6 00 02 00 00 add $0x200,%esi + 6634d811: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634d815: 48 81 c5 00 08 00 00 add $0x800,%rbp + 6634d81c: e8 8f 3b ff ff callq 663413b0 + 6634d821: 83 ff 0e cmp $0xe,%edi + 6634d824: 75 bf jne 6634d7e5 + 6634d826: 48 83 c4 28 add $0x28,%rsp + 6634d82a: 5b pop %rbx + 6634d82b: 5e pop %rsi + 6634d82c: 5f pop %rdi + 6634d82d: 5d pop %rbp + 6634d82e: 41 5c pop %r12 + 6634d830: 41 5d pop %r13 + 6634d832: c3 retq + 6634d833: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634d837: 4c 8b 15 e2 90 00 00 mov 0x90e2(%rip),%r10 # 66356920 + 6634d83e: 48 8b 0d eb 90 00 00 mov 0x90eb(%rip),%rcx # 66356930 + 6634d845: 44 8b 42 28 mov 0x28(%rdx),%r8d + 6634d849: 45 85 c0 test %r8d,%r8d + 6634d84c: 74 58 je 6634d8a6 + 6634d84e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d852: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634d856: 45 29 01 sub %r8d,(%r9) + 6634d859: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634d860: 45 8b 21 mov (%r9),%r12d + 6634d863: 45 31 c9 xor %r9d,%r9d + 6634d866: 4c 8b 40 50 mov 0x50(%rax),%r8 + 6634d86a: 45 85 e4 test %r12d,%r12d + 6634d86d: 41 0f 9f c1 setg %r9b + 6634d871: 45 3b 08 cmp (%r8),%r9d + 6634d874: 74 30 je 6634d8a6 + 6634d876: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634d87a: 4d 8b 40 50 mov 0x50(%r8),%r8 + 6634d87e: 41 8b 28 mov (%r8),%ebp + 6634d881: 85 ed test %ebp,%ebp + 6634d883: 75 21 jne 6634d8a6 + 6634d885: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634d889: 4d 8b 48 50 mov 0x50(%r8),%r9 + 6634d88d: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634d891: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634d898: 4c 63 01 movslq (%rcx),%r8 + 6634d89b: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634d89f: 44 89 19 mov %r11d,(%rcx) + 6634d8a2: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634d8a6: 44 8b 42 2c mov 0x2c(%rdx),%r8d + 6634d8aa: 45 85 c0 test %r8d,%r8d + 6634d8ad: 74 57 je 6634d906 + 6634d8af: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d8b3: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634d8b7: 45 29 01 sub %r8d,(%r9) + 6634d8ba: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634d8c1: 41 8b 39 mov (%r9),%edi + 6634d8c4: 45 31 c9 xor %r9d,%r9d + 6634d8c7: 4c 8b 40 58 mov 0x58(%rax),%r8 + 6634d8cb: 85 ff test %edi,%edi + 6634d8cd: 41 0f 9f c1 setg %r9b + 6634d8d1: 45 3b 08 cmp (%r8),%r9d + 6634d8d4: 74 30 je 6634d906 + 6634d8d6: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634d8da: 4d 8b 40 58 mov 0x58(%r8),%r8 + 6634d8de: 41 8b 30 mov (%r8),%esi + 6634d8e1: 85 f6 test %esi,%esi + 6634d8e3: 75 21 jne 6634d906 + 6634d8e5: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634d8e9: 4d 8b 48 58 mov 0x58(%r8),%r9 + 6634d8ed: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634d8f1: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634d8f8: 4c 63 01 movslq (%rcx),%r8 + 6634d8fb: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634d8ff: 44 89 19 mov %r11d,(%rcx) + 6634d902: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634d906: 44 8b 42 30 mov 0x30(%rdx),%r8d + 6634d90a: 45 85 c0 test %r8d,%r8d + 6634d90d: 74 59 je 6634d968 + 6634d90f: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d913: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634d917: 45 29 01 sub %r8d,(%r9) + 6634d91a: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634d921: 45 8b 19 mov (%r9),%r11d + 6634d924: 45 31 c9 xor %r9d,%r9d + 6634d927: 4c 8b 40 60 mov 0x60(%rax),%r8 + 6634d92b: 45 85 db test %r11d,%r11d + 6634d92e: 41 0f 9f c1 setg %r9b + 6634d932: 45 3b 08 cmp (%r8),%r9d + 6634d935: 74 31 je 6634d968 + 6634d937: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634d93b: 4d 8b 40 60 mov 0x60(%r8),%r8 + 6634d93f: 45 8b 08 mov (%r8),%r9d + 6634d942: 45 85 c9 test %r9d,%r9d + 6634d945: 75 21 jne 6634d968 + 6634d947: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634d94b: 4d 8b 48 60 mov 0x60(%r8),%r9 + 6634d94f: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634d953: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634d95a: 4c 63 01 movslq (%rcx),%r8 + 6634d95d: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634d961: 44 89 19 mov %r11d,(%rcx) + 6634d964: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634d968: 44 8b 42 34 mov 0x34(%rdx),%r8d + 6634d96c: 45 85 c0 test %r8d,%r8d + 6634d96f: 0f 84 b1 fe ff ff je 6634d826 + 6634d975: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634d979: 48 8b 40 68 mov 0x68(%rax),%rax + 6634d97d: 4d 8b 49 68 mov 0x68(%r9),%r9 + 6634d981: 45 29 01 sub %r8d,(%r9) + 6634d984: c7 42 34 00 00 00 00 movl $0x0,0x34(%rdx) + 6634d98b: 31 d2 xor %edx,%edx + 6634d98d: 45 8b 01 mov (%r9),%r8d + 6634d990: 45 85 c0 test %r8d,%r8d + 6634d993: 0f 9f c2 setg %dl + 6634d996: 3b 10 cmp (%rax),%edx + 6634d998: 0f 84 88 fe ff ff je 6634d826 + 6634d99e: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634d9a2: 48 8b 40 68 mov 0x68(%rax),%rax + 6634d9a6: 8b 00 mov (%rax),%eax + 6634d9a8: 85 c0 test %eax,%eax + 6634d9aa: 0f 85 76 fe ff ff jne 6634d826 + 6634d9b0: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634d9b4: 48 8b 50 68 mov 0x68(%rax),%rdx + 6634d9b8: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634d9bc: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634d9c2: 48 63 01 movslq (%rcx),%rax + 6634d9c5: 44 8d 40 01 lea 0x1(%rax),%r8d + 6634d9c9: 44 89 01 mov %r8d,(%rcx) + 6634d9cc: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634d9d0: 48 83 c4 28 add $0x28,%rsp + 6634d9d4: 5b pop %rbx + 6634d9d5: 5e pop %rsi + 6634d9d6: 5f pop %rdi + 6634d9d7: 5d pop %rbp + 6634d9d8: 41 5c pop %r12 + 6634d9da: 41 5d pop %r13 + 6634d9dc: c3 retq + 6634d9dd: 0f 1f 00 nopl (%rax) + +000000006634d9e0 : + 6634d9e0: 41 55 push %r13 + 6634d9e2: 41 54 push %r12 + 6634d9e4: 55 push %rbp + 6634d9e5: 57 push %rdi + 6634d9e6: 56 push %rsi + 6634d9e7: 53 push %rbx + 6634d9e8: 48 83 ec 28 sub $0x28,%rsp + 6634d9ec: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634d9f0: 48 8b 50 68 mov 0x68(%rax),%rdx + 6634d9f4: 48 89 cb mov %rcx,%rbx + 6634d9f7: 44 8b 2a mov (%rdx),%r13d + 6634d9fa: 45 85 ed test %r13d,%r13d + 6634d9fd: 0f 84 bd 00 00 00 je 6634dac0 + 6634da03: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634da07: bf 09 00 00 00 mov $0x9,%edi + 6634da0c: 4c 8d 2d ed 55 00 00 lea 0x55ed(%rip),%r13 # 66353000 <.rdata> + 6634da13: 4c 8d 25 f6 55 00 00 lea 0x55f6(%rip),%r12 # 66353010 <.rdata+0x10> + 6634da1a: 8b 0a mov (%rdx),%ecx + 6634da1c: 48 8b 50 08 mov 0x8(%rax),%rdx + 6634da20: 8b 12 mov (%rdx),%edx + 6634da22: 8d 14 4a lea (%rdx,%rcx,2),%edx + 6634da25: 48 8b 48 18 mov 0x18(%rax),%rcx + 6634da29: 8b 09 mov (%rcx),%ecx + 6634da2b: 8d 14 8a lea (%rdx,%rcx,4),%edx + 6634da2e: 48 8b 48 20 mov 0x20(%rax),%rcx + 6634da32: 8b 09 mov (%rcx),%ecx + 6634da34: 8d 34 ca lea (%rdx,%rcx,8),%esi + 6634da37: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634da3b: 48 8b 48 38 mov 0x38(%rax),%rcx + 6634da3f: 8b 12 mov (%rdx),%edx + 6634da41: c1 e2 04 shl $0x4,%edx + 6634da44: 01 d6 add %edx,%esi + 6634da46: 48 8b 50 30 mov 0x30(%rax),%rdx + 6634da4a: 48 8b 40 40 mov 0x40(%rax),%rax + 6634da4e: 8b 12 mov (%rdx),%edx + 6634da50: c1 e2 05 shl $0x5,%edx + 6634da53: 01 f2 add %esi,%edx + 6634da55: 8b 31 mov (%rcx),%esi + 6634da57: c1 e6 06 shl $0x6,%esi + 6634da5a: 01 f2 add %esi,%edx + 6634da5c: 8b 30 mov (%rax),%esi + 6634da5e: c1 e6 07 shl $0x7,%esi + 6634da61: 01 d6 add %edx,%esi + 6634da63: 48 63 ee movslq %esi,%rbp + 6634da66: 48 c1 e5 02 shl $0x2,%rbp + 6634da6a: 85 f6 test %esi,%esi + 6634da6c: 78 05 js 6634da73 + 6634da6e: 3b 73 38 cmp 0x38(%rbx),%esi + 6634da71: 7c 11 jl 6634da84 + 6634da73: 41 b8 8f 00 00 00 mov $0x8f,%r8d + 6634da79: 4c 89 ea mov %r13,%rdx + 6634da7c: 4c 89 e1 mov %r12,%rcx + 6634da7f: e8 7c 35 00 00 callq 66351000 <_assert> + 6634da84: 48 8b 43 40 mov 0x40(%rbx),%rax + 6634da88: 89 fa mov %edi,%edx + 6634da8a: 48 89 d9 mov %rbx,%rcx + 6634da8d: 83 c7 01 add $0x1,%edi + 6634da90: 81 c6 00 01 00 00 add $0x100,%esi + 6634da96: 44 8b 04 28 mov (%rax,%rbp,1),%r8d + 6634da9a: 48 81 c5 00 04 00 00 add $0x400,%rbp + 6634daa1: e8 0a 39 ff ff callq 663413b0 + 6634daa6: 83 ff 0d cmp $0xd,%edi + 6634daa9: 75 bf jne 6634da6a + 6634daab: 48 83 c4 28 add $0x28,%rsp + 6634daaf: 5b pop %rbx + 6634dab0: 5e pop %rsi + 6634dab1: 5f pop %rdi + 6634dab2: 5d pop %rbp + 6634dab3: 41 5c pop %r12 + 6634dab5: 41 5d pop %r13 + 6634dab7: c3 retq + 6634dab8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634dabf: 00 + 6634dac0: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634dac4: 4c 8b 15 55 8e 00 00 mov 0x8e55(%rip),%r10 # 66356920 + 6634dacb: 48 8b 0d 5e 8e 00 00 mov 0x8e5e(%rip),%rcx # 66356930 + 6634dad2: 44 8b 42 24 mov 0x24(%rdx),%r8d + 6634dad6: 45 85 c0 test %r8d,%r8d + 6634dad9: 74 58 je 6634db33 + 6634dadb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634dadf: 4d 8b 49 48 mov 0x48(%r9),%r9 + 6634dae3: 45 29 01 sub %r8d,(%r9) + 6634dae6: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) + 6634daed: 45 8b 21 mov (%r9),%r12d + 6634daf0: 45 31 c9 xor %r9d,%r9d + 6634daf3: 4c 8b 40 48 mov 0x48(%rax),%r8 + 6634daf7: 45 85 e4 test %r12d,%r12d + 6634dafa: 41 0f 9f c1 setg %r9b + 6634dafe: 45 3b 08 cmp (%r8),%r9d + 6634db01: 74 30 je 6634db33 + 6634db03: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634db07: 4d 8b 40 48 mov 0x48(%r8),%r8 + 6634db0b: 41 8b 28 mov (%r8),%ebp + 6634db0e: 85 ed test %ebp,%ebp + 6634db10: 75 21 jne 6634db33 + 6634db12: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634db16: 4d 8b 48 48 mov 0x48(%r8),%r9 + 6634db1a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634db1e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634db25: 4c 63 01 movslq (%rcx),%r8 + 6634db28: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634db2c: 44 89 19 mov %r11d,(%rcx) + 6634db2f: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634db33: 44 8b 42 28 mov 0x28(%rdx),%r8d + 6634db37: 45 85 c0 test %r8d,%r8d + 6634db3a: 74 57 je 6634db93 + 6634db3c: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634db40: 4d 8b 49 50 mov 0x50(%r9),%r9 + 6634db44: 45 29 01 sub %r8d,(%r9) + 6634db47: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) + 6634db4e: 41 8b 39 mov (%r9),%edi + 6634db51: 45 31 c9 xor %r9d,%r9d + 6634db54: 4c 8b 40 50 mov 0x50(%rax),%r8 + 6634db58: 85 ff test %edi,%edi + 6634db5a: 41 0f 9f c1 setg %r9b + 6634db5e: 45 3b 08 cmp (%r8),%r9d + 6634db61: 74 30 je 6634db93 + 6634db63: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634db67: 4d 8b 40 50 mov 0x50(%r8),%r8 + 6634db6b: 41 8b 30 mov (%r8),%esi + 6634db6e: 85 f6 test %esi,%esi + 6634db70: 75 21 jne 6634db93 + 6634db72: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634db76: 4d 8b 48 50 mov 0x50(%r8),%r9 + 6634db7a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634db7e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634db85: 4c 63 01 movslq (%rcx),%r8 + 6634db88: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634db8c: 44 89 19 mov %r11d,(%rcx) + 6634db8f: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634db93: 44 8b 42 2c mov 0x2c(%rdx),%r8d + 6634db97: 45 85 c0 test %r8d,%r8d + 6634db9a: 74 59 je 6634dbf5 + 6634db9c: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634dba0: 4d 8b 49 58 mov 0x58(%r9),%r9 + 6634dba4: 45 29 01 sub %r8d,(%r9) + 6634dba7: c7 42 2c 00 00 00 00 movl $0x0,0x2c(%rdx) + 6634dbae: 45 8b 19 mov (%r9),%r11d + 6634dbb1: 45 31 c9 xor %r9d,%r9d + 6634dbb4: 4c 8b 40 58 mov 0x58(%rax),%r8 + 6634dbb8: 45 85 db test %r11d,%r11d + 6634dbbb: 41 0f 9f c1 setg %r9b + 6634dbbf: 45 3b 08 cmp (%r8),%r9d + 6634dbc2: 74 31 je 6634dbf5 + 6634dbc4: 4c 8b 43 20 mov 0x20(%rbx),%r8 + 6634dbc8: 4d 8b 40 58 mov 0x58(%r8),%r8 + 6634dbcc: 45 8b 08 mov (%r8),%r9d + 6634dbcf: 45 85 c9 test %r9d,%r9d + 6634dbd2: 75 21 jne 6634dbf5 + 6634dbd4: 4c 8b 43 28 mov 0x28(%rbx),%r8 + 6634dbd8: 4d 8b 48 58 mov 0x58(%r8),%r9 + 6634dbdc: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634dbe0: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634dbe7: 4c 63 01 movslq (%rcx),%r8 + 6634dbea: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634dbee: 44 89 19 mov %r11d,(%rcx) + 6634dbf1: 4f 89 0c c2 mov %r9,(%r10,%r8,8) + 6634dbf5: 44 8b 42 30 mov 0x30(%rdx),%r8d + 6634dbf9: 45 85 c0 test %r8d,%r8d + 6634dbfc: 0f 84 a9 fe ff ff je 6634daab + 6634dc02: 4c 8b 4b 18 mov 0x18(%rbx),%r9 + 6634dc06: 48 8b 40 60 mov 0x60(%rax),%rax + 6634dc0a: 4d 8b 49 60 mov 0x60(%r9),%r9 + 6634dc0e: 45 29 01 sub %r8d,(%r9) + 6634dc11: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) + 6634dc18: 31 d2 xor %edx,%edx + 6634dc1a: 45 8b 01 mov (%r9),%r8d + 6634dc1d: 45 85 c0 test %r8d,%r8d + 6634dc20: 0f 9f c2 setg %dl + 6634dc23: 3b 10 cmp (%rax),%edx + 6634dc25: 0f 84 80 fe ff ff je 6634daab + 6634dc2b: 48 8b 43 20 mov 0x20(%rbx),%rax + 6634dc2f: 48 8b 40 60 mov 0x60(%rax),%rax + 6634dc33: 8b 00 mov (%rax),%eax + 6634dc35: 85 c0 test %eax,%eax + 6634dc37: 0f 85 6e fe ff ff jne 6634daab + 6634dc3d: 48 8b 43 28 mov 0x28(%rbx),%rax + 6634dc41: 48 8b 50 60 mov 0x60(%rax),%rdx + 6634dc45: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634dc49: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634dc4f: 48 63 01 movslq (%rcx),%rax + 6634dc52: 44 8d 40 01 lea 0x1(%rax),%r8d + 6634dc56: 44 89 01 mov %r8d,(%rcx) + 6634dc59: 49 89 14 c2 mov %rdx,(%r10,%rax,8) + 6634dc5d: 48 83 c4 28 add $0x28,%rsp + 6634dc61: 5b pop %rbx + 6634dc62: 5e pop %rsi + 6634dc63: 5f pop %rdi + 6634dc64: 5d pop %rbp + 6634dc65: 41 5c pop %r12 + 6634dc67: 41 5d pop %r13 + 6634dc69: c3 retq + 6634dc6a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + +000000006634dc70 : + 6634dc70: 41 56 push %r14 + 6634dc72: 57 push %rdi + 6634dc73: 56 push %rsi + 6634dc74: 53 push %rbx + 6634dc75: 48 8b 3d a4 8c 00 00 mov 0x8ca4(%rip),%rdi # 66356920 + 6634dc7c: 48 8b 35 ad 8c 00 00 mov 0x8cad(%rip),%rsi # 66356930 + 6634dc83: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634dc87: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634dc8b: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax + 6634dc92: 8b 00 mov (%rax),%eax + 6634dc94: 85 c0 test %eax,%eax + 6634dc96: 0f 84 a4 00 00 00 je 6634dd40 + 6634dc9c: 31 c0 xor %eax,%eax + 6634dc9e: 66 90 xchg %ax,%ax + 6634dca0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634dca5: 44 8b 8c 02 04 01 00 mov 0x104(%rdx,%rax,1),%r9d + 6634dcac: 00 + 6634dcad: 45 8b 00 mov (%r8),%r8d + 6634dcb0: 45 39 c8 cmp %r9d,%r8d + 6634dcb3: 74 74 je 6634dd29 + 6634dcb5: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634dcb9: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634dcbd: 45 89 c6 mov %r8d,%r14d + 6634dcc0: 45 29 ce sub %r9d,%r14d + 6634dcc3: 45 31 c9 xor %r9d,%r9d + 6634dcc6: 4d 8b 94 1a 08 02 00 mov 0x208(%r10,%rbx,1),%r10 + 6634dccd: 00 + 6634dcce: 45 01 32 add %r14d,(%r10) + 6634dcd1: 44 89 84 02 04 01 00 mov %r8d,0x104(%rdx,%rax,1) + 6634dcd8: 00 + 6634dcd9: 45 8b 32 mov (%r10),%r14d + 6634dcdc: 4d 8b 84 43 08 02 00 mov 0x208(%r11,%rax,2),%r8 + 6634dce3: 00 + 6634dce4: 45 85 f6 test %r14d,%r14d + 6634dce7: 41 0f 9f c1 setg %r9b + 6634dceb: 45 3b 08 cmp (%r8),%r9d + 6634dcee: 74 39 je 6634dd29 + 6634dcf0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634dcf4: 4d 8b 84 18 08 02 00 mov 0x208(%r8,%rbx,1),%r8 + 6634dcfb: 00 + 6634dcfc: 45 8b 10 mov (%r8),%r10d + 6634dcff: 45 85 d2 test %r10d,%r10d + 6634dd02: 75 25 jne 6634dd29 + 6634dd04: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634dd08: 4d 8b 8c 18 08 02 00 mov 0x208(%r8,%rbx,1),%r9 + 6634dd0f: 00 + 6634dd10: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634dd14: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634dd1b: 4c 63 06 movslq (%rsi),%r8 + 6634dd1e: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634dd22: 44 89 16 mov %r10d,(%rsi) + 6634dd25: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634dd29: 48 83 c0 04 add $0x4,%rax + 6634dd2d: 48 3d 00 01 00 00 cmp $0x100,%rax + 6634dd33: 0f 85 67 ff ff ff jne 6634dca0 + 6634dd39: 5b pop %rbx + 6634dd3a: 5e pop %rsi + 6634dd3b: 5f pop %rdi + 6634dd3c: 41 5e pop %r14 + 6634dd3e: c3 retq + 6634dd3f: 90 nop + 6634dd40: 48 81 c2 04 01 00 00 add $0x104,%rdx + 6634dd47: b8 08 02 00 00 mov $0x208,%eax + 6634dd4c: 0f 1f 40 00 nopl 0x0(%rax) + 6634dd50: 44 8b 02 mov (%rdx),%r8d + 6634dd53: 45 85 c0 test %r8d,%r8d + 6634dd56: 74 59 je 6634ddb1 + 6634dd58: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634dd5c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634dd60: 45 29 01 sub %r8d,(%r9) + 6634dd63: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634dd69: 45 8b 09 mov (%r9),%r9d + 6634dd6c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634dd70: 45 85 c9 test %r9d,%r9d + 6634dd73: 41 0f 9f c1 setg %r9b + 6634dd77: 45 0f b6 c9 movzbl %r9b,%r9d + 6634dd7b: 45 3b 08 cmp (%r8),%r9d + 6634dd7e: 74 31 je 6634ddb1 + 6634dd80: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634dd84: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634dd88: 45 8b 00 mov (%r8),%r8d + 6634dd8b: 45 85 c0 test %r8d,%r8d + 6634dd8e: 75 21 jne 6634ddb1 + 6634dd90: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634dd94: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634dd98: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634dd9c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634dda3: 4c 63 06 movslq (%rsi),%r8 + 6634dda6: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634ddaa: 44 89 16 mov %r10d,(%rsi) + 6634ddad: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634ddb1: 48 83 c0 08 add $0x8,%rax + 6634ddb5: 48 83 c2 04 add $0x4,%rdx + 6634ddb9: 48 3d 08 04 00 00 cmp $0x408,%rax + 6634ddbf: 75 8f jne 6634dd50 + 6634ddc1: 5b pop %rbx + 6634ddc2: 5e pop %rsi + 6634ddc3: 5f pop %rdi + 6634ddc4: 41 5e pop %r14 + 6634ddc6: c3 retq + 6634ddc7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634ddce: 00 00 + +000000006634ddd0 : + 6634ddd0: 41 56 push %r14 + 6634ddd2: 57 push %rdi + 6634ddd3: 56 push %rsi + 6634ddd4: 53 push %rbx + 6634ddd5: 48 8b 3d 44 8b 00 00 mov 0x8b44(%rip),%rdi # 66356920 + 6634dddc: 48 8b 35 4d 8b 00 00 mov 0x8b4d(%rip),%rsi # 66356930 + 6634dde3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634dde7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634ddeb: 49 8b 83 08 04 00 00 mov 0x408(%r11),%rax + 6634ddf2: 8b 00 mov (%rax),%eax + 6634ddf4: 85 c0 test %eax,%eax + 6634ddf6: 0f 84 a4 00 00 00 je 6634dea0 + 6634ddfc: 31 c0 xor %eax,%eax + 6634ddfe: 66 90 xchg %ax,%ax + 6634de00: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634de05: 44 8b 8c 02 04 01 00 mov 0x104(%rdx,%rax,1),%r9d + 6634de0c: 00 + 6634de0d: 45 8b 00 mov (%r8),%r8d + 6634de10: 45 39 c8 cmp %r9d,%r8d + 6634de13: 74 74 je 6634de89 + 6634de15: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634de19: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634de1d: 45 89 c6 mov %r8d,%r14d + 6634de20: 45 29 ce sub %r9d,%r14d + 6634de23: 45 31 c9 xor %r9d,%r9d + 6634de26: 4d 8b 94 1a 08 02 00 mov 0x208(%r10,%rbx,1),%r10 + 6634de2d: 00 + 6634de2e: 45 01 32 add %r14d,(%r10) + 6634de31: 44 89 84 02 04 01 00 mov %r8d,0x104(%rdx,%rax,1) + 6634de38: 00 + 6634de39: 45 8b 32 mov (%r10),%r14d + 6634de3c: 4d 8b 84 43 08 02 00 mov 0x208(%r11,%rax,2),%r8 + 6634de43: 00 + 6634de44: 45 85 f6 test %r14d,%r14d + 6634de47: 41 0f 9f c1 setg %r9b + 6634de4b: 45 3b 08 cmp (%r8),%r9d + 6634de4e: 74 39 je 6634de89 + 6634de50: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634de54: 4d 8b 84 18 08 02 00 mov 0x208(%r8,%rbx,1),%r8 + 6634de5b: 00 + 6634de5c: 45 8b 10 mov (%r8),%r10d + 6634de5f: 45 85 d2 test %r10d,%r10d + 6634de62: 75 25 jne 6634de89 + 6634de64: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634de68: 4d 8b 8c 18 08 02 00 mov 0x208(%r8,%rbx,1),%r9 + 6634de6f: 00 + 6634de70: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634de74: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634de7b: 4c 63 06 movslq (%rsi),%r8 + 6634de7e: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634de82: 44 89 16 mov %r10d,(%rsi) + 6634de85: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634de89: 48 83 c0 04 add $0x4,%rax + 6634de8d: 48 3d 00 01 00 00 cmp $0x100,%rax + 6634de93: 0f 85 67 ff ff ff jne 6634de00 + 6634de99: 5b pop %rbx + 6634de9a: 5e pop %rsi + 6634de9b: 5f pop %rdi + 6634de9c: 41 5e pop %r14 + 6634de9e: c3 retq + 6634de9f: 90 nop + 6634dea0: 48 81 c2 04 01 00 00 add $0x104,%rdx + 6634dea7: b8 08 02 00 00 mov $0x208,%eax + 6634deac: 0f 1f 40 00 nopl 0x0(%rax) + 6634deb0: 44 8b 02 mov (%rdx),%r8d + 6634deb3: 45 85 c0 test %r8d,%r8d + 6634deb6: 74 59 je 6634df11 + 6634deb8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634debc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634dec0: 45 29 01 sub %r8d,(%r9) + 6634dec3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634dec9: 45 8b 09 mov (%r9),%r9d + 6634decc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634ded0: 45 85 c9 test %r9d,%r9d + 6634ded3: 41 0f 9f c1 setg %r9b + 6634ded7: 45 0f b6 c9 movzbl %r9b,%r9d + 6634dedb: 45 3b 08 cmp (%r8),%r9d + 6634dede: 74 31 je 6634df11 + 6634dee0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634dee4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634dee8: 45 8b 00 mov (%r8),%r8d + 6634deeb: 45 85 c0 test %r8d,%r8d + 6634deee: 75 21 jne 6634df11 + 6634def0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634def4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634def8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634defc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634df03: 4c 63 06 movslq (%rsi),%r8 + 6634df06: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634df0a: 44 89 16 mov %r10d,(%rsi) + 6634df0d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634df11: 48 83 c0 08 add $0x8,%rax + 6634df15: 48 83 c2 04 add $0x4,%rdx + 6634df19: 48 3d 08 04 00 00 cmp $0x408,%rax + 6634df1f: 75 8f jne 6634deb0 + 6634df21: 5b pop %rbx + 6634df22: 5e pop %rsi + 6634df23: 5f pop %rdi + 6634df24: 41 5e pop %r14 + 6634df26: c3 retq + 6634df27: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634df2e: 00 00 + +000000006634df30 : + 6634df30: 41 56 push %r14 + 6634df32: 57 push %rdi + 6634df33: 56 push %rsi + 6634df34: 53 push %rbx + 6634df35: 48 8b 3d e4 89 00 00 mov 0x89e4(%rip),%rdi # 66356920 + 6634df3c: 48 8b 35 ed 89 00 00 mov 0x89ed(%rip),%rsi # 66356930 + 6634df43: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634df47: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634df4b: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax + 6634df52: 8b 00 mov (%rax),%eax + 6634df54: 85 c0 test %eax,%eax + 6634df56: 0f 84 a4 00 00 00 je 6634e000 + 6634df5c: 31 c0 xor %eax,%eax + 6634df5e: 66 90 xchg %ax,%ax + 6634df60: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634df65: 44 8b 8c 02 c4 00 00 mov 0xc4(%rdx,%rax,1),%r9d + 6634df6c: 00 + 6634df6d: 45 8b 00 mov (%r8),%r8d + 6634df70: 45 39 c8 cmp %r9d,%r8d + 6634df73: 74 74 je 6634dfe9 + 6634df75: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634df79: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634df7d: 45 89 c6 mov %r8d,%r14d + 6634df80: 45 29 ce sub %r9d,%r14d + 6634df83: 45 31 c9 xor %r9d,%r9d + 6634df86: 4d 8b 94 1a 88 01 00 mov 0x188(%r10,%rbx,1),%r10 + 6634df8d: 00 + 6634df8e: 45 01 32 add %r14d,(%r10) + 6634df91: 44 89 84 02 c4 00 00 mov %r8d,0xc4(%rdx,%rax,1) + 6634df98: 00 + 6634df99: 45 8b 32 mov (%r10),%r14d + 6634df9c: 4d 8b 84 43 88 01 00 mov 0x188(%r11,%rax,2),%r8 + 6634dfa3: 00 + 6634dfa4: 45 85 f6 test %r14d,%r14d + 6634dfa7: 41 0f 9f c1 setg %r9b + 6634dfab: 45 3b 08 cmp (%r8),%r9d + 6634dfae: 74 39 je 6634dfe9 + 6634dfb0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634dfb4: 4d 8b 84 18 88 01 00 mov 0x188(%r8,%rbx,1),%r8 + 6634dfbb: 00 + 6634dfbc: 45 8b 10 mov (%r8),%r10d + 6634dfbf: 45 85 d2 test %r10d,%r10d + 6634dfc2: 75 25 jne 6634dfe9 + 6634dfc4: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634dfc8: 4d 8b 8c 18 88 01 00 mov 0x188(%r8,%rbx,1),%r9 + 6634dfcf: 00 + 6634dfd0: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634dfd4: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634dfdb: 4c 63 06 movslq (%rsi),%r8 + 6634dfde: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634dfe2: 44 89 16 mov %r10d,(%rsi) + 6634dfe5: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634dfe9: 48 83 c0 04 add $0x4,%rax + 6634dfed: 48 3d c0 00 00 00 cmp $0xc0,%rax + 6634dff3: 0f 85 67 ff ff ff jne 6634df60 + 6634dff9: 5b pop %rbx + 6634dffa: 5e pop %rsi + 6634dffb: 5f pop %rdi + 6634dffc: 41 5e pop %r14 + 6634dffe: c3 retq + 6634dfff: 90 nop + 6634e000: 48 81 c2 c4 00 00 00 add $0xc4,%rdx + 6634e007: b8 88 01 00 00 mov $0x188,%eax + 6634e00c: 0f 1f 40 00 nopl 0x0(%rax) + 6634e010: 44 8b 02 mov (%rdx),%r8d + 6634e013: 45 85 c0 test %r8d,%r8d + 6634e016: 74 59 je 6634e071 + 6634e018: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634e01c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634e020: 45 29 01 sub %r8d,(%r9) + 6634e023: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634e029: 45 8b 09 mov (%r9),%r9d + 6634e02c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634e030: 45 85 c9 test %r9d,%r9d + 6634e033: 41 0f 9f c1 setg %r9b + 6634e037: 45 0f b6 c9 movzbl %r9b,%r9d + 6634e03b: 45 3b 08 cmp (%r8),%r9d + 6634e03e: 74 31 je 6634e071 + 6634e040: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e044: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634e048: 45 8b 00 mov (%r8),%r8d + 6634e04b: 45 85 c0 test %r8d,%r8d + 6634e04e: 75 21 jne 6634e071 + 6634e050: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e054: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634e058: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e05c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e063: 4c 63 06 movslq (%rsi),%r8 + 6634e066: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e06a: 44 89 16 mov %r10d,(%rsi) + 6634e06d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e071: 48 83 c0 08 add $0x8,%rax + 6634e075: 48 83 c2 04 add $0x4,%rdx + 6634e079: 48 3d 08 03 00 00 cmp $0x308,%rax + 6634e07f: 75 8f jne 6634e010 + 6634e081: 5b pop %rbx + 6634e082: 5e pop %rsi + 6634e083: 5f pop %rdi + 6634e084: 41 5e pop %r14 + 6634e086: c3 retq + 6634e087: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e08e: 00 00 + +000000006634e090 : + 6634e090: 41 56 push %r14 + 6634e092: 57 push %rdi + 6634e093: 56 push %rsi + 6634e094: 53 push %rbx + 6634e095: 48 8b 3d 84 88 00 00 mov 0x8884(%rip),%rdi # 66356920 + 6634e09c: 48 8b 35 8d 88 00 00 mov 0x888d(%rip),%rsi # 66356930 + 6634e0a3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634e0a7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634e0ab: 49 8b 83 08 03 00 00 mov 0x308(%r11),%rax + 6634e0b2: 8b 00 mov (%rax),%eax + 6634e0b4: 85 c0 test %eax,%eax + 6634e0b6: 0f 84 a4 00 00 00 je 6634e160 + 6634e0bc: 31 c0 xor %eax,%eax + 6634e0be: 66 90 xchg %ax,%ax + 6634e0c0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634e0c5: 44 8b 8c 02 c4 00 00 mov 0xc4(%rdx,%rax,1),%r9d + 6634e0cc: 00 + 6634e0cd: 45 8b 00 mov (%r8),%r8d + 6634e0d0: 45 39 c8 cmp %r9d,%r8d + 6634e0d3: 74 74 je 6634e149 + 6634e0d5: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634e0d9: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634e0dd: 45 89 c6 mov %r8d,%r14d + 6634e0e0: 45 29 ce sub %r9d,%r14d + 6634e0e3: 45 31 c9 xor %r9d,%r9d + 6634e0e6: 4d 8b 94 1a 88 01 00 mov 0x188(%r10,%rbx,1),%r10 + 6634e0ed: 00 + 6634e0ee: 45 01 32 add %r14d,(%r10) + 6634e0f1: 44 89 84 02 c4 00 00 mov %r8d,0xc4(%rdx,%rax,1) + 6634e0f8: 00 + 6634e0f9: 45 8b 32 mov (%r10),%r14d + 6634e0fc: 4d 8b 84 43 88 01 00 mov 0x188(%r11,%rax,2),%r8 + 6634e103: 00 + 6634e104: 45 85 f6 test %r14d,%r14d + 6634e107: 41 0f 9f c1 setg %r9b + 6634e10b: 45 3b 08 cmp (%r8),%r9d + 6634e10e: 74 39 je 6634e149 + 6634e110: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e114: 4d 8b 84 18 88 01 00 mov 0x188(%r8,%rbx,1),%r8 + 6634e11b: 00 + 6634e11c: 45 8b 10 mov (%r8),%r10d + 6634e11f: 45 85 d2 test %r10d,%r10d + 6634e122: 75 25 jne 6634e149 + 6634e124: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e128: 4d 8b 8c 18 88 01 00 mov 0x188(%r8,%rbx,1),%r9 + 6634e12f: 00 + 6634e130: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e134: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e13b: 4c 63 06 movslq (%rsi),%r8 + 6634e13e: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e142: 44 89 16 mov %r10d,(%rsi) + 6634e145: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e149: 48 83 c0 04 add $0x4,%rax + 6634e14d: 48 3d c0 00 00 00 cmp $0xc0,%rax + 6634e153: 0f 85 67 ff ff ff jne 6634e0c0 + 6634e159: 5b pop %rbx + 6634e15a: 5e pop %rsi + 6634e15b: 5f pop %rdi + 6634e15c: 41 5e pop %r14 + 6634e15e: c3 retq + 6634e15f: 90 nop + 6634e160: 48 81 c2 c4 00 00 00 add $0xc4,%rdx + 6634e167: b8 88 01 00 00 mov $0x188,%eax + 6634e16c: 0f 1f 40 00 nopl 0x0(%rax) + 6634e170: 44 8b 02 mov (%rdx),%r8d + 6634e173: 45 85 c0 test %r8d,%r8d + 6634e176: 74 59 je 6634e1d1 + 6634e178: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634e17c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634e180: 45 29 01 sub %r8d,(%r9) + 6634e183: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634e189: 45 8b 09 mov (%r9),%r9d + 6634e18c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634e190: 45 85 c9 test %r9d,%r9d + 6634e193: 41 0f 9f c1 setg %r9b + 6634e197: 45 0f b6 c9 movzbl %r9b,%r9d + 6634e19b: 45 3b 08 cmp (%r8),%r9d + 6634e19e: 74 31 je 6634e1d1 + 6634e1a0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e1a4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634e1a8: 45 8b 00 mov (%r8),%r8d + 6634e1ab: 45 85 c0 test %r8d,%r8d + 6634e1ae: 75 21 jne 6634e1d1 + 6634e1b0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e1b4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634e1b8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e1bc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e1c3: 4c 63 06 movslq (%rsi),%r8 + 6634e1c6: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e1ca: 44 89 16 mov %r10d,(%rsi) + 6634e1cd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e1d1: 48 83 c0 08 add $0x8,%rax + 6634e1d5: 48 83 c2 04 add $0x4,%rdx + 6634e1d9: 48 3d 08 03 00 00 cmp $0x308,%rax + 6634e1df: 75 8f jne 6634e170 + 6634e1e1: 5b pop %rbx + 6634e1e2: 5e pop %rsi + 6634e1e3: 5f pop %rdi + 6634e1e4: 41 5e pop %r14 + 6634e1e6: c3 retq + 6634e1e7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e1ee: 00 00 + +000000006634e1f0 : + 6634e1f0: 41 56 push %r14 + 6634e1f2: 57 push %rdi + 6634e1f3: 56 push %rsi + 6634e1f4: 53 push %rbx + 6634e1f5: 48 8b 3d 24 87 00 00 mov 0x8724(%rip),%rdi # 66356920 + 6634e1fc: 48 8b 35 2d 87 00 00 mov 0x872d(%rip),%rsi # 66356930 + 6634e203: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634e207: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634e20b: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax + 6634e212: 8b 00 mov (%rax),%eax + 6634e214: 85 c0 test %eax,%eax + 6634e216: 0f 84 a4 00 00 00 je 6634e2c0 + 6634e21c: 31 c0 xor %eax,%eax + 6634e21e: 66 90 xchg %ax,%ax + 6634e220: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634e225: 44 8b 8c 02 84 00 00 mov 0x84(%rdx,%rax,1),%r9d + 6634e22c: 00 + 6634e22d: 45 8b 00 mov (%r8),%r8d + 6634e230: 45 39 c8 cmp %r9d,%r8d + 6634e233: 74 74 je 6634e2a9 + 6634e235: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634e239: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634e23d: 45 89 c6 mov %r8d,%r14d + 6634e240: 45 29 ce sub %r9d,%r14d + 6634e243: 45 31 c9 xor %r9d,%r9d + 6634e246: 4d 8b 94 1a 08 01 00 mov 0x108(%r10,%rbx,1),%r10 + 6634e24d: 00 + 6634e24e: 45 01 32 add %r14d,(%r10) + 6634e251: 44 89 84 02 84 00 00 mov %r8d,0x84(%rdx,%rax,1) + 6634e258: 00 + 6634e259: 45 8b 32 mov (%r10),%r14d + 6634e25c: 4d 8b 84 43 08 01 00 mov 0x108(%r11,%rax,2),%r8 + 6634e263: 00 + 6634e264: 45 85 f6 test %r14d,%r14d + 6634e267: 41 0f 9f c1 setg %r9b + 6634e26b: 45 3b 08 cmp (%r8),%r9d + 6634e26e: 74 39 je 6634e2a9 + 6634e270: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e274: 4d 8b 84 18 08 01 00 mov 0x108(%r8,%rbx,1),%r8 + 6634e27b: 00 + 6634e27c: 45 8b 10 mov (%r8),%r10d + 6634e27f: 45 85 d2 test %r10d,%r10d + 6634e282: 75 25 jne 6634e2a9 + 6634e284: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e288: 4d 8b 8c 18 08 01 00 mov 0x108(%r8,%rbx,1),%r9 + 6634e28f: 00 + 6634e290: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e294: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e29b: 4c 63 06 movslq (%rsi),%r8 + 6634e29e: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e2a2: 44 89 16 mov %r10d,(%rsi) + 6634e2a5: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e2a9: 48 83 c0 04 add $0x4,%rax + 6634e2ad: 48 3d 80 00 00 00 cmp $0x80,%rax + 6634e2b3: 0f 85 67 ff ff ff jne 6634e220 + 6634e2b9: 5b pop %rbx + 6634e2ba: 5e pop %rsi + 6634e2bb: 5f pop %rdi + 6634e2bc: 41 5e pop %r14 + 6634e2be: c3 retq + 6634e2bf: 90 nop + 6634e2c0: 48 81 c2 84 00 00 00 add $0x84,%rdx + 6634e2c7: b8 08 01 00 00 mov $0x108,%eax + 6634e2cc: 0f 1f 40 00 nopl 0x0(%rax) + 6634e2d0: 44 8b 02 mov (%rdx),%r8d + 6634e2d3: 45 85 c0 test %r8d,%r8d + 6634e2d6: 74 59 je 6634e331 + 6634e2d8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634e2dc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 6634e2e0: 45 29 01 sub %r8d,(%r9) - 6634e2e3: c7 42 30 00 00 00 00 movl $0x0,0x30(%rdx) - 6634e2ea: 31 d2 xor %edx,%edx - 6634e2ec: 45 8b 01 mov (%r9),%r8d - 6634e2ef: 45 85 c0 test %r8d,%r8d - 6634e2f2: 0f 9f c2 setg %dl - 6634e2f5: 3b 10 cmp (%rax),%edx - 6634e2f7: 0f 84 85 fe ff ff je 6634e182 - 6634e2fd: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634e301: 48 8b 40 60 mov 0x60(%rax),%rax - 6634e305: 8b 00 mov (%rax),%eax - 6634e307: 85 c0 test %eax,%eax - 6634e309: 0f 85 73 fe ff ff jne 6634e182 - 6634e30f: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634e313: 48 8b 50 60 mov 0x60(%rax),%rdx - 6634e317: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e31b: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634e321: 48 63 01 movslq (%rcx),%rax - 6634e324: 44 8d 40 01 lea 0x1(%rax),%r8d - 6634e328: 44 89 01 mov %r8d,(%rcx) - 6634e32b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634e32f: 48 83 c4 20 add $0x20,%rsp - 6634e333: 5b pop %rbx - 6634e334: 5e pop %rsi - 6634e335: 5f pop %rdi - 6634e336: c3 retq - 6634e337: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634e33e: 00 00 - 6634e340: 48 8d 15 b9 5c 00 00 lea 0x5cb9(%rip),%rdx # 66354000 <.rdata> - 6634e347: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e34d: 48 8d 0d bc 5c 00 00 lea 0x5cbc(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e354: e8 b7 3e 00 00 callq 66352210 <_assert> - 6634e359: e9 7a fc ff ff jmpq 6634dfd8 - 6634e35e: 66 90 xchg %ax,%ax - 6634e360: 48 8d 15 99 5c 00 00 lea 0x5c99(%rip),%rdx # 66354000 <.rdata> - 6634e367: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e36d: 48 8d 0d 9c 5c 00 00 lea 0x5c9c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e374: e8 97 3e 00 00 callq 66352210 <_assert> - 6634e379: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e37d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e381: e9 bf fc ff ff jmpq 6634e045 - 6634e386: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e38d: 00 00 00 - 6634e390: 48 8d 15 69 5c 00 00 lea 0x5c69(%rip),%rdx # 66354000 <.rdata> - 6634e397: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e39d: 48 8d 0d 6c 5c 00 00 lea 0x5c6c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e3a4: e8 67 3e 00 00 callq 66352210 <_assert> - 6634e3a9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e3ad: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e3b1: e9 f6 fc ff ff jmpq 6634e0ac - 6634e3b6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e3bd: 00 00 00 - 6634e3c0: 48 8d 15 39 5c 00 00 lea 0x5c39(%rip),%rdx # 66354000 <.rdata> - 6634e3c7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e3cd: 48 8d 0d 3c 5c 00 00 lea 0x5c3c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e3d4: e8 37 3e 00 00 callq 66352210 <_assert> - 6634e3d9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e3dd: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e3e1: e9 28 fd ff ff jmpq 6634e10e - 6634e3e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e3ed: 00 00 00 - 6634e3f0: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e3f4: 4c 8b 0d 35 95 00 00 mov 0x9535(%rip),%r9 # 66357930 - 6634e3fb: 4c 8b 15 1e 95 00 00 mov 0x951e(%rip),%r10 # 66357920 - 6634e402: 4c 8b 41 58 mov 0x58(%rcx),%r8 - 6634e406: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e40a: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e410: 49 63 09 movslq (%r9),%rcx - 6634e413: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e417: 45 89 19 mov %r11d,(%r9) - 6634e41a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e41e: e9 d6 fc ff ff jmpq 6634e0f9 - 6634e423: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e427: 4c 8b 0d 02 95 00 00 mov 0x9502(%rip),%r9 # 66357930 - 6634e42e: 4c 8b 15 eb 94 00 00 mov 0x94eb(%rip),%r10 # 66357920 - 6634e435: 4c 8b 41 50 mov 0x50(%rcx),%r8 - 6634e439: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e43d: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e443: 49 63 09 movslq (%r9),%rcx - 6634e446: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e44a: 45 89 19 mov %r11d,(%r9) - 6634e44d: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e451: e9 3f fc ff ff jmpq 6634e095 - 6634e456: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e45d: 00 00 00 - 6634e460: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e464: 4c 8b 0d c5 94 00 00 mov 0x94c5(%rip),%r9 # 66357930 - 6634e46b: 4c 8b 15 ae 94 00 00 mov 0x94ae(%rip),%r10 # 66357920 - 6634e472: 4c 8b 41 48 mov 0x48(%rcx),%r8 - 6634e476: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e47a: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e480: 49 63 09 movslq (%r9),%rcx - 6634e483: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e487: 45 89 19 mov %r11d,(%r9) - 6634e48a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e48e: e9 9b fb ff ff jmpq 6634e02e - 6634e493: 0f 1f 00 nopl (%rax) - 6634e496: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e49d: 00 00 00 + 6634e2e3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634e2e9: 45 8b 09 mov (%r9),%r9d + 6634e2ec: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634e2f0: 45 85 c9 test %r9d,%r9d + 6634e2f3: 41 0f 9f c1 setg %r9b + 6634e2f7: 45 0f b6 c9 movzbl %r9b,%r9d + 6634e2fb: 45 3b 08 cmp (%r8),%r9d + 6634e2fe: 74 31 je 6634e331 + 6634e300: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e304: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634e308: 45 8b 00 mov (%r8),%r8d + 6634e30b: 45 85 c0 test %r8d,%r8d + 6634e30e: 75 21 jne 6634e331 + 6634e310: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e314: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634e318: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e31c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e323: 4c 63 06 movslq (%rsi),%r8 + 6634e326: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e32a: 44 89 16 mov %r10d,(%rsi) + 6634e32d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e331: 48 83 c0 08 add $0x8,%rax + 6634e335: 48 83 c2 04 add $0x4,%rdx + 6634e339: 48 3d 08 02 00 00 cmp $0x208,%rax + 6634e33f: 75 8f jne 6634e2d0 + 6634e341: 5b pop %rbx + 6634e342: 5e pop %rsi + 6634e343: 5f pop %rdi + 6634e344: 41 5e pop %r14 + 6634e346: c3 retq + 6634e347: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e34e: 00 00 -000000006634e4a0 : - 6634e4a0: 57 push %rdi - 6634e4a1: 56 push %rsi - 6634e4a2: 53 push %rbx - 6634e4a3: 48 83 ec 20 sub $0x20,%rsp - 6634e4a7: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634e4ab: 48 8b 50 48 mov 0x48(%rax),%rdx - 6634e4af: 48 89 cb mov %rcx,%rbx - 6634e4b2: 8b 32 mov (%rdx),%esi - 6634e4b4: 85 f6 test %esi,%esi - 6634e4b6: 0f 84 e4 01 00 00 je 6634e6a0 - 6634e4bc: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634e4c0: 8b 0a mov (%rdx),%ecx - 6634e4c2: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634e4c6: 8b 12 mov (%rdx),%edx - 6634e4c8: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634e4cb: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634e4cf: 48 8b 40 20 mov 0x20(%rax),%rax - 6634e4d3: 8b 09 mov (%rcx),%ecx - 6634e4d5: 8b 00 mov (%rax),%eax - 6634e4d7: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634e4da: 8d 34 c2 lea (%rdx,%rax,8),%esi - 6634e4dd: 85 f6 test %esi,%esi - 6634e4df: 0f 88 6b 03 00 00 js 6634e850 - 6634e4e5: 3b 73 38 cmp 0x38(%rbx),%esi - 6634e4e8: 0f 8d 62 03 00 00 jge 6634e850 - 6634e4ee: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e4f2: 48 63 c6 movslq %esi,%rax - 6634e4f5: 8b 0c 82 mov (%rdx,%rax,4),%ecx - 6634e4f8: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e4fc: 44 8b 40 14 mov 0x14(%rax),%r8d - 6634e500: 41 39 c8 cmp %ecx,%r8d - 6634e503: 74 3f je 6634e544 - 6634e505: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e509: 89 cf mov %ecx,%edi - 6634e50b: 44 29 c7 sub %r8d,%edi - 6634e50e: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634e512: 41 01 39 add %edi,(%r9) - 6634e515: 89 48 14 mov %ecx,0x14(%rax) - 6634e518: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634e51c: 45 8b 19 mov (%r9),%r11d - 6634e51f: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634e523: 31 c9 xor %ecx,%ecx - 6634e525: 45 85 db test %r11d,%r11d - 6634e528: 0f 9f c1 setg %cl - 6634e52b: 41 39 08 cmp %ecx,(%r8) - 6634e52e: 74 14 je 6634e544 - 6634e530: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634e534: 48 8b 49 28 mov 0x28(%rcx),%rcx - 6634e538: 44 8b 11 mov (%rcx),%r10d - 6634e53b: 45 85 d2 test %r10d,%r10d - 6634e53e: 0f 84 2c 04 00 00 je 6634e970 - 6634e544: 89 f7 mov %esi,%edi - 6634e546: 83 c7 10 add $0x10,%edi - 6634e549: 0f 88 21 03 00 00 js 6634e870 - 6634e54f: 39 7b 38 cmp %edi,0x38(%rbx) - 6634e552: 0f 8e 18 03 00 00 jle 6634e870 - 6634e558: 48 63 ff movslq %edi,%rdi - 6634e55b: 44 8b 40 18 mov 0x18(%rax),%r8d - 6634e55f: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634e562: 44 39 c1 cmp %r8d,%ecx - 6634e565: 74 41 je 6634e5a8 - 6634e567: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e56b: 89 cf mov %ecx,%edi - 6634e56d: 44 29 c7 sub %r8d,%edi - 6634e570: 45 31 c0 xor %r8d,%r8d - 6634e573: 4d 8b 49 30 mov 0x30(%r9),%r9 - 6634e577: 41 01 39 add %edi,(%r9) - 6634e57a: 89 48 18 mov %ecx,0x18(%rax) - 6634e57d: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634e581: 45 8b 09 mov (%r9),%r9d - 6634e584: 48 8b 49 30 mov 0x30(%rcx),%rcx - 6634e588: 45 85 c9 test %r9d,%r9d - 6634e58b: 41 0f 9f c0 setg %r8b - 6634e58f: 44 3b 01 cmp (%rcx),%r8d - 6634e592: 74 14 je 6634e5a8 - 6634e594: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634e598: 48 8b 49 30 mov 0x30(%rcx),%rcx - 6634e59c: 44 8b 01 mov (%rcx),%r8d - 6634e59f: 45 85 c0 test %r8d,%r8d - 6634e5a2: 0f 84 8b 03 00 00 je 6634e933 - 6634e5a8: 89 f7 mov %esi,%edi - 6634e5aa: 83 c7 20 add $0x20,%edi - 6634e5ad: 0f 88 ed 02 00 00 js 6634e8a0 - 6634e5b3: 3b 7b 38 cmp 0x38(%rbx),%edi - 6634e5b6: 0f 8d e4 02 00 00 jge 6634e8a0 - 6634e5bc: 48 63 ff movslq %edi,%rdi - 6634e5bf: 44 8b 40 1c mov 0x1c(%rax),%r8d - 6634e5c3: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634e5c6: 44 39 c1 cmp %r8d,%ecx - 6634e5c9: 74 3e je 6634e609 - 6634e5cb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e5cf: 89 cf mov %ecx,%edi - 6634e5d1: 44 29 c7 sub %r8d,%edi - 6634e5d4: 45 31 c0 xor %r8d,%r8d - 6634e5d7: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634e5db: 41 01 39 add %edi,(%r9) - 6634e5de: 89 48 1c mov %ecx,0x1c(%rax) - 6634e5e1: 41 8b 09 mov (%r9),%ecx - 6634e5e4: 85 c9 test %ecx,%ecx - 6634e5e6: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634e5ea: 41 0f 9f c0 setg %r8b - 6634e5ee: 48 8b 49 38 mov 0x38(%rcx),%rcx - 6634e5f2: 44 3b 01 cmp (%rcx),%r8d - 6634e5f5: 74 12 je 6634e609 - 6634e5f7: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634e5fb: 48 8b 49 38 mov 0x38(%rcx),%rcx - 6634e5ff: 8b 39 mov (%rcx),%edi - 6634e601: 85 ff test %edi,%edi - 6634e603: 0f 84 f7 02 00 00 je 6634e900 - 6634e609: 83 c6 30 add $0x30,%esi - 6634e60c: 0f 88 be 02 00 00 js 6634e8d0 - 6634e612: 3b 73 38 cmp 0x38(%rbx),%esi - 6634e615: 0f 8d b5 02 00 00 jge 6634e8d0 - 6634e61b: 48 63 f6 movslq %esi,%rsi - 6634e61e: 8b 48 20 mov 0x20(%rax),%ecx - 6634e621: 8b 14 b2 mov (%rdx,%rsi,4),%edx - 6634e624: 39 ca cmp %ecx,%edx - 6634e626: 74 67 je 6634e68f - 6634e628: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634e62c: 89 d6 mov %edx,%esi - 6634e62e: 29 ce sub %ecx,%esi - 6634e630: 4d 8b 40 40 mov 0x40(%r8),%r8 - 6634e634: 41 01 30 add %esi,(%r8) - 6634e637: 89 50 20 mov %edx,0x20(%rax) - 6634e63a: 31 d2 xor %edx,%edx - 6634e63c: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634e640: 45 8b 18 mov (%r8),%r11d - 6634e643: 48 8b 40 40 mov 0x40(%rax),%rax - 6634e647: 45 85 db test %r11d,%r11d - 6634e64a: 0f 9f c2 setg %dl - 6634e64d: 3b 10 cmp (%rax),%edx - 6634e64f: 74 3e je 6634e68f - 6634e651: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634e655: 48 8b 40 40 mov 0x40(%rax),%rax - 6634e659: 44 8b 10 mov (%rax),%r10d - 6634e65c: 45 85 d2 test %r10d,%r10d - 6634e65f: 75 2e jne 6634e68f - 6634e661: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634e665: 48 8b 0d c4 92 00 00 mov 0x92c4(%rip),%rcx # 66357930 - 6634e66c: 4c 8b 05 ad 92 00 00 mov 0x92ad(%rip),%r8 # 66357920 - 6634e673: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634e677: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e67b: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634e681: 48 63 01 movslq (%rcx),%rax - 6634e684: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634e688: 44 89 09 mov %r9d,(%rcx) - 6634e68b: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634e68f: 48 83 c4 20 add $0x20,%rsp - 6634e693: 5b pop %rbx - 6634e694: 5e pop %rsi - 6634e695: 5f pop %rdi - 6634e696: c3 retq - 6634e697: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634e69e: 00 00 - 6634e6a0: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634e6a4: 4c 8b 15 75 92 00 00 mov 0x9275(%rip),%r10 # 66357920 - 6634e6ab: 48 8b 0d 7e 92 00 00 mov 0x927e(%rip),%rcx # 66357930 - 6634e6b2: 44 8b 42 14 mov 0x14(%rdx),%r8d - 6634e6b6: 45 85 c0 test %r8d,%r8d - 6634e6b9: 74 5a je 6634e715 - 6634e6bb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e6bf: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634e6c3: 45 29 01 sub %r8d,(%r9) - 6634e6c6: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) - 6634e6cd: 45 8b 09 mov (%r9),%r9d - 6634e6d0: 4c 8b 40 28 mov 0x28(%rax),%r8 - 6634e6d4: 45 85 c9 test %r9d,%r9d - 6634e6d7: 41 0f 9f c1 setg %r9b - 6634e6db: 45 0f b6 c9 movzbl %r9b,%r9d - 6634e6df: 45 3b 08 cmp (%r8),%r9d - 6634e6e2: 74 31 je 6634e715 - 6634e6e4: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e6e8: 4d 8b 40 28 mov 0x28(%r8),%r8 - 6634e6ec: 45 8b 00 mov (%r8),%r8d - 6634e6ef: 45 85 c0 test %r8d,%r8d - 6634e6f2: 75 21 jne 6634e715 - 6634e6f4: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e6f8: 4d 8b 48 28 mov 0x28(%r8),%r9 - 6634e6fc: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e700: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e707: 4c 63 01 movslq (%rcx),%r8 - 6634e70a: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e70e: 44 89 19 mov %r11d,(%rcx) - 6634e711: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e715: 44 8b 42 18 mov 0x18(%rdx),%r8d - 6634e719: 45 85 c0 test %r8d,%r8d - 6634e71c: 74 57 je 6634e775 - 6634e71e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e722: 4d 8b 49 30 mov 0x30(%r9),%r9 - 6634e726: 45 29 01 sub %r8d,(%r9) - 6634e729: c7 42 18 00 00 00 00 movl $0x0,0x18(%rdx) - 6634e730: 41 8b 39 mov (%r9),%edi - 6634e733: 45 31 c9 xor %r9d,%r9d - 6634e736: 4c 8b 40 30 mov 0x30(%rax),%r8 - 6634e73a: 85 ff test %edi,%edi - 6634e73c: 41 0f 9f c1 setg %r9b - 6634e740: 45 3b 08 cmp (%r8),%r9d - 6634e743: 74 30 je 6634e775 - 6634e745: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e749: 4d 8b 40 30 mov 0x30(%r8),%r8 - 6634e74d: 41 8b 30 mov (%r8),%esi - 6634e750: 85 f6 test %esi,%esi - 6634e752: 75 21 jne 6634e775 - 6634e754: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e758: 4d 8b 48 30 mov 0x30(%r8),%r9 - 6634e75c: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e760: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e767: 4c 63 01 movslq (%rcx),%r8 - 6634e76a: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e76e: 44 89 19 mov %r11d,(%rcx) - 6634e771: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e775: 44 8b 42 1c mov 0x1c(%rdx),%r8d - 6634e779: 45 85 c0 test %r8d,%r8d - 6634e77c: 74 59 je 6634e7d7 - 6634e77e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e782: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634e786: 45 29 01 sub %r8d,(%r9) - 6634e789: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) - 6634e790: 45 8b 19 mov (%r9),%r11d - 6634e793: 45 31 c9 xor %r9d,%r9d - 6634e796: 4c 8b 40 38 mov 0x38(%rax),%r8 - 6634e79a: 45 85 db test %r11d,%r11d - 6634e79d: 41 0f 9f c1 setg %r9b - 6634e7a1: 45 3b 08 cmp (%r8),%r9d - 6634e7a4: 74 31 je 6634e7d7 - 6634e7a6: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634e7aa: 4d 8b 40 38 mov 0x38(%r8),%r8 - 6634e7ae: 45 8b 08 mov (%r8),%r9d - 6634e7b1: 45 85 c9 test %r9d,%r9d - 6634e7b4: 75 21 jne 6634e7d7 - 6634e7b6: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634e7ba: 4d 8b 48 38 mov 0x38(%r8),%r9 - 6634e7be: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634e7c2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634e7c9: 4c 63 01 movslq (%rcx),%r8 - 6634e7cc: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634e7d0: 44 89 19 mov %r11d,(%rcx) - 6634e7d3: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634e7d7: 44 8b 42 20 mov 0x20(%rdx),%r8d - 6634e7db: 45 85 c0 test %r8d,%r8d - 6634e7de: 0f 84 ab fe ff ff je 6634e68f - 6634e7e4: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634e7e8: 48 8b 40 40 mov 0x40(%rax),%rax - 6634e7ec: 4d 8b 49 40 mov 0x40(%r9),%r9 - 6634e7f0: 45 29 01 sub %r8d,(%r9) - 6634e7f3: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) - 6634e7fa: 31 d2 xor %edx,%edx - 6634e7fc: 45 8b 01 mov (%r9),%r8d - 6634e7ff: 45 85 c0 test %r8d,%r8d - 6634e802: 0f 9f c2 setg %dl - 6634e805: 3b 10 cmp (%rax),%edx - 6634e807: 0f 84 82 fe ff ff je 6634e68f - 6634e80d: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634e811: 48 8b 40 40 mov 0x40(%rax),%rax - 6634e815: 8b 00 mov (%rax),%eax - 6634e817: 85 c0 test %eax,%eax - 6634e819: 0f 85 70 fe ff ff jne 6634e68f - 6634e81f: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634e823: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634e827: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e82b: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634e831: 48 63 01 movslq (%rcx),%rax - 6634e834: 44 8d 40 01 lea 0x1(%rax),%r8d - 6634e838: 44 89 01 mov %r8d,(%rcx) - 6634e83b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634e83f: 48 83 c4 20 add $0x20,%rsp - 6634e843: 5b pop %rbx - 6634e844: 5e pop %rsi - 6634e845: 5f pop %rdi - 6634e846: c3 retq - 6634e847: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634e84e: 00 00 - 6634e850: 48 8d 15 a9 57 00 00 lea 0x57a9(%rip),%rdx # 66354000 <.rdata> - 6634e857: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e85d: 48 8d 0d ac 57 00 00 lea 0x57ac(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e864: e8 a7 39 00 00 callq 66352210 <_assert> - 6634e869: e9 80 fc ff ff jmpq 6634e4ee - 6634e86e: 66 90 xchg %ax,%ax - 6634e870: 48 8d 15 89 57 00 00 lea 0x5789(%rip),%rdx # 66354000 <.rdata> - 6634e877: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e87d: 48 8d 0d 8c 57 00 00 lea 0x578c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e884: e8 87 39 00 00 callq 66352210 <_assert> - 6634e889: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e88d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e891: e9 c2 fc ff ff jmpq 6634e558 - 6634e896: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e89d: 00 00 00 - 6634e8a0: 48 8d 15 59 57 00 00 lea 0x5759(%rip),%rdx # 66354000 <.rdata> - 6634e8a7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e8ad: 48 8d 0d 5c 57 00 00 lea 0x575c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e8b4: e8 57 39 00 00 callq 66352210 <_assert> - 6634e8b9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e8bd: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e8c1: e9 f6 fc ff ff jmpq 6634e5bc - 6634e8c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e8cd: 00 00 00 - 6634e8d0: 48 8d 15 29 57 00 00 lea 0x5729(%rip),%rdx # 66354000 <.rdata> - 6634e8d7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634e8dd: 48 8d 0d 2c 57 00 00 lea 0x572c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634e8e4: e8 27 39 00 00 callq 66352210 <_assert> - 6634e8e9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634e8ed: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634e8f1: e9 25 fd ff ff jmpq 6634e61b - 6634e8f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e8fd: 00 00 00 - 6634e900: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e904: 4c 8b 0d 25 90 00 00 mov 0x9025(%rip),%r9 # 66357930 - 6634e90b: 4c 8b 15 0e 90 00 00 mov 0x900e(%rip),%r10 # 66357920 - 6634e912: 4c 8b 41 38 mov 0x38(%rcx),%r8 - 6634e916: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e91a: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e920: 49 63 09 movslq (%r9),%rcx - 6634e923: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e927: 45 89 19 mov %r11d,(%r9) - 6634e92a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e92e: e9 d6 fc ff ff jmpq 6634e609 - 6634e933: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e937: 4c 8b 0d f2 8f 00 00 mov 0x8ff2(%rip),%r9 # 66357930 - 6634e93e: 4c 8b 15 db 8f 00 00 mov 0x8fdb(%rip),%r10 # 66357920 - 6634e945: 4c 8b 41 30 mov 0x30(%rcx),%r8 - 6634e949: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e94d: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e953: 49 63 09 movslq (%r9),%rcx - 6634e956: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e95a: 45 89 19 mov %r11d,(%r9) - 6634e95d: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e961: e9 42 fc ff ff jmpq 6634e5a8 - 6634e966: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e96d: 00 00 00 - 6634e970: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634e974: 4c 8b 0d b5 8f 00 00 mov 0x8fb5(%rip),%r9 # 66357930 - 6634e97b: 4c 8b 15 9e 8f 00 00 mov 0x8f9e(%rip),%r10 # 66357920 - 6634e982: 4c 8b 41 28 mov 0x28(%rcx),%r8 - 6634e986: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634e98a: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634e990: 49 63 09 movslq (%r9),%rcx - 6634e993: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634e997: 45 89 19 mov %r11d,(%r9) - 6634e99a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634e99e: e9 a1 fb ff ff jmpq 6634e544 - 6634e9a3: 0f 1f 00 nopl (%rax) - 6634e9a6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634e9ad: 00 00 00 +000000006634e350 : + 6634e350: 41 56 push %r14 + 6634e352: 57 push %rdi + 6634e353: 56 push %rsi + 6634e354: 53 push %rbx + 6634e355: 48 8b 3d c4 85 00 00 mov 0x85c4(%rip),%rdi # 66356920 + 6634e35c: 48 8b 35 cd 85 00 00 mov 0x85cd(%rip),%rsi # 66356930 + 6634e363: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634e367: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634e36b: 49 8b 83 08 02 00 00 mov 0x208(%r11),%rax + 6634e372: 8b 00 mov (%rax),%eax + 6634e374: 85 c0 test %eax,%eax + 6634e376: 0f 84 a4 00 00 00 je 6634e420 + 6634e37c: 31 c0 xor %eax,%eax + 6634e37e: 66 90 xchg %ax,%ax + 6634e380: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634e385: 44 8b 8c 02 84 00 00 mov 0x84(%rdx,%rax,1),%r9d + 6634e38c: 00 + 6634e38d: 45 8b 00 mov (%r8),%r8d + 6634e390: 45 39 c8 cmp %r9d,%r8d + 6634e393: 74 74 je 6634e409 + 6634e395: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634e399: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634e39d: 45 89 c6 mov %r8d,%r14d + 6634e3a0: 45 29 ce sub %r9d,%r14d + 6634e3a3: 45 31 c9 xor %r9d,%r9d + 6634e3a6: 4d 8b 94 1a 08 01 00 mov 0x108(%r10,%rbx,1),%r10 + 6634e3ad: 00 + 6634e3ae: 45 01 32 add %r14d,(%r10) + 6634e3b1: 44 89 84 02 84 00 00 mov %r8d,0x84(%rdx,%rax,1) + 6634e3b8: 00 + 6634e3b9: 45 8b 32 mov (%r10),%r14d + 6634e3bc: 4d 8b 84 43 08 01 00 mov 0x108(%r11,%rax,2),%r8 + 6634e3c3: 00 + 6634e3c4: 45 85 f6 test %r14d,%r14d + 6634e3c7: 41 0f 9f c1 setg %r9b + 6634e3cb: 45 3b 08 cmp (%r8),%r9d + 6634e3ce: 74 39 je 6634e409 + 6634e3d0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e3d4: 4d 8b 84 18 08 01 00 mov 0x108(%r8,%rbx,1),%r8 + 6634e3db: 00 + 6634e3dc: 45 8b 10 mov (%r8),%r10d + 6634e3df: 45 85 d2 test %r10d,%r10d + 6634e3e2: 75 25 jne 6634e409 + 6634e3e4: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e3e8: 4d 8b 8c 18 08 01 00 mov 0x108(%r8,%rbx,1),%r9 + 6634e3ef: 00 + 6634e3f0: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e3f4: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e3fb: 4c 63 06 movslq (%rsi),%r8 + 6634e3fe: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e402: 44 89 16 mov %r10d,(%rsi) + 6634e405: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e409: 48 83 c0 04 add $0x4,%rax + 6634e40d: 48 3d 80 00 00 00 cmp $0x80,%rax + 6634e413: 0f 85 67 ff ff ff jne 6634e380 + 6634e419: 5b pop %rbx + 6634e41a: 5e pop %rsi + 6634e41b: 5f pop %rdi + 6634e41c: 41 5e pop %r14 + 6634e41e: c3 retq + 6634e41f: 90 nop + 6634e420: 48 81 c2 84 00 00 00 add $0x84,%rdx + 6634e427: b8 08 01 00 00 mov $0x108,%eax + 6634e42c: 0f 1f 40 00 nopl 0x0(%rax) + 6634e430: 44 8b 02 mov (%rdx),%r8d + 6634e433: 45 85 c0 test %r8d,%r8d + 6634e436: 74 59 je 6634e491 + 6634e438: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634e43c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634e440: 45 29 01 sub %r8d,(%r9) + 6634e443: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634e449: 45 8b 09 mov (%r9),%r9d + 6634e44c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634e450: 45 85 c9 test %r9d,%r9d + 6634e453: 41 0f 9f c1 setg %r9b + 6634e457: 45 0f b6 c9 movzbl %r9b,%r9d + 6634e45b: 45 3b 08 cmp (%r8),%r9d + 6634e45e: 74 31 je 6634e491 + 6634e460: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e464: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634e468: 45 8b 00 mov (%r8),%r8d + 6634e46b: 45 85 c0 test %r8d,%r8d + 6634e46e: 75 21 jne 6634e491 + 6634e470: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e474: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634e478: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e47c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e483: 4c 63 06 movslq (%rsi),%r8 + 6634e486: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e48a: 44 89 16 mov %r10d,(%rsi) + 6634e48d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e491: 48 83 c0 08 add $0x8,%rax + 6634e495: 48 83 c2 04 add $0x4,%rdx + 6634e499: 48 3d 08 02 00 00 cmp $0x208,%rax + 6634e49f: 75 8f jne 6634e430 + 6634e4a1: 5b pop %rbx + 6634e4a2: 5e pop %rsi + 6634e4a3: 5f pop %rdi + 6634e4a4: 41 5e pop %r14 + 6634e4a6: c3 retq + 6634e4a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e4ae: 00 00 -000000006634e9b0 : - 6634e9b0: 57 push %rdi - 6634e9b1: 56 push %rsi - 6634e9b2: 53 push %rbx - 6634e9b3: 48 83 ec 20 sub $0x20,%rsp - 6634e9b7: 48 8b 51 10 mov 0x10(%rcx),%rdx - 6634e9bb: 48 8b 42 70 mov 0x70(%rdx),%rax - 6634e9bf: 48 89 cb mov %rcx,%rbx - 6634e9c2: 44 8b 10 mov (%rax),%r10d - 6634e9c5: 45 85 d2 test %r10d,%r10d - 6634e9c8: 0f 84 15 02 00 00 je 6634ebe3 - 6634e9ce: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634e9d2: 8b 08 mov (%rax),%ecx - 6634e9d4: 48 8b 42 08 mov 0x8(%rdx),%rax - 6634e9d8: 8b 00 mov (%rax),%eax - 6634e9da: 8d 04 48 lea (%rax,%rcx,2),%eax - 6634e9dd: 48 8b 4a 18 mov 0x18(%rdx),%rcx - 6634e9e1: 8b 09 mov (%rcx),%ecx - 6634e9e3: 8d 04 88 lea (%rax,%rcx,4),%eax - 6634e9e6: 48 8b 4a 20 mov 0x20(%rdx),%rcx - 6634e9ea: 8b 09 mov (%rcx),%ecx - 6634e9ec: 8d 04 c8 lea (%rax,%rcx,8),%eax - 6634e9ef: 48 8b 4a 28 mov 0x28(%rdx),%rcx - 6634e9f3: 8b 31 mov (%rcx),%esi - 6634e9f5: 48 8b 4a 40 mov 0x40(%rdx),%rcx - 6634e9f9: c1 e6 04 shl $0x4,%esi - 6634e9fc: 01 c6 add %eax,%esi - 6634e9fe: 48 8b 42 30 mov 0x30(%rdx),%rax - 6634ea02: 8b 00 mov (%rax),%eax - 6634ea04: c1 e0 05 shl $0x5,%eax - 6634ea07: 01 c6 add %eax,%esi - 6634ea09: 48 8b 42 38 mov 0x38(%rdx),%rax - 6634ea0d: 48 8b 52 48 mov 0x48(%rdx),%rdx - 6634ea11: 8b 00 mov (%rax),%eax - 6634ea13: c1 e0 06 shl $0x6,%eax - 6634ea16: 01 f0 add %esi,%eax - 6634ea18: 8b 31 mov (%rcx),%esi - 6634ea1a: c1 e6 07 shl $0x7,%esi - 6634ea1d: 01 f0 add %esi,%eax - 6634ea1f: 8b 32 mov (%rdx),%esi - 6634ea21: c1 e6 08 shl $0x8,%esi - 6634ea24: 01 c6 add %eax,%esi - 6634ea26: 0f 88 64 03 00 00 js 6634ed90 - 6634ea2c: 3b 73 38 cmp 0x38(%rbx),%esi - 6634ea2f: 0f 8d 5b 03 00 00 jge 6634ed90 - 6634ea35: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634ea39: 48 63 c6 movslq %esi,%rax - 6634ea3c: 8b 0c 82 mov (%rdx,%rax,4),%ecx - 6634ea3f: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634ea43: 44 8b 40 28 mov 0x28(%rax),%r8d - 6634ea47: 41 39 c8 cmp %ecx,%r8d - 6634ea4a: 74 3d je 6634ea89 - 6634ea4c: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634ea50: 89 cf mov %ecx,%edi - 6634ea52: 44 29 c7 sub %r8d,%edi - 6634ea55: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634ea59: 41 01 39 add %edi,(%r9) - 6634ea5c: 89 48 28 mov %ecx,0x28(%rax) - 6634ea5f: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634ea63: 45 8b 09 mov (%r9),%r9d - 6634ea66: 4c 8b 41 50 mov 0x50(%rcx),%r8 - 6634ea6a: 31 c9 xor %ecx,%ecx - 6634ea6c: 45 85 c9 test %r9d,%r9d - 6634ea6f: 0f 9f c1 setg %cl - 6634ea72: 41 39 08 cmp %ecx,(%r8) - 6634ea75: 74 12 je 6634ea89 - 6634ea77: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634ea7b: 48 8b 49 50 mov 0x50(%rcx),%rcx - 6634ea7f: 8b 39 mov (%rcx),%edi - 6634ea81: 85 ff test %edi,%edi - 6634ea83: 0f 84 27 04 00 00 je 6634eeb0 - 6634ea89: 89 f7 mov %esi,%edi - 6634ea8b: 81 c7 00 02 00 00 add $0x200,%edi - 6634ea91: 0f 88 19 03 00 00 js 6634edb0 - 6634ea97: 39 7b 38 cmp %edi,0x38(%rbx) - 6634ea9a: 0f 8e 10 03 00 00 jle 6634edb0 - 6634eaa0: 48 63 ff movslq %edi,%rdi - 6634eaa3: 44 8b 40 2c mov 0x2c(%rax),%r8d - 6634eaa7: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634eaaa: 44 39 c1 cmp %r8d,%ecx - 6634eaad: 74 41 je 6634eaf0 - 6634eaaf: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634eab3: 89 cf mov %ecx,%edi - 6634eab5: 44 29 c7 sub %r8d,%edi - 6634eab8: 45 31 c0 xor %r8d,%r8d - 6634eabb: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634eabf: 41 01 39 add %edi,(%r9) - 6634eac2: 89 48 2c mov %ecx,0x2c(%rax) - 6634eac5: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634eac9: 45 8b 19 mov (%r9),%r11d - 6634eacc: 48 8b 49 58 mov 0x58(%rcx),%rcx - 6634ead0: 45 85 db test %r11d,%r11d - 6634ead3: 41 0f 9f c0 setg %r8b - 6634ead7: 44 3b 01 cmp (%rcx),%r8d - 6634eada: 74 14 je 6634eaf0 - 6634eadc: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634eae0: 48 8b 49 58 mov 0x58(%rcx),%rcx - 6634eae4: 44 8b 11 mov (%rcx),%r10d - 6634eae7: 45 85 d2 test %r10d,%r10d - 6634eaea: 0f 84 83 03 00 00 je 6634ee73 - 6634eaf0: 89 f7 mov %esi,%edi - 6634eaf2: 81 c7 00 04 00 00 add $0x400,%edi - 6634eaf8: 0f 88 e2 02 00 00 js 6634ede0 - 6634eafe: 3b 7b 38 cmp 0x38(%rbx),%edi - 6634eb01: 0f 8d d9 02 00 00 jge 6634ede0 - 6634eb07: 48 63 ff movslq %edi,%rdi - 6634eb0a: 44 8b 40 30 mov 0x30(%rax),%r8d - 6634eb0e: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634eb11: 44 39 c1 cmp %r8d,%ecx - 6634eb14: 74 3f je 6634eb55 - 6634eb16: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634eb1a: 89 cf mov %ecx,%edi - 6634eb1c: 44 29 c7 sub %r8d,%edi - 6634eb1f: 45 31 c0 xor %r8d,%r8d - 6634eb22: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634eb26: 41 01 39 add %edi,(%r9) - 6634eb29: 89 48 30 mov %ecx,0x30(%rax) - 6634eb2c: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634eb30: 45 8b 09 mov (%r9),%r9d - 6634eb33: 48 8b 49 60 mov 0x60(%rcx),%rcx - 6634eb37: 45 85 c9 test %r9d,%r9d - 6634eb3a: 41 0f 9f c0 setg %r8b - 6634eb3e: 44 3b 01 cmp (%rcx),%r8d - 6634eb41: 74 12 je 6634eb55 - 6634eb43: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634eb47: 48 8b 49 60 mov 0x60(%rcx),%rcx - 6634eb4b: 8b 09 mov (%rcx),%ecx - 6634eb4d: 85 c9 test %ecx,%ecx - 6634eb4f: 0f 84 eb 02 00 00 je 6634ee40 - 6634eb55: 81 c6 00 06 00 00 add $0x600,%esi - 6634eb5b: 0f 88 af 02 00 00 js 6634ee10 - 6634eb61: 3b 73 38 cmp 0x38(%rbx),%esi - 6634eb64: 0f 8d a6 02 00 00 jge 6634ee10 - 6634eb6a: 48 63 f6 movslq %esi,%rsi - 6634eb6d: 8b 48 34 mov 0x34(%rax),%ecx - 6634eb70: 8b 14 b2 mov (%rdx,%rsi,4),%edx - 6634eb73: 39 ca cmp %ecx,%edx - 6634eb75: 74 64 je 6634ebdb - 6634eb77: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634eb7b: 89 d7 mov %edx,%edi - 6634eb7d: 29 cf sub %ecx,%edi - 6634eb7f: 4d 8b 40 68 mov 0x68(%r8),%r8 - 6634eb83: 41 01 38 add %edi,(%r8) - 6634eb86: 89 50 34 mov %edx,0x34(%rax) - 6634eb89: 31 d2 xor %edx,%edx - 6634eb8b: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634eb8f: 41 8b 38 mov (%r8),%edi - 6634eb92: 48 8b 40 68 mov 0x68(%rax),%rax - 6634eb96: 85 ff test %edi,%edi - 6634eb98: 0f 9f c2 setg %dl - 6634eb9b: 3b 10 cmp (%rax),%edx - 6634eb9d: 74 3c je 6634ebdb - 6634eb9f: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634eba3: 48 8b 40 68 mov 0x68(%rax),%rax - 6634eba7: 8b 30 mov (%rax),%esi - 6634eba9: 85 f6 test %esi,%esi - 6634ebab: 75 2e jne 6634ebdb - 6634ebad: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634ebb1: 48 8b 0d 78 8d 00 00 mov 0x8d78(%rip),%rcx # 66357930 - 6634ebb8: 4c 8b 05 61 8d 00 00 mov 0x8d61(%rip),%r8 # 66357920 - 6634ebbf: 48 8b 50 68 mov 0x68(%rax),%rdx - 6634ebc3: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ebc7: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ebcd: 48 63 01 movslq (%rcx),%rax - 6634ebd0: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ebd4: 44 89 09 mov %r9d,(%rcx) - 6634ebd7: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ebdb: 48 83 c4 20 add $0x20,%rsp - 6634ebdf: 5b pop %rbx - 6634ebe0: 5e pop %rsi - 6634ebe1: 5f pop %rdi - 6634ebe2: c3 retq - 6634ebe3: 48 8b 41 08 mov 0x8(%rcx),%rax - 6634ebe7: 4c 8b 15 32 8d 00 00 mov 0x8d32(%rip),%r10 # 66357920 - 6634ebee: 48 8b 0d 3b 8d 00 00 mov 0x8d3b(%rip),%rcx # 66357930 - 6634ebf5: 44 8b 40 28 mov 0x28(%rax),%r8d - 6634ebf9: 45 85 c0 test %r8d,%r8d - 6634ebfc: 74 59 je 6634ec57 - 6634ebfe: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634ec02: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634ec06: 45 29 01 sub %r8d,(%r9) - 6634ec09: c7 40 28 00 00 00 00 movl $0x0,0x28(%rax) - 6634ec10: 45 8b 19 mov (%r9),%r11d - 6634ec13: 45 31 c9 xor %r9d,%r9d - 6634ec16: 4c 8b 42 50 mov 0x50(%rdx),%r8 - 6634ec1a: 45 85 db test %r11d,%r11d - 6634ec1d: 41 0f 9f c1 setg %r9b - 6634ec21: 45 3b 08 cmp (%r8),%r9d - 6634ec24: 74 31 je 6634ec57 - 6634ec26: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634ec2a: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634ec2e: 45 8b 08 mov (%r8),%r9d - 6634ec31: 45 85 c9 test %r9d,%r9d - 6634ec34: 75 21 jne 6634ec57 - 6634ec36: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634ec3a: 4d 8b 48 50 mov 0x50(%r8),%r9 - 6634ec3e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634ec42: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634ec49: 4c 63 01 movslq (%rcx),%r8 - 6634ec4c: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634ec50: 44 89 19 mov %r11d,(%rcx) - 6634ec53: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634ec57: 44 8b 40 2c mov 0x2c(%rax),%r8d - 6634ec5b: 45 85 c0 test %r8d,%r8d - 6634ec5e: 74 58 je 6634ecb8 - 6634ec60: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634ec64: 4d 8b 49 58 mov 0x58(%r9),%r9 - 6634ec68: 45 29 01 sub %r8d,(%r9) - 6634ec6b: c7 40 2c 00 00 00 00 movl $0x0,0x2c(%rax) - 6634ec72: 45 8b 01 mov (%r9),%r8d - 6634ec75: 45 31 c9 xor %r9d,%r9d - 6634ec78: 45 85 c0 test %r8d,%r8d - 6634ec7b: 4c 8b 42 58 mov 0x58(%rdx),%r8 - 6634ec7f: 41 0f 9f c1 setg %r9b - 6634ec83: 45 3b 08 cmp (%r8),%r9d - 6634ec86: 74 30 je 6634ecb8 - 6634ec88: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634ec8c: 4d 8b 40 58 mov 0x58(%r8),%r8 - 6634ec90: 41 8b 38 mov (%r8),%edi - 6634ec93: 85 ff test %edi,%edi - 6634ec95: 75 21 jne 6634ecb8 - 6634ec97: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634ec9b: 4d 8b 48 58 mov 0x58(%r8),%r9 - 6634ec9f: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634eca3: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634ecaa: 4c 63 01 movslq (%rcx),%r8 - 6634ecad: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634ecb1: 44 89 19 mov %r11d,(%rcx) - 6634ecb4: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634ecb8: 44 8b 40 30 mov 0x30(%rax),%r8d - 6634ecbc: 45 85 c0 test %r8d,%r8d - 6634ecbf: 74 58 je 6634ed19 - 6634ecc1: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634ecc5: 4d 8b 49 60 mov 0x60(%r9),%r9 - 6634ecc9: 45 29 01 sub %r8d,(%r9) - 6634eccc: c7 40 30 00 00 00 00 movl $0x0,0x30(%rax) - 6634ecd3: 41 8b 31 mov (%r9),%esi - 6634ecd6: 45 31 c9 xor %r9d,%r9d - 6634ecd9: 4c 8b 42 60 mov 0x60(%rdx),%r8 - 6634ecdd: 85 f6 test %esi,%esi - 6634ecdf: 41 0f 9f c1 setg %r9b - 6634ece3: 45 3b 08 cmp (%r8),%r9d - 6634ece6: 74 31 je 6634ed19 - 6634ece8: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634ecec: 4d 8b 40 60 mov 0x60(%r8),%r8 - 6634ecf0: 45 8b 18 mov (%r8),%r11d - 6634ecf3: 45 85 db test %r11d,%r11d - 6634ecf6: 75 21 jne 6634ed19 - 6634ecf8: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634ecfc: 4d 8b 48 60 mov 0x60(%r8),%r9 - 6634ed00: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634ed04: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634ed0b: 4c 63 01 movslq (%rcx),%r8 - 6634ed0e: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634ed12: 44 89 19 mov %r11d,(%rcx) - 6634ed15: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634ed19: 44 8b 40 34 mov 0x34(%rax),%r8d - 6634ed1d: 45 85 c0 test %r8d,%r8d - 6634ed20: 0f 84 b5 fe ff ff je 6634ebdb - 6634ed26: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634ed2a: 4d 8b 49 68 mov 0x68(%r9),%r9 - 6634ed2e: 45 29 01 sub %r8d,(%r9) - 6634ed31: c7 40 34 00 00 00 00 movl $0x0,0x34(%rax) - 6634ed38: 45 31 c0 xor %r8d,%r8d - 6634ed3b: 45 8b 09 mov (%r9),%r9d - 6634ed3e: 48 8b 42 68 mov 0x68(%rdx),%rax - 6634ed42: 45 85 c9 test %r9d,%r9d - 6634ed45: 41 0f 9f c0 setg %r8b - 6634ed49: 44 3b 00 cmp (%rax),%r8d - 6634ed4c: 0f 84 89 fe ff ff je 6634ebdb - 6634ed52: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634ed56: 48 8b 40 68 mov 0x68(%rax),%rax - 6634ed5a: 8b 00 mov (%rax),%eax - 6634ed5c: 85 c0 test %eax,%eax - 6634ed5e: 0f 85 77 fe ff ff jne 6634ebdb - 6634ed64: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634ed68: 48 8b 50 68 mov 0x68(%rax),%rdx - 6634ed6c: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ed70: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ed76: 48 63 01 movslq (%rcx),%rax - 6634ed79: 44 8d 40 01 lea 0x1(%rax),%r8d - 6634ed7d: 44 89 01 mov %r8d,(%rcx) - 6634ed80: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634ed84: 48 83 c4 20 add $0x20,%rsp - 6634ed88: 5b pop %rbx - 6634ed89: 5e pop %rsi - 6634ed8a: 5f pop %rdi - 6634ed8b: c3 retq - 6634ed8c: 0f 1f 40 00 nopl 0x0(%rax) - 6634ed90: 48 8d 15 69 52 00 00 lea 0x5269(%rip),%rdx # 66354000 <.rdata> - 6634ed97: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634ed9d: 48 8d 0d 6c 52 00 00 lea 0x526c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634eda4: e8 67 34 00 00 callq 66352210 <_assert> - 6634eda9: e9 87 fc ff ff jmpq 6634ea35 - 6634edae: 66 90 xchg %ax,%ax - 6634edb0: 48 8d 15 49 52 00 00 lea 0x5249(%rip),%rdx # 66354000 <.rdata> - 6634edb7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634edbd: 48 8d 0d 4c 52 00 00 lea 0x524c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634edc4: e8 47 34 00 00 callq 66352210 <_assert> - 6634edc9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634edcd: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634edd1: e9 ca fc ff ff jmpq 6634eaa0 - 6634edd6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634eddd: 00 00 00 - 6634ede0: 48 8d 15 19 52 00 00 lea 0x5219(%rip),%rdx # 66354000 <.rdata> - 6634ede7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634eded: 48 8d 0d 1c 52 00 00 lea 0x521c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634edf4: e8 17 34 00 00 callq 66352210 <_assert> - 6634edf9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634edfd: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634ee01: e9 01 fd ff ff jmpq 6634eb07 - 6634ee06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634ee0d: 00 00 00 - 6634ee10: 48 8d 15 e9 51 00 00 lea 0x51e9(%rip),%rdx # 66354000 <.rdata> - 6634ee17: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634ee1d: 48 8d 0d ec 51 00 00 lea 0x51ec(%rip),%rcx # 66354010 <.rdata+0x10> - 6634ee24: e8 e7 33 00 00 callq 66352210 <_assert> - 6634ee29: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634ee2d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634ee31: e9 34 fd ff ff jmpq 6634eb6a - 6634ee36: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634ee3d: 00 00 00 - 6634ee40: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634ee44: 4c 8b 0d e5 8a 00 00 mov 0x8ae5(%rip),%r9 # 66357930 - 6634ee4b: 4c 8b 15 ce 8a 00 00 mov 0x8ace(%rip),%r10 # 66357920 - 6634ee52: 4c 8b 41 60 mov 0x60(%rcx),%r8 - 6634ee56: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634ee5a: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634ee60: 49 63 09 movslq (%r9),%rcx - 6634ee63: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634ee67: 45 89 19 mov %r11d,(%r9) - 6634ee6a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634ee6e: e9 e2 fc ff ff jmpq 6634eb55 - 6634ee73: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634ee77: 4c 8b 0d b2 8a 00 00 mov 0x8ab2(%rip),%r9 # 66357930 - 6634ee7e: 4c 8b 15 9b 8a 00 00 mov 0x8a9b(%rip),%r10 # 66357920 - 6634ee85: 4c 8b 41 58 mov 0x58(%rcx),%r8 - 6634ee89: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634ee8d: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634ee93: 49 63 09 movslq (%r9),%rcx - 6634ee96: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634ee9a: 45 89 19 mov %r11d,(%r9) - 6634ee9d: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634eea1: e9 4a fc ff ff jmpq 6634eaf0 - 6634eea6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634eead: 00 00 00 - 6634eeb0: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634eeb4: 4c 8b 0d 75 8a 00 00 mov 0x8a75(%rip),%r9 # 66357930 - 6634eebb: 4c 8b 15 5e 8a 00 00 mov 0x8a5e(%rip),%r10 # 66357920 - 6634eec2: 4c 8b 41 50 mov 0x50(%rcx),%r8 - 6634eec6: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634eeca: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634eed0: 49 63 09 movslq (%r9),%rcx - 6634eed3: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634eed7: 45 89 19 mov %r11d,(%r9) - 6634eeda: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634eede: e9 a6 fb ff ff jmpq 6634ea89 - 6634eee3: 0f 1f 00 nopl (%rax) - 6634eee6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634eeed: 00 00 00 +000000006634e4b0 : + 6634e4b0: 41 56 push %r14 + 6634e4b2: 57 push %rdi + 6634e4b3: 56 push %rsi + 6634e4b4: 53 push %rbx + 6634e4b5: 48 8b 3d 64 84 00 00 mov 0x8464(%rip),%rdi # 66356920 + 6634e4bc: 48 8b 35 6d 84 00 00 mov 0x846d(%rip),%rsi # 66356930 + 6634e4c3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634e4c7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634e4cb: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax + 6634e4d2: 8b 00 mov (%rax),%eax + 6634e4d4: 85 c0 test %eax,%eax + 6634e4d6: 0f 84 a4 00 00 00 je 6634e580 + 6634e4dc: 31 c0 xor %eax,%eax + 6634e4de: 66 90 xchg %ax,%ax + 6634e4e0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634e4e5: 44 8b 4c 02 64 mov 0x64(%rdx,%rax,1),%r9d + 6634e4ea: 45 8b 00 mov (%r8),%r8d + 6634e4ed: 45 39 c8 cmp %r9d,%r8d + 6634e4f0: 74 71 je 6634e563 + 6634e4f2: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634e4f6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634e4fa: 45 89 c6 mov %r8d,%r14d + 6634e4fd: 45 29 ce sub %r9d,%r14d + 6634e500: 45 31 c9 xor %r9d,%r9d + 6634e503: 4d 8b 94 1a c8 00 00 mov 0xc8(%r10,%rbx,1),%r10 + 6634e50a: 00 + 6634e50b: 45 01 32 add %r14d,(%r10) + 6634e50e: 44 89 44 02 64 mov %r8d,0x64(%rdx,%rax,1) + 6634e513: 45 8b 32 mov (%r10),%r14d + 6634e516: 4d 8b 84 43 c8 00 00 mov 0xc8(%r11,%rax,2),%r8 + 6634e51d: 00 + 6634e51e: 45 85 f6 test %r14d,%r14d + 6634e521: 41 0f 9f c1 setg %r9b + 6634e525: 45 3b 08 cmp (%r8),%r9d + 6634e528: 74 39 je 6634e563 + 6634e52a: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e52e: 4d 8b 84 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r8 + 6634e535: 00 + 6634e536: 45 8b 10 mov (%r8),%r10d + 6634e539: 45 85 d2 test %r10d,%r10d + 6634e53c: 75 25 jne 6634e563 + 6634e53e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e542: 4d 8b 8c 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r9 + 6634e549: 00 + 6634e54a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e54e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e555: 4c 63 06 movslq (%rsi),%r8 + 6634e558: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e55c: 44 89 16 mov %r10d,(%rsi) + 6634e55f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e563: 48 83 c0 04 add $0x4,%rax + 6634e567: 48 83 f8 60 cmp $0x60,%rax + 6634e56b: 0f 85 6f ff ff ff jne 6634e4e0 + 6634e571: 5b pop %rbx + 6634e572: 5e pop %rsi + 6634e573: 5f pop %rdi + 6634e574: 41 5e pop %r14 + 6634e576: c3 retq + 6634e577: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e57e: 00 00 + 6634e580: 48 83 c2 64 add $0x64,%rdx + 6634e584: b8 c8 00 00 00 mov $0xc8,%eax + 6634e589: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634e590: 44 8b 02 mov (%rdx),%r8d + 6634e593: 45 85 c0 test %r8d,%r8d + 6634e596: 74 59 je 6634e5f1 + 6634e598: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634e59c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634e5a0: 45 29 01 sub %r8d,(%r9) + 6634e5a3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634e5a9: 45 8b 09 mov (%r9),%r9d + 6634e5ac: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634e5b0: 45 85 c9 test %r9d,%r9d + 6634e5b3: 41 0f 9f c1 setg %r9b + 6634e5b7: 45 0f b6 c9 movzbl %r9b,%r9d + 6634e5bb: 45 3b 08 cmp (%r8),%r9d + 6634e5be: 74 31 je 6634e5f1 + 6634e5c0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e5c4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634e5c8: 45 8b 00 mov (%r8),%r8d + 6634e5cb: 45 85 c0 test %r8d,%r8d + 6634e5ce: 75 21 jne 6634e5f1 + 6634e5d0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e5d4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634e5d8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e5dc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e5e3: 4c 63 06 movslq (%rsi),%r8 + 6634e5e6: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e5ea: 44 89 16 mov %r10d,(%rsi) + 6634e5ed: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e5f1: 48 83 c0 08 add $0x8,%rax + 6634e5f5: 48 83 c2 04 add $0x4,%rdx + 6634e5f9: 48 3d 88 01 00 00 cmp $0x188,%rax + 6634e5ff: 75 8f jne 6634e590 + 6634e601: 5b pop %rbx + 6634e602: 5e pop %rsi + 6634e603: 5f pop %rdi + 6634e604: 41 5e pop %r14 + 6634e606: c3 retq + 6634e607: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e60e: 00 00 -000000006634eef0 : - 6634eef0: 57 push %rdi - 6634eef1: 56 push %rsi - 6634eef2: 53 push %rbx - 6634eef3: 48 83 ec 20 sub $0x20,%rsp - 6634eef7: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634eefb: 48 8b 50 58 mov 0x58(%rax),%rdx - 6634eeff: 48 89 cb mov %rcx,%rbx - 6634ef02: 8b 32 mov (%rdx),%esi - 6634ef04: 85 f6 test %esi,%esi - 6634ef06: 0f 84 f4 01 00 00 je 6634f100 - 6634ef0c: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634ef10: 8b 0a mov (%rdx),%ecx - 6634ef12: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634ef16: 8b 12 mov (%rdx),%edx - 6634ef18: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634ef1b: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634ef1f: 8b 09 mov (%rcx),%ecx - 6634ef21: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634ef24: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634ef28: 8b 09 mov (%rcx),%ecx - 6634ef2a: 8d 14 ca lea (%rdx,%rcx,8),%edx - 6634ef2d: 48 8b 48 28 mov 0x28(%rax),%rcx - 6634ef31: 48 8b 40 30 mov 0x30(%rax),%rax - 6634ef35: 8b 31 mov (%rcx),%esi - 6634ef37: c1 e6 04 shl $0x4,%esi - 6634ef3a: 01 f2 add %esi,%edx - 6634ef3c: 8b 30 mov (%rax),%esi - 6634ef3e: c1 e6 05 shl $0x5,%esi - 6634ef41: 01 d6 add %edx,%esi - 6634ef43: 0f 88 67 03 00 00 js 6634f2b0 - 6634ef49: 3b 73 38 cmp 0x38(%rbx),%esi - 6634ef4c: 0f 8d 5e 03 00 00 jge 6634f2b0 - 6634ef52: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634ef56: 48 63 c6 movslq %esi,%rax - 6634ef59: 8b 0c 82 mov (%rdx,%rax,4),%ecx - 6634ef5c: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634ef60: 44 8b 40 1c mov 0x1c(%rax),%r8d - 6634ef64: 41 39 c8 cmp %ecx,%r8d - 6634ef67: 74 3f je 6634efa8 - 6634ef69: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634ef6d: 89 cf mov %ecx,%edi - 6634ef6f: 44 29 c7 sub %r8d,%edi - 6634ef72: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634ef76: 41 01 39 add %edi,(%r9) - 6634ef79: 89 48 1c mov %ecx,0x1c(%rax) - 6634ef7c: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634ef80: 45 8b 19 mov (%r9),%r11d - 6634ef83: 4c 8b 41 38 mov 0x38(%rcx),%r8 - 6634ef87: 31 c9 xor %ecx,%ecx - 6634ef89: 45 85 db test %r11d,%r11d - 6634ef8c: 0f 9f c1 setg %cl - 6634ef8f: 41 39 08 cmp %ecx,(%r8) - 6634ef92: 74 14 je 6634efa8 - 6634ef94: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634ef98: 48 8b 49 38 mov 0x38(%rcx),%rcx - 6634ef9c: 44 8b 11 mov (%rcx),%r10d - 6634ef9f: 45 85 d2 test %r10d,%r10d - 6634efa2: 0f 84 28 04 00 00 je 6634f3d0 - 6634efa8: 89 f7 mov %esi,%edi - 6634efaa: 83 c7 40 add $0x40,%edi - 6634efad: 0f 88 1d 03 00 00 js 6634f2d0 - 6634efb3: 39 7b 38 cmp %edi,0x38(%rbx) - 6634efb6: 0f 8e 14 03 00 00 jle 6634f2d0 - 6634efbc: 48 63 ff movslq %edi,%rdi - 6634efbf: 44 8b 40 20 mov 0x20(%rax),%r8d - 6634efc3: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634efc6: 44 39 c1 cmp %r8d,%ecx - 6634efc9: 74 41 je 6634f00c - 6634efcb: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634efcf: 89 cf mov %ecx,%edi - 6634efd1: 44 29 c7 sub %r8d,%edi - 6634efd4: 45 31 c0 xor %r8d,%r8d - 6634efd7: 4d 8b 49 40 mov 0x40(%r9),%r9 - 6634efdb: 41 01 39 add %edi,(%r9) - 6634efde: 89 48 20 mov %ecx,0x20(%rax) - 6634efe1: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634efe5: 45 8b 09 mov (%r9),%r9d - 6634efe8: 48 8b 49 40 mov 0x40(%rcx),%rcx - 6634efec: 45 85 c9 test %r9d,%r9d - 6634efef: 41 0f 9f c0 setg %r8b - 6634eff3: 44 3b 01 cmp (%rcx),%r8d - 6634eff6: 74 14 je 6634f00c - 6634eff8: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634effc: 48 8b 49 40 mov 0x40(%rcx),%rcx - 6634f000: 44 8b 01 mov (%rcx),%r8d - 6634f003: 45 85 c0 test %r8d,%r8d - 6634f006: 0f 84 87 03 00 00 je 6634f393 - 6634f00c: 89 f7 mov %esi,%edi - 6634f00e: 83 ef 80 sub $0xffffff80,%edi - 6634f011: 0f 88 e9 02 00 00 js 6634f300 - 6634f017: 3b 7b 38 cmp 0x38(%rbx),%edi - 6634f01a: 0f 8d e0 02 00 00 jge 6634f300 - 6634f020: 48 63 ff movslq %edi,%rdi - 6634f023: 44 8b 40 24 mov 0x24(%rax),%r8d - 6634f027: 8b 0c ba mov (%rdx,%rdi,4),%ecx - 6634f02a: 44 39 c1 cmp %r8d,%ecx - 6634f02d: 74 3e je 6634f06d - 6634f02f: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634f033: 89 cf mov %ecx,%edi - 6634f035: 44 29 c7 sub %r8d,%edi - 6634f038: 45 31 c0 xor %r8d,%r8d - 6634f03b: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634f03f: 41 01 39 add %edi,(%r9) - 6634f042: 89 48 24 mov %ecx,0x24(%rax) - 6634f045: 41 8b 09 mov (%r9),%ecx - 6634f048: 85 c9 test %ecx,%ecx - 6634f04a: 48 8b 4b 10 mov 0x10(%rbx),%rcx - 6634f04e: 41 0f 9f c0 setg %r8b - 6634f052: 48 8b 49 48 mov 0x48(%rcx),%rcx - 6634f056: 44 3b 01 cmp (%rcx),%r8d - 6634f059: 74 12 je 6634f06d - 6634f05b: 48 8b 4b 20 mov 0x20(%rbx),%rcx - 6634f05f: 48 8b 49 48 mov 0x48(%rcx),%rcx - 6634f063: 8b 39 mov (%rcx),%edi - 6634f065: 85 ff test %edi,%edi - 6634f067: 0f 84 f3 02 00 00 je 6634f360 - 6634f06d: 81 c6 c0 00 00 00 add $0xc0,%esi - 6634f073: 0f 88 b7 02 00 00 js 6634f330 - 6634f079: 3b 73 38 cmp 0x38(%rbx),%esi - 6634f07c: 0f 8d ae 02 00 00 jge 6634f330 - 6634f082: 48 63 f6 movslq %esi,%rsi - 6634f085: 8b 48 28 mov 0x28(%rax),%ecx - 6634f088: 8b 14 b2 mov (%rdx,%rsi,4),%edx - 6634f08b: 39 ca cmp %ecx,%edx - 6634f08d: 74 67 je 6634f0f6 - 6634f08f: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634f093: 89 d6 mov %edx,%esi - 6634f095: 29 ce sub %ecx,%esi - 6634f097: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634f09b: 41 01 30 add %esi,(%r8) - 6634f09e: 89 50 28 mov %edx,0x28(%rax) - 6634f0a1: 31 d2 xor %edx,%edx - 6634f0a3: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634f0a7: 45 8b 18 mov (%r8),%r11d - 6634f0aa: 48 8b 40 50 mov 0x50(%rax),%rax - 6634f0ae: 45 85 db test %r11d,%r11d - 6634f0b1: 0f 9f c2 setg %dl - 6634f0b4: 3b 10 cmp (%rax),%edx - 6634f0b6: 74 3e je 6634f0f6 - 6634f0b8: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634f0bc: 48 8b 40 50 mov 0x50(%rax),%rax - 6634f0c0: 44 8b 10 mov (%rax),%r10d - 6634f0c3: 45 85 d2 test %r10d,%r10d - 6634f0c6: 75 2e jne 6634f0f6 - 6634f0c8: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634f0cc: 48 8b 0d 5d 88 00 00 mov 0x885d(%rip),%rcx # 66357930 - 6634f0d3: 4c 8b 05 46 88 00 00 mov 0x8846(%rip),%r8 # 66357920 - 6634f0da: 48 8b 50 50 mov 0x50(%rax),%rdx - 6634f0de: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f0e2: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f0e8: 48 63 01 movslq (%rcx),%rax - 6634f0eb: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f0ef: 44 89 09 mov %r9d,(%rcx) - 6634f0f2: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f0f6: 48 83 c4 20 add $0x20,%rsp - 6634f0fa: 5b pop %rbx - 6634f0fb: 5e pop %rsi - 6634f0fc: 5f pop %rdi - 6634f0fd: c3 retq - 6634f0fe: 66 90 xchg %ax,%ax - 6634f100: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634f104: 4c 8b 15 15 88 00 00 mov 0x8815(%rip),%r10 # 66357920 - 6634f10b: 48 8b 0d 1e 88 00 00 mov 0x881e(%rip),%rcx # 66357930 - 6634f112: 44 8b 42 1c mov 0x1c(%rdx),%r8d - 6634f116: 45 85 c0 test %r8d,%r8d - 6634f119: 74 5a je 6634f175 - 6634f11b: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634f11f: 4d 8b 49 38 mov 0x38(%r9),%r9 - 6634f123: 45 29 01 sub %r8d,(%r9) - 6634f126: c7 42 1c 00 00 00 00 movl $0x0,0x1c(%rdx) - 6634f12d: 45 8b 09 mov (%r9),%r9d - 6634f130: 4c 8b 40 38 mov 0x38(%rax),%r8 - 6634f134: 45 85 c9 test %r9d,%r9d - 6634f137: 41 0f 9f c1 setg %r9b - 6634f13b: 45 0f b6 c9 movzbl %r9b,%r9d - 6634f13f: 45 3b 08 cmp (%r8),%r9d - 6634f142: 74 31 je 6634f175 - 6634f144: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634f148: 4d 8b 40 38 mov 0x38(%r8),%r8 - 6634f14c: 45 8b 00 mov (%r8),%r8d - 6634f14f: 45 85 c0 test %r8d,%r8d - 6634f152: 75 21 jne 6634f175 - 6634f154: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634f158: 4d 8b 48 38 mov 0x38(%r8),%r9 - 6634f15c: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634f160: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634f167: 4c 63 01 movslq (%rcx),%r8 - 6634f16a: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634f16e: 44 89 19 mov %r11d,(%rcx) - 6634f171: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634f175: 44 8b 42 20 mov 0x20(%rdx),%r8d - 6634f179: 45 85 c0 test %r8d,%r8d - 6634f17c: 74 57 je 6634f1d5 - 6634f17e: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634f182: 4d 8b 49 40 mov 0x40(%r9),%r9 - 6634f186: 45 29 01 sub %r8d,(%r9) - 6634f189: c7 42 20 00 00 00 00 movl $0x0,0x20(%rdx) - 6634f190: 41 8b 39 mov (%r9),%edi - 6634f193: 45 31 c9 xor %r9d,%r9d - 6634f196: 4c 8b 40 40 mov 0x40(%rax),%r8 - 6634f19a: 85 ff test %edi,%edi - 6634f19c: 41 0f 9f c1 setg %r9b - 6634f1a0: 45 3b 08 cmp (%r8),%r9d - 6634f1a3: 74 30 je 6634f1d5 - 6634f1a5: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634f1a9: 4d 8b 40 40 mov 0x40(%r8),%r8 - 6634f1ad: 41 8b 30 mov (%r8),%esi - 6634f1b0: 85 f6 test %esi,%esi - 6634f1b2: 75 21 jne 6634f1d5 - 6634f1b4: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634f1b8: 4d 8b 48 40 mov 0x40(%r8),%r9 - 6634f1bc: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634f1c0: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634f1c7: 4c 63 01 movslq (%rcx),%r8 - 6634f1ca: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634f1ce: 44 89 19 mov %r11d,(%rcx) - 6634f1d1: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634f1d5: 44 8b 42 24 mov 0x24(%rdx),%r8d - 6634f1d9: 45 85 c0 test %r8d,%r8d - 6634f1dc: 74 59 je 6634f237 - 6634f1de: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634f1e2: 4d 8b 49 48 mov 0x48(%r9),%r9 - 6634f1e6: 45 29 01 sub %r8d,(%r9) - 6634f1e9: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 6634f1f0: 45 8b 19 mov (%r9),%r11d - 6634f1f3: 45 31 c9 xor %r9d,%r9d - 6634f1f6: 4c 8b 40 48 mov 0x48(%rax),%r8 - 6634f1fa: 45 85 db test %r11d,%r11d - 6634f1fd: 41 0f 9f c1 setg %r9b - 6634f201: 45 3b 08 cmp (%r8),%r9d - 6634f204: 74 31 je 6634f237 - 6634f206: 4c 8b 43 20 mov 0x20(%rbx),%r8 - 6634f20a: 4d 8b 40 48 mov 0x48(%r8),%r8 - 6634f20e: 45 8b 08 mov (%r8),%r9d - 6634f211: 45 85 c9 test %r9d,%r9d - 6634f214: 75 21 jne 6634f237 - 6634f216: 4c 8b 43 28 mov 0x28(%rbx),%r8 - 6634f21a: 4d 8b 48 48 mov 0x48(%r8),%r9 - 6634f21e: 4d 8b 41 10 mov 0x10(%r9),%r8 - 6634f222: 41 c7 00 01 00 00 00 movl $0x1,(%r8) - 6634f229: 4c 63 01 movslq (%rcx),%r8 - 6634f22c: 45 8d 58 01 lea 0x1(%r8),%r11d - 6634f230: 44 89 19 mov %r11d,(%rcx) - 6634f233: 4f 89 0c c2 mov %r9,(%r10,%r8,8) - 6634f237: 44 8b 42 28 mov 0x28(%rdx),%r8d - 6634f23b: 45 85 c0 test %r8d,%r8d - 6634f23e: 0f 84 b2 fe ff ff je 6634f0f6 - 6634f244: 4c 8b 4b 18 mov 0x18(%rbx),%r9 - 6634f248: 48 8b 40 50 mov 0x50(%rax),%rax - 6634f24c: 4d 8b 49 50 mov 0x50(%r9),%r9 - 6634f250: 45 29 01 sub %r8d,(%r9) - 6634f253: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634f25a: 31 d2 xor %edx,%edx - 6634f25c: 45 8b 01 mov (%r9),%r8d - 6634f25f: 45 85 c0 test %r8d,%r8d - 6634f262: 0f 9f c2 setg %dl - 6634f265: 3b 10 cmp (%rax),%edx - 6634f267: 0f 84 89 fe ff ff je 6634f0f6 - 6634f26d: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634f271: 48 8b 40 50 mov 0x50(%rax),%rax - 6634f275: 8b 00 mov (%rax),%eax - 6634f277: 85 c0 test %eax,%eax - 6634f279: 0f 85 77 fe ff ff jne 6634f0f6 - 6634f27f: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634f283: 48 8b 50 50 mov 0x50(%rax),%rdx - 6634f287: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f28b: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f291: 48 63 01 movslq (%rcx),%rax - 6634f294: 44 8d 40 01 lea 0x1(%rax),%r8d - 6634f298: 44 89 01 mov %r8d,(%rcx) - 6634f29b: 49 89 14 c2 mov %rdx,(%r10,%rax,8) - 6634f29f: 48 83 c4 20 add $0x20,%rsp - 6634f2a3: 5b pop %rbx - 6634f2a4: 5e pop %rsi - 6634f2a5: 5f pop %rdi - 6634f2a6: c3 retq - 6634f2a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634f2ae: 00 00 - 6634f2b0: 48 8d 15 49 4d 00 00 lea 0x4d49(%rip),%rdx # 66354000 <.rdata> - 6634f2b7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634f2bd: 48 8d 0d 4c 4d 00 00 lea 0x4d4c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f2c4: e8 47 2f 00 00 callq 66352210 <_assert> - 6634f2c9: e9 84 fc ff ff jmpq 6634ef52 - 6634f2ce: 66 90 xchg %ax,%ax - 6634f2d0: 48 8d 15 29 4d 00 00 lea 0x4d29(%rip),%rdx # 66354000 <.rdata> - 6634f2d7: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634f2dd: 48 8d 0d 2c 4d 00 00 lea 0x4d2c(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f2e4: e8 27 2f 00 00 callq 66352210 <_assert> - 6634f2e9: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634f2ed: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634f2f1: e9 c6 fc ff ff jmpq 6634efbc - 6634f2f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f2fd: 00 00 00 - 6634f300: 48 8d 15 f9 4c 00 00 lea 0x4cf9(%rip),%rdx # 66354000 <.rdata> - 6634f307: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634f30d: 48 8d 0d fc 4c 00 00 lea 0x4cfc(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f314: e8 f7 2e 00 00 callq 66352210 <_assert> - 6634f319: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634f31d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634f321: e9 fa fc ff ff jmpq 6634f020 - 6634f326: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f32d: 00 00 00 - 6634f330: 48 8d 15 c9 4c 00 00 lea 0x4cc9(%rip),%rdx # 66354000 <.rdata> - 6634f337: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634f33d: 48 8d 0d cc 4c 00 00 lea 0x4ccc(%rip),%rcx # 66354010 <.rdata+0x10> - 6634f344: e8 c7 2e 00 00 callq 66352210 <_assert> - 6634f349: 48 8b 53 40 mov 0x40(%rbx),%rdx - 6634f34d: 48 8b 43 08 mov 0x8(%rbx),%rax - 6634f351: e9 2c fd ff ff jmpq 6634f082 - 6634f356: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f35d: 00 00 00 - 6634f360: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634f364: 4c 8b 0d c5 85 00 00 mov 0x85c5(%rip),%r9 # 66357930 - 6634f36b: 4c 8b 15 ae 85 00 00 mov 0x85ae(%rip),%r10 # 66357920 - 6634f372: 4c 8b 41 48 mov 0x48(%rcx),%r8 - 6634f376: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634f37a: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634f380: 49 63 09 movslq (%r9),%rcx - 6634f383: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634f387: 45 89 19 mov %r11d,(%r9) - 6634f38a: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634f38e: e9 da fc ff ff jmpq 6634f06d - 6634f393: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634f397: 4c 8b 0d 92 85 00 00 mov 0x8592(%rip),%r9 # 66357930 - 6634f39e: 4c 8b 15 7b 85 00 00 mov 0x857b(%rip),%r10 # 66357920 - 6634f3a5: 4c 8b 41 40 mov 0x40(%rcx),%r8 - 6634f3a9: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634f3ad: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634f3b3: 49 63 09 movslq (%r9),%rcx - 6634f3b6: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634f3ba: 45 89 19 mov %r11d,(%r9) - 6634f3bd: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634f3c1: e9 46 fc ff ff jmpq 6634f00c - 6634f3c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f3cd: 00 00 00 - 6634f3d0: 48 8b 4b 28 mov 0x28(%rbx),%rcx - 6634f3d4: 4c 8b 0d 55 85 00 00 mov 0x8555(%rip),%r9 # 66357930 - 6634f3db: 4c 8b 15 3e 85 00 00 mov 0x853e(%rip),%r10 # 66357920 - 6634f3e2: 4c 8b 41 38 mov 0x38(%rcx),%r8 - 6634f3e6: 49 8b 48 10 mov 0x10(%r8),%rcx - 6634f3ea: c7 01 01 00 00 00 movl $0x1,(%rcx) - 6634f3f0: 49 63 09 movslq (%r9),%rcx - 6634f3f3: 44 8d 59 01 lea 0x1(%rcx),%r11d - 6634f3f7: 45 89 19 mov %r11d,(%r9) - 6634f3fa: 4d 89 04 ca mov %r8,(%r10,%rcx,8) - 6634f3fe: e9 a5 fb ff ff jmpq 6634efa8 - 6634f403: 0f 1f 00 nopl (%rax) - 6634f406: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f40d: 00 00 00 +000000006634e610 : + 6634e610: 41 56 push %r14 + 6634e612: 57 push %rdi + 6634e613: 56 push %rsi + 6634e614: 53 push %rbx + 6634e615: 48 8b 3d 04 83 00 00 mov 0x8304(%rip),%rdi # 66356920 + 6634e61c: 48 8b 35 0d 83 00 00 mov 0x830d(%rip),%rsi # 66356930 + 6634e623: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634e627: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634e62b: 49 8b 83 88 01 00 00 mov 0x188(%r11),%rax + 6634e632: 8b 00 mov (%rax),%eax + 6634e634: 85 c0 test %eax,%eax + 6634e636: 0f 84 a4 00 00 00 je 6634e6e0 + 6634e63c: 31 c0 xor %eax,%eax + 6634e63e: 66 90 xchg %ax,%ax + 6634e640: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634e645: 44 8b 4c 02 64 mov 0x64(%rdx,%rax,1),%r9d + 6634e64a: 45 8b 00 mov (%r8),%r8d + 6634e64d: 45 39 c8 cmp %r9d,%r8d + 6634e650: 74 71 je 6634e6c3 + 6634e652: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634e656: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634e65a: 45 89 c6 mov %r8d,%r14d + 6634e65d: 45 29 ce sub %r9d,%r14d + 6634e660: 45 31 c9 xor %r9d,%r9d + 6634e663: 4d 8b 94 1a c8 00 00 mov 0xc8(%r10,%rbx,1),%r10 + 6634e66a: 00 + 6634e66b: 45 01 32 add %r14d,(%r10) + 6634e66e: 44 89 44 02 64 mov %r8d,0x64(%rdx,%rax,1) + 6634e673: 45 8b 32 mov (%r10),%r14d + 6634e676: 4d 8b 84 43 c8 00 00 mov 0xc8(%r11,%rax,2),%r8 + 6634e67d: 00 + 6634e67e: 45 85 f6 test %r14d,%r14d + 6634e681: 41 0f 9f c1 setg %r9b + 6634e685: 45 3b 08 cmp (%r8),%r9d + 6634e688: 74 39 je 6634e6c3 + 6634e68a: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e68e: 4d 8b 84 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r8 + 6634e695: 00 + 6634e696: 45 8b 10 mov (%r8),%r10d + 6634e699: 45 85 d2 test %r10d,%r10d + 6634e69c: 75 25 jne 6634e6c3 + 6634e69e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e6a2: 4d 8b 8c 18 c8 00 00 mov 0xc8(%r8,%rbx,1),%r9 + 6634e6a9: 00 + 6634e6aa: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e6ae: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e6b5: 4c 63 06 movslq (%rsi),%r8 + 6634e6b8: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e6bc: 44 89 16 mov %r10d,(%rsi) + 6634e6bf: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e6c3: 48 83 c0 04 add $0x4,%rax + 6634e6c7: 48 83 f8 60 cmp $0x60,%rax + 6634e6cb: 0f 85 6f ff ff ff jne 6634e640 + 6634e6d1: 5b pop %rbx + 6634e6d2: 5e pop %rsi + 6634e6d3: 5f pop %rdi + 6634e6d4: 41 5e pop %r14 + 6634e6d6: c3 retq + 6634e6d7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e6de: 00 00 + 6634e6e0: 48 83 c2 64 add $0x64,%rdx + 6634e6e4: b8 c8 00 00 00 mov $0xc8,%eax + 6634e6e9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634e6f0: 44 8b 02 mov (%rdx),%r8d + 6634e6f3: 45 85 c0 test %r8d,%r8d + 6634e6f6: 74 59 je 6634e751 + 6634e6f8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634e6fc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634e700: 45 29 01 sub %r8d,(%r9) + 6634e703: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634e709: 45 8b 09 mov (%r9),%r9d + 6634e70c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634e710: 45 85 c9 test %r9d,%r9d + 6634e713: 41 0f 9f c1 setg %r9b + 6634e717: 45 0f b6 c9 movzbl %r9b,%r9d + 6634e71b: 45 3b 08 cmp (%r8),%r9d + 6634e71e: 74 31 je 6634e751 + 6634e720: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e724: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634e728: 45 8b 00 mov (%r8),%r8d + 6634e72b: 45 85 c0 test %r8d,%r8d + 6634e72e: 75 21 jne 6634e751 + 6634e730: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e734: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634e738: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e73c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e743: 4c 63 06 movslq (%rsi),%r8 + 6634e746: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e74a: 44 89 16 mov %r10d,(%rsi) + 6634e74d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e751: 48 83 c0 08 add $0x8,%rax + 6634e755: 48 83 c2 04 add $0x4,%rdx + 6634e759: 48 3d 88 01 00 00 cmp $0x188,%rax + 6634e75f: 75 8f jne 6634e6f0 + 6634e761: 5b pop %rbx + 6634e762: 5e pop %rsi + 6634e763: 5f pop %rdi + 6634e764: 41 5e pop %r14 + 6634e766: c3 retq + 6634e767: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e76e: 00 00 -000000006634f410 : - 6634f410: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f414: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634f418: 4c 8b 48 20 mov 0x20(%rax),%r9 - 6634f41c: 44 8b 42 14 mov 0x14(%rdx),%r8d - 6634f420: 45 8b 09 mov (%r9),%r9d - 6634f423: 45 85 c9 test %r9d,%r9d - 6634f426: 75 68 jne 6634f490 - 6634f428: 45 85 c0 test %r8d,%r8d - 6634f42b: 74 61 je 6634f48e - 6634f42d: 4c 8b 49 18 mov 0x18(%rcx),%r9 - 6634f431: 4d 8b 49 28 mov 0x28(%r9),%r9 - 6634f435: 45 29 01 sub %r8d,(%r9) - 6634f438: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) - 6634f43f: 41 8b 11 mov (%r9),%edx - 6634f442: 85 d2 test %edx,%edx - 6634f444: 48 8b 40 28 mov 0x28(%rax),%rax - 6634f448: 0f 9f c2 setg %dl - 6634f44b: 0f b6 d2 movzbl %dl,%edx - 6634f44e: 3b 10 cmp (%rax),%edx - 6634f450: 74 3c je 6634f48e - 6634f452: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634f456: 48 8b 40 28 mov 0x28(%rax),%rax - 6634f45a: 8b 00 mov (%rax),%eax - 6634f45c: 85 c0 test %eax,%eax - 6634f45e: 75 2e jne 6634f48e - 6634f460: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634f464: 48 8b 0d c5 84 00 00 mov 0x84c5(%rip),%rcx # 66357930 - 6634f46b: 4c 8b 05 ae 84 00 00 mov 0x84ae(%rip),%r8 # 66357920 - 6634f472: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634f476: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f47a: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f480: 48 63 01 movslq (%rcx),%rax - 6634f483: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f487: 44 89 09 mov %r9d,(%rcx) - 6634f48a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f48e: c3 retq - 6634f48f: 90 nop - 6634f490: 4c 8b 48 08 mov 0x8(%rax),%r9 - 6634f494: 45 8b 09 mov (%r9),%r9d - 6634f497: 41 83 c1 02 add $0x2,%r9d - 6634f49b: 4d 63 c9 movslq %r9d,%r9 - 6634f49e: 4e 8b 0c c8 mov (%rax,%r9,8),%r9 - 6634f4a2: 45 8b 09 mov (%r9),%r9d - 6634f4a5: 45 39 c1 cmp %r8d,%r9d - 6634f4a8: 74 e4 je 6634f48e - 6634f4aa: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634f4ae: 45 89 cb mov %r9d,%r11d - 6634f4b1: 45 29 c3 sub %r8d,%r11d - 6634f4b4: 4d 8b 52 28 mov 0x28(%r10),%r10 - 6634f4b8: 45 01 1a add %r11d,(%r10) - 6634f4bb: 44 89 4a 14 mov %r9d,0x14(%rdx) - 6634f4bf: 45 8b 02 mov (%r10),%r8d - 6634f4c2: 45 85 c0 test %r8d,%r8d - 6634f4c5: e9 7a ff ff ff jmpq 6634f444 - 6634f4ca: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) +000000006634e770 : + 6634e770: 41 56 push %r14 + 6634e772: 57 push %rdi + 6634e773: 56 push %rsi + 6634e774: 53 push %rbx + 6634e775: 48 8b 3d a4 81 00 00 mov 0x81a4(%rip),%rdi # 66356920 + 6634e77c: 48 8b 35 ad 81 00 00 mov 0x81ad(%rip),%rsi # 66356930 + 6634e783: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634e787: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634e78b: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax + 6634e792: 8b 00 mov (%rax),%eax + 6634e794: 85 c0 test %eax,%eax + 6634e796: 0f 84 a4 00 00 00 je 6634e840 + 6634e79c: 31 c0 xor %eax,%eax + 6634e79e: 66 90 xchg %ax,%ax + 6634e7a0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634e7a5: 44 8b 4c 02 44 mov 0x44(%rdx,%rax,1),%r9d + 6634e7aa: 45 8b 00 mov (%r8),%r8d + 6634e7ad: 45 39 c8 cmp %r9d,%r8d + 6634e7b0: 74 71 je 6634e823 + 6634e7b2: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634e7b6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634e7ba: 45 89 c6 mov %r8d,%r14d + 6634e7bd: 45 29 ce sub %r9d,%r14d + 6634e7c0: 45 31 c9 xor %r9d,%r9d + 6634e7c3: 4d 8b 94 1a 88 00 00 mov 0x88(%r10,%rbx,1),%r10 + 6634e7ca: 00 + 6634e7cb: 45 01 32 add %r14d,(%r10) + 6634e7ce: 44 89 44 02 44 mov %r8d,0x44(%rdx,%rax,1) + 6634e7d3: 45 8b 32 mov (%r10),%r14d + 6634e7d6: 4d 8b 84 43 88 00 00 mov 0x88(%r11,%rax,2),%r8 + 6634e7dd: 00 + 6634e7de: 45 85 f6 test %r14d,%r14d + 6634e7e1: 41 0f 9f c1 setg %r9b + 6634e7e5: 45 3b 08 cmp (%r8),%r9d + 6634e7e8: 74 39 je 6634e823 + 6634e7ea: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e7ee: 4d 8b 84 18 88 00 00 mov 0x88(%r8,%rbx,1),%r8 + 6634e7f5: 00 + 6634e7f6: 45 8b 10 mov (%r8),%r10d + 6634e7f9: 45 85 d2 test %r10d,%r10d + 6634e7fc: 75 25 jne 6634e823 + 6634e7fe: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e802: 4d 8b 8c 18 88 00 00 mov 0x88(%r8,%rbx,1),%r9 + 6634e809: 00 + 6634e80a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e80e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e815: 4c 63 06 movslq (%rsi),%r8 + 6634e818: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e81c: 44 89 16 mov %r10d,(%rsi) + 6634e81f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e823: 48 83 c0 04 add $0x4,%rax + 6634e827: 48 83 f8 40 cmp $0x40,%rax + 6634e82b: 0f 85 6f ff ff ff jne 6634e7a0 + 6634e831: 5b pop %rbx + 6634e832: 5e pop %rsi + 6634e833: 5f pop %rdi + 6634e834: 41 5e pop %r14 + 6634e836: c3 retq + 6634e837: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e83e: 00 00 + 6634e840: 48 83 c2 44 add $0x44,%rdx + 6634e844: b8 88 00 00 00 mov $0x88,%eax + 6634e849: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634e850: 44 8b 02 mov (%rdx),%r8d + 6634e853: 45 85 c0 test %r8d,%r8d + 6634e856: 74 59 je 6634e8b1 + 6634e858: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634e85c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634e860: 45 29 01 sub %r8d,(%r9) + 6634e863: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634e869: 45 8b 09 mov (%r9),%r9d + 6634e86c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634e870: 45 85 c9 test %r9d,%r9d + 6634e873: 41 0f 9f c1 setg %r9b + 6634e877: 45 0f b6 c9 movzbl %r9b,%r9d + 6634e87b: 45 3b 08 cmp (%r8),%r9d + 6634e87e: 74 31 je 6634e8b1 + 6634e880: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e884: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634e888: 45 8b 00 mov (%r8),%r8d + 6634e88b: 45 85 c0 test %r8d,%r8d + 6634e88e: 75 21 jne 6634e8b1 + 6634e890: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e894: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634e898: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e89c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e8a3: 4c 63 06 movslq (%rsi),%r8 + 6634e8a6: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e8aa: 44 89 16 mov %r10d,(%rsi) + 6634e8ad: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e8b1: 48 83 c0 08 add $0x8,%rax + 6634e8b5: 48 83 c2 04 add $0x4,%rdx + 6634e8b9: 48 3d 08 01 00 00 cmp $0x108,%rax + 6634e8bf: 75 8f jne 6634e850 + 6634e8c1: 5b pop %rbx + 6634e8c2: 5e pop %rsi + 6634e8c3: 5f pop %rdi + 6634e8c4: 41 5e pop %r14 + 6634e8c6: c3 retq + 6634e8c7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e8ce: 00 00 -000000006634f4d0 : - 6634f4d0: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f4d4: 4c 8b 49 08 mov 0x8(%rcx),%r9 - 6634f4d8: 48 8b 90 38 02 00 00 mov 0x238(%rax),%rdx - 6634f4df: 45 8b 91 20 01 00 00 mov 0x120(%r9),%r10d - 6634f4e6: 44 8b 1a mov (%rdx),%r11d - 6634f4e9: 45 85 db test %r11d,%r11d - 6634f4ec: 0f 84 ce 00 00 00 je 6634f5c0 - 6634f4f2: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634f4f6: 44 8b 02 mov (%rdx),%r8d - 6634f4f9: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634f4fd: 8b 12 mov (%rdx),%edx - 6634f4ff: 42 8d 14 42 lea (%rdx,%r8,2),%edx - 6634f503: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634f507: 45 8b 00 mov (%r8),%r8d - 6634f50a: 42 8d 14 82 lea (%rdx,%r8,4),%edx - 6634f50e: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634f512: 45 8b 00 mov (%r8),%r8d - 6634f515: 46 8d 04 c2 lea (%rdx,%r8,8),%r8d - 6634f519: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634f51d: 8b 12 mov (%rdx),%edx - 6634f51f: c1 e2 04 shl $0x4,%edx - 6634f522: 44 01 c2 add %r8d,%edx - 6634f525: 4c 8b 40 30 mov 0x30(%rax),%r8 - 6634f529: 45 8b 00 mov (%r8),%r8d - 6634f52c: 41 c1 e0 05 shl $0x5,%r8d - 6634f530: 42 8d 54 02 07 lea 0x7(%rdx,%r8,1),%edx - 6634f535: 48 63 d2 movslq %edx,%rdx - 6634f538: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634f53c: 8b 12 mov (%rdx),%edx - 6634f53e: 44 39 d2 cmp %r10d,%edx - 6634f541: 74 74 je 6634f5b7 - 6634f543: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 6634f547: 41 89 d3 mov %edx,%r11d - 6634f54a: 45 29 d3 sub %r10d,%r11d - 6634f54d: 4d 8b 80 40 02 00 00 mov 0x240(%r8),%r8 - 6634f554: 45 01 18 add %r11d,(%r8) - 6634f557: 41 89 91 20 01 00 00 mov %edx,0x120(%r9) - 6634f55e: 45 8b 00 mov (%r8),%r8d - 6634f561: 45 85 c0 test %r8d,%r8d - 6634f564: 48 8b 80 40 02 00 00 mov 0x240(%rax),%rax - 6634f56b: 0f 9f c2 setg %dl - 6634f56e: 0f b6 d2 movzbl %dl,%edx - 6634f571: 3b 10 cmp (%rax),%edx - 6634f573: 74 42 je 6634f5b7 - 6634f575: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634f579: 48 8b 80 40 02 00 00 mov 0x240(%rax),%rax - 6634f580: 8b 00 mov (%rax),%eax - 6634f582: 85 c0 test %eax,%eax - 6634f584: 75 31 jne 6634f5b7 - 6634f586: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634f58a: 48 8b 0d 9f 83 00 00 mov 0x839f(%rip),%rcx # 66357930 - 6634f591: 4c 8b 05 88 83 00 00 mov 0x8388(%rip),%r8 # 66357920 - 6634f598: 48 8b 90 40 02 00 00 mov 0x240(%rax),%rdx - 6634f59f: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f5a3: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f5a9: 48 63 01 movslq (%rcx),%rax - 6634f5ac: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f5b0: 44 89 09 mov %r9d,(%rcx) - 6634f5b3: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f5b7: c3 retq - 6634f5b8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634f5bf: 00 - 6634f5c0: 45 85 d2 test %r10d,%r10d - 6634f5c3: 74 f2 je 6634f5b7 - 6634f5c5: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634f5c9: 48 8b 92 40 02 00 00 mov 0x240(%rdx),%rdx - 6634f5d0: 44 29 12 sub %r10d,(%rdx) - 6634f5d3: 41 c7 81 20 01 00 00 movl $0x0,0x120(%r9) - 6634f5da: 00 00 00 00 - 6634f5de: 8b 12 mov (%rdx),%edx - 6634f5e0: 85 d2 test %edx,%edx - 6634f5e2: eb 80 jmp 6634f564 - 6634f5e4: 66 90 xchg %ax,%ax - 6634f5e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f5ed: 00 00 00 +000000006634e8d0 : + 6634e8d0: 41 56 push %r14 + 6634e8d2: 57 push %rdi + 6634e8d3: 56 push %rsi + 6634e8d4: 53 push %rbx + 6634e8d5: 48 8b 3d 44 80 00 00 mov 0x8044(%rip),%rdi # 66356920 + 6634e8dc: 48 8b 35 4d 80 00 00 mov 0x804d(%rip),%rsi # 66356930 + 6634e8e3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634e8e7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634e8eb: 49 8b 83 08 01 00 00 mov 0x108(%r11),%rax + 6634e8f2: 8b 00 mov (%rax),%eax + 6634e8f4: 85 c0 test %eax,%eax + 6634e8f6: 0f 84 a4 00 00 00 je 6634e9a0 + 6634e8fc: 31 c0 xor %eax,%eax + 6634e8fe: 66 90 xchg %ax,%ax + 6634e900: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634e905: 44 8b 4c 02 44 mov 0x44(%rdx,%rax,1),%r9d + 6634e90a: 45 8b 00 mov (%r8),%r8d + 6634e90d: 45 39 c8 cmp %r9d,%r8d + 6634e910: 74 71 je 6634e983 + 6634e912: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634e916: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634e91a: 45 89 c6 mov %r8d,%r14d + 6634e91d: 45 29 ce sub %r9d,%r14d + 6634e920: 45 31 c9 xor %r9d,%r9d + 6634e923: 4d 8b 94 1a 88 00 00 mov 0x88(%r10,%rbx,1),%r10 + 6634e92a: 00 + 6634e92b: 45 01 32 add %r14d,(%r10) + 6634e92e: 44 89 44 02 44 mov %r8d,0x44(%rdx,%rax,1) + 6634e933: 45 8b 32 mov (%r10),%r14d + 6634e936: 4d 8b 84 43 88 00 00 mov 0x88(%r11,%rax,2),%r8 + 6634e93d: 00 + 6634e93e: 45 85 f6 test %r14d,%r14d + 6634e941: 41 0f 9f c1 setg %r9b + 6634e945: 45 3b 08 cmp (%r8),%r9d + 6634e948: 74 39 je 6634e983 + 6634e94a: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e94e: 4d 8b 84 18 88 00 00 mov 0x88(%r8,%rbx,1),%r8 + 6634e955: 00 + 6634e956: 45 8b 10 mov (%r8),%r10d + 6634e959: 45 85 d2 test %r10d,%r10d + 6634e95c: 75 25 jne 6634e983 + 6634e95e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e962: 4d 8b 8c 18 88 00 00 mov 0x88(%r8,%rbx,1),%r9 + 6634e969: 00 + 6634e96a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e96e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634e975: 4c 63 06 movslq (%rsi),%r8 + 6634e978: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634e97c: 44 89 16 mov %r10d,(%rsi) + 6634e97f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634e983: 48 83 c0 04 add $0x4,%rax + 6634e987: 48 83 f8 40 cmp $0x40,%rax + 6634e98b: 0f 85 6f ff ff ff jne 6634e900 + 6634e991: 5b pop %rbx + 6634e992: 5e pop %rsi + 6634e993: 5f pop %rdi + 6634e994: 41 5e pop %r14 + 6634e996: c3 retq + 6634e997: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634e99e: 00 00 + 6634e9a0: 48 83 c2 44 add $0x44,%rdx + 6634e9a4: b8 88 00 00 00 mov $0x88,%eax + 6634e9a9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634e9b0: 44 8b 02 mov (%rdx),%r8d + 6634e9b3: 45 85 c0 test %r8d,%r8d + 6634e9b6: 74 59 je 6634ea11 + 6634e9b8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634e9bc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634e9c0: 45 29 01 sub %r8d,(%r9) + 6634e9c3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634e9c9: 45 8b 09 mov (%r9),%r9d + 6634e9cc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634e9d0: 45 85 c9 test %r9d,%r9d + 6634e9d3: 41 0f 9f c1 setg %r9b + 6634e9d7: 45 0f b6 c9 movzbl %r9b,%r9d + 6634e9db: 45 3b 08 cmp (%r8),%r9d + 6634e9de: 74 31 je 6634ea11 + 6634e9e0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634e9e4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634e9e8: 45 8b 00 mov (%r8),%r8d + 6634e9eb: 45 85 c0 test %r8d,%r8d + 6634e9ee: 75 21 jne 6634ea11 + 6634e9f0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634e9f4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634e9f8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634e9fc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634ea03: 4c 63 06 movslq (%rsi),%r8 + 6634ea06: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634ea0a: 44 89 16 mov %r10d,(%rsi) + 6634ea0d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634ea11: 48 83 c0 08 add $0x8,%rax + 6634ea15: 48 83 c2 04 add $0x4,%rdx + 6634ea19: 48 3d 08 01 00 00 cmp $0x108,%rax + 6634ea1f: 75 8f jne 6634e9b0 + 6634ea21: 5b pop %rbx + 6634ea22: 5e pop %rsi + 6634ea23: 5f pop %rdi + 6634ea24: 41 5e pop %r14 + 6634ea26: c3 retq + 6634ea27: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634ea2e: 00 00 -000000006634f5f0 : - 6634f5f0: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f5f4: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 6634f5f8: 48 8b 90 30 01 00 00 mov 0x130(%rax),%rdx - 6634f5ff: 45 8b 88 9c 00 00 00 mov 0x9c(%r8),%r9d - 6634f606: 44 8b 12 mov (%rdx),%r10d - 6634f609: 45 85 d2 test %r10d,%r10d - 6634f60c: 0f 84 be 00 00 00 je 6634f6d0 - 6634f612: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634f616: 44 8b 12 mov (%rdx),%r10d - 6634f619: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634f61d: 8b 12 mov (%rdx),%edx - 6634f61f: 42 8d 14 52 lea (%rdx,%r10,2),%edx - 6634f623: 4c 8b 50 18 mov 0x18(%rax),%r10 - 6634f627: 45 8b 12 mov (%r10),%r10d - 6634f62a: 42 8d 14 92 lea (%rdx,%r10,4),%edx - 6634f62e: 4c 8b 50 20 mov 0x20(%rax),%r10 - 6634f632: 45 8b 12 mov (%r10),%r10d - 6634f635: 46 8d 14 d2 lea (%rdx,%r10,8),%r10d - 6634f639: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634f63d: 8b 12 mov (%rdx),%edx - 6634f63f: c1 e2 04 shl $0x4,%edx - 6634f642: 41 8d 54 12 06 lea 0x6(%r10,%rdx,1),%edx - 6634f647: 48 63 d2 movslq %edx,%rdx - 6634f64a: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634f64e: 8b 12 mov (%rdx),%edx - 6634f650: 44 39 ca cmp %r9d,%edx - 6634f653: 74 74 je 6634f6c9 - 6634f655: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634f659: 41 89 d3 mov %edx,%r11d - 6634f65c: 45 29 cb sub %r9d,%r11d - 6634f65f: 4d 8b 92 38 01 00 00 mov 0x138(%r10),%r10 - 6634f666: 45 01 1a add %r11d,(%r10) - 6634f669: 41 89 90 9c 00 00 00 mov %edx,0x9c(%r8) - 6634f670: 45 8b 02 mov (%r10),%r8d - 6634f673: 45 85 c0 test %r8d,%r8d - 6634f676: 48 8b 80 38 01 00 00 mov 0x138(%rax),%rax - 6634f67d: 0f 9f c2 setg %dl - 6634f680: 0f b6 d2 movzbl %dl,%edx - 6634f683: 3b 10 cmp (%rax),%edx - 6634f685: 74 42 je 6634f6c9 - 6634f687: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634f68b: 48 8b 80 38 01 00 00 mov 0x138(%rax),%rax - 6634f692: 8b 00 mov (%rax),%eax - 6634f694: 85 c0 test %eax,%eax - 6634f696: 75 31 jne 6634f6c9 - 6634f698: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634f69c: 48 8b 0d 8d 82 00 00 mov 0x828d(%rip),%rcx # 66357930 - 6634f6a3: 4c 8b 05 76 82 00 00 mov 0x8276(%rip),%r8 # 66357920 - 6634f6aa: 48 8b 90 38 01 00 00 mov 0x138(%rax),%rdx - 6634f6b1: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f6b5: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f6bb: 48 63 01 movslq (%rcx),%rax - 6634f6be: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f6c2: 44 89 09 mov %r9d,(%rcx) - 6634f6c5: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f6c9: c3 retq - 6634f6ca: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 6634f6d0: 45 85 c9 test %r9d,%r9d - 6634f6d3: 74 f4 je 6634f6c9 - 6634f6d5: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634f6d9: 48 8b 92 38 01 00 00 mov 0x138(%rdx),%rdx - 6634f6e0: 44 29 0a sub %r9d,(%rdx) - 6634f6e3: 41 c7 80 9c 00 00 00 movl $0x0,0x9c(%r8) - 6634f6ea: 00 00 00 00 - 6634f6ee: 8b 12 mov (%rdx),%edx - 6634f6f0: 85 d2 test %edx,%edx - 6634f6f2: e9 7f ff ff ff jmpq 6634f676 - 6634f6f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634f6fe: 00 00 +000000006634ea30 : + 6634ea30: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634ea34: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634ea38: 4c 8b 48 18 mov 0x18(%rax),%r9 + 6634ea3c: 44 8b 42 08 mov 0x8(%rdx),%r8d + 6634ea40: 45 8b 09 mov (%r9),%r9d + 6634ea43: 45 85 c9 test %r9d,%r9d + 6634ea46: 75 2b jne 6634ea73 + 6634ea48: 45 85 c0 test %r8d,%r8d + 6634ea4b: 74 25 je 6634ea72 + 6634ea4d: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634ea51: 48 8b 40 10 mov 0x10(%rax),%rax + 6634ea55: 4d 8b 49 10 mov 0x10(%r9),%r9 + 6634ea59: 45 29 01 sub %r8d,(%r9) + 6634ea5c: c7 42 08 00 00 00 00 movl $0x0,0x8(%rdx) + 6634ea63: 41 8b 11 mov (%r9),%edx + 6634ea66: 85 d2 test %edx,%edx + 6634ea68: 0f 9f c2 setg %dl + 6634ea6b: 0f b6 d2 movzbl %dl,%edx + 6634ea6e: 3b 10 cmp (%rax),%edx + 6634ea70: 75 36 jne 6634eaa8 + 6634ea72: c3 retq + 6634ea73: 4c 8b 48 08 mov 0x8(%rax),%r9 + 6634ea77: 45 8b 09 mov (%r9),%r9d + 6634ea7a: 45 39 c1 cmp %r8d,%r9d + 6634ea7d: 74 f3 je 6634ea72 + 6634ea7f: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634ea83: 45 89 cb mov %r9d,%r11d + 6634ea86: 45 29 c3 sub %r8d,%r11d + 6634ea89: 48 8b 40 10 mov 0x10(%rax),%rax + 6634ea8d: 4d 8b 52 10 mov 0x10(%r10),%r10 + 6634ea91: 45 01 1a add %r11d,(%r10) + 6634ea94: 44 89 4a 08 mov %r9d,0x8(%rdx) + 6634ea98: 45 8b 02 mov (%r10),%r8d + 6634ea9b: 45 85 c0 test %r8d,%r8d + 6634ea9e: 0f 9f c2 setg %dl + 6634eaa1: 0f b6 d2 movzbl %dl,%edx + 6634eaa4: 3b 10 cmp (%rax),%edx + 6634eaa6: 74 ca je 6634ea72 + 6634eaa8: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634eaac: 48 8b 40 10 mov 0x10(%rax),%rax + 6634eab0: 8b 00 mov (%rax),%eax + 6634eab2: 85 c0 test %eax,%eax + 6634eab4: 75 bc jne 6634ea72 + 6634eab6: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634eaba: 48 8b 0d 6f 7e 00 00 mov 0x7e6f(%rip),%rcx # 66356930 + 6634eac1: 4c 8b 05 58 7e 00 00 mov 0x7e58(%rip),%r8 # 66356920 + 6634eac8: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634eacc: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634ead0: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634ead6: 48 63 01 movslq (%rcx),%rax + 6634ead9: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634eadd: 44 89 09 mov %r9d,(%rcx) + 6634eae0: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634eae4: c3 retq + 6634eae5: 90 nop + 6634eae6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634eaed: 00 00 00 -000000006634f700 : - 6634f700: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f704: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 6634f708: 48 8b 50 60 mov 0x60(%rax),%rdx - 6634f70c: 45 8b 48 34 mov 0x34(%r8),%r9d - 6634f710: 44 8b 12 mov (%rdx),%r10d - 6634f713: 45 85 d2 test %r10d,%r10d - 6634f716: 0f 84 94 00 00 00 je 6634f7b0 - 6634f71c: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634f720: 44 8b 12 mov (%rdx),%r10d - 6634f723: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634f727: 8b 12 mov (%rdx),%edx - 6634f729: 42 8d 14 52 lea (%rdx,%r10,2),%edx - 6634f72d: 4c 8b 50 18 mov 0x18(%rax),%r10 - 6634f731: 45 8b 12 mov (%r10),%r10d - 6634f734: 42 8d 54 92 04 lea 0x4(%rdx,%r10,4),%edx - 6634f739: 48 63 d2 movslq %edx,%rdx - 6634f73c: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634f740: 8b 12 mov (%rdx),%edx - 6634f742: 44 39 ca cmp %r9d,%edx - 6634f745: 74 65 je 6634f7ac - 6634f747: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634f74b: 41 89 d3 mov %edx,%r11d - 6634f74e: 45 29 cb sub %r9d,%r11d - 6634f751: 4d 8b 52 68 mov 0x68(%r10),%r10 - 6634f755: 45 01 1a add %r11d,(%r10) - 6634f758: 41 89 50 34 mov %edx,0x34(%r8) - 6634f75c: 45 8b 02 mov (%r10),%r8d - 6634f75f: 45 85 c0 test %r8d,%r8d - 6634f762: 48 8b 40 68 mov 0x68(%rax),%rax - 6634f766: 0f 9f c2 setg %dl - 6634f769: 0f b6 d2 movzbl %dl,%edx - 6634f76c: 3b 10 cmp (%rax),%edx - 6634f76e: 74 3c je 6634f7ac - 6634f770: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634f774: 48 8b 40 68 mov 0x68(%rax),%rax - 6634f778: 8b 00 mov (%rax),%eax - 6634f77a: 85 c0 test %eax,%eax - 6634f77c: 75 2e jne 6634f7ac - 6634f77e: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634f782: 48 8b 0d a7 81 00 00 mov 0x81a7(%rip),%rcx # 66357930 - 6634f789: 4c 8b 05 90 81 00 00 mov 0x8190(%rip),%r8 # 66357920 - 6634f790: 48 8b 50 68 mov 0x68(%rax),%rdx - 6634f794: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f798: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f79e: 48 63 01 movslq (%rcx),%rax - 6634f7a1: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f7a5: 44 89 09 mov %r9d,(%rcx) - 6634f7a8: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f7ac: c3 retq - 6634f7ad: 0f 1f 00 nopl (%rax) - 6634f7b0: 45 85 c9 test %r9d,%r9d - 6634f7b3: 74 f7 je 6634f7ac - 6634f7b5: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634f7b9: 48 8b 52 68 mov 0x68(%rdx),%rdx - 6634f7bd: 44 29 0a sub %r9d,(%rdx) - 6634f7c0: 41 c7 40 34 00 00 00 movl $0x0,0x34(%r8) - 6634f7c7: 00 - 6634f7c8: 8b 12 mov (%rdx),%edx - 6634f7ca: 85 d2 test %edx,%edx - 6634f7cc: eb 94 jmp 6634f762 +000000006634eaf0 : + 6634eaf0: 48 8b 41 10 mov 0x10(%rcx),%rax + 6634eaf4: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634eaf8: 4c 8b 48 18 mov 0x18(%rax),%r9 + 6634eafc: 44 8b 42 08 mov 0x8(%rdx),%r8d + 6634eb00: 45 8b 09 mov (%r9),%r9d + 6634eb03: 45 85 c9 test %r9d,%r9d + 6634eb06: 75 2b jne 6634eb33 + 6634eb08: 45 85 c0 test %r8d,%r8d + 6634eb0b: 74 25 je 6634eb32 + 6634eb0d: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634eb11: 48 8b 40 10 mov 0x10(%rax),%rax + 6634eb15: 4d 8b 49 10 mov 0x10(%r9),%r9 + 6634eb19: 45 29 01 sub %r8d,(%r9) + 6634eb1c: c7 42 08 00 00 00 00 movl $0x0,0x8(%rdx) + 6634eb23: 41 8b 11 mov (%r9),%edx + 6634eb26: 85 d2 test %edx,%edx + 6634eb28: 0f 9f c2 setg %dl + 6634eb2b: 0f b6 d2 movzbl %dl,%edx + 6634eb2e: 3b 10 cmp (%rax),%edx + 6634eb30: 75 36 jne 6634eb68 + 6634eb32: c3 retq + 6634eb33: 4c 8b 48 08 mov 0x8(%rax),%r9 + 6634eb37: 45 8b 09 mov (%r9),%r9d + 6634eb3a: 45 39 c1 cmp %r8d,%r9d + 6634eb3d: 74 f3 je 6634eb32 + 6634eb3f: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634eb43: 45 89 cb mov %r9d,%r11d + 6634eb46: 45 29 c3 sub %r8d,%r11d + 6634eb49: 48 8b 40 10 mov 0x10(%rax),%rax + 6634eb4d: 4d 8b 52 10 mov 0x10(%r10),%r10 + 6634eb51: 45 01 1a add %r11d,(%r10) + 6634eb54: 44 89 4a 08 mov %r9d,0x8(%rdx) + 6634eb58: 45 8b 02 mov (%r10),%r8d + 6634eb5b: 45 85 c0 test %r8d,%r8d + 6634eb5e: 0f 9f c2 setg %dl + 6634eb61: 0f b6 d2 movzbl %dl,%edx + 6634eb64: 3b 10 cmp (%rax),%edx + 6634eb66: 74 ca je 6634eb32 + 6634eb68: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634eb6c: 48 8b 40 10 mov 0x10(%rax),%rax + 6634eb70: 8b 00 mov (%rax),%eax + 6634eb72: 85 c0 test %eax,%eax + 6634eb74: 75 bc jne 6634eb32 + 6634eb76: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634eb7a: 48 8b 0d af 7d 00 00 mov 0x7daf(%rip),%rcx # 66356930 + 6634eb81: 4c 8b 05 98 7d 00 00 mov 0x7d98(%rip),%r8 # 66356920 + 6634eb88: 48 8b 50 10 mov 0x10(%rax),%rdx + 6634eb8c: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634eb90: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634eb96: 48 63 01 movslq (%rcx),%rax + 6634eb99: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634eb9d: 44 89 09 mov %r9d,(%rcx) + 6634eba0: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634eba4: c3 retq + 6634eba5: 90 nop + 6634eba6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634ebad: 00 00 00 + +000000006634ebb0 : + 6634ebb0: 41 56 push %r14 + 6634ebb2: 57 push %rdi + 6634ebb3: 56 push %rsi + 6634ebb4: 53 push %rbx + 6634ebb5: 48 8b 3d 64 7d 00 00 mov 0x7d64(%rip),%rdi # 66356920 + 6634ebbc: 48 8b 35 6d 7d 00 00 mov 0x7d6d(%rip),%rsi # 66356930 + 6634ebc3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634ebc7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634ebcb: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax + 6634ebd2: 8b 00 mov (%rax),%eax + 6634ebd4: 85 c0 test %eax,%eax + 6634ebd6: 0f 84 a4 00 00 00 je 6634ec80 + 6634ebdc: 31 c0 xor %eax,%eax + 6634ebde: 66 90 xchg %ax,%ax + 6634ebe0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634ebe5: 44 8b 4c 02 40 mov 0x40(%rdx,%rax,1),%r9d + 6634ebea: 45 8b 00 mov (%r8),%r8d + 6634ebed: 45 39 c8 cmp %r9d,%r8d + 6634ebf0: 74 71 je 6634ec63 + 6634ebf2: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634ebf6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634ebfa: 45 89 c6 mov %r8d,%r14d + 6634ebfd: 45 29 ce sub %r9d,%r14d + 6634ec00: 45 31 c9 xor %r9d,%r9d + 6634ec03: 4d 8b 94 1a 80 00 00 mov 0x80(%r10,%rbx,1),%r10 + 6634ec0a: 00 + 6634ec0b: 45 01 32 add %r14d,(%r10) + 6634ec0e: 44 89 44 02 40 mov %r8d,0x40(%rdx,%rax,1) + 6634ec13: 45 8b 32 mov (%r10),%r14d + 6634ec16: 4d 8b 84 43 80 00 00 mov 0x80(%r11,%rax,2),%r8 + 6634ec1d: 00 + 6634ec1e: 45 85 f6 test %r14d,%r14d + 6634ec21: 41 0f 9f c1 setg %r9b + 6634ec25: 45 3b 08 cmp (%r8),%r9d + 6634ec28: 74 39 je 6634ec63 + 6634ec2a: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634ec2e: 4d 8b 84 18 80 00 00 mov 0x80(%r8,%rbx,1),%r8 + 6634ec35: 00 + 6634ec36: 45 8b 10 mov (%r8),%r10d + 6634ec39: 45 85 d2 test %r10d,%r10d + 6634ec3c: 75 25 jne 6634ec63 + 6634ec3e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634ec42: 4d 8b 8c 18 80 00 00 mov 0x80(%r8,%rbx,1),%r9 + 6634ec49: 00 + 6634ec4a: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634ec4e: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634ec55: 4c 63 06 movslq (%rsi),%r8 + 6634ec58: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634ec5c: 44 89 16 mov %r10d,(%rsi) + 6634ec5f: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634ec63: 48 83 c0 04 add $0x4,%rax + 6634ec67: 48 83 f8 3c cmp $0x3c,%rax + 6634ec6b: 0f 85 6f ff ff ff jne 6634ebe0 + 6634ec71: 5b pop %rbx + 6634ec72: 5e pop %rsi + 6634ec73: 5f pop %rdi + 6634ec74: 41 5e pop %r14 + 6634ec76: c3 retq + 6634ec77: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634ec7e: 00 00 + 6634ec80: 48 83 c2 40 add $0x40,%rdx + 6634ec84: b8 80 00 00 00 mov $0x80,%eax + 6634ec89: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634ec90: 44 8b 02 mov (%rdx),%r8d + 6634ec93: 45 85 c0 test %r8d,%r8d + 6634ec96: 74 59 je 6634ecf1 + 6634ec98: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634ec9c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634eca0: 45 29 01 sub %r8d,(%r9) + 6634eca3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634eca9: 45 8b 09 mov (%r9),%r9d + 6634ecac: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634ecb0: 45 85 c9 test %r9d,%r9d + 6634ecb3: 41 0f 9f c1 setg %r9b + 6634ecb7: 45 0f b6 c9 movzbl %r9b,%r9d + 6634ecbb: 45 3b 08 cmp (%r8),%r9d + 6634ecbe: 74 31 je 6634ecf1 + 6634ecc0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634ecc4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634ecc8: 45 8b 00 mov (%r8),%r8d + 6634eccb: 45 85 c0 test %r8d,%r8d + 6634ecce: 75 21 jne 6634ecf1 + 6634ecd0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634ecd4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634ecd8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634ecdc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634ece3: 4c 63 06 movslq (%rsi),%r8 + 6634ece6: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634ecea: 44 89 16 mov %r10d,(%rsi) + 6634eced: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634ecf1: 48 83 c0 08 add $0x8,%rax + 6634ecf5: 48 83 c2 04 add $0x4,%rdx + 6634ecf9: 48 3d f8 00 00 00 cmp $0xf8,%rax + 6634ecff: 75 8f jne 6634ec90 + 6634ed01: 5b pop %rbx + 6634ed02: 5e pop %rsi + 6634ed03: 5f pop %rdi + 6634ed04: 41 5e pop %r14 + 6634ed06: c3 retq + 6634ed07: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634ed0e: 00 00 + +000000006634ed10 : + 6634ed10: 41 56 push %r14 + 6634ed12: 57 push %rdi + 6634ed13: 56 push %rsi + 6634ed14: 53 push %rbx + 6634ed15: 48 8b 3d 04 7c 00 00 mov 0x7c04(%rip),%rdi # 66356920 + 6634ed1c: 48 8b 35 0d 7c 00 00 mov 0x7c0d(%rip),%rsi # 66356930 + 6634ed23: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634ed27: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634ed2b: 49 8b 83 f8 00 00 00 mov 0xf8(%r11),%rax + 6634ed32: 8b 00 mov (%rax),%eax + 6634ed34: 85 c0 test %eax,%eax + 6634ed36: 0f 84 a4 00 00 00 je 6634ede0 + 6634ed3c: 31 c0 xor %eax,%eax + 6634ed3e: 66 90 xchg %ax,%ax + 6634ed40: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634ed45: 44 8b 4c 02 40 mov 0x40(%rdx,%rax,1),%r9d + 6634ed4a: 45 8b 00 mov (%r8),%r8d + 6634ed4d: 45 39 c8 cmp %r9d,%r8d + 6634ed50: 74 71 je 6634edc3 + 6634ed52: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634ed56: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634ed5a: 45 89 c6 mov %r8d,%r14d + 6634ed5d: 45 29 ce sub %r9d,%r14d + 6634ed60: 45 31 c9 xor %r9d,%r9d + 6634ed63: 4d 8b 94 1a 80 00 00 mov 0x80(%r10,%rbx,1),%r10 + 6634ed6a: 00 + 6634ed6b: 45 01 32 add %r14d,(%r10) + 6634ed6e: 44 89 44 02 40 mov %r8d,0x40(%rdx,%rax,1) + 6634ed73: 45 8b 32 mov (%r10),%r14d + 6634ed76: 4d 8b 84 43 80 00 00 mov 0x80(%r11,%rax,2),%r8 + 6634ed7d: 00 + 6634ed7e: 45 85 f6 test %r14d,%r14d + 6634ed81: 41 0f 9f c1 setg %r9b + 6634ed85: 45 3b 08 cmp (%r8),%r9d + 6634ed88: 74 39 je 6634edc3 + 6634ed8a: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634ed8e: 4d 8b 84 18 80 00 00 mov 0x80(%r8,%rbx,1),%r8 + 6634ed95: 00 + 6634ed96: 45 8b 10 mov (%r8),%r10d + 6634ed99: 45 85 d2 test %r10d,%r10d + 6634ed9c: 75 25 jne 6634edc3 + 6634ed9e: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634eda2: 4d 8b 8c 18 80 00 00 mov 0x80(%r8,%rbx,1),%r9 + 6634eda9: 00 + 6634edaa: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634edae: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634edb5: 4c 63 06 movslq (%rsi),%r8 + 6634edb8: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634edbc: 44 89 16 mov %r10d,(%rsi) + 6634edbf: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634edc3: 48 83 c0 04 add $0x4,%rax + 6634edc7: 48 83 f8 3c cmp $0x3c,%rax + 6634edcb: 0f 85 6f ff ff ff jne 6634ed40 + 6634edd1: 5b pop %rbx + 6634edd2: 5e pop %rsi + 6634edd3: 5f pop %rdi + 6634edd4: 41 5e pop %r14 + 6634edd6: c3 retq + 6634edd7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634edde: 00 00 + 6634ede0: 48 83 c2 40 add $0x40,%rdx + 6634ede4: b8 80 00 00 00 mov $0x80,%eax + 6634ede9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634edf0: 44 8b 02 mov (%rdx),%r8d + 6634edf3: 45 85 c0 test %r8d,%r8d + 6634edf6: 74 59 je 6634ee51 + 6634edf8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634edfc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634ee00: 45 29 01 sub %r8d,(%r9) + 6634ee03: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634ee09: 45 8b 09 mov (%r9),%r9d + 6634ee0c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634ee10: 45 85 c9 test %r9d,%r9d + 6634ee13: 41 0f 9f c1 setg %r9b + 6634ee17: 45 0f b6 c9 movzbl %r9b,%r9d + 6634ee1b: 45 3b 08 cmp (%r8),%r9d + 6634ee1e: 74 31 je 6634ee51 + 6634ee20: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634ee24: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634ee28: 45 8b 00 mov (%r8),%r8d + 6634ee2b: 45 85 c0 test %r8d,%r8d + 6634ee2e: 75 21 jne 6634ee51 + 6634ee30: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634ee34: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634ee38: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634ee3c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634ee43: 4c 63 06 movslq (%rsi),%r8 + 6634ee46: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634ee4a: 44 89 16 mov %r10d,(%rsi) + 6634ee4d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634ee51: 48 83 c0 08 add $0x8,%rax + 6634ee55: 48 83 c2 04 add $0x4,%rdx + 6634ee59: 48 3d f8 00 00 00 cmp $0xf8,%rax + 6634ee5f: 75 8f jne 6634edf0 + 6634ee61: 5b pop %rbx + 6634ee62: 5e pop %rsi + 6634ee63: 5f pop %rdi + 6634ee64: 41 5e pop %r14 + 6634ee66: c3 retq + 6634ee67: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634ee6e: 00 00 + +000000006634ee70 : + 6634ee70: 41 56 push %r14 + 6634ee72: 57 push %rdi + 6634ee73: 56 push %rsi + 6634ee74: 53 push %rbx + 6634ee75: 48 8b 3d a4 7a 00 00 mov 0x7aa4(%rip),%rdi # 66356920 + 6634ee7c: 48 8b 35 ad 7a 00 00 mov 0x7aad(%rip),%rsi # 66356930 + 6634ee83: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634ee87: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634ee8b: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax + 6634ee92: 8b 00 mov (%rax),%eax + 6634ee94: 85 c0 test %eax,%eax + 6634ee96: 0f 84 94 00 00 00 je 6634ef30 + 6634ee9c: 31 c0 xor %eax,%eax + 6634ee9e: 66 90 xchg %ax,%ax + 6634eea0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634eea5: 44 8b 4c 02 3c mov 0x3c(%rdx,%rax,1),%r9d + 6634eeaa: 45 8b 00 mov (%r8),%r8d + 6634eead: 45 39 c8 cmp %r9d,%r8d + 6634eeb0: 74 65 je 6634ef17 + 6634eeb2: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634eeb6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634eeba: 45 89 c6 mov %r8d,%r14d + 6634eebd: 45 29 ce sub %r9d,%r14d + 6634eec0: 45 31 c9 xor %r9d,%r9d + 6634eec3: 4d 8b 54 1a 78 mov 0x78(%r10,%rbx,1),%r10 + 6634eec8: 45 01 32 add %r14d,(%r10) + 6634eecb: 44 89 44 02 3c mov %r8d,0x3c(%rdx,%rax,1) + 6634eed0: 45 8b 32 mov (%r10),%r14d + 6634eed3: 4d 8b 44 43 78 mov 0x78(%r11,%rax,2),%r8 + 6634eed8: 45 85 f6 test %r14d,%r14d + 6634eedb: 41 0f 9f c1 setg %r9b + 6634eedf: 45 3b 08 cmp (%r8),%r9d + 6634eee2: 74 33 je 6634ef17 + 6634eee4: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634eee8: 4d 8b 44 18 78 mov 0x78(%r8,%rbx,1),%r8 + 6634eeed: 45 8b 10 mov (%r8),%r10d + 6634eef0: 45 85 d2 test %r10d,%r10d + 6634eef3: 75 22 jne 6634ef17 + 6634eef5: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634eef9: 4d 8b 4c 18 78 mov 0x78(%r8,%rbx,1),%r9 + 6634eefe: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634ef02: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634ef09: 4c 63 06 movslq (%rsi),%r8 + 6634ef0c: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634ef10: 44 89 16 mov %r10d,(%rsi) + 6634ef13: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634ef17: 48 83 c0 04 add $0x4,%rax + 6634ef1b: 48 83 f8 38 cmp $0x38,%rax + 6634ef1f: 0f 85 7b ff ff ff jne 6634eea0 + 6634ef25: 5b pop %rbx + 6634ef26: 5e pop %rsi + 6634ef27: 5f pop %rdi + 6634ef28: 41 5e pop %r14 + 6634ef2a: c3 retq + 6634ef2b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634ef30: 48 83 c2 3c add $0x3c,%rdx + 6634ef34: b8 78 00 00 00 mov $0x78,%eax + 6634ef39: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634ef40: 44 8b 02 mov (%rdx),%r8d + 6634ef43: 45 85 c0 test %r8d,%r8d + 6634ef46: 74 59 je 6634efa1 + 6634ef48: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634ef4c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634ef50: 45 29 01 sub %r8d,(%r9) + 6634ef53: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634ef59: 45 8b 09 mov (%r9),%r9d + 6634ef5c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634ef60: 45 85 c9 test %r9d,%r9d + 6634ef63: 41 0f 9f c1 setg %r9b + 6634ef67: 45 0f b6 c9 movzbl %r9b,%r9d + 6634ef6b: 45 3b 08 cmp (%r8),%r9d + 6634ef6e: 74 31 je 6634efa1 + 6634ef70: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634ef74: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634ef78: 45 8b 00 mov (%r8),%r8d + 6634ef7b: 45 85 c0 test %r8d,%r8d + 6634ef7e: 75 21 jne 6634efa1 + 6634ef80: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634ef84: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634ef88: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634ef8c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634ef93: 4c 63 06 movslq (%rsi),%r8 + 6634ef96: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634ef9a: 44 89 16 mov %r10d,(%rsi) + 6634ef9d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634efa1: 48 83 c0 08 add $0x8,%rax + 6634efa5: 48 83 c2 04 add $0x4,%rdx + 6634efa9: 48 3d e8 00 00 00 cmp $0xe8,%rax + 6634efaf: 75 8f jne 6634ef40 + 6634efb1: 5b pop %rbx + 6634efb2: 5e pop %rsi + 6634efb3: 5f pop %rdi + 6634efb4: 41 5e pop %r14 + 6634efb6: c3 retq + 6634efb7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634efbe: 00 00 + +000000006634efc0 : + 6634efc0: 41 56 push %r14 + 6634efc2: 57 push %rdi + 6634efc3: 56 push %rsi + 6634efc4: 53 push %rbx + 6634efc5: 48 8b 3d 54 79 00 00 mov 0x7954(%rip),%rdi # 66356920 + 6634efcc: 48 8b 35 5d 79 00 00 mov 0x795d(%rip),%rsi # 66356930 + 6634efd3: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634efd7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634efdb: 49 8b 83 e8 00 00 00 mov 0xe8(%r11),%rax + 6634efe2: 8b 00 mov (%rax),%eax + 6634efe4: 85 c0 test %eax,%eax + 6634efe6: 0f 84 94 00 00 00 je 6634f080 + 6634efec: 31 c0 xor %eax,%eax + 6634efee: 66 90 xchg %ax,%ax + 6634eff0: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634eff5: 44 8b 4c 02 3c mov 0x3c(%rdx,%rax,1),%r9d + 6634effa: 45 8b 00 mov (%r8),%r8d + 6634effd: 45 39 c8 cmp %r9d,%r8d + 6634f000: 74 65 je 6634f067 + 6634f002: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634f006: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634f00a: 45 89 c6 mov %r8d,%r14d + 6634f00d: 45 29 ce sub %r9d,%r14d + 6634f010: 45 31 c9 xor %r9d,%r9d + 6634f013: 4d 8b 54 1a 78 mov 0x78(%r10,%rbx,1),%r10 + 6634f018: 45 01 32 add %r14d,(%r10) + 6634f01b: 44 89 44 02 3c mov %r8d,0x3c(%rdx,%rax,1) + 6634f020: 45 8b 32 mov (%r10),%r14d + 6634f023: 4d 8b 44 43 78 mov 0x78(%r11,%rax,2),%r8 + 6634f028: 45 85 f6 test %r14d,%r14d + 6634f02b: 41 0f 9f c1 setg %r9b + 6634f02f: 45 3b 08 cmp (%r8),%r9d + 6634f032: 74 33 je 6634f067 + 6634f034: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f038: 4d 8b 44 18 78 mov 0x78(%r8,%rbx,1),%r8 + 6634f03d: 45 8b 10 mov (%r8),%r10d + 6634f040: 45 85 d2 test %r10d,%r10d + 6634f043: 75 22 jne 6634f067 + 6634f045: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f049: 4d 8b 4c 18 78 mov 0x78(%r8,%rbx,1),%r9 + 6634f04e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f052: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f059: 4c 63 06 movslq (%rsi),%r8 + 6634f05c: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634f060: 44 89 16 mov %r10d,(%rsi) + 6634f063: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634f067: 48 83 c0 04 add $0x4,%rax + 6634f06b: 48 83 f8 38 cmp $0x38,%rax + 6634f06f: 0f 85 7b ff ff ff jne 6634eff0 + 6634f075: 5b pop %rbx + 6634f076: 5e pop %rsi + 6634f077: 5f pop %rdi + 6634f078: 41 5e pop %r14 + 6634f07a: c3 retq + 6634f07b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634f080: 48 83 c2 3c add $0x3c,%rdx + 6634f084: b8 78 00 00 00 mov $0x78,%eax + 6634f089: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634f090: 44 8b 02 mov (%rdx),%r8d + 6634f093: 45 85 c0 test %r8d,%r8d + 6634f096: 74 59 je 6634f0f1 + 6634f098: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634f09c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634f0a0: 45 29 01 sub %r8d,(%r9) + 6634f0a3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634f0a9: 45 8b 09 mov (%r9),%r9d + 6634f0ac: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634f0b0: 45 85 c9 test %r9d,%r9d + 6634f0b3: 41 0f 9f c1 setg %r9b + 6634f0b7: 45 0f b6 c9 movzbl %r9b,%r9d + 6634f0bb: 45 3b 08 cmp (%r8),%r9d + 6634f0be: 74 31 je 6634f0f1 + 6634f0c0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f0c4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634f0c8: 45 8b 00 mov (%r8),%r8d + 6634f0cb: 45 85 c0 test %r8d,%r8d + 6634f0ce: 75 21 jne 6634f0f1 + 6634f0d0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f0d4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634f0d8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f0dc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f0e3: 4c 63 06 movslq (%rsi),%r8 + 6634f0e6: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634f0ea: 44 89 16 mov %r10d,(%rsi) + 6634f0ed: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634f0f1: 48 83 c0 08 add $0x8,%rax + 6634f0f5: 48 83 c2 04 add $0x4,%rdx + 6634f0f9: 48 3d e8 00 00 00 cmp $0xe8,%rax + 6634f0ff: 75 8f jne 6634f090 + 6634f101: 5b pop %rbx + 6634f102: 5e pop %rsi + 6634f103: 5f pop %rdi + 6634f104: 41 5e pop %r14 + 6634f106: c3 retq + 6634f107: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634f10e: 00 00 + +000000006634f110 : + 6634f110: 41 56 push %r14 + 6634f112: 57 push %rdi + 6634f113: 56 push %rsi + 6634f114: 53 push %rbx + 6634f115: 48 8b 3d 04 78 00 00 mov 0x7804(%rip),%rdi # 66356920 + 6634f11c: 48 8b 35 0d 78 00 00 mov 0x780d(%rip),%rsi # 66356930 + 6634f123: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634f127: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634f12b: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax + 6634f132: 8b 00 mov (%rax),%eax + 6634f134: 85 c0 test %eax,%eax + 6634f136: 0f 84 94 00 00 00 je 6634f1d0 + 6634f13c: 31 c0 xor %eax,%eax + 6634f13e: 66 90 xchg %ax,%ax + 6634f140: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634f145: 44 8b 4c 02 38 mov 0x38(%rdx,%rax,1),%r9d + 6634f14a: 45 8b 00 mov (%r8),%r8d + 6634f14d: 45 39 c8 cmp %r9d,%r8d + 6634f150: 74 65 je 6634f1b7 + 6634f152: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634f156: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634f15a: 45 89 c6 mov %r8d,%r14d + 6634f15d: 45 29 ce sub %r9d,%r14d + 6634f160: 45 31 c9 xor %r9d,%r9d + 6634f163: 4d 8b 54 1a 70 mov 0x70(%r10,%rbx,1),%r10 + 6634f168: 45 01 32 add %r14d,(%r10) + 6634f16b: 44 89 44 02 38 mov %r8d,0x38(%rdx,%rax,1) + 6634f170: 45 8b 32 mov (%r10),%r14d + 6634f173: 4d 8b 44 43 70 mov 0x70(%r11,%rax,2),%r8 + 6634f178: 45 85 f6 test %r14d,%r14d + 6634f17b: 41 0f 9f c1 setg %r9b + 6634f17f: 45 3b 08 cmp (%r8),%r9d + 6634f182: 74 33 je 6634f1b7 + 6634f184: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f188: 4d 8b 44 18 70 mov 0x70(%r8,%rbx,1),%r8 + 6634f18d: 45 8b 10 mov (%r8),%r10d + 6634f190: 45 85 d2 test %r10d,%r10d + 6634f193: 75 22 jne 6634f1b7 + 6634f195: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f199: 4d 8b 4c 18 70 mov 0x70(%r8,%rbx,1),%r9 + 6634f19e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f1a2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f1a9: 4c 63 06 movslq (%rsi),%r8 + 6634f1ac: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634f1b0: 44 89 16 mov %r10d,(%rsi) + 6634f1b3: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634f1b7: 48 83 c0 04 add $0x4,%rax + 6634f1bb: 48 83 f8 34 cmp $0x34,%rax + 6634f1bf: 0f 85 7b ff ff ff jne 6634f140 + 6634f1c5: 5b pop %rbx + 6634f1c6: 5e pop %rsi + 6634f1c7: 5f pop %rdi + 6634f1c8: 41 5e pop %r14 + 6634f1ca: c3 retq + 6634f1cb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634f1d0: 48 83 c2 38 add $0x38,%rdx + 6634f1d4: b8 70 00 00 00 mov $0x70,%eax + 6634f1d9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634f1e0: 44 8b 02 mov (%rdx),%r8d + 6634f1e3: 45 85 c0 test %r8d,%r8d + 6634f1e6: 74 59 je 6634f241 + 6634f1e8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634f1ec: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634f1f0: 45 29 01 sub %r8d,(%r9) + 6634f1f3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634f1f9: 45 8b 09 mov (%r9),%r9d + 6634f1fc: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634f200: 45 85 c9 test %r9d,%r9d + 6634f203: 41 0f 9f c1 setg %r9b + 6634f207: 45 0f b6 c9 movzbl %r9b,%r9d + 6634f20b: 45 3b 08 cmp (%r8),%r9d + 6634f20e: 74 31 je 6634f241 + 6634f210: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f214: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634f218: 45 8b 00 mov (%r8),%r8d + 6634f21b: 45 85 c0 test %r8d,%r8d + 6634f21e: 75 21 jne 6634f241 + 6634f220: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f224: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634f228: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f22c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f233: 4c 63 06 movslq (%rsi),%r8 + 6634f236: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634f23a: 44 89 16 mov %r10d,(%rsi) + 6634f23d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634f241: 48 83 c0 08 add $0x8,%rax + 6634f245: 48 83 c2 04 add $0x4,%rdx + 6634f249: 48 3d d8 00 00 00 cmp $0xd8,%rax + 6634f24f: 75 8f jne 6634f1e0 + 6634f251: 5b pop %rbx + 6634f252: 5e pop %rsi + 6634f253: 5f pop %rdi + 6634f254: 41 5e pop %r14 + 6634f256: c3 retq + 6634f257: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634f25e: 00 00 + +000000006634f260 : + 6634f260: 41 56 push %r14 + 6634f262: 57 push %rdi + 6634f263: 56 push %rsi + 6634f264: 53 push %rbx + 6634f265: 48 8b 3d b4 76 00 00 mov 0x76b4(%rip),%rdi # 66356920 + 6634f26c: 48 8b 35 bd 76 00 00 mov 0x76bd(%rip),%rsi # 66356930 + 6634f273: 4c 8b 59 10 mov 0x10(%rcx),%r11 + 6634f277: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634f27b: 49 8b 83 d8 00 00 00 mov 0xd8(%r11),%rax + 6634f282: 8b 00 mov (%rax),%eax + 6634f284: 85 c0 test %eax,%eax + 6634f286: 0f 84 94 00 00 00 je 6634f320 + 6634f28c: 31 c0 xor %eax,%eax + 6634f28e: 66 90 xchg %ax,%ax + 6634f290: 4d 8b 44 43 08 mov 0x8(%r11,%rax,2),%r8 + 6634f295: 44 8b 4c 02 38 mov 0x38(%rdx,%rax,1),%r9d + 6634f29a: 45 8b 00 mov (%r8),%r8d + 6634f29d: 45 39 c8 cmp %r9d,%r8d + 6634f2a0: 74 65 je 6634f307 + 6634f2a2: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634f2a6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634f2aa: 45 89 c6 mov %r8d,%r14d + 6634f2ad: 45 29 ce sub %r9d,%r14d + 6634f2b0: 45 31 c9 xor %r9d,%r9d + 6634f2b3: 4d 8b 54 1a 70 mov 0x70(%r10,%rbx,1),%r10 + 6634f2b8: 45 01 32 add %r14d,(%r10) + 6634f2bb: 44 89 44 02 38 mov %r8d,0x38(%rdx,%rax,1) + 6634f2c0: 45 8b 32 mov (%r10),%r14d + 6634f2c3: 4d 8b 44 43 70 mov 0x70(%r11,%rax,2),%r8 + 6634f2c8: 45 85 f6 test %r14d,%r14d + 6634f2cb: 41 0f 9f c1 setg %r9b + 6634f2cf: 45 3b 08 cmp (%r8),%r9d + 6634f2d2: 74 33 je 6634f307 + 6634f2d4: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f2d8: 4d 8b 44 18 70 mov 0x70(%r8,%rbx,1),%r8 + 6634f2dd: 45 8b 10 mov (%r8),%r10d + 6634f2e0: 45 85 d2 test %r10d,%r10d + 6634f2e3: 75 22 jne 6634f307 + 6634f2e5: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f2e9: 4d 8b 4c 18 70 mov 0x70(%r8,%rbx,1),%r9 + 6634f2ee: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f2f2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f2f9: 4c 63 06 movslq (%rsi),%r8 + 6634f2fc: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634f300: 44 89 16 mov %r10d,(%rsi) + 6634f303: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634f307: 48 83 c0 04 add $0x4,%rax + 6634f30b: 48 83 f8 34 cmp $0x34,%rax + 6634f30f: 0f 85 7b ff ff ff jne 6634f290 + 6634f315: 5b pop %rbx + 6634f316: 5e pop %rsi + 6634f317: 5f pop %rdi + 6634f318: 41 5e pop %r14 + 6634f31a: c3 retq + 6634f31b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634f320: 48 83 c2 38 add $0x38,%rdx + 6634f324: b8 70 00 00 00 mov $0x70,%eax + 6634f329: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634f330: 44 8b 02 mov (%rdx),%r8d + 6634f333: 45 85 c0 test %r8d,%r8d + 6634f336: 74 59 je 6634f391 + 6634f338: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634f33c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634f340: 45 29 01 sub %r8d,(%r9) + 6634f343: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634f349: 45 8b 09 mov (%r9),%r9d + 6634f34c: 4d 8b 04 03 mov (%r11,%rax,1),%r8 + 6634f350: 45 85 c9 test %r9d,%r9d + 6634f353: 41 0f 9f c1 setg %r9b + 6634f357: 45 0f b6 c9 movzbl %r9b,%r9d + 6634f35b: 45 3b 08 cmp (%r8),%r9d + 6634f35e: 74 31 je 6634f391 + 6634f360: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f364: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634f368: 45 8b 00 mov (%r8),%r8d + 6634f36b: 45 85 c0 test %r8d,%r8d + 6634f36e: 75 21 jne 6634f391 + 6634f370: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f374: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634f378: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f37c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f383: 4c 63 06 movslq (%rsi),%r8 + 6634f386: 45 8d 50 01 lea 0x1(%r8),%r10d + 6634f38a: 44 89 16 mov %r10d,(%rsi) + 6634f38d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634f391: 48 83 c0 08 add $0x8,%rax + 6634f395: 48 83 c2 04 add $0x4,%rdx + 6634f399: 48 3d d8 00 00 00 cmp $0xd8,%rax + 6634f39f: 75 8f jne 6634f330 + 6634f3a1: 5b pop %rbx + 6634f3a2: 5e pop %rsi + 6634f3a3: 5f pop %rdi + 6634f3a4: 41 5e pop %r14 + 6634f3a6: c3 retq + 6634f3a7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634f3ae: 00 00 + +000000006634f3b0 : + 6634f3b0: 41 56 push %r14 + 6634f3b2: 57 push %rdi + 6634f3b3: 56 push %rsi + 6634f3b4: 53 push %rbx + 6634f3b5: 48 8b 3d 64 75 00 00 mov 0x7564(%rip),%rdi # 66356920 + 6634f3bc: 48 8b 35 6d 75 00 00 mov 0x756d(%rip),%rsi # 66356930 + 6634f3c3: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 6634f3c7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634f3cb: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax + 6634f3d2: 8b 00 mov (%rax),%eax + 6634f3d4: 85 c0 test %eax,%eax + 6634f3d6: 0f 84 94 00 00 00 je 6634f470 + 6634f3dc: 31 c0 xor %eax,%eax + 6634f3de: 66 90 xchg %ax,%ax + 6634f3e0: 4d 8b 44 42 08 mov 0x8(%r10,%rax,2),%r8 + 6634f3e5: 44 8b 4c 02 34 mov 0x34(%rdx,%rax,1),%r9d + 6634f3ea: 45 8b 00 mov (%r8),%r8d + 6634f3ed: 45 39 c8 cmp %r9d,%r8d + 6634f3f0: 74 65 je 6634f457 + 6634f3f2: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634f3f6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634f3fa: 45 89 c6 mov %r8d,%r14d + 6634f3fd: 45 29 ce sub %r9d,%r14d + 6634f400: 45 31 c9 xor %r9d,%r9d + 6634f403: 4d 8b 5c 1b 68 mov 0x68(%r11,%rbx,1),%r11 + 6634f408: 45 01 33 add %r14d,(%r11) + 6634f40b: 44 89 44 02 34 mov %r8d,0x34(%rdx,%rax,1) + 6634f410: 45 8b 33 mov (%r11),%r14d + 6634f413: 4d 8b 44 42 68 mov 0x68(%r10,%rax,2),%r8 + 6634f418: 45 85 f6 test %r14d,%r14d + 6634f41b: 41 0f 9f c1 setg %r9b + 6634f41f: 45 3b 08 cmp (%r8),%r9d + 6634f422: 74 33 je 6634f457 + 6634f424: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f428: 4d 8b 44 18 68 mov 0x68(%r8,%rbx,1),%r8 + 6634f42d: 45 8b 18 mov (%r8),%r11d + 6634f430: 45 85 db test %r11d,%r11d + 6634f433: 75 22 jne 6634f457 + 6634f435: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f439: 4d 8b 4c 18 68 mov 0x68(%r8,%rbx,1),%r9 + 6634f43e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f442: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f449: 4c 63 06 movslq (%rsi),%r8 + 6634f44c: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f450: 44 89 1e mov %r11d,(%rsi) + 6634f453: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634f457: 48 83 c0 04 add $0x4,%rax + 6634f45b: 48 83 f8 30 cmp $0x30,%rax + 6634f45f: 0f 85 7b ff ff ff jne 6634f3e0 + 6634f465: 5b pop %rbx + 6634f466: 5e pop %rsi + 6634f467: 5f pop %rdi + 6634f468: 41 5e pop %r14 + 6634f46a: c3 retq + 6634f46b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634f470: 48 83 c2 34 add $0x34,%rdx + 6634f474: b8 68 00 00 00 mov $0x68,%eax + 6634f479: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634f480: 44 8b 02 mov (%rdx),%r8d + 6634f483: 45 85 c0 test %r8d,%r8d + 6634f486: 74 59 je 6634f4e1 + 6634f488: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634f48c: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634f490: 45 29 01 sub %r8d,(%r9) + 6634f493: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634f499: 45 8b 09 mov (%r9),%r9d + 6634f49c: 4d 8b 04 02 mov (%r10,%rax,1),%r8 + 6634f4a0: 45 85 c9 test %r9d,%r9d + 6634f4a3: 41 0f 9f c1 setg %r9b + 6634f4a7: 45 0f b6 c9 movzbl %r9b,%r9d + 6634f4ab: 45 3b 08 cmp (%r8),%r9d + 6634f4ae: 74 31 je 6634f4e1 + 6634f4b0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f4b4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634f4b8: 45 8b 00 mov (%r8),%r8d + 6634f4bb: 45 85 c0 test %r8d,%r8d + 6634f4be: 75 21 jne 6634f4e1 + 6634f4c0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f4c4: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634f4c8: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f4cc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f4d3: 4c 63 06 movslq (%rsi),%r8 + 6634f4d6: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f4da: 44 89 1e mov %r11d,(%rsi) + 6634f4dd: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634f4e1: 48 83 c0 08 add $0x8,%rax + 6634f4e5: 48 83 c2 04 add $0x4,%rdx + 6634f4e9: 48 3d c8 00 00 00 cmp $0xc8,%rax + 6634f4ef: 75 8f jne 6634f480 + 6634f4f1: 5b pop %rbx + 6634f4f2: 5e pop %rsi + 6634f4f3: 5f pop %rdi + 6634f4f4: 41 5e pop %r14 + 6634f4f6: c3 retq + 6634f4f7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634f4fe: 00 00 + +000000006634f500 : + 6634f500: 41 56 push %r14 + 6634f502: 57 push %rdi + 6634f503: 56 push %rsi + 6634f504: 53 push %rbx + 6634f505: 48 8b 3d 14 74 00 00 mov 0x7414(%rip),%rdi # 66356920 + 6634f50c: 48 8b 35 1d 74 00 00 mov 0x741d(%rip),%rsi # 66356930 + 6634f513: 4c 8b 51 10 mov 0x10(%rcx),%r10 + 6634f517: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634f51b: 49 8b 82 c8 00 00 00 mov 0xc8(%r10),%rax + 6634f522: 8b 00 mov (%rax),%eax + 6634f524: 85 c0 test %eax,%eax + 6634f526: 0f 84 94 00 00 00 je 6634f5c0 + 6634f52c: 31 c0 xor %eax,%eax + 6634f52e: 66 90 xchg %ax,%ax + 6634f530: 4d 8b 44 42 08 mov 0x8(%r10,%rax,2),%r8 + 6634f535: 44 8b 4c 02 34 mov 0x34(%rdx,%rax,1),%r9d + 6634f53a: 45 8b 00 mov (%r8),%r8d + 6634f53d: 45 39 c8 cmp %r9d,%r8d + 6634f540: 74 65 je 6634f5a7 + 6634f542: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634f546: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634f54a: 45 89 c6 mov %r8d,%r14d + 6634f54d: 45 29 ce sub %r9d,%r14d + 6634f550: 45 31 c9 xor %r9d,%r9d + 6634f553: 4d 8b 5c 1b 68 mov 0x68(%r11,%rbx,1),%r11 + 6634f558: 45 01 33 add %r14d,(%r11) + 6634f55b: 44 89 44 02 34 mov %r8d,0x34(%rdx,%rax,1) + 6634f560: 45 8b 33 mov (%r11),%r14d + 6634f563: 4d 8b 44 42 68 mov 0x68(%r10,%rax,2),%r8 + 6634f568: 45 85 f6 test %r14d,%r14d + 6634f56b: 41 0f 9f c1 setg %r9b + 6634f56f: 45 3b 08 cmp (%r8),%r9d + 6634f572: 74 33 je 6634f5a7 + 6634f574: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f578: 4d 8b 44 18 68 mov 0x68(%r8,%rbx,1),%r8 + 6634f57d: 45 8b 18 mov (%r8),%r11d + 6634f580: 45 85 db test %r11d,%r11d + 6634f583: 75 22 jne 6634f5a7 + 6634f585: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f589: 4d 8b 4c 18 68 mov 0x68(%r8,%rbx,1),%r9 + 6634f58e: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f592: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f599: 4c 63 06 movslq (%rsi),%r8 + 6634f59c: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f5a0: 44 89 1e mov %r11d,(%rsi) + 6634f5a3: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634f5a7: 48 83 c0 04 add $0x4,%rax + 6634f5ab: 48 83 f8 30 cmp $0x30,%rax + 6634f5af: 0f 85 7b ff ff ff jne 6634f530 + 6634f5b5: 5b pop %rbx + 6634f5b6: 5e pop %rsi + 6634f5b7: 5f pop %rdi + 6634f5b8: 41 5e pop %r14 + 6634f5ba: c3 retq + 6634f5bb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634f5c0: 48 83 c2 34 add $0x34,%rdx + 6634f5c4: b8 68 00 00 00 mov $0x68,%eax + 6634f5c9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634f5d0: 44 8b 02 mov (%rdx),%r8d + 6634f5d3: 45 85 c0 test %r8d,%r8d + 6634f5d6: 74 59 je 6634f631 + 6634f5d8: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634f5dc: 4d 8b 0c 01 mov (%r9,%rax,1),%r9 + 6634f5e0: 45 29 01 sub %r8d,(%r9) + 6634f5e3: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634f5e9: 45 8b 09 mov (%r9),%r9d + 6634f5ec: 4d 8b 04 02 mov (%r10,%rax,1),%r8 + 6634f5f0: 45 85 c9 test %r9d,%r9d + 6634f5f3: 41 0f 9f c1 setg %r9b + 6634f5f7: 45 0f b6 c9 movzbl %r9b,%r9d + 6634f5fb: 45 3b 08 cmp (%r8),%r9d + 6634f5fe: 74 31 je 6634f631 + 6634f600: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f604: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634f608: 45 8b 00 mov (%r8),%r8d + 6634f60b: 45 85 c0 test %r8d,%r8d + 6634f60e: 75 21 jne 6634f631 + 6634f610: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f614: 4d 8b 0c 00 mov (%r8,%rax,1),%r9 + 6634f618: 4d 8b 41 10 mov 0x10(%r9),%r8 + 6634f61c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f623: 4c 63 06 movslq (%rsi),%r8 + 6634f626: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f62a: 44 89 1e mov %r11d,(%rsi) + 6634f62d: 4e 89 0c c7 mov %r9,(%rdi,%r8,8) + 6634f631: 48 83 c0 08 add $0x8,%rax + 6634f635: 48 83 c2 04 add $0x4,%rdx + 6634f639: 48 3d c8 00 00 00 cmp $0xc8,%rax + 6634f63f: 75 8f jne 6634f5d0 + 6634f641: 5b pop %rbx + 6634f642: 5e pop %rsi + 6634f643: 5f pop %rdi + 6634f644: 41 5e pop %r14 + 6634f646: c3 retq + 6634f647: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634f64e: 00 00 + +000000006634f650 : + 6634f650: 41 56 push %r14 + 6634f652: 57 push %rdi + 6634f653: 56 push %rsi + 6634f654: 53 push %rbx + 6634f655: 48 8b 3d c4 72 00 00 mov 0x72c4(%rip),%rdi # 66356920 + 6634f65c: 48 8b 35 cd 72 00 00 mov 0x72cd(%rip),%rsi # 66356930 + 6634f663: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634f667: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634f66b: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax + 6634f672: 8b 00 mov (%rax),%eax + 6634f674: 85 c0 test %eax,%eax + 6634f676: 0f 84 94 00 00 00 je 6634f710 + 6634f67c: 31 c0 xor %eax,%eax + 6634f67e: 66 90 xchg %ax,%ax + 6634f680: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 + 6634f685: 44 8b 54 02 30 mov 0x30(%rdx,%rax,1),%r10d + 6634f68a: 45 8b 00 mov (%r8),%r8d + 6634f68d: 45 39 d0 cmp %r10d,%r8d + 6634f690: 74 65 je 6634f6f7 + 6634f692: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634f696: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634f69a: 45 89 c6 mov %r8d,%r14d + 6634f69d: 45 29 d6 sub %r10d,%r14d + 6634f6a0: 45 31 d2 xor %r10d,%r10d + 6634f6a3: 4d 8b 5c 1b 60 mov 0x60(%r11,%rbx,1),%r11 + 6634f6a8: 45 01 33 add %r14d,(%r11) + 6634f6ab: 44 89 44 02 30 mov %r8d,0x30(%rdx,%rax,1) + 6634f6b0: 45 8b 33 mov (%r11),%r14d + 6634f6b3: 4d 8b 44 41 60 mov 0x60(%r9,%rax,2),%r8 + 6634f6b8: 45 85 f6 test %r14d,%r14d + 6634f6bb: 41 0f 9f c2 setg %r10b + 6634f6bf: 45 3b 10 cmp (%r8),%r10d + 6634f6c2: 74 33 je 6634f6f7 + 6634f6c4: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f6c8: 4d 8b 44 18 60 mov 0x60(%r8,%rbx,1),%r8 + 6634f6cd: 45 8b 18 mov (%r8),%r11d + 6634f6d0: 45 85 db test %r11d,%r11d + 6634f6d3: 75 22 jne 6634f6f7 + 6634f6d5: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f6d9: 4d 8b 54 18 60 mov 0x60(%r8,%rbx,1),%r10 + 6634f6de: 4d 8b 42 10 mov 0x10(%r10),%r8 + 6634f6e2: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f6e9: 4c 63 06 movslq (%rsi),%r8 + 6634f6ec: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f6f0: 44 89 1e mov %r11d,(%rsi) + 6634f6f3: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 6634f6f7: 48 83 c0 04 add $0x4,%rax + 6634f6fb: 48 83 f8 2c cmp $0x2c,%rax + 6634f6ff: 0f 85 7b ff ff ff jne 6634f680 + 6634f705: 5b pop %rbx + 6634f706: 5e pop %rsi + 6634f707: 5f pop %rdi + 6634f708: 41 5e pop %r14 + 6634f70a: c3 retq + 6634f70b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634f710: 48 83 c2 30 add $0x30,%rdx + 6634f714: b8 60 00 00 00 mov $0x60,%eax + 6634f719: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634f720: 44 8b 02 mov (%rdx),%r8d + 6634f723: 45 85 c0 test %r8d,%r8d + 6634f726: 74 59 je 6634f781 + 6634f728: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634f72c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 + 6634f730: 45 29 02 sub %r8d,(%r10) + 6634f733: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634f739: 45 8b 12 mov (%r10),%r10d + 6634f73c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 + 6634f740: 45 85 d2 test %r10d,%r10d + 6634f743: 41 0f 9f c2 setg %r10b + 6634f747: 45 0f b6 d2 movzbl %r10b,%r10d + 6634f74b: 45 3b 10 cmp (%r8),%r10d + 6634f74e: 74 31 je 6634f781 + 6634f750: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f754: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634f758: 45 8b 00 mov (%r8),%r8d + 6634f75b: 45 85 c0 test %r8d,%r8d + 6634f75e: 75 21 jne 6634f781 + 6634f760: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f764: 4d 8b 14 00 mov (%r8,%rax,1),%r10 + 6634f768: 4d 8b 42 10 mov 0x10(%r10),%r8 + 6634f76c: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f773: 4c 63 06 movslq (%rsi),%r8 + 6634f776: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f77a: 44 89 1e mov %r11d,(%rsi) + 6634f77d: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 6634f781: 48 83 c0 08 add $0x8,%rax + 6634f785: 48 83 c2 04 add $0x4,%rdx + 6634f789: 48 3d b8 00 00 00 cmp $0xb8,%rax + 6634f78f: 75 8f jne 6634f720 + 6634f791: 5b pop %rbx + 6634f792: 5e pop %rsi + 6634f793: 5f pop %rdi + 6634f794: 41 5e pop %r14 + 6634f796: c3 retq + 6634f797: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634f79e: 00 00 + +000000006634f7a0 : + 6634f7a0: 41 56 push %r14 + 6634f7a2: 57 push %rdi + 6634f7a3: 56 push %rsi + 6634f7a4: 53 push %rbx + 6634f7a5: 48 8b 3d 74 71 00 00 mov 0x7174(%rip),%rdi # 66356920 + 6634f7ac: 48 8b 35 7d 71 00 00 mov 0x717d(%rip),%rsi # 66356930 + 6634f7b3: 4c 8b 49 10 mov 0x10(%rcx),%r9 + 6634f7b7: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634f7bb: 49 8b 81 b8 00 00 00 mov 0xb8(%r9),%rax + 6634f7c2: 8b 00 mov (%rax),%eax + 6634f7c4: 85 c0 test %eax,%eax + 6634f7c6: 0f 84 94 00 00 00 je 6634f860 + 6634f7cc: 31 c0 xor %eax,%eax 6634f7ce: 66 90 xchg %ax,%ax + 6634f7d0: 4d 8b 44 41 08 mov 0x8(%r9,%rax,2),%r8 + 6634f7d5: 44 8b 54 02 30 mov 0x30(%rdx,%rax,1),%r10d + 6634f7da: 45 8b 00 mov (%r8),%r8d + 6634f7dd: 45 39 d0 cmp %r10d,%r8d + 6634f7e0: 74 65 je 6634f847 + 6634f7e2: 4c 8b 59 18 mov 0x18(%rcx),%r11 + 6634f7e6: 48 8d 1c 00 lea (%rax,%rax,1),%rbx + 6634f7ea: 45 89 c6 mov %r8d,%r14d + 6634f7ed: 45 29 d6 sub %r10d,%r14d + 6634f7f0: 45 31 d2 xor %r10d,%r10d + 6634f7f3: 4d 8b 5c 1b 60 mov 0x60(%r11,%rbx,1),%r11 + 6634f7f8: 45 01 33 add %r14d,(%r11) + 6634f7fb: 44 89 44 02 30 mov %r8d,0x30(%rdx,%rax,1) + 6634f800: 45 8b 33 mov (%r11),%r14d + 6634f803: 4d 8b 44 41 60 mov 0x60(%r9,%rax,2),%r8 + 6634f808: 45 85 f6 test %r14d,%r14d + 6634f80b: 41 0f 9f c2 setg %r10b + 6634f80f: 45 3b 10 cmp (%r8),%r10d + 6634f812: 74 33 je 6634f847 + 6634f814: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f818: 4d 8b 44 18 60 mov 0x60(%r8,%rbx,1),%r8 + 6634f81d: 45 8b 18 mov (%r8),%r11d + 6634f820: 45 85 db test %r11d,%r11d + 6634f823: 75 22 jne 6634f847 + 6634f825: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f829: 4d 8b 54 18 60 mov 0x60(%r8,%rbx,1),%r10 + 6634f82e: 4d 8b 42 10 mov 0x10(%r10),%r8 + 6634f832: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f839: 4c 63 06 movslq (%rsi),%r8 + 6634f83c: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f840: 44 89 1e mov %r11d,(%rsi) + 6634f843: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 6634f847: 48 83 c0 04 add $0x4,%rax + 6634f84b: 48 83 f8 2c cmp $0x2c,%rax + 6634f84f: 0f 85 7b ff ff ff jne 6634f7d0 + 6634f855: 5b pop %rbx + 6634f856: 5e pop %rsi + 6634f857: 5f pop %rdi + 6634f858: 41 5e pop %r14 + 6634f85a: c3 retq + 6634f85b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634f860: 48 83 c2 30 add $0x30,%rdx + 6634f864: b8 60 00 00 00 mov $0x60,%eax + 6634f869: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 6634f870: 44 8b 02 mov (%rdx),%r8d + 6634f873: 45 85 c0 test %r8d,%r8d + 6634f876: 74 59 je 6634f8d1 + 6634f878: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634f87c: 4d 8b 14 02 mov (%r10,%rax,1),%r10 + 6634f880: 45 29 02 sub %r8d,(%r10) + 6634f883: c7 02 00 00 00 00 movl $0x0,(%rdx) + 6634f889: 45 8b 12 mov (%r10),%r10d + 6634f88c: 4d 8b 04 01 mov (%r9,%rax,1),%r8 + 6634f890: 45 85 d2 test %r10d,%r10d + 6634f893: 41 0f 9f c2 setg %r10b + 6634f897: 45 0f b6 d2 movzbl %r10b,%r10d + 6634f89b: 45 3b 10 cmp (%r8),%r10d + 6634f89e: 74 31 je 6634f8d1 + 6634f8a0: 4c 8b 41 20 mov 0x20(%rcx),%r8 + 6634f8a4: 4d 8b 04 00 mov (%r8,%rax,1),%r8 + 6634f8a8: 45 8b 00 mov (%r8),%r8d + 6634f8ab: 45 85 c0 test %r8d,%r8d + 6634f8ae: 75 21 jne 6634f8d1 + 6634f8b0: 4c 8b 41 28 mov 0x28(%rcx),%r8 + 6634f8b4: 4d 8b 14 00 mov (%r8,%rax,1),%r10 + 6634f8b8: 4d 8b 42 10 mov 0x10(%r10),%r8 + 6634f8bc: 41 c7 00 01 00 00 00 movl $0x1,(%r8) + 6634f8c3: 4c 63 06 movslq (%rsi),%r8 + 6634f8c6: 45 8d 58 01 lea 0x1(%r8),%r11d + 6634f8ca: 44 89 1e mov %r11d,(%rsi) + 6634f8cd: 4e 89 14 c7 mov %r10,(%rdi,%r8,8) + 6634f8d1: 48 83 c0 08 add $0x8,%rax + 6634f8d5: 48 83 c2 04 add $0x4,%rdx + 6634f8d9: 48 3d b8 00 00 00 cmp $0xb8,%rax + 6634f8df: 75 8f jne 6634f870 + 6634f8e1: 5b pop %rbx + 6634f8e2: 5e pop %rsi + 6634f8e3: 5f pop %rdi + 6634f8e4: 41 5e pop %r14 + 6634f8e6: c3 retq + 6634f8e7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634f8ee: 00 00 -000000006634f7d0 : - 6634f7d0: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f7d4: 4c 8b 49 08 mov 0x8(%rcx),%r9 - 6634f7d8: 48 8b 90 40 04 00 00 mov 0x440(%rax),%rdx - 6634f7df: 45 8b 91 24 02 00 00 mov 0x224(%r9),%r10d - 6634f7e6: 44 8b 1a mov (%rdx),%r11d - 6634f7e9: 45 85 db test %r11d,%r11d - 6634f7ec: 0f 84 d2 00 00 00 je 6634f8c4 - 6634f7f2: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634f7f6: 44 8b 02 mov (%rdx),%r8d - 6634f7f9: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634f7fd: 8b 12 mov (%rdx),%edx - 6634f7ff: 42 8d 14 42 lea (%rdx,%r8,2),%edx - 6634f803: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634f807: 45 8b 00 mov (%r8),%r8d - 6634f80a: 42 8d 14 82 lea (%rdx,%r8,4),%edx - 6634f80e: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634f812: 45 8b 00 mov (%r8),%r8d - 6634f815: 46 8d 04 c2 lea (%rdx,%r8,8),%r8d - 6634f819: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634f81d: 8b 12 mov (%rdx),%edx - 6634f81f: c1 e2 04 shl $0x4,%edx - 6634f822: 41 01 d0 add %edx,%r8d - 6634f825: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634f829: 8b 12 mov (%rdx),%edx - 6634f82b: c1 e2 05 shl $0x5,%edx - 6634f82e: 44 01 c2 add %r8d,%edx - 6634f831: 4c 8b 40 38 mov 0x38(%rax),%r8 - 6634f835: 45 8b 00 mov (%r8),%r8d - 6634f838: 41 c1 e0 06 shl $0x6,%r8d - 6634f83c: 42 8d 54 02 08 lea 0x8(%rdx,%r8,1),%edx - 6634f841: 48 63 d2 movslq %edx,%rdx - 6634f844: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634f848: 8b 12 mov (%rdx),%edx - 6634f84a: 44 39 d2 cmp %r10d,%edx - 6634f84d: 74 74 je 6634f8c3 - 6634f84f: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 6634f853: 41 89 d3 mov %edx,%r11d - 6634f856: 45 29 d3 sub %r10d,%r11d - 6634f859: 4d 8b 80 48 04 00 00 mov 0x448(%r8),%r8 - 6634f860: 45 01 18 add %r11d,(%r8) - 6634f863: 41 89 91 24 02 00 00 mov %edx,0x224(%r9) - 6634f86a: 45 8b 00 mov (%r8),%r8d - 6634f86d: 45 85 c0 test %r8d,%r8d - 6634f870: 48 8b 80 48 04 00 00 mov 0x448(%rax),%rax - 6634f877: 0f 9f c2 setg %dl - 6634f87a: 0f b6 d2 movzbl %dl,%edx - 6634f87d: 3b 10 cmp (%rax),%edx - 6634f87f: 74 42 je 6634f8c3 - 6634f881: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634f885: 48 8b 80 48 04 00 00 mov 0x448(%rax),%rax - 6634f88c: 8b 00 mov (%rax),%eax - 6634f88e: 85 c0 test %eax,%eax - 6634f890: 75 31 jne 6634f8c3 - 6634f892: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634f896: 48 8b 0d 93 80 00 00 mov 0x8093(%rip),%rcx # 66357930 - 6634f89d: 4c 8b 05 7c 80 00 00 mov 0x807c(%rip),%r8 # 66357920 - 6634f8a4: 48 8b 90 48 04 00 00 mov 0x448(%rax),%rdx - 6634f8ab: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f8af: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f8b5: 48 63 01 movslq (%rcx),%rax - 6634f8b8: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f8bc: 44 89 09 mov %r9d,(%rcx) - 6634f8bf: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f8c3: c3 retq - 6634f8c4: 45 85 d2 test %r10d,%r10d - 6634f8c7: 74 fa je 6634f8c3 - 6634f8c9: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634f8cd: 48 8b 92 48 04 00 00 mov 0x448(%rdx),%rdx - 6634f8d4: 44 29 12 sub %r10d,(%rdx) - 6634f8d7: 41 c7 81 24 02 00 00 movl $0x0,0x224(%r9) - 6634f8de: 00 00 00 00 - 6634f8e2: 8b 12 mov (%rdx),%edx - 6634f8e4: 85 d2 test %edx,%edx - 6634f8e6: eb 88 jmp 6634f870 - 6634f8e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6634f8ef: 00 - -000000006634f8f0 : +000000006634f8f0 : 6634f8f0: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f8f4: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 6634f8f8: 48 8b 90 a8 00 00 00 mov 0xa8(%rax),%rdx - 6634f8ff: 45 8b 48 58 mov 0x58(%r8),%r9d - 6634f903: 44 8b 12 mov (%rdx),%r10d - 6634f906: 45 85 d2 test %r10d,%r10d - 6634f909: 0f 84 b1 00 00 00 je 6634f9c0 - 6634f90f: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634f913: 44 8b 12 mov (%rdx),%r10d - 6634f916: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634f91a: 8b 12 mov (%rdx),%edx - 6634f91c: 42 8d 14 52 lea (%rdx,%r10,2),%edx - 6634f920: 4c 8b 50 18 mov 0x18(%rax),%r10 - 6634f924: 45 8b 12 mov (%r10),%r10d - 6634f927: 42 8d 14 92 lea (%rdx,%r10,4),%edx - 6634f92b: 4c 8b 50 20 mov 0x20(%rax),%r10 - 6634f92f: 45 8b 12 mov (%r10),%r10d - 6634f932: 42 8d 54 d2 05 lea 0x5(%rdx,%r10,8),%edx - 6634f937: 48 63 d2 movslq %edx,%rdx - 6634f93a: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634f93e: 8b 12 mov (%rdx),%edx - 6634f940: 44 39 ca cmp %r9d,%edx - 6634f943: 74 71 je 6634f9b6 - 6634f945: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634f949: 41 89 d3 mov %edx,%r11d - 6634f94c: 45 29 cb sub %r9d,%r11d - 6634f94f: 4d 8b 92 b0 00 00 00 mov 0xb0(%r10),%r10 - 6634f956: 45 01 1a add %r11d,(%r10) - 6634f959: 41 89 50 58 mov %edx,0x58(%r8) - 6634f95d: 45 8b 02 mov (%r10),%r8d - 6634f960: 45 85 c0 test %r8d,%r8d - 6634f963: 48 8b 80 b0 00 00 00 mov 0xb0(%rax),%rax - 6634f96a: 0f 9f c2 setg %dl - 6634f96d: 0f b6 d2 movzbl %dl,%edx - 6634f970: 3b 10 cmp (%rax),%edx - 6634f972: 74 42 je 6634f9b6 - 6634f974: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634f978: 48 8b 80 b0 00 00 00 mov 0xb0(%rax),%rax - 6634f97f: 8b 00 mov (%rax),%eax - 6634f981: 85 c0 test %eax,%eax - 6634f983: 75 31 jne 6634f9b6 - 6634f985: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634f989: 48 8b 0d a0 7f 00 00 mov 0x7fa0(%rip),%rcx # 66357930 - 6634f990: 4c 8b 05 89 7f 00 00 mov 0x7f89(%rip),%r8 # 66357920 - 6634f997: 48 8b 90 b0 00 00 00 mov 0xb0(%rax),%rdx - 6634f99e: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634f9a2: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634f9a8: 48 63 01 movslq (%rcx),%rax - 6634f9ab: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634f9af: 44 89 09 mov %r9d,(%rcx) - 6634f9b2: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634f9b6: c3 retq - 6634f9b7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634f9be: 00 00 - 6634f9c0: 45 85 c9 test %r9d,%r9d - 6634f9c3: 74 f1 je 6634f9b6 - 6634f9c5: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634f9c9: 48 8b 92 b0 00 00 00 mov 0xb0(%rdx),%rdx - 6634f9d0: 44 29 0a sub %r9d,(%rdx) - 6634f9d3: 41 c7 40 58 00 00 00 movl $0x0,0x58(%r8) - 6634f9da: 00 - 6634f9db: 8b 12 mov (%rdx),%edx - 6634f9dd: 85 d2 test %edx,%edx - 6634f9df: eb 82 jmp 6634f963 - 6634f9e1: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 6634f9e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634f9ed: 00 00 00 + 6634f8f4: 48 8b 51 08 mov 0x8(%rcx),%rdx + 6634f8f8: 4c 8b 48 20 mov 0x20(%rax),%r9 + 6634f8fc: 44 8b 42 14 mov 0x14(%rdx),%r8d + 6634f900: 45 8b 09 mov (%r9),%r9d + 6634f903: 45 85 c9 test %r9d,%r9d + 6634f906: 75 68 jne 6634f970 + 6634f908: 45 85 c0 test %r8d,%r8d + 6634f90b: 74 61 je 6634f96e + 6634f90d: 4c 8b 49 18 mov 0x18(%rcx),%r9 + 6634f911: 4d 8b 49 28 mov 0x28(%r9),%r9 + 6634f915: 45 29 01 sub %r8d,(%r9) + 6634f918: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) + 6634f91f: 41 8b 11 mov (%r9),%edx + 6634f922: 85 d2 test %edx,%edx + 6634f924: 48 8b 40 28 mov 0x28(%rax),%rax + 6634f928: 0f 9f c2 setg %dl + 6634f92b: 0f b6 d2 movzbl %dl,%edx + 6634f92e: 3b 10 cmp (%rax),%edx + 6634f930: 74 3c je 6634f96e + 6634f932: 48 8b 41 20 mov 0x20(%rcx),%rax + 6634f936: 48 8b 40 28 mov 0x28(%rax),%rax + 6634f93a: 8b 00 mov (%rax),%eax + 6634f93c: 85 c0 test %eax,%eax + 6634f93e: 75 2e jne 6634f96e + 6634f940: 48 8b 41 28 mov 0x28(%rcx),%rax + 6634f944: 48 8b 0d e5 6f 00 00 mov 0x6fe5(%rip),%rcx # 66356930 + 6634f94b: 4c 8b 05 ce 6f 00 00 mov 0x6fce(%rip),%r8 # 66356920 + 6634f952: 48 8b 50 28 mov 0x28(%rax),%rdx + 6634f956: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634f95a: c7 00 01 00 00 00 movl $0x1,(%rax) + 6634f960: 48 63 01 movslq (%rcx),%rax + 6634f963: 44 8d 48 01 lea 0x1(%rax),%r9d + 6634f967: 44 89 09 mov %r9d,(%rcx) + 6634f96a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) + 6634f96e: c3 retq + 6634f96f: 90 nop + 6634f970: 4c 8b 48 08 mov 0x8(%rax),%r9 + 6634f974: 45 8b 09 mov (%r9),%r9d + 6634f977: 41 83 c1 02 add $0x2,%r9d + 6634f97b: 4d 63 c9 movslq %r9d,%r9 + 6634f97e: 4e 8b 0c c8 mov (%rax,%r9,8),%r9 + 6634f982: 45 8b 09 mov (%r9),%r9d + 6634f985: 45 39 c1 cmp %r8d,%r9d + 6634f988: 74 e4 je 6634f96e + 6634f98a: 4c 8b 51 18 mov 0x18(%rcx),%r10 + 6634f98e: 45 89 cb mov %r9d,%r11d + 6634f991: 45 29 c3 sub %r8d,%r11d + 6634f994: 4d 8b 52 28 mov 0x28(%r10),%r10 + 6634f998: 45 01 1a add %r11d,(%r10) + 6634f99b: 44 89 4a 14 mov %r9d,0x14(%rdx) + 6634f99f: 45 8b 02 mov (%r10),%r8d + 6634f9a2: 45 85 c0 test %r8d,%r8d + 6634f9a5: e9 7a ff ff ff jmpq 6634f924 + 6634f9aa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) -000000006634f9f0 : - 6634f9f0: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634f9f4: 4c 8b 49 08 mov 0x8(%rcx),%r9 - 6634f9f8: 48 8b 90 48 08 00 00 mov 0x848(%rax),%rdx - 6634f9ff: 45 8b 91 28 04 00 00 mov 0x428(%r9),%r10d - 6634fa06: 44 8b 1a mov (%rdx),%r11d - 6634fa09: 45 85 db test %r11d,%r11d - 6634fa0c: 0f 84 e0 00 00 00 je 6634faf2 - 6634fa12: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634fa16: 44 8b 02 mov (%rdx),%r8d - 6634fa19: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634fa1d: 8b 12 mov (%rdx),%edx - 6634fa1f: 42 8d 14 42 lea (%rdx,%r8,2),%edx - 6634fa23: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6634fa27: 45 8b 00 mov (%r8),%r8d - 6634fa2a: 42 8d 14 82 lea (%rdx,%r8,4),%edx - 6634fa2e: 4c 8b 40 20 mov 0x20(%rax),%r8 - 6634fa32: 45 8b 00 mov (%r8),%r8d - 6634fa35: 42 8d 14 c2 lea (%rdx,%r8,8),%edx - 6634fa39: 4c 8b 40 28 mov 0x28(%rax),%r8 - 6634fa3d: 45 8b 00 mov (%r8),%r8d - 6634fa40: 41 c1 e0 04 shl $0x4,%r8d - 6634fa44: 41 01 d0 add %edx,%r8d - 6634fa47: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634fa4b: 8b 12 mov (%rdx),%edx - 6634fa4d: c1 e2 05 shl $0x5,%edx - 6634fa50: 41 01 d0 add %edx,%r8d - 6634fa53: 48 8b 50 38 mov 0x38(%rax),%rdx - 6634fa57: 8b 12 mov (%rdx),%edx - 6634fa59: c1 e2 06 shl $0x6,%edx - 6634fa5c: 44 01 c2 add %r8d,%edx - 6634fa5f: 4c 8b 40 40 mov 0x40(%rax),%r8 - 6634fa63: 45 8b 00 mov (%r8),%r8d - 6634fa66: 41 c1 e0 07 shl $0x7,%r8d - 6634fa6a: 42 8d 54 02 09 lea 0x9(%rdx,%r8,1),%edx - 6634fa6f: 48 63 d2 movslq %edx,%rdx - 6634fa72: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634fa76: 8b 12 mov (%rdx),%edx - 6634fa78: 44 39 d2 cmp %r10d,%edx - 6634fa7b: 74 74 je 6634faf1 - 6634fa7d: 4c 8b 41 18 mov 0x18(%rcx),%r8 - 6634fa81: 41 89 d3 mov %edx,%r11d - 6634fa84: 45 29 d3 sub %r10d,%r11d - 6634fa87: 4d 8b 80 50 08 00 00 mov 0x850(%r8),%r8 - 6634fa8e: 45 01 18 add %r11d,(%r8) - 6634fa91: 41 89 91 28 04 00 00 mov %edx,0x428(%r9) - 6634fa98: 45 8b 00 mov (%r8),%r8d - 6634fa9b: 45 85 c0 test %r8d,%r8d - 6634fa9e: 48 8b 80 50 08 00 00 mov 0x850(%rax),%rax - 6634faa5: 0f 9f c2 setg %dl - 6634faa8: 0f b6 d2 movzbl %dl,%edx - 6634faab: 3b 10 cmp (%rax),%edx - 6634faad: 74 42 je 6634faf1 - 6634faaf: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634fab3: 48 8b 80 50 08 00 00 mov 0x850(%rax),%rax - 6634faba: 8b 00 mov (%rax),%eax - 6634fabc: 85 c0 test %eax,%eax - 6634fabe: 75 31 jne 6634faf1 - 6634fac0: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634fac4: 48 8b 0d 65 7e 00 00 mov 0x7e65(%rip),%rcx # 66357930 - 6634facb: 4c 8b 05 4e 7e 00 00 mov 0x7e4e(%rip),%r8 # 66357920 - 6634fad2: 48 8b 90 50 08 00 00 mov 0x850(%rax),%rdx - 6634fad9: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634fadd: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634fae3: 48 63 01 movslq (%rcx),%rax - 6634fae6: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634faea: 44 89 09 mov %r9d,(%rcx) - 6634faed: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634faf1: c3 retq - 6634faf2: 45 85 d2 test %r10d,%r10d - 6634faf5: 74 fa je 6634faf1 - 6634faf7: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634fafb: 48 8b 92 50 08 00 00 mov 0x850(%rdx),%rdx - 6634fb02: 44 29 12 sub %r10d,(%rdx) - 6634fb05: 41 c7 81 28 04 00 00 movl $0x0,0x428(%r9) - 6634fb0c: 00 00 00 00 - 6634fb10: 8b 12 mov (%rdx),%edx - 6634fb12: 85 d2 test %edx,%edx - 6634fb14: eb 88 jmp 6634fa9e - 6634fb16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634fb1d: 00 00 00 +000000006634f9b0 : + 6634f9b0: 48 8b 44 24 28 mov 0x28(%rsp),%rax + 6634f9b5: 48 89 0d 64 6f 00 00 mov %rcx,0x6f64(%rip) # 66356920 + 6634f9bc: 48 89 15 6d 6f 00 00 mov %rdx,0x6f6d(%rip) # 66356930 + 6634f9c3: 4c 89 05 46 6f 00 00 mov %r8,0x6f46(%rip) # 66356910 + 6634f9ca: 4c 89 0d 57 6f 00 00 mov %r9,0x6f57(%rip) # 66356928 + 6634f9d1: 48 89 05 40 6f 00 00 mov %rax,0x6f40(%rip) # 66356918 + 6634f9d8: c3 retq + 6634f9d9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) -000000006634fb20 : - 6634fb20: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634fb24: 4c 8b 41 08 mov 0x8(%rcx),%r8 - 6634fb28: 48 8b 50 38 mov 0x38(%rax),%rdx - 6634fb2c: 45 8b 48 20 mov 0x20(%r8),%r9d - 6634fb30: 44 8b 12 mov (%rdx),%r10d - 6634fb33: 45 85 d2 test %r10d,%r10d - 6634fb36: 0f 84 86 00 00 00 je 6634fbc2 - 6634fb3c: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634fb40: 44 8b 12 mov (%rdx),%r10d - 6634fb43: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634fb47: 8b 12 mov (%rdx),%edx - 6634fb49: 42 8d 54 52 03 lea 0x3(%rdx,%r10,2),%edx - 6634fb4e: 48 63 d2 movslq %edx,%rdx - 6634fb51: 48 8b 14 d0 mov (%rax,%rdx,8),%rdx - 6634fb55: 8b 12 mov (%rdx),%edx - 6634fb57: 44 39 ca cmp %r9d,%edx - 6634fb5a: 74 65 je 6634fbc1 - 6634fb5c: 4c 8b 51 18 mov 0x18(%rcx),%r10 - 6634fb60: 41 89 d3 mov %edx,%r11d - 6634fb63: 45 29 cb sub %r9d,%r11d - 6634fb66: 4d 8b 52 40 mov 0x40(%r10),%r10 - 6634fb6a: 45 01 1a add %r11d,(%r10) - 6634fb6d: 41 89 50 20 mov %edx,0x20(%r8) - 6634fb71: 45 8b 02 mov (%r10),%r8d - 6634fb74: 45 85 c0 test %r8d,%r8d - 6634fb77: 48 8b 40 40 mov 0x40(%rax),%rax - 6634fb7b: 0f 9f c2 setg %dl - 6634fb7e: 0f b6 d2 movzbl %dl,%edx - 6634fb81: 3b 10 cmp (%rax),%edx - 6634fb83: 74 3c je 6634fbc1 - 6634fb85: 48 8b 41 20 mov 0x20(%rcx),%rax - 6634fb89: 48 8b 40 40 mov 0x40(%rax),%rax - 6634fb8d: 8b 00 mov (%rax),%eax - 6634fb8f: 85 c0 test %eax,%eax - 6634fb91: 75 2e jne 6634fbc1 - 6634fb93: 48 8b 41 28 mov 0x28(%rcx),%rax - 6634fb97: 48 8b 0d 92 7d 00 00 mov 0x7d92(%rip),%rcx # 66357930 - 6634fb9e: 4c 8b 05 7b 7d 00 00 mov 0x7d7b(%rip),%r8 # 66357920 - 6634fba5: 48 8b 50 40 mov 0x40(%rax),%rdx - 6634fba9: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634fbad: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634fbb3: 48 63 01 movslq (%rcx),%rax - 6634fbb6: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634fbba: 44 89 09 mov %r9d,(%rcx) - 6634fbbd: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634fbc1: c3 retq - 6634fbc2: 45 85 c9 test %r9d,%r9d - 6634fbc5: 74 fa je 6634fbc1 - 6634fbc7: 48 8b 51 18 mov 0x18(%rcx),%rdx - 6634fbcb: 48 8b 52 40 mov 0x40(%rdx),%rdx - 6634fbcf: 44 29 0a sub %r9d,(%rdx) - 6634fbd2: 41 c7 40 20 00 00 00 movl $0x0,0x20(%r8) - 6634fbd9: 00 - 6634fbda: 8b 12 mov (%rdx),%edx - 6634fbdc: 85 d2 test %edx,%edx - 6634fbde: eb 97 jmp 6634fb77 +000000006634f9e0 : + 6634f9e0: 41 55 push %r13 + 6634f9e2: 41 54 push %r12 + 6634f9e4: 55 push %rbp + 6634f9e5: 57 push %rdi + 6634f9e6: 56 push %rsi + 6634f9e7: 53 push %rbx + 6634f9e8: 48 8b 35 41 6f 00 00 mov 0x6f41(%rip),%rsi # 66356930 + 6634f9ef: 8b 16 mov (%rsi),%edx + 6634f9f1: 85 d2 test %edx,%edx + 6634f9f3: 0f 8e aa 00 00 00 jle 6634faa3 + 6634f9f9: 48 8b 1d 20 6f 00 00 mov 0x6f20(%rip),%rbx # 66356920 + 6634fa00: 45 31 c0 xor %r8d,%r8d + 6634fa03: 48 8b 2d 0e 6f 00 00 mov 0x6f0e(%rip),%rbp # 66356918 + 6634fa0a: 48 8b 3d ff 6e 00 00 mov 0x6eff(%rip),%rdi # 66356910 + 6634fa11: 4c 8b 1d 10 6f 00 00 mov 0x6f10(%rip),%r11 # 66356928 + 6634fa18: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6634fa1f: 00 + 6634fa20: 4a 8b 14 c3 mov (%rbx,%r8,8),%rdx + 6634fa24: 31 c9 xor %ecx,%ecx + 6634fa26: 48 8b 42 08 mov 0x8(%rdx),%rax + 6634fa2a: 8b 00 mov (%rax),%eax + 6634fa2c: 85 c0 test %eax,%eax + 6634fa2e: 48 8b 02 mov (%rdx),%rax + 6634fa31: 0f 9f c1 setg %cl + 6634fa34: 3b 08 cmp (%rax),%ecx + 6634fa36: 74 4c je 6634fa84 + 6634fa38: 89 08 mov %ecx,(%rax) + 6634fa3a: 4c 8b 62 20 mov 0x20(%rdx),%r12 + 6634fa3e: 8b 4d 00 mov 0x0(%rbp),%ecx + 6634fa41: 48 8b 42 18 mov 0x18(%rdx),%rax + 6634fa45: 89 08 mov %ecx,(%rax) + 6634fa47: 41 8b 0c 24 mov (%r12),%ecx + 6634fa4b: 85 c9 test %ecx,%ecx + 6634fa4d: 7e 35 jle 6634fa84 + 6634fa4f: 4c 8b 6a 28 mov 0x28(%rdx),%r13 + 6634fa53: 31 c0 xor %eax,%eax + 6634fa55: 4d 8b 4c c5 00 mov 0x0(%r13,%rax,8),%r9 + 6634fa5a: 4d 8b 11 mov (%r9),%r10 + 6634fa5d: 41 83 3a 00 cmpl $0x0,(%r10) + 6634fa61: 75 4f jne 6634fab2 + 6634fa63: 41 c7 02 01 00 00 00 movl $0x1,(%r10) + 6634fa6a: 49 63 0b movslq (%r11),%rcx + 6634fa6d: 48 83 c0 01 add $0x1,%rax + 6634fa71: 44 8d 51 01 lea 0x1(%rcx),%r10d + 6634fa75: 45 89 13 mov %r10d,(%r11) + 6634fa78: 4c 89 0c cf mov %r9,(%rdi,%rcx,8) + 6634fa7c: 41 8b 0c 24 mov (%r12),%ecx + 6634fa80: 39 c1 cmp %eax,%ecx + 6634fa82: 7f d1 jg 6634fa55 + 6634fa84: 48 8b 42 10 mov 0x10(%rdx),%rax + 6634fa88: c7 00 00 00 00 00 movl $0x0,(%rax) + 6634fa8e: 4a c7 04 c3 00 00 00 movq $0x0,(%rbx,%r8,8) + 6634fa95: 00 + 6634fa96: 49 83 c0 01 add $0x1,%r8 + 6634fa9a: 44 39 06 cmp %r8d,(%rsi) + 6634fa9d: 0f 8f 7d ff ff ff jg 6634fa20 + 6634faa3: c7 06 00 00 00 00 movl $0x0,(%rsi) + 6634faa9: 5b pop %rbx + 6634faaa: 5e pop %rsi + 6634faab: 5f pop %rdi + 6634faac: 5d pop %rbp + 6634faad: 41 5c pop %r12 + 6634faaf: 41 5d pop %r13 + 6634fab1: c3 retq + 6634fab2: 48 83 c0 01 add $0x1,%rax + 6634fab6: 39 c1 cmp %eax,%ecx + 6634fab8: 7f 9b jg 6634fa55 + 6634faba: eb c8 jmp 6634fa84 + 6634fabc: 0f 1f 40 00 nopl 0x0(%rax) -000000006634fbe0 : - 6634fbe0: 56 push %rsi - 6634fbe1: 53 push %rbx - 6634fbe2: 48 83 ec 28 sub $0x28,%rsp - 6634fbe6: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634fbea: 48 8b 50 50 mov 0x50(%rax),%rdx - 6634fbee: 48 89 ce mov %rcx,%rsi - 6634fbf1: 44 8b 0a mov (%rdx),%r9d - 6634fbf4: 45 85 c9 test %r9d,%r9d - 6634fbf7: 0f 84 f3 00 00 00 je 6634fcf0 - 6634fbfd: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634fc01: 8b 0a mov (%rdx),%ecx - 6634fc03: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634fc07: 8b 12 mov (%rdx),%edx - 6634fc09: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634fc0c: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634fc10: 8b 09 mov (%rcx),%ecx - 6634fc12: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634fc15: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634fc19: 8b 09 mov (%rcx),%ecx - 6634fc1b: 8d 1c ca lea (%rdx,%rcx,8),%ebx - 6634fc1e: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634fc22: 48 8b 48 30 mov 0x30(%rax),%rcx - 6634fc26: 8b 12 mov (%rdx),%edx - 6634fc28: c1 e2 04 shl $0x4,%edx - 6634fc2b: 01 da add %ebx,%edx - 6634fc2d: 8b 19 mov (%rcx),%ebx - 6634fc2f: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634fc33: 48 8b 40 40 mov 0x40(%rax),%rax - 6634fc37: c1 e3 05 shl $0x5,%ebx - 6634fc3a: 01 da add %ebx,%edx - 6634fc3c: 8b 19 mov (%rcx),%ebx - 6634fc3e: 8b 00 mov (%rax),%eax - 6634fc40: c1 e3 06 shl $0x6,%ebx - 6634fc43: 01 d3 add %edx,%ebx - 6634fc45: c1 e0 07 shl $0x7,%eax - 6634fc48: 01 c3 add %eax,%ebx - 6634fc4a: 78 05 js 6634fc51 - 6634fc4c: 3b 5e 38 cmp 0x38(%rsi),%ebx - 6634fc4f: 7c 19 jl 6634fc6a - 6634fc51: 48 8d 15 a8 43 00 00 lea 0x43a8(%rip),%rdx # 66354000 <.rdata> - 6634fc58: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634fc5e: 48 8d 0d ab 43 00 00 lea 0x43ab(%rip),%rcx # 66354010 <.rdata+0x10> - 6634fc65: e8 a6 25 00 00 callq 66352210 <_assert> - 6634fc6a: 48 8b 56 40 mov 0x40(%rsi),%rdx - 6634fc6e: 48 63 c3 movslq %ebx,%rax - 6634fc71: 8b 04 82 mov (%rdx,%rax,4),%eax - 6634fc74: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634fc78: 8b 4a 24 mov 0x24(%rdx),%ecx - 6634fc7b: 39 c8 cmp %ecx,%eax - 6634fc7d: 74 64 je 6634fce3 - 6634fc7f: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634fc83: 89 c3 mov %eax,%ebx - 6634fc85: 29 cb sub %ecx,%ebx - 6634fc87: 4d 8b 40 48 mov 0x48(%r8),%r8 - 6634fc8b: 41 01 18 add %ebx,(%r8) - 6634fc8e: 89 42 24 mov %eax,0x24(%rdx) - 6634fc91: 31 d2 xor %edx,%edx - 6634fc93: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634fc97: 41 8b 08 mov (%r8),%ecx - 6634fc9a: 48 8b 40 48 mov 0x48(%rax),%rax - 6634fc9e: 85 c9 test %ecx,%ecx - 6634fca0: 0f 9f c2 setg %dl - 6634fca3: 3b 10 cmp (%rax),%edx - 6634fca5: 74 3c je 6634fce3 - 6634fca7: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634fcab: 48 8b 40 48 mov 0x48(%rax),%rax - 6634fcaf: 8b 00 mov (%rax),%eax - 6634fcb1: 85 c0 test %eax,%eax - 6634fcb3: 75 2e jne 6634fce3 - 6634fcb5: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634fcb9: 48 8b 0d 70 7c 00 00 mov 0x7c70(%rip),%rcx # 66357930 - 6634fcc0: 4c 8b 05 59 7c 00 00 mov 0x7c59(%rip),%r8 # 66357920 - 6634fcc7: 48 8b 50 48 mov 0x48(%rax),%rdx - 6634fccb: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634fccf: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634fcd5: 48 63 01 movslq (%rcx),%rax - 6634fcd8: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634fcdc: 44 89 09 mov %r9d,(%rcx) - 6634fcdf: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634fce3: 48 83 c4 28 add $0x28,%rsp - 6634fce7: 5b pop %rbx - 6634fce8: 5e pop %rsi +000000006634fac0 : + 6634fac0: 55 push %rbp + 6634fac1: 57 push %rdi + 6634fac2: 56 push %rsi + 6634fac3: 53 push %rbx + 6634fac4: 48 83 ec 28 sub $0x28,%rsp + 6634fac8: 4c 8b 1d 59 6e 00 00 mov 0x6e59(%rip),%r11 # 66356928 + 6634facf: 41 8b 03 mov (%r11),%eax + 6634fad2: 85 c0 test %eax,%eax + 6634fad4: 7e 75 jle 6634fb4b + 6634fad6: 41 89 c1 mov %eax,%r9d + 6634fad9: 4d 89 da mov %r11,%r10 + 6634fadc: 31 db xor %ebx,%ebx + 6634fade: 48 8d 35 2b 6e 00 00 lea 0x6e2b(%rip),%rsi # 66356910 + 6634fae5: 31 ed xor %ebp,%ebp + 6634fae7: 48 8d 3d 12 25 00 00 lea 0x2512(%rip),%rdi # 66352000 <__data_start__> + 6634faee: eb 11 jmp 6634fb01 + 6634faf0: 83 c3 01 add $0x1,%ebx + 6634faf3: 41 39 d9 cmp %ebx,%r9d + 6634faf6: 7e 53 jle 6634fb4b + 6634faf8: 48 63 eb movslq %ebx,%rbp + 6634fafb: 44 89 c8 mov %r9d,%eax + 6634fafe: 4d 89 d3 mov %r10,%r11 + 6634fb01: 4c 8b 06 mov (%rsi),%r8 + 6634fb04: 49 8d 14 e8 lea (%r8,%rbp,8),%rdx + 6634fb08: 48 8b 0a mov (%rdx),%rcx + 6634fb0b: 83 79 34 00 cmpl $0x0,0x34(%rcx) + 6634fb0f: 74 df je 6634faf0 + 6634fb11: 4c 63 c8 movslq %eax,%r9 + 6634fb14: 83 e8 01 sub $0x1,%eax + 6634fb17: 4f 8d 44 c8 f8 lea -0x8(%r8,%r9,8),%r8 + 6634fb1c: 4d 8b 08 mov (%r8),%r9 + 6634fb1f: 4c 89 0a mov %r9,(%rdx) + 6634fb22: 49 c7 00 00 00 00 00 movq $0x0,(%r8) + 6634fb29: 41 89 03 mov %eax,(%r11) + 6634fb2c: 48 8b 01 mov (%rcx),%rax + 6634fb2f: c7 00 00 00 00 00 movl $0x0,(%rax) + 6634fb35: 48 63 41 34 movslq 0x34(%rcx),%rax + 6634fb39: ff 14 c7 callq *(%rdi,%rax,8) + 6634fb3c: 4c 8b 15 e5 6d 00 00 mov 0x6de5(%rip),%r10 # 66356928 + 6634fb43: 45 8b 0a mov (%r10),%r9d + 6634fb46: 44 39 cb cmp %r9d,%ebx + 6634fb49: 7c b0 jl 6634fafb + 6634fb4b: 48 83 c4 28 add $0x28,%rsp + 6634fb4f: 5b pop %rbx + 6634fb50: 5e pop %rsi + 6634fb51: 5f pop %rdi + 6634fb52: 5d pop %rbp + 6634fb53: c3 retq + 6634fb54: 90 nop + 6634fb55: 90 nop + 6634fb56: 90 nop + 6634fb57: 90 nop + 6634fb58: 90 nop + 6634fb59: 90 nop + 6634fb5a: 90 nop + 6634fb5b: 90 nop + 6634fb5c: 90 nop + 6634fb5d: 90 nop + 6634fb5e: 90 nop + 6634fb5f: 90 nop + +000000006634fb60 <__do_global_dtors>: + 6634fb60: 48 83 ec 28 sub $0x28,%rsp + 6634fb64: 48 8b 05 d5 29 00 00 mov 0x29d5(%rip),%rax # 66352540 + 6634fb6b: 48 8b 00 mov (%rax),%rax + 6634fb6e: 48 85 c0 test %rax,%rax + 6634fb71: 74 1d je 6634fb90 <__do_global_dtors+0x30> + 6634fb73: ff d0 callq *%rax + 6634fb75: 48 8b 05 c4 29 00 00 mov 0x29c4(%rip),%rax # 66352540 + 6634fb7c: 48 8d 50 08 lea 0x8(%rax),%rdx + 6634fb80: 48 8b 40 08 mov 0x8(%rax),%rax + 6634fb84: 48 89 15 b5 29 00 00 mov %rdx,0x29b5(%rip) # 66352540 + 6634fb8b: 48 85 c0 test %rax,%rax + 6634fb8e: 75 e3 jne 6634fb73 <__do_global_dtors+0x13> + 6634fb90: 48 83 c4 28 add $0x28,%rsp + 6634fb94: c3 retq + 6634fb95: 90 nop + 6634fb96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634fb9d: 00 00 00 + +000000006634fba0 <__do_global_ctors>: + 6634fba0: 56 push %rsi + 6634fba1: 53 push %rbx + 6634fba2: 48 83 ec 28 sub $0x28,%rsp + 6634fba6: 48 8b 0d 03 37 00 00 mov 0x3703(%rip),%rcx # 663532b0 <.refptr.__CTOR_LIST__> + 6634fbad: 48 8b 11 mov (%rcx),%rdx + 6634fbb0: 83 fa ff cmp $0xffffffff,%edx + 6634fbb3: 89 d0 mov %edx,%eax + 6634fbb5: 74 39 je 6634fbf0 <__do_global_ctors+0x50> + 6634fbb7: 85 c0 test %eax,%eax + 6634fbb9: 74 20 je 6634fbdb <__do_global_ctors+0x3b> + 6634fbbb: 89 c2 mov %eax,%edx + 6634fbbd: 83 e8 01 sub $0x1,%eax + 6634fbc0: 48 8d 1c d1 lea (%rcx,%rdx,8),%rbx + 6634fbc4: 48 29 c2 sub %rax,%rdx + 6634fbc7: 48 8d 74 d1 f8 lea -0x8(%rcx,%rdx,8),%rsi + 6634fbcc: 0f 1f 40 00 nopl 0x0(%rax) + 6634fbd0: ff 13 callq *(%rbx) + 6634fbd2: 48 83 eb 08 sub $0x8,%rbx + 6634fbd6: 48 39 f3 cmp %rsi,%rbx + 6634fbd9: 75 f5 jne 6634fbd0 <__do_global_ctors+0x30> + 6634fbdb: 48 8d 0d 7e ff ff ff lea -0x82(%rip),%rcx # 6634fb60 <__do_global_dtors> + 6634fbe2: 48 83 c4 28 add $0x28,%rsp + 6634fbe6: 5b pop %rbx + 6634fbe7: 5e pop %rsi + 6634fbe8: e9 93 17 ff ff jmpq 66341380 + 6634fbed: 0f 1f 00 nopl (%rax) + 6634fbf0: 31 c0 xor %eax,%eax + 6634fbf2: eb 02 jmp 6634fbf6 <__do_global_ctors+0x56> + 6634fbf4: 89 d0 mov %edx,%eax + 6634fbf6: 44 8d 40 01 lea 0x1(%rax),%r8d + 6634fbfa: 4a 83 3c c1 00 cmpq $0x0,(%rcx,%r8,8) + 6634fbff: 4c 89 c2 mov %r8,%rdx + 6634fc02: 75 f0 jne 6634fbf4 <__do_global_ctors+0x54> + 6634fc04: eb b1 jmp 6634fbb7 <__do_global_ctors+0x17> + 6634fc06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634fc0d: 00 00 00 + +000000006634fc10 <__main>: + 6634fc10: 8b 05 0a 64 00 00 mov 0x640a(%rip),%eax # 66356020 + 6634fc16: 85 c0 test %eax,%eax + 6634fc18: 74 06 je 6634fc20 <__main+0x10> + 6634fc1a: c3 retq + 6634fc1b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 6634fc20: c7 05 f6 63 00 00 01 movl $0x1,0x63f6(%rip) # 66356020 + 6634fc27: 00 00 00 + 6634fc2a: e9 71 ff ff ff jmpq 6634fba0 <__do_global_ctors> + 6634fc2f: 90 nop + +000000006634fc30 <__security_init_cookie>: + 6634fc30: 41 54 push %r12 + 6634fc32: 55 push %rbp + 6634fc33: 57 push %rdi + 6634fc34: 56 push %rsi + 6634fc35: 53 push %rbx + 6634fc36: 48 83 ec 30 sub $0x30,%rsp + 6634fc3a: 48 8b 1d 5f 29 00 00 mov 0x295f(%rip),%rbx # 663525a0 <__security_cookie> + 6634fc41: 48 b8 32 a2 df 2d 99 movabs $0x2b992ddfa232,%rax + 6634fc48: 2b 00 00 + 6634fc4b: 48 39 c3 cmp %rax,%rbx + 6634fc4e: 48 c7 44 24 20 00 00 movq $0x0,0x20(%rsp) + 6634fc55: 00 00 + 6634fc57: 74 17 je 6634fc70 <__security_init_cookie+0x40> + 6634fc59: 48 f7 d3 not %rbx + 6634fc5c: 48 89 1d 4d 29 00 00 mov %rbx,0x294d(%rip) # 663525b0 <__security_cookie_complement> + 6634fc63: 48 83 c4 30 add $0x30,%rsp + 6634fc67: 5b pop %rbx + 6634fc68: 5e pop %rsi + 6634fc69: 5f pop %rdi + 6634fc6a: 5d pop %rbp + 6634fc6b: 41 5c pop %r12 + 6634fc6d: c3 retq + 6634fc6e: 66 90 xchg %ax,%ax + 6634fc70: 48 8d 4c 24 20 lea 0x20(%rsp),%rcx + 6634fc75: ff 15 85 85 00 00 callq *0x8585(%rip) # 66358200 <__imp_GetSystemTimeAsFileTime> + 6634fc7b: 48 8b 74 24 20 mov 0x20(%rsp),%rsi + 6634fc80: ff 15 5a 85 00 00 callq *0x855a(%rip) # 663581e0 <__imp_GetCurrentProcessId> + 6634fc86: 41 89 c4 mov %eax,%r12d + 6634fc89: ff 15 59 85 00 00 callq *0x8559(%rip) # 663581e8 <__imp_GetCurrentThreadId> + 6634fc8f: 89 c5 mov %eax,%ebp + 6634fc91: ff 15 71 85 00 00 callq *0x8571(%rip) # 66358208 <__imp_GetTickCount> + 6634fc97: 48 8d 4c 24 28 lea 0x28(%rsp),%rcx + 6634fc9c: 89 c7 mov %eax,%edi + 6634fc9e: ff 15 7c 85 00 00 callq *0x857c(%rip) # 66358220 <__imp_QueryPerformanceCounter> + 6634fca4: 48 33 74 24 28 xor 0x28(%rsp),%rsi + 6634fca9: 44 89 e0 mov %r12d,%eax + 6634fcac: 48 ba ff ff ff ff ff movabs $0xffffffffffff,%rdx + 6634fcb3: ff 00 00 + 6634fcb6: 48 31 f0 xor %rsi,%rax + 6634fcb9: 89 ee mov %ebp,%esi + 6634fcbb: 48 31 c6 xor %rax,%rsi + 6634fcbe: 89 f8 mov %edi,%eax + 6634fcc0: 48 31 f0 xor %rsi,%rax + 6634fcc3: 48 21 d0 and %rdx,%rax + 6634fcc6: 48 39 d8 cmp %rbx,%rax + 6634fcc9: 74 25 je 6634fcf0 <__security_init_cookie+0xc0> + 6634fccb: 48 89 c2 mov %rax,%rdx + 6634fcce: 48 f7 d2 not %rdx + 6634fcd1: 48 89 05 c8 28 00 00 mov %rax,0x28c8(%rip) # 663525a0 <__security_cookie> + 6634fcd8: 48 89 15 d1 28 00 00 mov %rdx,0x28d1(%rip) # 663525b0 <__security_cookie_complement> + 6634fcdf: 48 83 c4 30 add $0x30,%rsp + 6634fce3: 5b pop %rbx + 6634fce4: 5e pop %rsi + 6634fce5: 5f pop %rdi + 6634fce6: 5d pop %rbp + 6634fce7: 41 5c pop %r12 6634fce9: c3 retq 6634fcea: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 6634fcf0: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634fcf4: 8b 4a 24 mov 0x24(%rdx),%ecx - 6634fcf7: 85 c9 test %ecx,%ecx - 6634fcf9: 74 e8 je 6634fce3 - 6634fcfb: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634fcff: 48 8b 40 48 mov 0x48(%rax),%rax - 6634fd03: 4d 8b 40 48 mov 0x48(%r8),%r8 - 6634fd07: 41 29 08 sub %ecx,(%r8) - 6634fd0a: c7 42 24 00 00 00 00 movl $0x0,0x24(%rdx) - 6634fd11: 31 d2 xor %edx,%edx - 6634fd13: 45 8b 00 mov (%r8),%r8d - 6634fd16: 45 85 c0 test %r8d,%r8d - 6634fd19: 0f 9f c2 setg %dl - 6634fd1c: 3b 10 cmp (%rax),%edx - 6634fd1e: 75 87 jne 6634fca7 - 6634fd20: eb c1 jmp 6634fce3 - 6634fd22: 0f 1f 40 00 nopl 0x0(%rax) - 6634fd26: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634fd2d: 00 00 00 + 6634fcf0: 48 ba cc 5d 20 d2 66 movabs $0xffffd466d2205dcc,%rdx + 6634fcf7: d4 ff ff + 6634fcfa: 48 b8 33 a2 df 2d 99 movabs $0x2b992ddfa233,%rax + 6634fd01: 2b 00 00 + 6634fd04: eb cb jmp 6634fcd1 <__security_init_cookie+0xa1> + 6634fd06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634fd0d: 00 00 00 -000000006634fd30 : - 6634fd30: 56 push %rsi - 6634fd31: 53 push %rbx - 6634fd32: 48 83 ec 28 sub $0x28,%rsp - 6634fd36: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634fd3a: 48 8b 50 58 mov 0x58(%rax),%rdx - 6634fd3e: 48 89 ce mov %rcx,%rsi - 6634fd41: 44 8b 0a mov (%rdx),%r9d - 6634fd44: 45 85 c9 test %r9d,%r9d - 6634fd47: 0f 84 f8 00 00 00 je 6634fe45 - 6634fd4d: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634fd51: 8b 0a mov (%rdx),%ecx - 6634fd53: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634fd57: 8b 12 mov (%rdx),%edx - 6634fd59: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634fd5c: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634fd60: 8b 09 mov (%rcx),%ecx - 6634fd62: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634fd65: 48 8b 48 20 mov 0x20(%rax),%rcx - 6634fd69: 8b 09 mov (%rcx),%ecx - 6634fd6b: 8d 1c ca lea (%rdx,%rcx,8),%ebx - 6634fd6e: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634fd72: 48 8b 48 38 mov 0x38(%rax),%rcx - 6634fd76: 8b 12 mov (%rdx),%edx - 6634fd78: c1 e2 04 shl $0x4,%edx - 6634fd7b: 01 d3 add %edx,%ebx - 6634fd7d: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634fd81: 8b 12 mov (%rdx),%edx - 6634fd83: c1 e2 05 shl $0x5,%edx - 6634fd86: 01 da add %ebx,%edx - 6634fd88: 8b 19 mov (%rcx),%ebx - 6634fd8a: 48 8b 48 40 mov 0x40(%rax),%rcx - 6634fd8e: 48 8b 40 48 mov 0x48(%rax),%rax - 6634fd92: c1 e3 06 shl $0x6,%ebx - 6634fd95: 01 da add %ebx,%edx - 6634fd97: 8b 19 mov (%rcx),%ebx - 6634fd99: 8b 00 mov (%rax),%eax - 6634fd9b: c1 e3 07 shl $0x7,%ebx - 6634fd9e: 01 d3 add %edx,%ebx - 6634fda0: c1 e0 08 shl $0x8,%eax - 6634fda3: 01 c3 add %eax,%ebx - 6634fda5: 78 05 js 6634fdac - 6634fda7: 3b 5e 38 cmp 0x38(%rsi),%ebx - 6634fdaa: 7c 19 jl 6634fdc5 - 6634fdac: 48 8d 15 4d 42 00 00 lea 0x424d(%rip),%rdx # 66354000 <.rdata> - 6634fdb3: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634fdb9: 48 8d 0d 50 42 00 00 lea 0x4250(%rip),%rcx # 66354010 <.rdata+0x10> - 6634fdc0: e8 4b 24 00 00 callq 66352210 <_assert> - 6634fdc5: 48 8b 56 40 mov 0x40(%rsi),%rdx - 6634fdc9: 48 63 c3 movslq %ebx,%rax - 6634fdcc: 8b 04 82 mov (%rdx,%rax,4),%eax - 6634fdcf: 48 8b 56 08 mov 0x8(%rsi),%rdx - 6634fdd3: 8b 4a 28 mov 0x28(%rdx),%ecx - 6634fdd6: 39 c8 cmp %ecx,%eax - 6634fdd8: 74 64 je 6634fe3e - 6634fdda: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634fdde: 89 c3 mov %eax,%ebx - 6634fde0: 29 cb sub %ecx,%ebx - 6634fde2: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634fde6: 41 01 18 add %ebx,(%r8) - 6634fde9: 89 42 28 mov %eax,0x28(%rdx) - 6634fdec: 31 d2 xor %edx,%edx - 6634fdee: 48 8b 46 10 mov 0x10(%rsi),%rax - 6634fdf2: 41 8b 08 mov (%r8),%ecx - 6634fdf5: 48 8b 40 50 mov 0x50(%rax),%rax - 6634fdf9: 85 c9 test %ecx,%ecx - 6634fdfb: 0f 9f c2 setg %dl - 6634fdfe: 3b 10 cmp (%rax),%edx - 6634fe00: 74 3c je 6634fe3e - 6634fe02: 48 8b 46 20 mov 0x20(%rsi),%rax - 6634fe06: 48 8b 40 50 mov 0x50(%rax),%rax - 6634fe0a: 8b 00 mov (%rax),%eax - 6634fe0c: 85 c0 test %eax,%eax - 6634fe0e: 75 2e jne 6634fe3e - 6634fe10: 48 8b 46 28 mov 0x28(%rsi),%rax - 6634fe14: 48 8b 0d 15 7b 00 00 mov 0x7b15(%rip),%rcx # 66357930 - 6634fe1b: 4c 8b 05 fe 7a 00 00 mov 0x7afe(%rip),%r8 # 66357920 - 6634fe22: 48 8b 50 50 mov 0x50(%rax),%rdx - 6634fe26: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634fe2a: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634fe30: 48 63 01 movslq (%rcx),%rax - 6634fe33: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634fe37: 44 89 09 mov %r9d,(%rcx) - 6634fe3a: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634fe3e: 48 83 c4 28 add $0x28,%rsp - 6634fe42: 5b pop %rbx - 6634fe43: 5e pop %rsi - 6634fe44: c3 retq - 6634fe45: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634fe49: 8b 4a 28 mov 0x28(%rdx),%ecx - 6634fe4c: 85 c9 test %ecx,%ecx - 6634fe4e: 74 ee je 6634fe3e - 6634fe50: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6634fe54: 48 8b 40 50 mov 0x50(%rax),%rax - 6634fe58: 4d 8b 40 50 mov 0x50(%r8),%r8 - 6634fe5c: 41 29 08 sub %ecx,(%r8) - 6634fe5f: c7 42 28 00 00 00 00 movl $0x0,0x28(%rdx) - 6634fe66: 31 d2 xor %edx,%edx - 6634fe68: 45 8b 00 mov (%r8),%r8d - 6634fe6b: 45 85 c0 test %r8d,%r8d - 6634fe6e: 0f 9f c2 setg %dl - 6634fe71: 3b 10 cmp (%rax),%edx - 6634fe73: 75 8d jne 6634fe02 - 6634fe75: eb c7 jmp 6634fe3e - 6634fe77: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6634fe7e: 00 00 +000000006634fd10 <__report_gsfailure>: + 6634fd10: 55 push %rbp + 6634fd11: 56 push %rsi + 6634fd12: 53 push %rbx + 6634fd13: 48 89 e5 mov %rsp,%rbp + 6634fd16: 48 83 ec 70 sub $0x70,%rsp + 6634fd1a: 48 89 ce mov %rcx,%rsi + 6634fd1d: 48 8d 0d 1c 63 00 00 lea 0x631c(%rip),%rcx # 66356040 + 6634fd24: ff 15 06 85 00 00 callq *0x8506(%rip) # 66358230 <__imp_RtlCaptureContext> + 6634fd2a: 48 8b 1d 07 64 00 00 mov 0x6407(%rip),%rbx # 66356138 + 6634fd31: 48 8d 55 d8 lea -0x28(%rbp),%rdx + 6634fd35: 45 31 c0 xor %r8d,%r8d + 6634fd38: 48 89 d9 mov %rbx,%rcx + 6634fd3b: ff 15 f7 84 00 00 callq *0x84f7(%rip) # 66358238 <__imp_RtlLookupFunctionEntry> + 6634fd41: 48 85 c0 test %rax,%rax + 6634fd44: 0f 84 a3 00 00 00 je 6634fded <__report_gsfailure+0xdd> + 6634fd4a: 48 8d 55 e0 lea -0x20(%rbp),%rdx + 6634fd4e: 49 89 c1 mov %rax,%r9 + 6634fd51: 49 89 d8 mov %rbx,%r8 + 6634fd54: 48 c7 44 24 38 00 00 movq $0x0,0x38(%rsp) + 6634fd5b: 00 00 + 6634fd5d: 48 8d 0d dc 62 00 00 lea 0x62dc(%rip),%rcx # 66356040 + 6634fd64: 48 89 54 24 30 mov %rdx,0x30(%rsp) + 6634fd69: 48 8d 55 e8 lea -0x18(%rbp),%rdx + 6634fd6d: 48 89 4c 24 20 mov %rcx,0x20(%rsp) + 6634fd72: 31 c9 xor %ecx,%ecx + 6634fd74: 48 89 54 24 28 mov %rdx,0x28(%rsp) + 6634fd79: 48 8b 55 d8 mov -0x28(%rbp),%rdx + 6634fd7d: ff 15 bd 84 00 00 callq *0x84bd(%rip) # 66358240 <__imp_RtlVirtualUnwind> + 6634fd83: 48 8b 05 ae 63 00 00 mov 0x63ae(%rip),%rax # 66356138 + 6634fd8a: 31 c9 xor %ecx,%ecx + 6634fd8c: 48 89 35 2d 63 00 00 mov %rsi,0x632d(%rip) # 663560c0 + 6634fd93: 48 89 05 96 67 00 00 mov %rax,0x6796(%rip) # 66356530 + 6634fd9a: 48 b8 09 04 00 c0 01 movabs $0x1c0000409,%rax + 6634fda1: 00 00 00 + 6634fda4: 48 89 05 75 67 00 00 mov %rax,0x6775(%rip) # 66356520 + 6634fdab: 48 8b 05 ee 27 00 00 mov 0x27ee(%rip),%rax # 663525a0 <__security_cookie> + 6634fdb2: 48 89 45 f0 mov %rax,-0x10(%rbp) + 6634fdb6: 48 8b 05 f3 27 00 00 mov 0x27f3(%rip),%rax # 663525b0 <__security_cookie_complement> + 6634fdbd: 48 89 45 f8 mov %rax,-0x8(%rbp) + 6634fdc1: ff 15 81 84 00 00 callq *0x8481(%rip) # 66358248 <__imp_SetUnhandledExceptionFilter> + 6634fdc7: 48 8d 0d 62 32 00 00 lea 0x3262(%rip),%rcx # 66353030 + 6634fdce: ff 15 94 84 00 00 callq *0x8494(%rip) # 66358268 <__imp_UnhandledExceptionFilter> + 6634fdd4: ff 15 fe 83 00 00 callq *0x83fe(%rip) # 663581d8 <__imp_GetCurrentProcess> + 6634fdda: ba 09 04 00 c0 mov $0xc0000409,%edx + 6634fddf: 48 89 c1 mov %rax,%rcx + 6634fde2: ff 15 70 84 00 00 callq *0x8470(%rip) # 66358258 <__imp_TerminateProcess> + 6634fde8: e8 4b 13 00 00 callq 66351138 + 6634fded: 48 8b 45 18 mov 0x18(%rbp),%rax + 6634fdf1: 48 89 05 40 63 00 00 mov %rax,0x6340(%rip) # 66356138 + 6634fdf8: 48 8d 45 08 lea 0x8(%rbp),%rax + 6634fdfc: 48 89 05 d5 62 00 00 mov %rax,0x62d5(%rip) # 663560d8 + 6634fe03: e9 7b ff ff ff jmpq 6634fd83 <__report_gsfailure+0x73> + 6634fe08: 90 nop + 6634fe09: 90 nop + 6634fe0a: 90 nop + 6634fe0b: 90 nop + 6634fe0c: 90 nop + 6634fe0d: 90 nop + 6634fe0e: 90 nop + 6634fe0f: 90 nop -000000006634fe80 : - 6634fe80: 56 push %rsi - 6634fe81: 53 push %rbx - 6634fe82: 48 83 ec 28 sub $0x28,%rsp - 6634fe86: 48 8b 41 10 mov 0x10(%rcx),%rax - 6634fe8a: 48 8b 50 30 mov 0x30(%rax),%rdx - 6634fe8e: 48 89 cb mov %rcx,%rbx - 6634fe91: 44 8b 0a mov (%rdx),%r9d - 6634fe94: 45 85 c9 test %r9d,%r9d - 6634fe97: 0f 84 c3 00 00 00 je 6634ff60 - 6634fe9d: 48 8b 50 10 mov 0x10(%rax),%rdx - 6634fea1: 8b 0a mov (%rdx),%ecx - 6634fea3: 48 8b 50 08 mov 0x8(%rax),%rdx - 6634fea7: 8b 12 mov (%rdx),%edx - 6634fea9: 8d 14 4a lea (%rdx,%rcx,2),%edx - 6634feac: 48 8b 48 18 mov 0x18(%rax),%rcx - 6634feb0: 48 8b 40 20 mov 0x20(%rax),%rax - 6634feb4: 8b 09 mov (%rcx),%ecx - 6634feb6: 8b 00 mov (%rax),%eax - 6634feb8: 8d 14 8a lea (%rdx,%rcx,4),%edx - 6634febb: 8d 34 c2 lea (%rdx,%rax,8),%esi - 6634febe: 85 f6 test %esi,%esi - 6634fec0: 78 05 js 6634fec7 - 6634fec2: 3b 73 38 cmp 0x38(%rbx),%esi - 6634fec5: 7c 19 jl 6634fee0 - 6634fec7: 48 8d 15 32 41 00 00 lea 0x4132(%rip),%rdx # 66354000 <.rdata> - 6634fece: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6634fed4: 48 8d 0d 35 41 00 00 lea 0x4135(%rip),%rcx # 66354010 <.rdata+0x10> - 6634fedb: e8 30 23 00 00 callq 66352210 <_assert> - 6634fee0: 48 8b 43 40 mov 0x40(%rbx),%rax - 6634fee4: 48 63 f6 movslq %esi,%rsi - 6634fee7: 48 8b 53 08 mov 0x8(%rbx),%rdx - 6634feeb: 8b 04 b0 mov (%rax,%rsi,4),%eax - 6634feee: 8b 4a 14 mov 0x14(%rdx),%ecx - 6634fef1: 39 c8 cmp %ecx,%eax - 6634fef3: 74 64 je 6634ff59 - 6634fef5: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634fef9: 89 c6 mov %eax,%esi - 6634fefb: 29 ce sub %ecx,%esi - 6634fefd: 4d 8b 40 28 mov 0x28(%r8),%r8 - 6634ff01: 41 01 30 add %esi,(%r8) - 6634ff04: 89 42 14 mov %eax,0x14(%rdx) - 6634ff07: 31 d2 xor %edx,%edx - 6634ff09: 48 8b 43 10 mov 0x10(%rbx),%rax - 6634ff0d: 41 8b 08 mov (%r8),%ecx - 6634ff10: 48 8b 40 28 mov 0x28(%rax),%rax - 6634ff14: 85 c9 test %ecx,%ecx - 6634ff16: 0f 9f c2 setg %dl - 6634ff19: 3b 10 cmp (%rax),%edx - 6634ff1b: 74 3c je 6634ff59 - 6634ff1d: 48 8b 43 20 mov 0x20(%rbx),%rax - 6634ff21: 48 8b 40 28 mov 0x28(%rax),%rax - 6634ff25: 8b 00 mov (%rax),%eax - 6634ff27: 85 c0 test %eax,%eax - 6634ff29: 75 2e jne 6634ff59 - 6634ff2b: 48 8b 43 28 mov 0x28(%rbx),%rax - 6634ff2f: 48 8b 0d fa 79 00 00 mov 0x79fa(%rip),%rcx # 66357930 - 6634ff36: 4c 8b 05 e3 79 00 00 mov 0x79e3(%rip),%r8 # 66357920 - 6634ff3d: 48 8b 50 28 mov 0x28(%rax),%rdx - 6634ff41: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ff45: c7 00 01 00 00 00 movl $0x1,(%rax) - 6634ff4b: 48 63 01 movslq (%rcx),%rax - 6634ff4e: 44 8d 48 01 lea 0x1(%rax),%r9d - 6634ff52: 44 89 09 mov %r9d,(%rcx) - 6634ff55: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6634ff59: 48 83 c4 28 add $0x28,%rsp - 6634ff5d: 5b pop %rbx - 6634ff5e: 5e pop %rsi - 6634ff5f: c3 retq - 6634ff60: 48 8b 51 08 mov 0x8(%rcx),%rdx - 6634ff64: 8b 4a 14 mov 0x14(%rdx),%ecx - 6634ff67: 85 c9 test %ecx,%ecx - 6634ff69: 74 ee je 6634ff59 - 6634ff6b: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6634ff6f: 48 8b 40 28 mov 0x28(%rax),%rax - 6634ff73: 4d 8b 40 28 mov 0x28(%r8),%r8 - 6634ff77: 41 29 08 sub %ecx,(%r8) - 6634ff7a: c7 42 14 00 00 00 00 movl $0x0,0x14(%rdx) - 6634ff81: 31 d2 xor %edx,%edx - 6634ff83: 45 8b 00 mov (%r8),%r8d - 6634ff86: 45 85 c0 test %r8d,%r8d - 6634ff89: 0f 9f c2 setg %dl - 6634ff8c: 3b 10 cmp (%rax),%edx - 6634ff8e: 75 8d jne 6634ff1d - 6634ff90: eb c7 jmp 6634ff59 - 6634ff92: 0f 1f 40 00 nopl 0x0(%rax) - 6634ff96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6634ff9d: 00 00 00 +000000006634fe10 <__dyn_tls_dtor>: + 6634fe10: 48 83 ec 28 sub $0x28,%rsp + 6634fe14: 83 fa 03 cmp $0x3,%edx + 6634fe17: 74 17 je 6634fe30 <__dyn_tls_dtor+0x20> + 6634fe19: 85 d2 test %edx,%edx + 6634fe1b: 74 13 je 6634fe30 <__dyn_tls_dtor+0x20> + 6634fe1d: b8 01 00 00 00 mov $0x1,%eax + 6634fe22: 48 83 c4 28 add $0x28,%rsp + 6634fe26: c3 retq + 6634fe27: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 6634fe2e: 00 00 + 6634fe30: e8 5b 0b 00 00 callq 66350990 <__mingw_TLScallback> + 6634fe35: b8 01 00 00 00 mov $0x1,%eax + 6634fe3a: 48 83 c4 28 add $0x28,%rsp + 6634fe3e: c3 retq + 6634fe3f: 90 nop -000000006634ffa0 : - 6634ffa0: 56 push %rsi - 6634ffa1: 53 push %rbx - 6634ffa2: 48 83 ec 28 sub $0x28,%rsp - 6634ffa6: 48 8b 51 10 mov 0x10(%rcx),%rdx - 6634ffaa: 48 8b 42 40 mov 0x40(%rdx),%rax - 6634ffae: 48 89 ce mov %rcx,%rsi - 6634ffb1: 44 8b 08 mov (%rax),%r9d - 6634ffb4: 45 85 c9 test %r9d,%r9d - 6634ffb7: 0f 84 d7 00 00 00 je 66350094 - 6634ffbd: 48 8b 42 10 mov 0x10(%rdx),%rax - 6634ffc1: 8b 08 mov (%rax),%ecx - 6634ffc3: 48 8b 42 08 mov 0x8(%rdx),%rax - 6634ffc7: 8b 00 mov (%rax),%eax - 6634ffc9: 8d 04 48 lea (%rax,%rcx,2),%eax - 6634ffcc: 48 8b 4a 18 mov 0x18(%rdx),%rcx - 6634ffd0: 8b 09 mov (%rcx),%ecx - 6634ffd2: 8d 04 88 lea (%rax,%rcx,4),%eax - 6634ffd5: 48 8b 4a 20 mov 0x20(%rdx),%rcx - 6634ffd9: 8b 09 mov (%rcx),%ecx - 6634ffdb: 8d 04 c8 lea (%rax,%rcx,8),%eax - 6634ffde: 48 8b 4a 28 mov 0x28(%rdx),%rcx - 6634ffe2: 8b 19 mov (%rcx),%ebx - 6634ffe4: c1 e3 04 shl $0x4,%ebx - 6634ffe7: 01 c3 add %eax,%ebx - 6634ffe9: 48 8b 42 30 mov 0x30(%rdx),%rax - 6634ffed: 8b 00 mov (%rax),%eax - 6634ffef: c1 e0 05 shl $0x5,%eax - 6634fff2: 01 c3 add %eax,%ebx - 6634fff4: 78 05 js 6634fffb - 6634fff6: 3b 5e 38 cmp 0x38(%rsi),%ebx - 6634fff9: 7c 19 jl 66350014 - 6634fffb: 48 8d 15 fe 3f 00 00 lea 0x3ffe(%rip),%rdx # 66354000 <.rdata> - 66350002: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66350008: 48 8d 0d 01 40 00 00 lea 0x4001(%rip),%rcx # 66354010 <.rdata+0x10> - 6635000f: e8 fc 21 00 00 callq 66352210 <_assert> - 66350014: 48 8b 56 40 mov 0x40(%rsi),%rdx - 66350018: 48 63 c3 movslq %ebx,%rax - 6635001b: 8b 04 82 mov (%rdx,%rax,4),%eax - 6635001e: 48 8b 56 08 mov 0x8(%rsi),%rdx - 66350022: 8b 4a 1c mov 0x1c(%rdx),%ecx - 66350025: 39 c8 cmp %ecx,%eax - 66350027: 74 64 je 6635008d - 66350029: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 6635002d: 89 c3 mov %eax,%ebx - 6635002f: 29 cb sub %ecx,%ebx - 66350031: 4d 8b 40 38 mov 0x38(%r8),%r8 - 66350035: 41 01 18 add %ebx,(%r8) - 66350038: 89 42 1c mov %eax,0x1c(%rdx) - 6635003b: 31 d2 xor %edx,%edx - 6635003d: 48 8b 46 10 mov 0x10(%rsi),%rax - 66350041: 41 8b 08 mov (%r8),%ecx - 66350044: 48 8b 40 38 mov 0x38(%rax),%rax - 66350048: 85 c9 test %ecx,%ecx - 6635004a: 0f 9f c2 setg %dl - 6635004d: 3b 10 cmp (%rax),%edx - 6635004f: 74 3c je 6635008d - 66350051: 48 8b 46 20 mov 0x20(%rsi),%rax - 66350055: 48 8b 40 38 mov 0x38(%rax),%rax - 66350059: 8b 00 mov (%rax),%eax - 6635005b: 85 c0 test %eax,%eax - 6635005d: 75 2e jne 6635008d - 6635005f: 48 8b 46 28 mov 0x28(%rsi),%rax - 66350063: 48 8b 0d c6 78 00 00 mov 0x78c6(%rip),%rcx # 66357930 - 6635006a: 4c 8b 05 af 78 00 00 mov 0x78af(%rip),%r8 # 66357920 - 66350071: 48 8b 50 38 mov 0x38(%rax),%rdx - 66350075: 48 8b 42 10 mov 0x10(%rdx),%rax - 66350079: c7 00 01 00 00 00 movl $0x1,(%rax) - 6635007f: 48 63 01 movslq (%rcx),%rax - 66350082: 44 8d 48 01 lea 0x1(%rax),%r9d - 66350086: 44 89 09 mov %r9d,(%rcx) - 66350089: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6635008d: 48 83 c4 28 add $0x28,%rsp - 66350091: 5b pop %rbx - 66350092: 5e pop %rsi - 66350093: c3 retq - 66350094: 48 8b 41 08 mov 0x8(%rcx),%rax - 66350098: 8b 48 1c mov 0x1c(%rax),%ecx - 6635009b: 85 c9 test %ecx,%ecx - 6635009d: 74 ee je 6635008d - 6635009f: 4c 8b 46 18 mov 0x18(%rsi),%r8 - 663500a3: 4d 8b 40 38 mov 0x38(%r8),%r8 - 663500a7: 41 29 08 sub %ecx,(%r8) - 663500aa: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%rax) - 663500b1: 31 c9 xor %ecx,%ecx - 663500b3: 45 8b 00 mov (%r8),%r8d - 663500b6: 48 8b 42 38 mov 0x38(%rdx),%rax - 663500ba: 45 85 c0 test %r8d,%r8d - 663500bd: 0f 9f c1 setg %cl - 663500c0: 3b 08 cmp (%rax),%ecx - 663500c2: 75 8d jne 66350051 - 663500c4: eb c7 jmp 6635008d - 663500c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663500cd: 00 00 00 +000000006634fe40 <__dyn_tls_init>: + 6634fe40: 56 push %rsi + 6634fe41: 53 push %rbx + 6634fe42: 48 83 ec 28 sub $0x28,%rsp + 6634fe46: 48 8b 05 53 34 00 00 mov 0x3453(%rip),%rax # 663532a0 <.refptr._CRT_MT> + 6634fe4d: 83 38 02 cmpl $0x2,(%rax) + 6634fe50: 74 06 je 6634fe58 <__dyn_tls_init+0x18> + 6634fe52: c7 00 02 00 00 00 movl $0x2,(%rax) + 6634fe58: 83 fa 02 cmp $0x2,%edx + 6634fe5b: 74 13 je 6634fe70 <__dyn_tls_init+0x30> + 6634fe5d: 83 fa 01 cmp $0x1,%edx + 6634fe60: 74 40 je 6634fea2 <__dyn_tls_init+0x62> + 6634fe62: b8 01 00 00 00 mov $0x1,%eax + 6634fe67: 48 83 c4 28 add $0x28,%rsp + 6634fe6b: 5b pop %rbx + 6634fe6c: 5e pop %rsi + 6634fe6d: c3 retq + 6634fe6e: 66 90 xchg %ax,%ax + 6634fe70: 48 8d 1d d9 91 00 00 lea 0x91d9(%rip),%rbx # 66359050 <__xd_z> + 6634fe77: 48 8d 35 d2 91 00 00 lea 0x91d2(%rip),%rsi # 66359050 <__xd_z> + 6634fe7e: 48 39 de cmp %rbx,%rsi + 6634fe81: 74 df je 6634fe62 <__dyn_tls_init+0x22> + 6634fe83: 48 8b 03 mov (%rbx),%rax + 6634fe86: 48 85 c0 test %rax,%rax + 6634fe89: 74 02 je 6634fe8d <__dyn_tls_init+0x4d> + 6634fe8b: ff d0 callq *%rax + 6634fe8d: 48 83 c3 08 add $0x8,%rbx + 6634fe91: 48 39 de cmp %rbx,%rsi + 6634fe94: 75 ed jne 6634fe83 <__dyn_tls_init+0x43> + 6634fe96: b8 01 00 00 00 mov $0x1,%eax + 6634fe9b: 48 83 c4 28 add $0x28,%rsp + 6634fe9f: 5b pop %rbx + 6634fea0: 5e pop %rsi + 6634fea1: c3 retq + 6634fea2: e8 e9 0a 00 00 callq 66350990 <__mingw_TLScallback> + 6634fea7: b8 01 00 00 00 mov $0x1,%eax + 6634feac: 48 83 c4 28 add $0x28,%rsp + 6634feb0: 5b pop %rbx + 6634feb1: 5e pop %rsi + 6634feb2: c3 retq + 6634feb3: 0f 1f 00 nopl (%rax) + 6634feb6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634febd: 00 00 00 -00000000663500d0 : - 663500d0: 56 push %rsi - 663500d1: 53 push %rbx - 663500d2: 48 83 ec 28 sub $0x28,%rsp - 663500d6: 44 8b 51 38 mov 0x38(%rcx),%r10d - 663500da: 45 85 d2 test %r10d,%r10d - 663500dd: 48 89 cb mov %rcx,%rbx - 663500e0: 7f 19 jg 663500fb - 663500e2: 48 8d 15 17 3f 00 00 lea 0x3f17(%rip),%rdx # 66354000 <.rdata> - 663500e9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 663500ef: 48 8d 0d 1a 3f 00 00 lea 0x3f1a(%rip),%rcx # 66354010 <.rdata+0x10> - 663500f6: e8 15 21 00 00 callq 66352210 <_assert> - 663500fb: 48 8b 43 40 mov 0x40(%rbx),%rax - 663500ff: 8b 10 mov (%rax),%edx - 66350101: 48 8b 43 10 mov 0x10(%rbx),%rax - 66350105: 48 8b 88 48 08 00 00 mov 0x848(%rax),%rcx - 6635010c: 44 8b 09 mov (%rcx),%r9d - 6635010f: 45 85 c9 test %r9d,%r9d - 66350112: 0f 84 fd 00 00 00 je 66350215 - 66350118: 48 8b 48 10 mov 0x10(%rax),%rcx - 6635011c: 44 8b 01 mov (%rcx),%r8d - 6635011f: 48 8b 48 08 mov 0x8(%rax),%rcx - 66350123: 8b 09 mov (%rcx),%ecx - 66350125: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx - 66350129: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6635012d: 45 8b 00 mov (%r8),%r8d - 66350130: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx - 66350134: 4c 8b 40 20 mov 0x20(%rax),%r8 - 66350138: 45 8b 00 mov (%r8),%r8d - 6635013b: 42 8d 0c c1 lea (%rcx,%r8,8),%ecx - 6635013f: 4c 8b 40 28 mov 0x28(%rax),%r8 - 66350143: 45 8b 00 mov (%r8),%r8d - 66350146: 41 c1 e0 04 shl $0x4,%r8d - 6635014a: 41 01 c8 add %ecx,%r8d - 6635014d: 48 8b 48 30 mov 0x30(%rax),%rcx - 66350151: 8b 09 mov (%rcx),%ecx - 66350153: c1 e1 05 shl $0x5,%ecx - 66350156: 41 01 c8 add %ecx,%r8d - 66350159: 48 8b 48 38 mov 0x38(%rax),%rcx - 6635015d: 48 8b 40 40 mov 0x40(%rax),%rax - 66350161: 8b 09 mov (%rcx),%ecx - 66350163: 8b 00 mov (%rax),%eax - 66350165: c1 e1 06 shl $0x6,%ecx - 66350168: 44 01 c1 add %r8d,%ecx - 6635016b: c1 e0 07 shl $0x7,%eax - 6635016e: 8d 74 01 09 lea 0x9(%rcx,%rax,1),%esi - 66350172: 39 d6 cmp %edx,%esi - 66350174: 0f 84 94 00 00 00 je 6635020e - 6635017a: 85 d2 test %edx,%edx - 6635017c: 0f 85 f1 00 00 00 jne 66350273 - 66350182: 48 8b 53 08 mov 0x8(%rbx),%rdx - 66350186: 48 63 c6 movslq %esi,%rax - 66350189: 48 8d 14 82 lea (%rdx,%rax,4),%rdx - 6635018d: 8b 0a mov (%rdx),%ecx - 6635018f: 83 f9 01 cmp $0x1,%ecx - 66350192: 74 6d je 66350201 - 66350194: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 66350198: 41 b9 01 00 00 00 mov $0x1,%r9d - 6635019e: 41 29 c9 sub %ecx,%r9d - 663501a1: 31 c9 xor %ecx,%ecx - 663501a3: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 663501a7: 45 01 08 add %r9d,(%r8) - 663501aa: c7 02 01 00 00 00 movl $0x1,(%rdx) - 663501b0: 48 8b 53 10 mov 0x10(%rbx),%rdx - 663501b4: 45 8b 00 mov (%r8),%r8d - 663501b7: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663501bb: 45 85 c0 test %r8d,%r8d - 663501be: 0f 9f c1 setg %cl - 663501c1: 3b 0a cmp (%rdx),%ecx - 663501c3: 74 3c je 66350201 - 663501c5: 48 8b 53 20 mov 0x20(%rbx),%rdx - 663501c9: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663501cd: 8b 0a mov (%rdx),%ecx - 663501cf: 85 c9 test %ecx,%ecx - 663501d1: 75 2e jne 66350201 - 663501d3: 48 8b 53 28 mov 0x28(%rbx),%rdx - 663501d7: 48 8b 0d 52 77 00 00 mov 0x7752(%rip),%rcx # 66357930 - 663501de: 4c 8b 05 3b 77 00 00 mov 0x773b(%rip),%r8 # 66357920 - 663501e5: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663501e9: 48 8b 42 10 mov 0x10(%rdx),%rax - 663501ed: c7 00 01 00 00 00 movl $0x1,(%rax) - 663501f3: 48 63 01 movslq (%rcx),%rax - 663501f6: 44 8d 48 01 lea 0x1(%rax),%r9d - 663501fa: 44 89 09 mov %r9d,(%rcx) - 663501fd: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66350201: 8b 53 38 mov 0x38(%rbx),%edx - 66350204: 85 d2 test %edx,%edx - 66350206: 7e 4a jle 66350252 - 66350208: 48 8b 43 40 mov 0x40(%rbx),%rax - 6635020c: 89 30 mov %esi,(%rax) - 6635020e: 48 83 c4 28 add $0x28,%rsp - 66350212: 5b pop %rbx - 66350213: 5e pop %rsi - 66350214: c3 retq - 66350215: 85 d2 test %edx,%edx - 66350217: 74 f5 je 6635020e - 66350219: 48 89 d9 mov %rbx,%rcx - 6635021c: e8 0f 12 ff ff callq 66341430 - 66350221: 8b 43 38 mov 0x38(%rbx),%eax - 66350224: 85 c0 test %eax,%eax - 66350226: 7f 19 jg 66350241 - 66350228: 48 8d 15 d1 3d 00 00 lea 0x3dd1(%rip),%rdx # 66354000 <.rdata> - 6635022f: 41 b8 93 00 00 00 mov $0x93,%r8d - 66350235: 48 8d 0d d4 3d 00 00 lea 0x3dd4(%rip),%rcx # 66354010 <.rdata+0x10> - 6635023c: e8 cf 1f 00 00 callq 66352210 <_assert> - 66350241: 48 8b 43 40 mov 0x40(%rbx),%rax - 66350245: c7 00 00 00 00 00 movl $0x0,(%rax) - 6635024b: 48 83 c4 28 add $0x28,%rsp - 6635024f: 5b pop %rbx - 66350250: 5e pop %rsi - 66350251: c3 retq - 66350252: 48 8d 15 a7 3d 00 00 lea 0x3da7(%rip),%rdx # 66354000 <.rdata> - 66350259: 41 b8 93 00 00 00 mov $0x93,%r8d - 6635025f: 48 8d 0d aa 3d 00 00 lea 0x3daa(%rip),%rcx # 66354010 <.rdata+0x10> - 66350266: e8 a5 1f 00 00 callq 66352210 <_assert> - 6635026b: 48 8b 43 40 mov 0x40(%rbx),%rax - 6635026f: 89 30 mov %esi,(%rax) - 66350271: eb 9b jmp 6635020e - 66350273: 48 89 d9 mov %rbx,%rcx - 66350276: e8 b5 11 ff ff callq 66341430 - 6635027b: e9 02 ff ff ff jmpq 66350182 +000000006634fec0 <__tlregdtor>: + 6634fec0: 31 c0 xor %eax,%eax + 6634fec2: c3 retq + 6634fec3: 90 nop + 6634fec4: 90 nop + 6634fec5: 90 nop + 6634fec6: 90 nop + 6634fec7: 90 nop + 6634fec8: 90 nop + 6634fec9: 90 nop + 6634feca: 90 nop + 6634fecb: 90 nop + 6634fecc: 90 nop + 6634fecd: 90 nop + 6634fece: 90 nop + 6634fecf: 90 nop -0000000066350280 : - 66350280: 56 push %rsi - 66350281: 53 push %rbx - 66350282: 48 83 ec 28 sub $0x28,%rsp - 66350286: 44 8b 51 38 mov 0x38(%rcx),%r10d - 6635028a: 45 85 d2 test %r10d,%r10d - 6635028d: 48 89 cb mov %rcx,%rbx - 66350290: 7f 19 jg 663502ab - 66350292: 48 8d 15 67 3d 00 00 lea 0x3d67(%rip),%rdx # 66354000 <.rdata> - 66350299: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6635029f: 48 8d 0d 6a 3d 00 00 lea 0x3d6a(%rip),%rcx # 66354010 <.rdata+0x10> - 663502a6: e8 65 1f 00 00 callq 66352210 <_assert> - 663502ab: 48 8b 43 40 mov 0x40(%rbx),%rax - 663502af: 8b 10 mov (%rax),%edx - 663502b1: 48 8b 43 10 mov 0x10(%rbx),%rax - 663502b5: 48 8b 48 38 mov 0x38(%rax),%rcx - 663502b9: 44 8b 09 mov (%rcx),%r9d - 663502bc: 45 85 c9 test %r9d,%r9d - 663502bf: 0f 84 bb 00 00 00 je 66350380 - 663502c5: 48 8b 48 10 mov 0x10(%rax),%rcx - 663502c9: 48 8b 40 08 mov 0x8(%rax),%rax - 663502cd: 8b 09 mov (%rcx),%ecx - 663502cf: 8b 00 mov (%rax),%eax - 663502d1: 8d 74 48 03 lea 0x3(%rax,%rcx,2),%esi - 663502d5: 39 d6 cmp %edx,%esi - 663502d7: 0f 84 94 00 00 00 je 66350371 - 663502dd: 85 d2 test %edx,%edx - 663502df: 0f 85 fc 00 00 00 jne 663503e1 - 663502e5: 48 8b 53 08 mov 0x8(%rbx),%rdx - 663502e9: 48 63 c6 movslq %esi,%rax - 663502ec: 48 8d 14 82 lea (%rdx,%rax,4),%rdx - 663502f0: 8b 0a mov (%rdx),%ecx - 663502f2: 83 f9 01 cmp $0x1,%ecx - 663502f5: 74 6d je 66350364 - 663502f7: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 663502fb: 41 b9 01 00 00 00 mov $0x1,%r9d - 66350301: 41 29 c9 sub %ecx,%r9d - 66350304: 31 c9 xor %ecx,%ecx - 66350306: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 6635030a: 45 01 08 add %r9d,(%r8) - 6635030d: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66350313: 48 8b 53 10 mov 0x10(%rbx),%rdx - 66350317: 45 8b 00 mov (%r8),%r8d - 6635031a: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6635031e: 45 85 c0 test %r8d,%r8d - 66350321: 0f 9f c1 setg %cl - 66350324: 3b 0a cmp (%rdx),%ecx - 66350326: 74 3c je 66350364 - 66350328: 48 8b 53 20 mov 0x20(%rbx),%rdx - 6635032c: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 66350330: 8b 0a mov (%rdx),%ecx - 66350332: 85 c9 test %ecx,%ecx - 66350334: 75 2e jne 66350364 - 66350336: 48 8b 53 28 mov 0x28(%rbx),%rdx - 6635033a: 48 8b 0d ef 75 00 00 mov 0x75ef(%rip),%rcx # 66357930 - 66350341: 4c 8b 05 d8 75 00 00 mov 0x75d8(%rip),%r8 # 66357920 - 66350348: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6635034c: 48 8b 42 10 mov 0x10(%rdx),%rax - 66350350: c7 00 01 00 00 00 movl $0x1,(%rax) - 66350356: 48 63 01 movslq (%rcx),%rax - 66350359: 44 8d 48 01 lea 0x1(%rax),%r9d - 6635035d: 44 89 09 mov %r9d,(%rcx) - 66350360: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66350364: 8b 53 38 mov 0x38(%rbx),%edx - 66350367: 85 d2 test %edx,%edx - 66350369: 7e 55 jle 663503c0 - 6635036b: 48 8b 43 40 mov 0x40(%rbx),%rax - 6635036f: 89 30 mov %esi,(%rax) - 66350371: 48 83 c4 28 add $0x28,%rsp - 66350375: 5b pop %rbx - 66350376: 5e pop %rsi - 66350377: c3 retq - 66350378: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6635037f: 00 - 66350380: 85 d2 test %edx,%edx - 66350382: 74 ed je 66350371 - 66350384: 48 89 d9 mov %rbx,%rcx - 66350387: e8 a4 10 ff ff callq 66341430 - 6635038c: 8b 43 38 mov 0x38(%rbx),%eax - 6635038f: 85 c0 test %eax,%eax - 66350391: 7f 19 jg 663503ac - 66350393: 48 8d 15 66 3c 00 00 lea 0x3c66(%rip),%rdx # 66354000 <.rdata> - 6635039a: 41 b8 93 00 00 00 mov $0x93,%r8d - 663503a0: 48 8d 0d 69 3c 00 00 lea 0x3c69(%rip),%rcx # 66354010 <.rdata+0x10> - 663503a7: e8 64 1e 00 00 callq 66352210 <_assert> - 663503ac: 48 8b 43 40 mov 0x40(%rbx),%rax - 663503b0: c7 00 00 00 00 00 movl $0x0,(%rax) - 663503b6: 48 83 c4 28 add $0x28,%rsp - 663503ba: 5b pop %rbx - 663503bb: 5e pop %rsi - 663503bc: c3 retq - 663503bd: 0f 1f 00 nopl (%rax) - 663503c0: 48 8d 15 39 3c 00 00 lea 0x3c39(%rip),%rdx # 66354000 <.rdata> - 663503c7: 41 b8 93 00 00 00 mov $0x93,%r8d - 663503cd: 48 8d 0d 3c 3c 00 00 lea 0x3c3c(%rip),%rcx # 66354010 <.rdata+0x10> - 663503d4: e8 37 1e 00 00 callq 66352210 <_assert> - 663503d9: 48 8b 43 40 mov 0x40(%rbx),%rax - 663503dd: 89 30 mov %esi,(%rax) - 663503df: eb 90 jmp 66350371 - 663503e1: 48 89 d9 mov %rbx,%rcx - 663503e4: e8 47 10 ff ff callq 66341430 - 663503e9: e9 f7 fe ff ff jmpq 663502e5 - 663503ee: 66 90 xchg %ax,%ax +000000006634fed0 <_decode_pointer>: + 6634fed0: 48 89 c8 mov %rcx,%rax + 6634fed3: c3 retq + 6634fed4: 66 90 xchg %ax,%ax + 6634fed6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6634fedd: 00 00 00 -00000000663503f0 : - 663503f0: 56 push %rsi - 663503f1: 53 push %rbx - 663503f2: 48 83 ec 28 sub $0x28,%rsp - 663503f6: 44 8b 51 38 mov 0x38(%rcx),%r10d - 663503fa: 45 85 d2 test %r10d,%r10d - 663503fd: 48 89 cb mov %rcx,%rbx - 66350400: 7f 19 jg 6635041b - 66350402: 48 8d 15 f7 3b 00 00 lea 0x3bf7(%rip),%rdx # 66354000 <.rdata> - 66350409: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6635040f: 48 8d 0d fa 3b 00 00 lea 0x3bfa(%rip),%rcx # 66354010 <.rdata+0x10> - 66350416: e8 f5 1d 00 00 callq 66352210 <_assert> - 6635041b: 48 8b 43 40 mov 0x40(%rbx),%rax - 6635041f: 8b 10 mov (%rax),%edx - 66350421: 48 8b 43 10 mov 0x10(%rbx),%rax - 66350425: 48 8b 48 60 mov 0x60(%rax),%rcx - 66350429: 44 8b 09 mov (%rcx),%r9d - 6635042c: 45 85 c9 test %r9d,%r9d - 6635042f: 0f 84 be 00 00 00 je 663504f3 - 66350435: 48 8b 48 10 mov 0x10(%rax),%rcx - 66350439: 44 8b 01 mov (%rcx),%r8d - 6635043c: 48 8b 48 08 mov 0x8(%rax),%rcx - 66350440: 48 8b 40 18 mov 0x18(%rax),%rax - 66350444: 8b 09 mov (%rcx),%ecx - 66350446: 8b 00 mov (%rax),%eax - 66350448: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx - 6635044c: 8d 74 81 04 lea 0x4(%rcx,%rax,4),%esi - 66350450: 39 d6 cmp %edx,%esi - 66350452: 0f 84 94 00 00 00 je 663504ec - 66350458: 85 d2 test %edx,%edx - 6635045a: 0f 85 f1 00 00 00 jne 66350551 - 66350460: 48 8b 53 08 mov 0x8(%rbx),%rdx - 66350464: 48 63 c6 movslq %esi,%rax - 66350467: 48 8d 14 82 lea (%rdx,%rax,4),%rdx - 6635046b: 8b 0a mov (%rdx),%ecx - 6635046d: 83 f9 01 cmp $0x1,%ecx - 66350470: 74 6d je 663504df - 66350472: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 66350476: 41 b9 01 00 00 00 mov $0x1,%r9d - 6635047c: 41 29 c9 sub %ecx,%r9d - 6635047f: 31 c9 xor %ecx,%ecx - 66350481: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 66350485: 45 01 08 add %r9d,(%r8) - 66350488: c7 02 01 00 00 00 movl $0x1,(%rdx) - 6635048e: 48 8b 53 10 mov 0x10(%rbx),%rdx - 66350492: 45 8b 00 mov (%r8),%r8d - 66350495: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 66350499: 45 85 c0 test %r8d,%r8d - 6635049c: 0f 9f c1 setg %cl - 6635049f: 3b 0a cmp (%rdx),%ecx - 663504a1: 74 3c je 663504df - 663504a3: 48 8b 53 20 mov 0x20(%rbx),%rdx - 663504a7: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663504ab: 8b 0a mov (%rdx),%ecx - 663504ad: 85 c9 test %ecx,%ecx - 663504af: 75 2e jne 663504df - 663504b1: 48 8b 53 28 mov 0x28(%rbx),%rdx - 663504b5: 48 8b 0d 74 74 00 00 mov 0x7474(%rip),%rcx # 66357930 - 663504bc: 4c 8b 05 5d 74 00 00 mov 0x745d(%rip),%r8 # 66357920 - 663504c3: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663504c7: 48 8b 42 10 mov 0x10(%rdx),%rax - 663504cb: c7 00 01 00 00 00 movl $0x1,(%rax) - 663504d1: 48 63 01 movslq (%rcx),%rax - 663504d4: 44 8d 48 01 lea 0x1(%rax),%r9d - 663504d8: 44 89 09 mov %r9d,(%rcx) - 663504db: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 663504df: 8b 53 38 mov 0x38(%rbx),%edx - 663504e2: 85 d2 test %edx,%edx - 663504e4: 7e 4a jle 66350530 - 663504e6: 48 8b 43 40 mov 0x40(%rbx),%rax - 663504ea: 89 30 mov %esi,(%rax) - 663504ec: 48 83 c4 28 add $0x28,%rsp - 663504f0: 5b pop %rbx - 663504f1: 5e pop %rsi - 663504f2: c3 retq - 663504f3: 85 d2 test %edx,%edx - 663504f5: 74 f5 je 663504ec - 663504f7: 48 89 d9 mov %rbx,%rcx - 663504fa: e8 31 0f ff ff callq 66341430 - 663504ff: 8b 43 38 mov 0x38(%rbx),%eax - 66350502: 85 c0 test %eax,%eax - 66350504: 7f 19 jg 6635051f - 66350506: 48 8d 15 f3 3a 00 00 lea 0x3af3(%rip),%rdx # 66354000 <.rdata> - 6635050d: 41 b8 93 00 00 00 mov $0x93,%r8d - 66350513: 48 8d 0d f6 3a 00 00 lea 0x3af6(%rip),%rcx # 66354010 <.rdata+0x10> - 6635051a: e8 f1 1c 00 00 callq 66352210 <_assert> - 6635051f: 48 8b 43 40 mov 0x40(%rbx),%rax - 66350523: c7 00 00 00 00 00 movl $0x0,(%rax) - 66350529: 48 83 c4 28 add $0x28,%rsp - 6635052d: 5b pop %rbx - 6635052e: 5e pop %rsi - 6635052f: c3 retq - 66350530: 48 8d 15 c9 3a 00 00 lea 0x3ac9(%rip),%rdx # 66354000 <.rdata> - 66350537: 41 b8 93 00 00 00 mov $0x93,%r8d - 6635053d: 48 8d 0d cc 3a 00 00 lea 0x3acc(%rip),%rcx # 66354010 <.rdata+0x10> - 66350544: e8 c7 1c 00 00 callq 66352210 <_assert> - 66350549: 48 8b 43 40 mov 0x40(%rbx),%rax - 6635054d: 89 30 mov %esi,(%rax) - 6635054f: eb 9b jmp 663504ec - 66350551: 48 89 d9 mov %rbx,%rcx - 66350554: e8 d7 0e ff ff callq 66341430 - 66350559: e9 02 ff ff ff jmpq 66350460 - 6635055e: 66 90 xchg %ax,%ax +000000006634fee0 <_encode_pointer>: + 6634fee0: 48 89 c8 mov %rcx,%rax + 6634fee3: c3 retq + 6634fee4: 90 nop + 6634fee5: 90 nop + 6634fee6: 90 nop + 6634fee7: 90 nop + 6634fee8: 90 nop + 6634fee9: 90 nop + 6634feea: 90 nop + 6634feeb: 90 nop + 6634feec: 90 nop + 6634feed: 90 nop + 6634feee: 90 nop + 6634feef: 90 nop -0000000066350560 : - 66350560: 56 push %rsi - 66350561: 53 push %rbx - 66350562: 48 83 ec 28 sub $0x28,%rsp - 66350566: 44 8b 51 38 mov 0x38(%rcx),%r10d - 6635056a: 45 85 d2 test %r10d,%r10d - 6635056d: 48 89 cb mov %rcx,%rbx - 66350570: 7f 19 jg 6635058b - 66350572: 48 8d 15 87 3a 00 00 lea 0x3a87(%rip),%rdx # 66354000 <.rdata> - 66350579: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6635057f: 48 8d 0d 8a 3a 00 00 lea 0x3a8a(%rip),%rcx # 66354010 <.rdata+0x10> - 66350586: e8 85 1c 00 00 callq 66352210 <_assert> - 6635058b: 48 8b 43 40 mov 0x40(%rbx),%rax - 6635058f: 8b 10 mov (%rax),%edx - 66350591: 48 8b 43 10 mov 0x10(%rbx),%rax - 66350595: 48 8b 88 40 04 00 00 mov 0x440(%rax),%rcx - 6635059c: 44 8b 09 mov (%rcx),%r9d - 6635059f: 45 85 c9 test %r9d,%r9d - 663505a2: 0f 84 f8 00 00 00 je 663506a0 - 663505a8: 48 8b 48 10 mov 0x10(%rax),%rcx - 663505ac: 44 8b 01 mov (%rcx),%r8d - 663505af: 48 8b 48 08 mov 0x8(%rax),%rcx - 663505b3: 8b 09 mov (%rcx),%ecx - 663505b5: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx - 663505b9: 4c 8b 40 18 mov 0x18(%rax),%r8 - 663505bd: 45 8b 00 mov (%r8),%r8d - 663505c0: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx - 663505c4: 4c 8b 40 20 mov 0x20(%rax),%r8 - 663505c8: 45 8b 00 mov (%r8),%r8d - 663505cb: 46 8d 04 c1 lea (%rcx,%r8,8),%r8d - 663505cf: 48 8b 48 28 mov 0x28(%rax),%rcx - 663505d3: 8b 09 mov (%rcx),%ecx - 663505d5: c1 e1 04 shl $0x4,%ecx - 663505d8: 41 01 c8 add %ecx,%r8d - 663505db: 48 8b 48 30 mov 0x30(%rax),%rcx - 663505df: 48 8b 40 38 mov 0x38(%rax),%rax - 663505e3: 8b 09 mov (%rcx),%ecx - 663505e5: 8b 00 mov (%rax),%eax - 663505e7: c1 e1 05 shl $0x5,%ecx - 663505ea: 44 01 c1 add %r8d,%ecx - 663505ed: c1 e0 06 shl $0x6,%eax - 663505f0: 8d 74 01 08 lea 0x8(%rcx,%rax,1),%esi - 663505f4: 39 d6 cmp %edx,%esi - 663505f6: 0f 84 94 00 00 00 je 66350690 - 663505fc: 85 d2 test %edx,%edx - 663505fe: 0f 85 fd 00 00 00 jne 66350701 - 66350604: 48 8b 53 08 mov 0x8(%rbx),%rdx - 66350608: 48 63 c6 movslq %esi,%rax - 6635060b: 48 8d 14 82 lea (%rdx,%rax,4),%rdx - 6635060f: 8b 0a mov (%rdx),%ecx - 66350611: 83 f9 01 cmp $0x1,%ecx - 66350614: 74 6d je 66350683 - 66350616: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 6635061a: 41 b9 01 00 00 00 mov $0x1,%r9d - 66350620: 41 29 c9 sub %ecx,%r9d - 66350623: 31 c9 xor %ecx,%ecx - 66350625: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 66350629: 45 01 08 add %r9d,(%r8) - 6635062c: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66350632: 48 8b 53 10 mov 0x10(%rbx),%rdx - 66350636: 45 8b 00 mov (%r8),%r8d - 66350639: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6635063d: 45 85 c0 test %r8d,%r8d - 66350640: 0f 9f c1 setg %cl - 66350643: 3b 0a cmp (%rdx),%ecx - 66350645: 74 3c je 66350683 - 66350647: 48 8b 53 20 mov 0x20(%rbx),%rdx - 6635064b: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6635064f: 8b 0a mov (%rdx),%ecx - 66350651: 85 c9 test %ecx,%ecx - 66350653: 75 2e jne 66350683 - 66350655: 48 8b 53 28 mov 0x28(%rbx),%rdx - 66350659: 48 8b 0d d0 72 00 00 mov 0x72d0(%rip),%rcx # 66357930 - 66350660: 4c 8b 05 b9 72 00 00 mov 0x72b9(%rip),%r8 # 66357920 - 66350667: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 6635066b: 48 8b 42 10 mov 0x10(%rdx),%rax - 6635066f: c7 00 01 00 00 00 movl $0x1,(%rax) - 66350675: 48 63 01 movslq (%rcx),%rax - 66350678: 44 8d 48 01 lea 0x1(%rax),%r9d - 6635067c: 44 89 09 mov %r9d,(%rcx) - 6635067f: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66350683: 8b 53 38 mov 0x38(%rbx),%edx - 66350686: 85 d2 test %edx,%edx - 66350688: 7e 56 jle 663506e0 - 6635068a: 48 8b 43 40 mov 0x40(%rbx),%rax - 6635068e: 89 30 mov %esi,(%rax) - 66350690: 48 83 c4 28 add $0x28,%rsp - 66350694: 5b pop %rbx - 66350695: 5e pop %rsi - 66350696: c3 retq - 66350697: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6635069e: 00 00 - 663506a0: 85 d2 test %edx,%edx - 663506a2: 74 ec je 66350690 - 663506a4: 48 89 d9 mov %rbx,%rcx - 663506a7: e8 84 0d ff ff callq 66341430 - 663506ac: 8b 43 38 mov 0x38(%rbx),%eax - 663506af: 85 c0 test %eax,%eax - 663506b1: 7f 19 jg 663506cc - 663506b3: 48 8d 15 46 39 00 00 lea 0x3946(%rip),%rdx # 66354000 <.rdata> - 663506ba: 41 b8 93 00 00 00 mov $0x93,%r8d - 663506c0: 48 8d 0d 49 39 00 00 lea 0x3949(%rip),%rcx # 66354010 <.rdata+0x10> - 663506c7: e8 44 1b 00 00 callq 66352210 <_assert> - 663506cc: 48 8b 43 40 mov 0x40(%rbx),%rax - 663506d0: c7 00 00 00 00 00 movl $0x0,(%rax) - 663506d6: 48 83 c4 28 add $0x28,%rsp - 663506da: 5b pop %rbx - 663506db: 5e pop %rsi - 663506dc: c3 retq - 663506dd: 0f 1f 00 nopl (%rax) - 663506e0: 48 8d 15 19 39 00 00 lea 0x3919(%rip),%rdx # 66354000 <.rdata> - 663506e7: 41 b8 93 00 00 00 mov $0x93,%r8d - 663506ed: 48 8d 0d 1c 39 00 00 lea 0x391c(%rip),%rcx # 66354010 <.rdata+0x10> - 663506f4: e8 17 1b 00 00 callq 66352210 <_assert> - 663506f9: 48 8b 43 40 mov 0x40(%rbx),%rax - 663506fd: 89 30 mov %esi,(%rax) - 663506ff: eb 8f jmp 66350690 - 66350701: 48 89 d9 mov %rbx,%rcx - 66350704: e8 27 0d ff ff callq 66341430 - 66350709: e9 f6 fe ff ff jmpq 66350604 - 6635070e: 66 90 xchg %ax,%ax +000000006634fef0 <__write_memory.part.0>: + 6634fef0: 41 54 push %r12 + 6634fef2: 55 push %rbp + 6634fef3: 57 push %rdi + 6634fef4: 56 push %rsi + 6634fef5: 53 push %rbx + 6634fef6: 48 83 ec 50 sub $0x50,%rsp + 6634fefa: 48 63 35 e3 66 00 00 movslq 0x66e3(%rip),%rsi # 663565e4 + 6634ff01: 85 f6 test %esi,%esi + 6634ff03: 48 89 cb mov %rcx,%rbx + 6634ff06: 48 89 d5 mov %rdx,%rbp + 6634ff09: 4c 89 c7 mov %r8,%rdi + 6634ff0c: 0f 8e 66 01 00 00 jle 66350078 <__write_memory.part.0+0x188> + 6634ff12: 48 8b 05 cf 66 00 00 mov 0x66cf(%rip),%rax # 663565e8 + 6634ff19: 31 c9 xor %ecx,%ecx + 6634ff1b: 48 83 c0 18 add $0x18,%rax + 6634ff1f: 90 nop + 6634ff20: 48 8b 10 mov (%rax),%rdx + 6634ff23: 48 39 d3 cmp %rdx,%rbx + 6634ff26: 72 14 jb 6634ff3c <__write_memory.part.0+0x4c> + 6634ff28: 4c 8b 40 08 mov 0x8(%rax),%r8 + 6634ff2c: 45 8b 40 08 mov 0x8(%r8),%r8d + 6634ff30: 4c 01 c2 add %r8,%rdx + 6634ff33: 48 39 d3 cmp %rdx,%rbx + 6634ff36: 0f 82 89 00 00 00 jb 6634ffc5 <__write_memory.part.0+0xd5> + 6634ff3c: 83 c1 01 add $0x1,%ecx + 6634ff3f: 48 83 c0 28 add $0x28,%rax + 6634ff43: 39 f1 cmp %esi,%ecx + 6634ff45: 75 d9 jne 6634ff20 <__write_memory.part.0+0x30> + 6634ff47: 48 89 d9 mov %rbx,%rcx + 6634ff4a: e8 41 0c 00 00 callq 66350b90 <__mingw_GetSectionForAddress> + 6634ff4f: 48 85 c0 test %rax,%rax + 6634ff52: 49 89 c4 mov %rax,%r12 + 6634ff55: 0f 84 52 01 00 00 je 663500ad <__write_memory.part.0+0x1bd> + 6634ff5b: 48 8b 05 86 66 00 00 mov 0x6686(%rip),%rax # 663565e8 + 6634ff62: 48 8d 34 b6 lea (%rsi,%rsi,4),%rsi + 6634ff66: 48 c1 e6 03 shl $0x3,%rsi + 6634ff6a: 48 01 f0 add %rsi,%rax + 6634ff6d: 4c 89 60 20 mov %r12,0x20(%rax) + 6634ff71: c7 00 00 00 00 00 movl $0x0,(%rax) + 6634ff77: e8 44 0d 00 00 callq 66350cc0 <_GetPEImageBase> + 6634ff7c: 41 8b 4c 24 0c mov 0xc(%r12),%ecx + 6634ff81: 48 8d 54 24 20 lea 0x20(%rsp),%rdx + 6634ff86: 41 b8 30 00 00 00 mov $0x30,%r8d + 6634ff8c: 48 01 c1 add %rax,%rcx + 6634ff8f: 48 8b 05 52 66 00 00 mov 0x6652(%rip),%rax # 663565e8 + 6634ff96: 48 89 4c 30 18 mov %rcx,0x18(%rax,%rsi,1) + 6634ff9b: ff 15 d7 82 00 00 callq *0x82d7(%rip) # 66358278 <__imp_VirtualQuery> + 6634ffa1: 48 85 c0 test %rax,%rax + 6634ffa4: 0f 84 e6 00 00 00 je 66350090 <__write_memory.part.0+0x1a0> + 6634ffaa: 8b 44 24 44 mov 0x44(%rsp),%eax + 6634ffae: 8d 50 fc lea -0x4(%rax),%edx + 6634ffb1: 83 e2 fb and $0xfffffffb,%edx + 6634ffb4: 74 08 je 6634ffbe <__write_memory.part.0+0xce> + 6634ffb6: 83 e8 40 sub $0x40,%eax + 6634ffb9: 83 e0 bf and $0xffffffbf,%eax + 6634ffbc: 75 62 jne 66350020 <__write_memory.part.0+0x130> + 6634ffbe: 83 05 1f 66 00 00 01 addl $0x1,0x661f(%rip) # 663565e4 + 6634ffc5: 83 ff 08 cmp $0x8,%edi + 6634ffc8: 73 29 jae 6634fff3 <__write_memory.part.0+0x103> + 6634ffca: 40 f6 c7 04 test $0x4,%dil + 6634ffce: 0f 85 90 00 00 00 jne 66350064 <__write_memory.part.0+0x174> + 6634ffd4: 85 ff test %edi,%edi + 6634ffd6: 74 10 je 6634ffe8 <__write_memory.part.0+0xf8> + 6634ffd8: 0f b6 45 00 movzbl 0x0(%rbp),%eax + 6634ffdc: 40 f6 c7 02 test $0x2,%dil + 6634ffe0: 88 03 mov %al,(%rbx) + 6634ffe2: 0f 85 97 00 00 00 jne 6635007f <__write_memory.part.0+0x18f> + 6634ffe8: 48 83 c4 50 add $0x50,%rsp + 6634ffec: 5b pop %rbx + 6634ffed: 5e pop %rsi + 6634ffee: 5f pop %rdi + 6634ffef: 5d pop %rbp + 6634fff0: 41 5c pop %r12 + 6634fff2: c3 retq + 6634fff3: 89 f8 mov %edi,%eax + 6634fff5: 83 ef 01 sub $0x1,%edi + 6634fff8: 48 8b 54 05 f8 mov -0x8(%rbp,%rax,1),%rdx + 6634fffd: 83 ff 08 cmp $0x8,%edi + 66350000: 48 89 54 03 f8 mov %rdx,-0x8(%rbx,%rax,1) + 66350005: 72 e1 jb 6634ffe8 <__write_memory.part.0+0xf8> + 66350007: 83 e7 f8 and $0xfffffff8,%edi + 6635000a: 31 c0 xor %eax,%eax + 6635000c: 89 c2 mov %eax,%edx + 6635000e: 83 c0 08 add $0x8,%eax + 66350011: 48 8b 4c 15 00 mov 0x0(%rbp,%rdx,1),%rcx + 66350016: 39 f8 cmp %edi,%eax + 66350018: 48 89 0c 13 mov %rcx,(%rbx,%rdx,1) + 6635001c: 72 ee jb 6635000c <__write_memory.part.0+0x11c> + 6635001e: eb c8 jmp 6634ffe8 <__write_memory.part.0+0xf8> + 66350020: 48 03 35 c1 65 00 00 add 0x65c1(%rip),%rsi # 663565e8 + 66350027: 41 b8 40 00 00 00 mov $0x40,%r8d + 6635002d: 48 8b 4c 24 20 mov 0x20(%rsp),%rcx + 66350032: 48 8b 54 24 38 mov 0x38(%rsp),%rdx + 66350037: 49 89 f1 mov %rsi,%r9 + 6635003a: 48 89 4e 08 mov %rcx,0x8(%rsi) + 6635003e: 48 89 56 10 mov %rdx,0x10(%rsi) + 66350042: ff 15 28 82 00 00 callq *0x8228(%rip) # 66358270 <__imp_VirtualProtect> + 66350048: 85 c0 test %eax,%eax + 6635004a: 0f 85 6e ff ff ff jne 6634ffbe <__write_memory.part.0+0xce> + 66350050: ff 15 9a 81 00 00 callq *0x819a(%rip) # 663581f0 <__imp_GetLastError> + 66350056: 48 8d 0d bb 30 00 00 lea 0x30bb(%rip),%rcx # 66353118 <.rdata+0x78> + 6635005d: 89 c2 mov %eax,%edx + 6635005f: e8 7c 13 00 00 callq 663513e0 <__report_error> + 66350064: 8b 45 00 mov 0x0(%rbp),%eax + 66350067: 89 ff mov %edi,%edi + 66350069: 89 03 mov %eax,(%rbx) + 6635006b: 8b 44 3d fc mov -0x4(%rbp,%rdi,1),%eax + 6635006f: 89 44 3b fc mov %eax,-0x4(%rbx,%rdi,1) + 66350073: e9 70 ff ff ff jmpq 6634ffe8 <__write_memory.part.0+0xf8> + 66350078: 31 f6 xor %esi,%esi + 6635007a: e9 c8 fe ff ff jmpq 6634ff47 <__write_memory.part.0+0x57> + 6635007f: 89 ff mov %edi,%edi + 66350081: 0f b7 44 3d fe movzwl -0x2(%rbp,%rdi,1),%eax + 66350086: 66 89 44 3b fe mov %ax,-0x2(%rbx,%rdi,1) + 6635008b: e9 58 ff ff ff jmpq 6634ffe8 <__write_memory.part.0+0xf8> + 66350090: 48 8b 05 51 65 00 00 mov 0x6551(%rip),%rax # 663565e8 + 66350097: 48 8d 0d 42 30 00 00 lea 0x3042(%rip),%rcx # 663530e0 <.rdata+0x40> + 6635009e: 41 8b 54 24 08 mov 0x8(%r12),%edx + 663500a3: 4c 8b 44 30 18 mov 0x18(%rax,%rsi,1),%r8 + 663500a8: e8 33 13 00 00 callq 663513e0 <__report_error> + 663500ad: 48 8d 0d 0c 30 00 00 lea 0x300c(%rip),%rcx # 663530c0 <.rdata+0x20> + 663500b4: 48 89 da mov %rbx,%rdx + 663500b7: e8 24 13 00 00 callq 663513e0 <__report_error> + 663500bc: 90 nop + 663500bd: 0f 1f 00 nopl (%rax) -0000000066350710 : - 66350710: 56 push %rsi - 66350711: 53 push %rbx - 66350712: 48 83 ec 28 sub $0x28,%rsp - 66350716: 44 8b 51 38 mov 0x38(%rcx),%r10d - 6635071a: 45 85 d2 test %r10d,%r10d - 6635071d: 48 89 cb mov %rcx,%rbx - 66350720: 7f 19 jg 6635073b - 66350722: 48 8d 15 d7 38 00 00 lea 0x38d7(%rip),%rdx # 66354000 <.rdata> - 66350729: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 6635072f: 48 8d 0d da 38 00 00 lea 0x38da(%rip),%rcx # 66354010 <.rdata+0x10> - 66350736: e8 d5 1a 00 00 callq 66352210 <_assert> - 6635073b: 48 8b 43 40 mov 0x40(%rbx),%rax - 6635073f: 8b 10 mov (%rax),%edx - 66350741: 48 8b 43 10 mov 0x10(%rbx),%rax - 66350745: 48 8b 88 a8 00 00 00 mov 0xa8(%rax),%rcx - 6635074c: 44 8b 09 mov (%rcx),%r9d - 6635074f: 45 85 c9 test %r9d,%r9d - 66350752: 0f 84 c9 00 00 00 je 66350821 - 66350758: 48 8b 48 10 mov 0x10(%rax),%rcx - 6635075c: 44 8b 01 mov (%rcx),%r8d - 6635075f: 48 8b 48 08 mov 0x8(%rax),%rcx - 66350763: 8b 09 mov (%rcx),%ecx - 66350765: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx - 66350769: 4c 8b 40 18 mov 0x18(%rax),%r8 - 6635076d: 48 8b 40 20 mov 0x20(%rax),%rax - 66350771: 45 8b 00 mov (%r8),%r8d - 66350774: 8b 00 mov (%rax),%eax - 66350776: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx - 6635077a: 8d 74 c1 05 lea 0x5(%rcx,%rax,8),%esi - 6635077e: 39 d6 cmp %edx,%esi - 66350780: 0f 84 94 00 00 00 je 6635081a - 66350786: 85 d2 test %edx,%edx - 66350788: 0f 85 f3 00 00 00 jne 66350881 - 6635078e: 48 8b 53 08 mov 0x8(%rbx),%rdx - 66350792: 48 63 c6 movslq %esi,%rax - 66350795: 48 8d 14 82 lea (%rdx,%rax,4),%rdx - 66350799: 8b 0a mov (%rdx),%ecx - 6635079b: 83 f9 01 cmp $0x1,%ecx - 6635079e: 74 6d je 6635080d - 663507a0: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 663507a4: 41 b9 01 00 00 00 mov $0x1,%r9d - 663507aa: 41 29 c9 sub %ecx,%r9d - 663507ad: 31 c9 xor %ecx,%ecx - 663507af: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 663507b3: 45 01 08 add %r9d,(%r8) - 663507b6: c7 02 01 00 00 00 movl $0x1,(%rdx) - 663507bc: 48 8b 53 10 mov 0x10(%rbx),%rdx - 663507c0: 45 8b 00 mov (%r8),%r8d - 663507c3: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663507c7: 45 85 c0 test %r8d,%r8d - 663507ca: 0f 9f c1 setg %cl - 663507cd: 3b 0a cmp (%rdx),%ecx - 663507cf: 74 3c je 6635080d - 663507d1: 48 8b 53 20 mov 0x20(%rbx),%rdx - 663507d5: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663507d9: 8b 0a mov (%rdx),%ecx - 663507db: 85 c9 test %ecx,%ecx - 663507dd: 75 2e jne 6635080d - 663507df: 48 8b 53 28 mov 0x28(%rbx),%rdx - 663507e3: 48 8b 0d 46 71 00 00 mov 0x7146(%rip),%rcx # 66357930 - 663507ea: 4c 8b 05 2f 71 00 00 mov 0x712f(%rip),%r8 # 66357920 - 663507f1: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 663507f5: 48 8b 42 10 mov 0x10(%rdx),%rax - 663507f9: c7 00 01 00 00 00 movl $0x1,(%rax) - 663507ff: 48 63 01 movslq (%rcx),%rax - 66350802: 44 8d 48 01 lea 0x1(%rax),%r9d - 66350806: 44 89 09 mov %r9d,(%rcx) - 66350809: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6635080d: 8b 53 38 mov 0x38(%rbx),%edx - 66350810: 85 d2 test %edx,%edx - 66350812: 7e 4c jle 66350860 - 66350814: 48 8b 43 40 mov 0x40(%rbx),%rax - 66350818: 89 30 mov %esi,(%rax) - 6635081a: 48 83 c4 28 add $0x28,%rsp - 6635081e: 5b pop %rbx - 6635081f: 5e pop %rsi - 66350820: c3 retq - 66350821: 85 d2 test %edx,%edx - 66350823: 74 f5 je 6635081a - 66350825: 48 89 d9 mov %rbx,%rcx - 66350828: e8 03 0c ff ff callq 66341430 - 6635082d: 8b 43 38 mov 0x38(%rbx),%eax - 66350830: 85 c0 test %eax,%eax - 66350832: 7f 19 jg 6635084d - 66350834: 48 8d 15 c5 37 00 00 lea 0x37c5(%rip),%rdx # 66354000 <.rdata> - 6635083b: 41 b8 93 00 00 00 mov $0x93,%r8d - 66350841: 48 8d 0d c8 37 00 00 lea 0x37c8(%rip),%rcx # 66354010 <.rdata+0x10> - 66350848: e8 c3 19 00 00 callq 66352210 <_assert> - 6635084d: 48 8b 43 40 mov 0x40(%rbx),%rax - 66350851: c7 00 00 00 00 00 movl $0x0,(%rax) - 66350857: 48 83 c4 28 add $0x28,%rsp - 6635085b: 5b pop %rbx - 6635085c: 5e pop %rsi - 6635085d: c3 retq - 6635085e: 66 90 xchg %ax,%ax - 66350860: 48 8d 15 99 37 00 00 lea 0x3799(%rip),%rdx # 66354000 <.rdata> - 66350867: 41 b8 93 00 00 00 mov $0x93,%r8d - 6635086d: 48 8d 0d 9c 37 00 00 lea 0x379c(%rip),%rcx # 66354010 <.rdata+0x10> - 66350874: e8 97 19 00 00 callq 66352210 <_assert> - 66350879: 48 8b 43 40 mov 0x40(%rbx),%rax - 6635087d: 89 30 mov %esi,(%rax) - 6635087f: eb 99 jmp 6635081a - 66350881: 48 89 d9 mov %rbx,%rcx - 66350884: e8 a7 0b ff ff callq 66341430 - 66350889: e9 00 ff ff ff jmpq 6635078e - 6635088e: 66 90 xchg %ax,%ax +00000000663500c0 <_pei386_runtime_relocator>: + 663500c0: 55 push %rbp + 663500c1: 41 57 push %r15 + 663500c3: 41 56 push %r14 + 663500c5: 41 55 push %r13 + 663500c7: 41 54 push %r12 + 663500c9: 57 push %rdi + 663500ca: 56 push %rsi + 663500cb: 53 push %rbx + 663500cc: 48 83 ec 38 sub $0x38,%rsp + 663500d0: 48 8d ac 24 80 00 00 lea 0x80(%rsp),%rbp + 663500d7: 00 + 663500d8: 8b 1d 02 65 00 00 mov 0x6502(%rip),%ebx # 663565e0 + 663500de: 85 db test %ebx,%ebx + 663500e0: 74 11 je 663500f3 <_pei386_runtime_relocator+0x33> + 663500e2: 48 8d 65 b8 lea -0x48(%rbp),%rsp + 663500e6: 5b pop %rbx + 663500e7: 5e pop %rsi + 663500e8: 5f pop %rdi + 663500e9: 41 5c pop %r12 + 663500eb: 41 5d pop %r13 + 663500ed: 41 5e pop %r14 + 663500ef: 41 5f pop %r15 + 663500f1: 5d pop %rbp + 663500f2: c3 retq + 663500f3: c7 05 e3 64 00 00 01 movl $0x1,0x64e3(%rip) # 663565e0 + 663500fa: 00 00 00 + 663500fd: e8 0e 0b 00 00 callq 66350c10 <__mingw_GetSectionCount> + 66350102: 48 98 cltq + 66350104: 48 8d 04 80 lea (%rax,%rax,4),%rax + 66350108: 48 8d 04 c5 1e 00 00 lea 0x1e(,%rax,8),%rax + 6635010f: 00 + 66350110: 48 83 e0 f0 and $0xfffffffffffffff0,%rax + 66350114: e8 47 0d 00 00 callq 66350e60 <___chkstk_ms> + 66350119: 4c 8b 25 a0 31 00 00 mov 0x31a0(%rip),%r12 # 663532c0 <.refptr.__RUNTIME_PSEUDO_RELOC_LIST_END__> + 66350120: c7 05 ba 64 00 00 00 movl $0x0,0x64ba(%rip) # 663565e4 + 66350127: 00 00 00 + 6635012a: 48 8b 35 9f 31 00 00 mov 0x319f(%rip),%rsi # 663532d0 <.refptr.__RUNTIME_PSEUDO_RELOC_LIST__> + 66350131: 48 29 c4 sub %rax,%rsp + 66350134: 48 8d 44 24 20 lea 0x20(%rsp),%rax + 66350139: 48 89 05 a8 64 00 00 mov %rax,0x64a8(%rip) # 663565e8 + 66350140: 4c 89 e0 mov %r12,%rax + 66350143: 48 29 f0 sub %rsi,%rax + 66350146: 48 83 f8 07 cmp $0x7,%rax + 6635014a: 7e 96 jle 663500e2 <_pei386_runtime_relocator+0x22> + 6635014c: 48 83 f8 0b cmp $0xb,%rax + 66350150: 8b 16 mov (%rsi),%edx + 66350152: 0f 8e c8 00 00 00 jle 66350220 <_pei386_runtime_relocator+0x160> + 66350158: 85 d2 test %edx,%edx + 6635015a: 0f 84 a4 00 00 00 je 66350204 <_pei386_runtime_relocator+0x144> + 66350160: 4c 39 e6 cmp %r12,%rsi + 66350163: 0f 83 79 ff ff ff jae 663500e2 <_pei386_runtime_relocator+0x22> + 66350169: 4c 8d 76 08 lea 0x8(%rsi),%r14 + 6635016d: 49 83 c4 07 add $0x7,%r12 + 66350171: 4c 8b 2d 78 31 00 00 mov 0x3178(%rip),%r13 # 663532f0 <.refptr.__image_base__> + 66350178: 48 8d 7d a8 lea -0x58(%rbp),%rdi + 6635017c: 4d 29 f4 sub %r14,%r12 + 6635017f: 49 c1 ec 03 shr $0x3,%r12 + 66350183: 4e 8d 64 e6 08 lea 0x8(%rsi,%r12,8),%r12 + 66350188: eb 0a jmp 66350194 <_pei386_runtime_relocator+0xd4> + 6635018a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66350190: 49 83 c6 08 add $0x8,%r14 + 66350194: 8b 4e 04 mov 0x4(%rsi),%ecx + 66350197: 41 b8 04 00 00 00 mov $0x4,%r8d + 6635019d: 48 89 fa mov %rdi,%rdx + 663501a0: 8b 06 mov (%rsi),%eax + 663501a2: 4c 89 f6 mov %r14,%rsi + 663501a5: 4c 01 e9 add %r13,%rcx + 663501a8: 03 01 add (%rcx),%eax + 663501aa: 89 45 a8 mov %eax,-0x58(%rbp) + 663501ad: e8 3e fd ff ff callq 6634fef0 <__write_memory.part.0> + 663501b2: 4d 39 e6 cmp %r12,%r14 + 663501b5: 75 d9 jne 66350190 <_pei386_runtime_relocator+0xd0> + 663501b7: 8b 05 27 64 00 00 mov 0x6427(%rip),%eax # 663565e4 + 663501bd: 31 f6 xor %esi,%esi + 663501bf: 4c 8b 25 aa 80 00 00 mov 0x80aa(%rip),%r12 # 66358270 <__imp_VirtualProtect> + 663501c6: 85 c0 test %eax,%eax + 663501c8: 0f 8e 14 ff ff ff jle 663500e2 <_pei386_runtime_relocator+0x22> + 663501ce: 66 90 xchg %ax,%ax + 663501d0: 48 8b 05 11 64 00 00 mov 0x6411(%rip),%rax # 663565e8 + 663501d7: 48 01 f0 add %rsi,%rax + 663501da: 44 8b 00 mov (%rax),%r8d + 663501dd: 45 85 c0 test %r8d,%r8d + 663501e0: 74 0e je 663501f0 <_pei386_runtime_relocator+0x130> + 663501e2: 48 8b 50 10 mov 0x10(%rax),%rdx + 663501e6: 49 89 f9 mov %rdi,%r9 + 663501e9: 48 8b 48 08 mov 0x8(%rax),%rcx + 663501ed: 41 ff d4 callq *%r12 + 663501f0: 83 c3 01 add $0x1,%ebx + 663501f3: 48 83 c6 28 add $0x28,%rsi + 663501f7: 3b 1d e7 63 00 00 cmp 0x63e7(%rip),%ebx # 663565e4 + 663501fd: 7c d1 jl 663501d0 <_pei386_runtime_relocator+0x110> + 663501ff: e9 de fe ff ff jmpq 663500e2 <_pei386_runtime_relocator+0x22> + 66350204: 8b 4e 04 mov 0x4(%rsi),%ecx + 66350207: 85 c9 test %ecx,%ecx + 66350209: 0f 85 51 ff ff ff jne 66350160 <_pei386_runtime_relocator+0xa0> + 6635020f: 8b 56 08 mov 0x8(%rsi),%edx + 66350212: 85 d2 test %edx,%edx + 66350214: 75 1d jne 66350233 <_pei386_runtime_relocator+0x173> + 66350216: 8b 56 0c mov 0xc(%rsi),%edx + 66350219: 48 83 c6 0c add $0xc,%rsi + 6635021d: 0f 1f 00 nopl (%rax) + 66350220: 85 d2 test %edx,%edx + 66350222: 0f 85 38 ff ff ff jne 66350160 <_pei386_runtime_relocator+0xa0> + 66350228: 8b 46 04 mov 0x4(%rsi),%eax + 6635022b: 85 c0 test %eax,%eax + 6635022d: 0f 85 2d ff ff ff jne 66350160 <_pei386_runtime_relocator+0xa0> + 66350233: 8b 56 08 mov 0x8(%rsi),%edx + 66350236: 83 fa 01 cmp $0x1,%edx + 66350239: 0f 85 2f 01 00 00 jne 6635036e <_pei386_runtime_relocator+0x2ae> + 6635023f: 4c 8b 2d aa 30 00 00 mov 0x30aa(%rip),%r13 # 663532f0 <.refptr.__image_base__> + 66350246: 48 83 c6 0c add $0xc,%rsi + 6635024a: 49 bf 00 00 00 00 ff movabs $0xffffffff00000000,%r15 + 66350251: ff ff ff + 66350254: 4c 8d 75 a8 lea -0x58(%rbp),%r14 + 66350258: 4c 39 e6 cmp %r12,%rsi + 6635025b: 72 48 jb 663502a5 <_pei386_runtime_relocator+0x1e5> + 6635025d: e9 80 fe ff ff jmpq 663500e2 <_pei386_runtime_relocator+0x22> + 66350262: 0f 86 b8 00 00 00 jbe 66350320 <_pei386_runtime_relocator+0x260> + 66350268: 83 fa 20 cmp $0x20,%edx + 6635026b: 0f 84 7f 00 00 00 je 663502f0 <_pei386_runtime_relocator+0x230> + 66350271: 83 fa 40 cmp $0x40,%edx + 66350274: 0f 85 e0 00 00 00 jne 6635035a <_pei386_runtime_relocator+0x29a> + 6635027a: 48 8b 11 mov (%rcx),%rdx + 6635027d: 41 b8 08 00 00 00 mov $0x8,%r8d + 66350283: 4c 89 f7 mov %r14,%rdi + 66350286: 48 29 c2 sub %rax,%rdx + 66350289: 4c 01 ca add %r9,%rdx + 6635028c: 48 89 55 a8 mov %rdx,-0x58(%rbp) + 66350290: 4c 89 f2 mov %r14,%rdx + 66350293: e8 58 fc ff ff callq 6634fef0 <__write_memory.part.0> + 66350298: 48 83 c6 0c add $0xc,%rsi + 6635029c: 4c 39 e6 cmp %r12,%rsi + 6635029f: 0f 83 12 ff ff ff jae 663501b7 <_pei386_runtime_relocator+0xf7> + 663502a5: 8b 4e 04 mov 0x4(%rsi),%ecx + 663502a8: 8b 06 mov (%rsi),%eax + 663502aa: 0f b6 56 08 movzbl 0x8(%rsi),%edx + 663502ae: 4c 01 e9 add %r13,%rcx + 663502b1: 4c 01 e8 add %r13,%rax + 663502b4: 83 fa 10 cmp $0x10,%edx + 663502b7: 4c 8b 08 mov (%rax),%r9 + 663502ba: 75 a6 jne 66350262 <_pei386_runtime_relocator+0x1a2> + 663502bc: 44 0f b7 01 movzwl (%rcx),%r8d + 663502c0: 4c 89 f2 mov %r14,%rdx + 663502c3: 4c 89 f7 mov %r14,%rdi + 663502c6: 4d 89 c2 mov %r8,%r10 + 663502c9: 49 81 ca 00 00 ff ff or $0xffffffffffff0000,%r10 + 663502d0: 66 45 85 c0 test %r8w,%r8w + 663502d4: 4d 0f 48 c2 cmovs %r10,%r8 + 663502d8: 49 29 c0 sub %rax,%r8 + 663502db: 4d 01 c8 add %r9,%r8 + 663502de: 4c 89 45 a8 mov %r8,-0x58(%rbp) + 663502e2: 41 b8 02 00 00 00 mov $0x2,%r8d + 663502e8: e8 03 fc ff ff callq 6634fef0 <__write_memory.part.0> + 663502ed: eb a9 jmp 66350298 <_pei386_runtime_relocator+0x1d8> + 663502ef: 90 nop + 663502f0: 8b 11 mov (%rcx),%edx + 663502f2: 4c 89 f7 mov %r14,%rdi + 663502f5: 49 89 d0 mov %rdx,%r8 + 663502f8: 4c 09 fa or %r15,%rdx + 663502fb: 45 85 c0 test %r8d,%r8d + 663502fe: 49 0f 49 d0 cmovns %r8,%rdx + 66350302: 41 b8 04 00 00 00 mov $0x4,%r8d + 66350308: 48 29 c2 sub %rax,%rdx + 6635030b: 4c 01 ca add %r9,%rdx + 6635030e: 48 89 55 a8 mov %rdx,-0x58(%rbp) + 66350312: 4c 89 f2 mov %r14,%rdx + 66350315: e8 d6 fb ff ff callq 6634fef0 <__write_memory.part.0> + 6635031a: e9 79 ff ff ff jmpq 66350298 <_pei386_runtime_relocator+0x1d8> + 6635031f: 90 nop + 66350320: 83 fa 08 cmp $0x8,%edx + 66350323: 75 35 jne 6635035a <_pei386_runtime_relocator+0x29a> + 66350325: 44 0f b6 01 movzbl (%rcx),%r8d + 66350329: 4c 89 f2 mov %r14,%rdx + 6635032c: 4c 89 f7 mov %r14,%rdi + 6635032f: 4d 89 c2 mov %r8,%r10 + 66350332: 49 81 ca 00 ff ff ff or $0xffffffffffffff00,%r10 + 66350339: 45 84 c0 test %r8b,%r8b + 6635033c: 4d 0f 48 c2 cmovs %r10,%r8 + 66350340: 49 29 c0 sub %rax,%r8 + 66350343: 4d 01 c8 add %r9,%r8 + 66350346: 4c 89 45 a8 mov %r8,-0x58(%rbp) + 6635034a: 41 b8 01 00 00 00 mov $0x1,%r8d + 66350350: e8 9b fb ff ff callq 6634fef0 <__write_memory.part.0> + 66350355: e9 3e ff ff ff jmpq 66350298 <_pei386_runtime_relocator+0x1d8> + 6635035a: 48 8d 0d 17 2e 00 00 lea 0x2e17(%rip),%rcx # 66353178 <.rdata+0xd8> + 66350361: 48 c7 45 a8 00 00 00 movq $0x0,-0x58(%rbp) + 66350368: 00 + 66350369: e8 72 10 00 00 callq 663513e0 <__report_error> + 6635036e: 48 8d 0d cb 2d 00 00 lea 0x2dcb(%rip),%rcx # 66353140 <.rdata+0xa0> + 66350375: e8 66 10 00 00 callq 663513e0 <__report_error> + 6635037a: 90 nop + 6635037b: 90 nop + 6635037c: 90 nop + 6635037d: 90 nop + 6635037e: 90 nop + 6635037f: 90 nop -0000000066350890 : - 66350890: 56 push %rsi - 66350891: 53 push %rbx - 66350892: 48 83 ec 28 sub $0x28,%rsp - 66350896: 44 8b 51 38 mov 0x38(%rcx),%r10d - 6635089a: 45 85 d2 test %r10d,%r10d - 6635089d: 48 89 cb mov %rcx,%rbx - 663508a0: 7f 19 jg 663508bb - 663508a2: 48 8d 15 57 37 00 00 lea 0x3757(%rip),%rdx # 66354000 <.rdata> - 663508a9: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 663508af: 48 8d 0d 5a 37 00 00 lea 0x375a(%rip),%rcx # 66354010 <.rdata+0x10> - 663508b6: e8 55 19 00 00 callq 66352210 <_assert> - 663508bb: 48 8b 43 40 mov 0x40(%rbx),%rax - 663508bf: 8b 10 mov (%rax),%edx - 663508c1: 48 8b 43 10 mov 0x10(%rbx),%rax - 663508c5: 48 8b 88 30 01 00 00 mov 0x130(%rax),%rcx - 663508cc: 44 8b 09 mov (%rcx),%r9d - 663508cf: 45 85 c9 test %r9d,%r9d - 663508d2: 0f 84 d8 00 00 00 je 663509b0 - 663508d8: 48 8b 48 10 mov 0x10(%rax),%rcx - 663508dc: 44 8b 01 mov (%rcx),%r8d - 663508df: 48 8b 48 08 mov 0x8(%rax),%rcx - 663508e3: 8b 09 mov (%rcx),%ecx - 663508e5: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx - 663508e9: 4c 8b 40 18 mov 0x18(%rax),%r8 - 663508ed: 45 8b 00 mov (%r8),%r8d - 663508f0: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx - 663508f4: 4c 8b 40 20 mov 0x20(%rax),%r8 - 663508f8: 48 8b 40 28 mov 0x28(%rax),%rax - 663508fc: 45 8b 00 mov (%r8),%r8d - 663508ff: 8b 00 mov (%rax),%eax - 66350901: 42 8d 0c c1 lea (%rcx,%r8,8),%ecx - 66350905: c1 e0 04 shl $0x4,%eax - 66350908: 8d 74 01 06 lea 0x6(%rcx,%rax,1),%esi - 6635090c: 39 d6 cmp %edx,%esi - 6635090e: 0f 84 94 00 00 00 je 663509a8 - 66350914: 85 d2 test %edx,%edx - 66350916: 0f 85 f5 00 00 00 jne 66350a11 - 6635091c: 48 8b 53 08 mov 0x8(%rbx),%rdx - 66350920: 48 63 c6 movslq %esi,%rax - 66350923: 48 8d 14 82 lea (%rdx,%rax,4),%rdx - 66350927: 8b 0a mov (%rdx),%ecx - 66350929: 83 f9 01 cmp $0x1,%ecx - 6635092c: 74 6d je 6635099b - 6635092e: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 66350932: 41 b9 01 00 00 00 mov $0x1,%r9d - 66350938: 41 29 c9 sub %ecx,%r9d - 6635093b: 31 c9 xor %ecx,%ecx - 6635093d: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 66350941: 45 01 08 add %r9d,(%r8) - 66350944: c7 02 01 00 00 00 movl $0x1,(%rdx) - 6635094a: 48 8b 53 10 mov 0x10(%rbx),%rdx - 6635094e: 45 8b 00 mov (%r8),%r8d - 66350951: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 66350955: 45 85 c0 test %r8d,%r8d - 66350958: 0f 9f c1 setg %cl - 6635095b: 3b 0a cmp (%rdx),%ecx - 6635095d: 74 3c je 6635099b - 6635095f: 48 8b 53 20 mov 0x20(%rbx),%rdx - 66350963: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 66350967: 8b 0a mov (%rdx),%ecx - 66350969: 85 c9 test %ecx,%ecx - 6635096b: 75 2e jne 6635099b - 6635096d: 48 8b 53 28 mov 0x28(%rbx),%rdx - 66350971: 48 8b 0d b8 6f 00 00 mov 0x6fb8(%rip),%rcx # 66357930 - 66350978: 4c 8b 05 a1 6f 00 00 mov 0x6fa1(%rip),%r8 # 66357920 - 6635097f: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 66350983: 48 8b 42 10 mov 0x10(%rdx),%rax - 66350987: c7 00 01 00 00 00 movl $0x1,(%rax) - 6635098d: 48 63 01 movslq (%rcx),%rax - 66350990: 44 8d 48 01 lea 0x1(%rax),%r9d - 66350994: 44 89 09 mov %r9d,(%rcx) - 66350997: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 6635099b: 8b 53 38 mov 0x38(%rbx),%edx - 6635099e: 85 d2 test %edx,%edx - 663509a0: 7e 4e jle 663509f0 - 663509a2: 48 8b 43 40 mov 0x40(%rbx),%rax - 663509a6: 89 30 mov %esi,(%rax) - 663509a8: 48 83 c4 28 add $0x28,%rsp - 663509ac: 5b pop %rbx - 663509ad: 5e pop %rsi - 663509ae: c3 retq - 663509af: 90 nop - 663509b0: 85 d2 test %edx,%edx - 663509b2: 74 f4 je 663509a8 - 663509b4: 48 89 d9 mov %rbx,%rcx - 663509b7: e8 74 0a ff ff callq 66341430 - 663509bc: 8b 43 38 mov 0x38(%rbx),%eax - 663509bf: 85 c0 test %eax,%eax - 663509c1: 7f 19 jg 663509dc - 663509c3: 48 8d 15 36 36 00 00 lea 0x3636(%rip),%rdx # 66354000 <.rdata> - 663509ca: 41 b8 93 00 00 00 mov $0x93,%r8d - 663509d0: 48 8d 0d 39 36 00 00 lea 0x3639(%rip),%rcx # 66354010 <.rdata+0x10> - 663509d7: e8 34 18 00 00 callq 66352210 <_assert> - 663509dc: 48 8b 43 40 mov 0x40(%rbx),%rax - 663509e0: c7 00 00 00 00 00 movl $0x0,(%rax) - 663509e6: 48 83 c4 28 add $0x28,%rsp - 663509ea: 5b pop %rbx - 663509eb: 5e pop %rsi - 663509ec: c3 retq - 663509ed: 0f 1f 00 nopl (%rax) - 663509f0: 48 8d 15 09 36 00 00 lea 0x3609(%rip),%rdx # 66354000 <.rdata> - 663509f7: 41 b8 93 00 00 00 mov $0x93,%r8d - 663509fd: 48 8d 0d 0c 36 00 00 lea 0x360c(%rip),%rcx # 66354010 <.rdata+0x10> - 66350a04: e8 07 18 00 00 callq 66352210 <_assert> - 66350a09: 48 8b 43 40 mov 0x40(%rbx),%rax - 66350a0d: 89 30 mov %esi,(%rax) - 66350a0f: eb 97 jmp 663509a8 - 66350a11: 48 89 d9 mov %rbx,%rcx - 66350a14: e8 17 0a ff ff callq 66341430 - 66350a19: e9 fe fe ff ff jmpq 6635091c - 66350a1e: 66 90 xchg %ax,%ax +0000000066350380 <__mingw_SEH_error_handler>: + 66350380: 48 83 ec 28 sub $0x28,%rsp + 66350384: 8b 01 mov (%rcx),%eax + 66350386: 3d 91 00 00 c0 cmp $0xc0000091,%eax + 6635038b: 77 63 ja 663503f0 <__mingw_SEH_error_handler+0x70> + 6635038d: 3d 8d 00 00 c0 cmp $0xc000008d,%eax + 66350392: 73 7b jae 6635040f <__mingw_SEH_error_handler+0x8f> + 66350394: 3d 08 00 00 c0 cmp $0xc0000008,%eax + 66350399: 0f 84 05 01 00 00 je 663504a4 <__mingw_SEH_error_handler+0x124> + 6635039f: 0f 87 cb 00 00 00 ja 66350470 <__mingw_SEH_error_handler+0xf0> + 663503a5: 3d 02 00 00 80 cmp $0x80000002,%eax + 663503aa: 0f 84 f4 00 00 00 je 663504a4 <__mingw_SEH_error_handler+0x124> + 663503b0: 3d 05 00 00 c0 cmp $0xc0000005,%eax + 663503b5: 0f 85 c3 00 00 00 jne 6635047e <__mingw_SEH_error_handler+0xfe> + 663503bb: 31 d2 xor %edx,%edx + 663503bd: b9 0b 00 00 00 mov $0xb,%ecx + 663503c2: e8 39 0d 00 00 callq 66351100 + 663503c7: 48 83 f8 01 cmp $0x1,%rax + 663503cb: 0f 84 2f 01 00 00 je 66350500 <__mingw_SEH_error_handler+0x180> + 663503d1: 48 85 c0 test %rax,%rax + 663503d4: 0f 84 3c 01 00 00 je 66350516 <__mingw_SEH_error_handler+0x196> + 663503da: b9 0b 00 00 00 mov $0xb,%ecx + 663503df: ff d0 callq *%rax + 663503e1: 31 c0 xor %eax,%eax + 663503e3: 48 83 c4 28 add $0x28,%rsp + 663503e7: c3 retq + 663503e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663503ef: 00 + 663503f0: 3d 94 00 00 c0 cmp $0xc0000094,%eax + 663503f5: 0f 84 b5 00 00 00 je 663504b0 <__mingw_SEH_error_handler+0x130> + 663503fb: 77 37 ja 66350434 <__mingw_SEH_error_handler+0xb4> + 663503fd: 3d 92 00 00 c0 cmp $0xc0000092,%eax + 66350402: 0f 84 9c 00 00 00 je 663504a4 <__mingw_SEH_error_handler+0x124> + 66350408: 3d 93 00 00 c0 cmp $0xc0000093,%eax + 6635040d: 75 6f jne 6635047e <__mingw_SEH_error_handler+0xfe> + 6635040f: 31 d2 xor %edx,%edx + 66350411: b9 08 00 00 00 mov $0x8,%ecx + 66350416: e8 e5 0c 00 00 callq 66351100 + 6635041b: 48 83 f8 01 cmp $0x1,%rax + 6635041f: 74 6f je 66350490 <__mingw_SEH_error_handler+0x110> + 66350421: 48 85 c0 test %rax,%rax + 66350424: 74 58 je 6635047e <__mingw_SEH_error_handler+0xfe> + 66350426: b9 08 00 00 00 mov $0x8,%ecx + 6635042b: ff d0 callq *%rax + 6635042d: 31 c0 xor %eax,%eax + 6635042f: 48 83 c4 28 add $0x28,%rsp + 66350433: c3 retq + 66350434: 3d 95 00 00 c0 cmp $0xc0000095,%eax + 66350439: 74 69 je 663504a4 <__mingw_SEH_error_handler+0x124> + 6635043b: 3d 96 00 00 c0 cmp $0xc0000096,%eax + 66350440: 75 3c jne 6635047e <__mingw_SEH_error_handler+0xfe> + 66350442: 31 d2 xor %edx,%edx + 66350444: b9 04 00 00 00 mov $0x4,%ecx + 66350449: e8 b2 0c 00 00 callq 66351100 + 6635044e: 48 83 f8 01 cmp $0x1,%rax + 66350452: 0f 84 88 00 00 00 je 663504e0 <__mingw_SEH_error_handler+0x160> + 66350458: 48 85 c0 test %rax,%rax + 6635045b: 0f 84 b5 00 00 00 je 66350516 <__mingw_SEH_error_handler+0x196> + 66350461: b9 04 00 00 00 mov $0x4,%ecx + 66350466: ff d0 callq *%rax + 66350468: 31 c0 xor %eax,%eax + 6635046a: 48 83 c4 28 add $0x28,%rsp + 6635046e: c3 retq + 6635046f: 90 nop + 66350470: 3d 1d 00 00 c0 cmp $0xc000001d,%eax + 66350475: 74 cb je 66350442 <__mingw_SEH_error_handler+0xc2> + 66350477: 3d 8c 00 00 c0 cmp $0xc000008c,%eax + 6635047c: 74 26 je 663504a4 <__mingw_SEH_error_handler+0x124> + 6635047e: b8 01 00 00 00 mov $0x1,%eax + 66350483: 48 83 c4 28 add $0x28,%rsp + 66350487: c3 retq + 66350488: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6635048f: 00 + 66350490: ba 01 00 00 00 mov $0x1,%edx + 66350495: b9 08 00 00 00 mov $0x8,%ecx + 6635049a: e8 61 0c 00 00 callq 66351100 + 6635049f: e8 ac 09 00 00 callq 66350e50 <_fpreset> + 663504a4: 31 c0 xor %eax,%eax + 663504a6: 48 83 c4 28 add $0x28,%rsp + 663504aa: c3 retq + 663504ab: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663504b0: 31 d2 xor %edx,%edx + 663504b2: b9 08 00 00 00 mov $0x8,%ecx + 663504b7: e8 44 0c 00 00 callq 66351100 + 663504bc: 48 83 f8 01 cmp $0x1,%rax + 663504c0: 0f 85 5b ff ff ff jne 66350421 <__mingw_SEH_error_handler+0xa1> + 663504c6: ba 01 00 00 00 mov $0x1,%edx + 663504cb: b9 08 00 00 00 mov $0x8,%ecx + 663504d0: e8 2b 0c 00 00 callq 66351100 + 663504d5: 31 c0 xor %eax,%eax + 663504d7: e9 07 ff ff ff jmpq 663503e3 <__mingw_SEH_error_handler+0x63> + 663504dc: 0f 1f 40 00 nopl 0x0(%rax) + 663504e0: ba 01 00 00 00 mov $0x1,%edx + 663504e5: b9 04 00 00 00 mov $0x4,%ecx + 663504ea: e8 11 0c 00 00 callq 66351100 + 663504ef: 31 c0 xor %eax,%eax + 663504f1: e9 ed fe ff ff jmpq 663503e3 <__mingw_SEH_error_handler+0x63> + 663504f6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 663504fd: 00 00 00 + 66350500: ba 01 00 00 00 mov $0x1,%edx + 66350505: b9 0b 00 00 00 mov $0xb,%ecx + 6635050a: e8 f1 0b 00 00 callq 66351100 + 6635050f: 31 c0 xor %eax,%eax + 66350511: e9 cd fe ff ff jmpq 663503e3 <__mingw_SEH_error_handler+0x63> + 66350516: b8 04 00 00 00 mov $0x4,%eax + 6635051b: e9 c3 fe ff ff jmpq 663503e3 <__mingw_SEH_error_handler+0x63> -0000000066350a20 : - 66350a20: 56 push %rsi - 66350a21: 53 push %rbx - 66350a22: 48 83 ec 28 sub $0x28,%rsp - 66350a26: 44 8b 51 38 mov 0x38(%rcx),%r10d - 66350a2a: 45 85 d2 test %r10d,%r10d - 66350a2d: 48 89 cb mov %rcx,%rbx - 66350a30: 7f 19 jg 66350a4b - 66350a32: 48 8d 15 c7 35 00 00 lea 0x35c7(%rip),%rdx # 66354000 <.rdata> - 66350a39: 41 b8 8f 00 00 00 mov $0x8f,%r8d - 66350a3f: 48 8d 0d ca 35 00 00 lea 0x35ca(%rip),%rcx # 66354010 <.rdata+0x10> - 66350a46: e8 c5 17 00 00 callq 66352210 <_assert> - 66350a4b: 48 8b 43 40 mov 0x40(%rbx),%rax - 66350a4f: 8b 10 mov (%rax),%edx - 66350a51: 48 8b 43 10 mov 0x10(%rbx),%rax - 66350a55: 48 8b 88 38 02 00 00 mov 0x238(%rax),%rcx - 66350a5c: 44 8b 09 mov (%rcx),%r9d - 66350a5f: 45 85 c9 test %r9d,%r9d - 66350a62: 0f 84 e8 00 00 00 je 66350b50 - 66350a68: 48 8b 48 10 mov 0x10(%rax),%rcx - 66350a6c: 44 8b 01 mov (%rcx),%r8d - 66350a6f: 48 8b 48 08 mov 0x8(%rax),%rcx - 66350a73: 8b 09 mov (%rcx),%ecx - 66350a75: 42 8d 0c 41 lea (%rcx,%r8,2),%ecx - 66350a79: 4c 8b 40 18 mov 0x18(%rax),%r8 - 66350a7d: 45 8b 00 mov (%r8),%r8d - 66350a80: 42 8d 0c 81 lea (%rcx,%r8,4),%ecx - 66350a84: 4c 8b 40 20 mov 0x20(%rax),%r8 - 66350a88: 45 8b 00 mov (%r8),%r8d - 66350a8b: 46 8d 04 c1 lea (%rcx,%r8,8),%r8d - 66350a8f: 48 8b 48 28 mov 0x28(%rax),%rcx - 66350a93: 48 8b 40 30 mov 0x30(%rax),%rax - 66350a97: 8b 09 mov (%rcx),%ecx - 66350a99: 8b 00 mov (%rax),%eax - 66350a9b: c1 e1 04 shl $0x4,%ecx - 66350a9e: 44 01 c1 add %r8d,%ecx - 66350aa1: c1 e0 05 shl $0x5,%eax - 66350aa4: 8d 74 01 07 lea 0x7(%rcx,%rax,1),%esi - 66350aa8: 39 d6 cmp %edx,%esi - 66350aaa: 0f 84 94 00 00 00 je 66350b44 - 66350ab0: 85 d2 test %edx,%edx - 66350ab2: 0f 85 f9 00 00 00 jne 66350bb1 - 66350ab8: 48 8b 53 08 mov 0x8(%rbx),%rdx - 66350abc: 48 63 c6 movslq %esi,%rax - 66350abf: 48 8d 14 82 lea (%rdx,%rax,4),%rdx - 66350ac3: 8b 0a mov (%rdx),%ecx - 66350ac5: 83 f9 01 cmp $0x1,%ecx - 66350ac8: 74 6d je 66350b37 - 66350aca: 4c 8b 43 18 mov 0x18(%rbx),%r8 - 66350ace: 41 b9 01 00 00 00 mov $0x1,%r9d - 66350ad4: 41 29 c9 sub %ecx,%r9d - 66350ad7: 31 c9 xor %ecx,%ecx - 66350ad9: 4d 8b 04 c0 mov (%r8,%rax,8),%r8 - 66350add: 45 01 08 add %r9d,(%r8) - 66350ae0: c7 02 01 00 00 00 movl $0x1,(%rdx) - 66350ae6: 48 8b 53 10 mov 0x10(%rbx),%rdx - 66350aea: 45 8b 00 mov (%r8),%r8d - 66350aed: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 66350af1: 45 85 c0 test %r8d,%r8d - 66350af4: 0f 9f c1 setg %cl - 66350af7: 3b 0a cmp (%rdx),%ecx - 66350af9: 74 3c je 66350b37 - 66350afb: 48 8b 53 20 mov 0x20(%rbx),%rdx - 66350aff: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 66350b03: 8b 0a mov (%rdx),%ecx - 66350b05: 85 c9 test %ecx,%ecx - 66350b07: 75 2e jne 66350b37 - 66350b09: 48 8b 53 28 mov 0x28(%rbx),%rdx - 66350b0d: 48 8b 0d 1c 6e 00 00 mov 0x6e1c(%rip),%rcx # 66357930 - 66350b14: 4c 8b 05 05 6e 00 00 mov 0x6e05(%rip),%r8 # 66357920 - 66350b1b: 48 8b 14 c2 mov (%rdx,%rax,8),%rdx - 66350b1f: 48 8b 42 10 mov 0x10(%rdx),%rax - 66350b23: c7 00 01 00 00 00 movl $0x1,(%rax) - 66350b29: 48 63 01 movslq (%rcx),%rax - 66350b2c: 44 8d 48 01 lea 0x1(%rax),%r9d - 66350b30: 44 89 09 mov %r9d,(%rcx) - 66350b33: 49 89 14 c0 mov %rdx,(%r8,%rax,8) - 66350b37: 8b 53 38 mov 0x38(%rbx),%edx - 66350b3a: 85 d2 test %edx,%edx - 66350b3c: 7e 52 jle 66350b90 - 66350b3e: 48 8b 43 40 mov 0x40(%rbx),%rax - 66350b42: 89 30 mov %esi,(%rax) - 66350b44: 48 83 c4 28 add $0x28,%rsp - 66350b48: 5b pop %rbx - 66350b49: 5e pop %rsi - 66350b4a: c3 retq - 66350b4b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66350b50: 85 d2 test %edx,%edx - 66350b52: 74 f0 je 66350b44 - 66350b54: 48 89 d9 mov %rbx,%rcx - 66350b57: e8 d4 08 ff ff callq 66341430 - 66350b5c: 8b 43 38 mov 0x38(%rbx),%eax - 66350b5f: 85 c0 test %eax,%eax - 66350b61: 7f 19 jg 66350b7c - 66350b63: 48 8d 15 96 34 00 00 lea 0x3496(%rip),%rdx # 66354000 <.rdata> - 66350b6a: 41 b8 93 00 00 00 mov $0x93,%r8d - 66350b70: 48 8d 0d 99 34 00 00 lea 0x3499(%rip),%rcx # 66354010 <.rdata+0x10> - 66350b77: e8 94 16 00 00 callq 66352210 <_assert> - 66350b7c: 48 8b 43 40 mov 0x40(%rbx),%rax - 66350b80: c7 00 00 00 00 00 movl $0x0,(%rax) - 66350b86: 48 83 c4 28 add $0x28,%rsp - 66350b8a: 5b pop %rbx - 66350b8b: 5e pop %rsi +0000000066350520 <__mingw_init_ehandler>: + 66350520: 41 54 push %r12 + 66350522: 55 push %rbp + 66350523: 57 push %rdi + 66350524: 56 push %rsi + 66350525: 53 push %rbx + 66350526: 48 83 ec 20 sub $0x20,%rsp + 6635052a: e8 91 07 00 00 callq 66350cc0 <_GetPEImageBase> + 6635052f: 48 89 c5 mov %rax,%rbp + 66350532: 8b 05 d0 60 00 00 mov 0x60d0(%rip),%eax # 66356608 + 66350538: 85 c0 test %eax,%eax + 6635053a: 75 25 jne 66350561 <__mingw_init_ehandler+0x41> + 6635053c: 48 85 ed test %rbp,%rbp + 6635053f: 74 20 je 66350561 <__mingw_init_ehandler+0x41> + 66350541: 48 8d 0d 68 2c 00 00 lea 0x2c68(%rip),%rcx # 663531b0 <.rdata> + 66350548: c7 05 b6 60 00 00 01 movl $0x1,0x60b6(%rip) # 66356608 + 6635054f: 00 00 00 + 66350552: e8 a9 05 00 00 callq 66350b00 <_FindPESectionByName> + 66350557: 48 85 c0 test %rax,%rax + 6635055a: 74 14 je 66350570 <__mingw_init_ehandler+0x50> + 6635055c: b8 01 00 00 00 mov $0x1,%eax + 66350561: 48 83 c4 20 add $0x20,%rsp + 66350565: 5b pop %rbx + 66350566: 5e pop %rsi + 66350567: 5f pop %rdi + 66350568: 5d pop %rbp + 66350569: 41 5c pop %r12 + 6635056b: c3 retq + 6635056c: 0f 1f 40 00 nopl 0x0(%rax) + 66350570: 48 8d 1d a9 61 00 00 lea 0x61a9(%rip),%rbx # 66356720 + 66350577: b9 30 00 00 00 mov $0x30,%ecx + 6635057c: 31 f6 xor %esi,%esi + 6635057e: 48 8d 15 9b 60 00 00 lea 0x609b(%rip),%rdx # 66356620 + 66350585: 48 89 df mov %rbx,%rdi + 66350588: f3 48 ab rep stos %rax,%es:(%rdi) + 6635058b: 4c 8d 25 ee fd ff ff lea -0x212(%rip),%r12 # 66350380 <__mingw_SEH_error_handler> + 66350592: b9 20 00 00 00 mov $0x20,%ecx + 66350597: 48 89 d7 mov %rdx,%rdi + 6635059a: f3 48 ab rep stos %rax,%es:(%rdi) + 6635059d: 49 29 ec sub %rbp,%r12 + 663505a0: 48 89 d7 mov %rdx,%rdi + 663505a3: eb 2e jmp 663505d3 <__mingw_init_ehandler+0xb3> + 663505a5: c6 07 09 movb $0x9,(%rdi) + 663505a8: 48 83 c6 01 add $0x1,%rsi + 663505ac: 48 83 c3 0c add $0xc,%rbx + 663505b0: 44 89 67 04 mov %r12d,0x4(%rdi) + 663505b4: 8b 48 0c mov 0xc(%rax),%ecx + 663505b7: 89 4b f4 mov %ecx,-0xc(%rbx) + 663505ba: 03 48 08 add 0x8(%rax),%ecx + 663505bd: 48 89 f8 mov %rdi,%rax + 663505c0: 48 83 c7 08 add $0x8,%rdi + 663505c4: 48 29 e8 sub %rbp,%rax + 663505c7: 89 43 fc mov %eax,-0x4(%rbx) + 663505ca: 89 4b f8 mov %ecx,-0x8(%rbx) + 663505cd: 48 83 fe 20 cmp $0x20,%rsi + 663505d1: 74 32 je 66350605 <__mingw_init_ehandler+0xe5> + 663505d3: 48 89 f1 mov %rsi,%rcx + 663505d6: e8 75 06 00 00 callq 66350c50 <_FindPESectionExec> + 663505db: 48 85 c0 test %rax,%rax + 663505de: 75 c5 jne 663505a5 <__mingw_init_ehandler+0x85> + 663505e0: 48 85 f6 test %rsi,%rsi + 663505e3: 89 f2 mov %esi,%edx + 663505e5: 0f 84 71 ff ff ff je 6635055c <__mingw_init_ehandler+0x3c> + 663505eb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663505f0: 48 8d 0d 29 61 00 00 lea 0x6129(%rip),%rcx # 66356720 + 663505f7: 49 89 e8 mov %rbp,%r8 + 663505fa: ff 15 28 7c 00 00 callq *0x7c28(%rip) # 66358228 <__imp_RtlAddFunctionTable> + 66350600: e9 57 ff ff ff jmpq 6635055c <__mingw_init_ehandler+0x3c> + 66350605: ba 20 00 00 00 mov $0x20,%edx + 6635060a: eb e4 jmp 663505f0 <__mingw_init_ehandler+0xd0> + 6635060c: 0f 1f 40 00 nopl 0x0(%rax) + +0000000066350610 <_gnu_exception_handler>: + 66350610: 53 push %rbx + 66350611: 48 83 ec 20 sub $0x20,%rsp + 66350615: 48 8b 11 mov (%rcx),%rdx + 66350618: 8b 02 mov (%rdx),%eax + 6635061a: 48 89 cb mov %rcx,%rbx + 6635061d: 89 c1 mov %eax,%ecx + 6635061f: 81 e1 ff ff ff 20 and $0x20ffffff,%ecx + 66350625: 81 f9 43 43 47 20 cmp $0x20474343,%ecx + 6635062b: 0f 84 bf 00 00 00 je 663506f0 <_gnu_exception_handler+0xe0> + 66350631: 3d 91 00 00 c0 cmp $0xc0000091,%eax + 66350636: 77 68 ja 663506a0 <_gnu_exception_handler+0x90> + 66350638: 3d 8d 00 00 c0 cmp $0xc000008d,%eax + 6635063d: 73 7c jae 663506bb <_gnu_exception_handler+0xab> + 6635063f: 3d 08 00 00 c0 cmp $0xc0000008,%eax + 66350644: 0f 84 b0 00 00 00 je 663506fa <_gnu_exception_handler+0xea> + 6635064a: 0f 87 f4 00 00 00 ja 66350744 <_gnu_exception_handler+0x134> + 66350650: 3d 02 00 00 80 cmp $0x80000002,%eax + 66350655: 0f 84 9f 00 00 00 je 663506fa <_gnu_exception_handler+0xea> + 6635065b: 3d 05 00 00 c0 cmp $0xc0000005,%eax + 66350660: 75 1f jne 66350681 <_gnu_exception_handler+0x71> + 66350662: 31 d2 xor %edx,%edx + 66350664: b9 0b 00 00 00 mov $0xb,%ecx + 66350669: e8 92 0a 00 00 callq 66351100 + 6635066e: 48 83 f8 01 cmp $0x1,%rax + 66350672: 0f 84 51 01 00 00 je 663507c9 <_gnu_exception_handler+0x1b9> + 66350678: 48 85 c0 test %rax,%rax + 6635067b: 0f 85 0f 01 00 00 jne 66350790 <_gnu_exception_handler+0x180> + 66350681: 48 8b 05 78 5f 00 00 mov 0x5f78(%rip),%rax # 66356600 <__mingw_oldexcpt_handler> + 66350688: 48 85 c0 test %rax,%rax + 6635068b: 0f 84 10 01 00 00 je 663507a1 <_gnu_exception_handler+0x191> + 66350691: 48 89 d9 mov %rbx,%rcx + 66350694: 48 83 c4 20 add $0x20,%rsp + 66350698: 5b pop %rbx + 66350699: 48 ff e0 rex.W jmpq *%rax + 6635069c: 0f 1f 40 00 nopl 0x0(%rax) + 663506a0: 3d 94 00 00 c0 cmp $0xc0000094,%eax + 663506a5: 0f 84 b5 00 00 00 je 66350760 <_gnu_exception_handler+0x150> + 663506ab: 77 58 ja 66350705 <_gnu_exception_handler+0xf5> + 663506ad: 3d 92 00 00 c0 cmp $0xc0000092,%eax + 663506b2: 74 46 je 663506fa <_gnu_exception_handler+0xea> + 663506b4: 3d 93 00 00 c0 cmp $0xc0000093,%eax + 663506b9: 75 c6 jne 66350681 <_gnu_exception_handler+0x71> + 663506bb: 31 d2 xor %edx,%edx + 663506bd: b9 08 00 00 00 mov $0x8,%ecx + 663506c2: e8 39 0a 00 00 callq 66351100 + 663506c7: 48 83 f8 01 cmp $0x1,%rax + 663506cb: 0f 84 df 00 00 00 je 663507b0 <_gnu_exception_handler+0x1a0> + 663506d1: 48 85 c0 test %rax,%rax + 663506d4: 74 ab je 66350681 <_gnu_exception_handler+0x71> + 663506d6: b9 08 00 00 00 mov $0x8,%ecx + 663506db: ff d0 callq *%rax + 663506dd: b8 ff ff ff ff mov $0xffffffff,%eax + 663506e2: 48 83 c4 20 add $0x20,%rsp + 663506e6: 5b pop %rbx + 663506e7: c3 retq + 663506e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663506ef: 00 + 663506f0: f6 42 04 01 testb $0x1,0x4(%rdx) + 663506f4: 0f 85 37 ff ff ff jne 66350631 <_gnu_exception_handler+0x21> + 663506fa: b8 ff ff ff ff mov $0xffffffff,%eax + 663506ff: 48 83 c4 20 add $0x20,%rsp + 66350703: 5b pop %rbx + 66350704: c3 retq + 66350705: 3d 95 00 00 c0 cmp $0xc0000095,%eax + 6635070a: 74 ee je 663506fa <_gnu_exception_handler+0xea> + 6635070c: 3d 96 00 00 c0 cmp $0xc0000096,%eax + 66350711: 0f 85 6a ff ff ff jne 66350681 <_gnu_exception_handler+0x71> + 66350717: 31 d2 xor %edx,%edx + 66350719: b9 04 00 00 00 mov $0x4,%ecx + 6635071e: e8 dd 09 00 00 callq 66351100 + 66350723: 48 83 f8 01 cmp $0x1,%rax + 66350727: 0f 84 b3 00 00 00 je 663507e0 <_gnu_exception_handler+0x1d0> + 6635072d: 48 85 c0 test %rax,%rax + 66350730: 0f 84 4b ff ff ff je 66350681 <_gnu_exception_handler+0x71> + 66350736: b9 04 00 00 00 mov $0x4,%ecx + 6635073b: ff d0 callq *%rax + 6635073d: b8 ff ff ff ff mov $0xffffffff,%eax + 66350742: eb 9e jmp 663506e2 <_gnu_exception_handler+0xd2> + 66350744: 3d 1d 00 00 c0 cmp $0xc000001d,%eax + 66350749: 74 cc je 66350717 <_gnu_exception_handler+0x107> + 6635074b: 3d 8c 00 00 c0 cmp $0xc000008c,%eax + 66350750: 0f 85 2b ff ff ff jne 66350681 <_gnu_exception_handler+0x71> + 66350756: eb a2 jmp 663506fa <_gnu_exception_handler+0xea> + 66350758: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6635075f: 00 + 66350760: 31 d2 xor %edx,%edx + 66350762: b9 08 00 00 00 mov $0x8,%ecx + 66350767: e8 94 09 00 00 callq 66351100 + 6635076c: 48 83 f8 01 cmp $0x1,%rax + 66350770: 0f 85 5b ff ff ff jne 663506d1 <_gnu_exception_handler+0xc1> + 66350776: ba 01 00 00 00 mov $0x1,%edx + 6635077b: b9 08 00 00 00 mov $0x8,%ecx + 66350780: e8 7b 09 00 00 callq 66351100 + 66350785: b8 ff ff ff ff mov $0xffffffff,%eax + 6635078a: e9 53 ff ff ff jmpq 663506e2 <_gnu_exception_handler+0xd2> + 6635078f: 90 nop + 66350790: b9 0b 00 00 00 mov $0xb,%ecx + 66350795: ff d0 callq *%rax + 66350797: b8 ff ff ff ff mov $0xffffffff,%eax + 6635079c: e9 41 ff ff ff jmpq 663506e2 <_gnu_exception_handler+0xd2> + 663507a1: 31 c0 xor %eax,%eax + 663507a3: e9 3a ff ff ff jmpq 663506e2 <_gnu_exception_handler+0xd2> + 663507a8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663507af: 00 + 663507b0: ba 01 00 00 00 mov $0x1,%edx + 663507b5: b9 08 00 00 00 mov $0x8,%ecx + 663507ba: e8 41 09 00 00 callq 66351100 + 663507bf: e8 8c 06 00 00 callq 66350e50 <_fpreset> + 663507c4: e9 31 ff ff ff jmpq 663506fa <_gnu_exception_handler+0xea> + 663507c9: ba 01 00 00 00 mov $0x1,%edx + 663507ce: b9 0b 00 00 00 mov $0xb,%ecx + 663507d3: e8 28 09 00 00 callq 66351100 + 663507d8: 83 c8 ff or $0xffffffff,%eax + 663507db: e9 02 ff ff ff jmpq 663506e2 <_gnu_exception_handler+0xd2> + 663507e0: ba 01 00 00 00 mov $0x1,%edx + 663507e5: b9 04 00 00 00 mov $0x4,%ecx + 663507ea: e8 11 09 00 00 callq 66351100 + 663507ef: 83 c8 ff or $0xffffffff,%eax + 663507f2: e9 eb fe ff ff jmpq 663506e2 <_gnu_exception_handler+0xd2> + 663507f7: 90 nop + 663507f8: 90 nop + 663507f9: 90 nop + 663507fa: 90 nop + 663507fb: 90 nop + 663507fc: 90 nop + 663507fd: 90 nop + 663507fe: 90 nop + 663507ff: 90 nop + +0000000066350800 <__mingwthr_run_key_dtors.part.0>: + 66350800: 55 push %rbp + 66350801: 57 push %rdi + 66350802: 56 push %rsi + 66350803: 53 push %rbx + 66350804: 48 83 ec 28 sub $0x28,%rsp + 66350808: 48 8d 0d b1 60 00 00 lea 0x60b1(%rip),%rcx # 663568c0 <__mingwthr_cs> + 6635080f: ff 15 bb 79 00 00 callq *0x79bb(%rip) # 663581d0 <__imp_EnterCriticalSection> + 66350815: 48 8b 1d 84 60 00 00 mov 0x6084(%rip),%rbx # 663568a0 + 6635081c: 48 85 db test %rbx,%rbx + 6635081f: 74 33 je 66350854 <__mingwthr_run_key_dtors.part.0+0x54> + 66350821: 48 8b 2d 38 7a 00 00 mov 0x7a38(%rip),%rbp # 66358260 <__imp_TlsGetValue> + 66350828: 48 8b 3d c1 79 00 00 mov 0x79c1(%rip),%rdi # 663581f0 <__imp_GetLastError> + 6635082f: 90 nop + 66350830: 8b 0b mov (%rbx),%ecx + 66350832: ff d5 callq *%rbp + 66350834: 48 89 c6 mov %rax,%rsi + 66350837: ff d7 callq *%rdi + 66350839: 85 c0 test %eax,%eax + 6635083b: 75 0e jne 6635084b <__mingwthr_run_key_dtors.part.0+0x4b> + 6635083d: 48 85 f6 test %rsi,%rsi + 66350840: 74 09 je 6635084b <__mingwthr_run_key_dtors.part.0+0x4b> + 66350842: 48 8b 43 08 mov 0x8(%rbx),%rax + 66350846: 48 89 f1 mov %rsi,%rcx + 66350849: ff d0 callq *%rax + 6635084b: 48 8b 5b 10 mov 0x10(%rbx),%rbx + 6635084f: 48 85 db test %rbx,%rbx + 66350852: 75 dc jne 66350830 <__mingwthr_run_key_dtors.part.0+0x30> + 66350854: 48 8d 0d 65 60 00 00 lea 0x6065(%rip),%rcx # 663568c0 <__mingwthr_cs> + 6635085b: 48 83 c4 28 add $0x28,%rsp + 6635085f: 5b pop %rbx + 66350860: 5e pop %rsi + 66350861: 5f pop %rdi + 66350862: 5d pop %rbp + 66350863: 48 ff 25 ae 79 00 00 rex.W jmpq *0x79ae(%rip) # 66358218 <__imp_LeaveCriticalSection> + 6635086a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + +0000000066350870 <___w64_mingwthr_add_key_dtor>: + 66350870: 55 push %rbp + 66350871: 57 push %rdi + 66350872: 56 push %rsi + 66350873: 53 push %rbx + 66350874: 48 83 ec 28 sub $0x28,%rsp + 66350878: 8b 05 2a 60 00 00 mov 0x602a(%rip),%eax # 663568a8 <__mingwthr_cs_init> + 6635087e: 31 f6 xor %esi,%esi + 66350880: 85 c0 test %eax,%eax + 66350882: 89 cd mov %ecx,%ebp + 66350884: 48 89 d7 mov %rdx,%rdi + 66350887: 75 0b jne 66350894 <___w64_mingwthr_add_key_dtor+0x24> + 66350889: 89 f0 mov %esi,%eax + 6635088b: 48 83 c4 28 add $0x28,%rsp + 6635088f: 5b pop %rbx + 66350890: 5e pop %rsi + 66350891: 5f pop %rdi + 66350892: 5d pop %rbp + 66350893: c3 retq + 66350894: ba 18 00 00 00 mov $0x18,%edx + 66350899: b9 01 00 00 00 mov $0x1,%ecx + 6635089e: e8 8d 08 00 00 callq 66351130 + 663508a3: 48 85 c0 test %rax,%rax + 663508a6: 48 89 c3 mov %rax,%rbx + 663508a9: 74 3d je 663508e8 <___w64_mingwthr_add_key_dtor+0x78> + 663508ab: 89 28 mov %ebp,(%rax) + 663508ad: 48 8d 0d 0c 60 00 00 lea 0x600c(%rip),%rcx # 663568c0 <__mingwthr_cs> + 663508b4: 48 89 78 08 mov %rdi,0x8(%rax) + 663508b8: ff 15 12 79 00 00 callq *0x7912(%rip) # 663581d0 <__imp_EnterCriticalSection> + 663508be: 48 8b 05 db 5f 00 00 mov 0x5fdb(%rip),%rax # 663568a0 + 663508c5: 48 8d 0d f4 5f 00 00 lea 0x5ff4(%rip),%rcx # 663568c0 <__mingwthr_cs> + 663508cc: 48 89 1d cd 5f 00 00 mov %rbx,0x5fcd(%rip) # 663568a0 + 663508d3: 48 89 43 10 mov %rax,0x10(%rbx) + 663508d7: ff 15 3b 79 00 00 callq *0x793b(%rip) # 66358218 <__imp_LeaveCriticalSection> + 663508dd: 89 f0 mov %esi,%eax + 663508df: 48 83 c4 28 add $0x28,%rsp + 663508e3: 5b pop %rbx + 663508e4: 5e pop %rsi + 663508e5: 5f pop %rdi + 663508e6: 5d pop %rbp + 663508e7: c3 retq + 663508e8: be ff ff ff ff mov $0xffffffff,%esi + 663508ed: eb 9a jmp 66350889 <___w64_mingwthr_add_key_dtor+0x19> + 663508ef: 90 nop + +00000000663508f0 <___w64_mingwthr_remove_key_dtor>: + 663508f0: 53 push %rbx + 663508f1: 48 83 ec 20 sub $0x20,%rsp + 663508f5: 8b 05 ad 5f 00 00 mov 0x5fad(%rip),%eax # 663568a8 <__mingwthr_cs_init> + 663508fb: 85 c0 test %eax,%eax + 663508fd: 89 cb mov %ecx,%ebx + 663508ff: 75 0f jne 66350910 <___w64_mingwthr_remove_key_dtor+0x20> + 66350901: 31 c0 xor %eax,%eax + 66350903: 48 83 c4 20 add $0x20,%rsp + 66350907: 5b pop %rbx + 66350908: c3 retq + 66350909: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) + 66350910: 48 8d 0d a9 5f 00 00 lea 0x5fa9(%rip),%rcx # 663568c0 <__mingwthr_cs> + 66350917: ff 15 b3 78 00 00 callq *0x78b3(%rip) # 663581d0 <__imp_EnterCriticalSection> + 6635091d: 48 8b 05 7c 5f 00 00 mov 0x5f7c(%rip),%rax # 663568a0 + 66350924: 48 85 c0 test %rax,%rax + 66350927: 74 1a je 66350943 <___w64_mingwthr_remove_key_dtor+0x53> + 66350929: 8b 10 mov (%rax),%edx + 6635092b: 39 d3 cmp %edx,%ebx + 6635092d: 75 0b jne 6635093a <___w64_mingwthr_remove_key_dtor+0x4a> + 6635092f: eb 4f jmp 66350980 <___w64_mingwthr_remove_key_dtor+0x90> + 66350931: 8b 11 mov (%rcx),%edx + 66350933: 39 da cmp %ebx,%edx + 66350935: 74 29 je 66350960 <___w64_mingwthr_remove_key_dtor+0x70> + 66350937: 48 89 c8 mov %rcx,%rax + 6635093a: 48 8b 48 10 mov 0x10(%rax),%rcx + 6635093e: 48 85 c9 test %rcx,%rcx + 66350941: 75 ee jne 66350931 <___w64_mingwthr_remove_key_dtor+0x41> + 66350943: 48 8d 0d 76 5f 00 00 lea 0x5f76(%rip),%rcx # 663568c0 <__mingwthr_cs> + 6635094a: ff 15 c8 78 00 00 callq *0x78c8(%rip) # 66358218 <__imp_LeaveCriticalSection> + 66350950: 31 c0 xor %eax,%eax + 66350952: 48 83 c4 20 add $0x20,%rsp + 66350956: 5b pop %rbx + 66350957: c3 retq + 66350958: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6635095f: 00 + 66350960: 48 8b 51 10 mov 0x10(%rcx),%rdx + 66350964: 48 89 50 10 mov %rdx,0x10(%rax) + 66350968: e8 bb 07 00 00 callq 66351128 + 6635096d: 48 8d 0d 4c 5f 00 00 lea 0x5f4c(%rip),%rcx # 663568c0 <__mingwthr_cs> + 66350974: ff 15 9e 78 00 00 callq *0x789e(%rip) # 66358218 <__imp_LeaveCriticalSection> + 6635097a: eb d4 jmp 66350950 <___w64_mingwthr_remove_key_dtor+0x60> + 6635097c: 0f 1f 40 00 nopl 0x0(%rax) + 66350980: 48 8b 50 10 mov 0x10(%rax),%rdx + 66350984: 48 89 c1 mov %rax,%rcx + 66350987: 48 89 15 12 5f 00 00 mov %rdx,0x5f12(%rip) # 663568a0 + 6635098e: eb d8 jmp 66350968 <___w64_mingwthr_remove_key_dtor+0x78> + +0000000066350990 <__mingw_TLScallback>: + 66350990: 53 push %rbx + 66350991: 48 83 ec 20 sub $0x20,%rsp + 66350995: 83 fa 01 cmp $0x1,%edx + 66350998: 0f 84 92 00 00 00 je 66350a30 <__mingw_TLScallback+0xa0> + 6635099e: 72 30 jb 663509d0 <__mingw_TLScallback+0x40> + 663509a0: 83 fa 02 cmp $0x2,%edx + 663509a3: 74 1b je 663509c0 <__mingw_TLScallback+0x30> + 663509a5: 83 fa 03 cmp $0x3,%edx + 663509a8: 75 1b jne 663509c5 <__mingw_TLScallback+0x35> + 663509aa: 8b 05 f8 5e 00 00 mov 0x5ef8(%rip),%eax # 663568a8 <__mingwthr_cs_init> + 663509b0: 85 c0 test %eax,%eax + 663509b2: 74 11 je 663509c5 <__mingw_TLScallback+0x35> + 663509b4: e8 47 fe ff ff callq 66350800 <__mingwthr_run_key_dtors.part.0> + 663509b9: eb 0a jmp 663509c5 <__mingw_TLScallback+0x35> + 663509bb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 663509c0: e8 8b 04 00 00 callq 66350e50 <_fpreset> + 663509c5: b8 01 00 00 00 mov $0x1,%eax + 663509ca: 48 83 c4 20 add $0x20,%rsp + 663509ce: 5b pop %rbx + 663509cf: c3 retq + 663509d0: 8b 05 d2 5e 00 00 mov 0x5ed2(%rip),%eax # 663568a8 <__mingwthr_cs_init> + 663509d6: 85 c0 test %eax,%eax + 663509d8: 0f 85 82 00 00 00 jne 66350a60 <__mingw_TLScallback+0xd0> + 663509de: 8b 05 c4 5e 00 00 mov 0x5ec4(%rip),%eax # 663568a8 <__mingwthr_cs_init> + 663509e4: 83 f8 01 cmp $0x1,%eax + 663509e7: 75 dc jne 663509c5 <__mingw_TLScallback+0x35> + 663509e9: 48 8b 0d b0 5e 00 00 mov 0x5eb0(%rip),%rcx # 663568a0 + 663509f0: 48 85 c9 test %rcx,%rcx + 663509f3: 74 11 je 66350a06 <__mingw_TLScallback+0x76> + 663509f5: 48 8b 59 10 mov 0x10(%rcx),%rbx + 663509f9: e8 2a 07 00 00 callq 66351128 + 663509fe: 48 85 db test %rbx,%rbx + 66350a01: 48 89 d9 mov %rbx,%rcx + 66350a04: 75 ef jne 663509f5 <__mingw_TLScallback+0x65> + 66350a06: 48 8d 0d b3 5e 00 00 lea 0x5eb3(%rip),%rcx # 663568c0 <__mingwthr_cs> + 66350a0d: 48 c7 05 88 5e 00 00 movq $0x0,0x5e88(%rip) # 663568a0 + 66350a14: 00 00 00 00 + 66350a18: c7 05 86 5e 00 00 00 movl $0x0,0x5e86(%rip) # 663568a8 <__mingwthr_cs_init> + 66350a1f: 00 00 00 + 66350a22: ff 15 a0 77 00 00 callq *0x77a0(%rip) # 663581c8 <__IAT_start__> + 66350a28: eb 9b jmp 663509c5 <__mingw_TLScallback+0x35> + 66350a2a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66350a30: 8b 05 72 5e 00 00 mov 0x5e72(%rip),%eax # 663568a8 <__mingwthr_cs_init> + 66350a36: 85 c0 test %eax,%eax + 66350a38: 74 16 je 66350a50 <__mingw_TLScallback+0xc0> + 66350a3a: c7 05 64 5e 00 00 01 movl $0x1,0x5e64(%rip) # 663568a8 <__mingwthr_cs_init> + 66350a41: 00 00 00 + 66350a44: b8 01 00 00 00 mov $0x1,%eax + 66350a49: 48 83 c4 20 add $0x20,%rsp + 66350a4d: 5b pop %rbx + 66350a4e: c3 retq + 66350a4f: 90 nop + 66350a50: 48 8d 0d 69 5e 00 00 lea 0x5e69(%rip),%rcx # 663568c0 <__mingwthr_cs> + 66350a57: ff 15 b3 77 00 00 callq *0x77b3(%rip) # 66358210 <__imp_InitializeCriticalSection> + 66350a5d: eb db jmp 66350a3a <__mingw_TLScallback+0xaa> + 66350a5f: 90 nop + 66350a60: e8 9b fd ff ff callq 66350800 <__mingwthr_run_key_dtors.part.0> + 66350a65: e9 74 ff ff ff jmpq 663509de <__mingw_TLScallback+0x4e> + 66350a6a: 90 nop + 66350a6b: 90 nop + 66350a6c: 90 nop + 66350a6d: 90 nop + 66350a6e: 90 nop + 66350a6f: 90 nop + +0000000066350a70 <_ValidateImageBase.part.0>: + 66350a70: 48 63 41 3c movslq 0x3c(%rcx),%rax + 66350a74: 48 01 c1 add %rax,%rcx + 66350a77: 31 c0 xor %eax,%eax + 66350a79: 81 39 50 45 00 00 cmpl $0x4550,(%rcx) + 66350a7f: 74 01 je 66350a82 <_ValidateImageBase.part.0+0x12> + 66350a81: c3 retq + 66350a82: 31 c0 xor %eax,%eax + 66350a84: 66 81 79 18 0b 02 cmpw $0x20b,0x18(%rcx) + 66350a8a: 0f 94 c0 sete %al + 66350a8d: c3 retq + 66350a8e: 66 90 xchg %ax,%ax + +0000000066350a90 <_ValidateImageBase>: + 66350a90: 66 81 39 4d 5a cmpw $0x5a4d,(%rcx) + 66350a95: 74 09 je 66350aa0 <_ValidateImageBase+0x10> + 66350a97: 31 c0 xor %eax,%eax + 66350a99: c3 retq + 66350a9a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66350aa0: eb ce jmp 66350a70 <_ValidateImageBase.part.0> + 66350aa2: 0f 1f 40 00 nopl 0x0(%rax) + 66350aa6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66350aad: 00 00 00 + +0000000066350ab0 <_FindPESection>: + 66350ab0: 48 63 41 3c movslq 0x3c(%rcx),%rax + 66350ab4: 48 01 c1 add %rax,%rcx + 66350ab7: 0f b7 41 14 movzwl 0x14(%rcx),%eax + 66350abb: 48 8d 44 01 18 lea 0x18(%rcx,%rax,1),%rax + 66350ac0: 0f b7 49 06 movzwl 0x6(%rcx),%ecx + 66350ac4: 85 c9 test %ecx,%ecx + 66350ac6: 74 29 je 66350af1 <_FindPESection+0x41> + 66350ac8: 83 e9 01 sub $0x1,%ecx + 66350acb: 48 8d 0c 89 lea (%rcx,%rcx,4),%rcx + 66350acf: 4c 8d 4c c8 28 lea 0x28(%rax,%rcx,8),%r9 + 66350ad4: 44 8b 40 0c mov 0xc(%rax),%r8d + 66350ad8: 49 39 d0 cmp %rdx,%r8 + 66350adb: 4c 89 c1 mov %r8,%rcx + 66350ade: 77 08 ja 66350ae8 <_FindPESection+0x38> + 66350ae0: 03 48 08 add 0x8(%rax),%ecx + 66350ae3: 48 39 d1 cmp %rdx,%rcx + 66350ae6: 77 0b ja 66350af3 <_FindPESection+0x43> + 66350ae8: 48 83 c0 28 add $0x28,%rax + 66350aec: 4c 39 c8 cmp %r9,%rax + 66350aef: 75 e3 jne 66350ad4 <_FindPESection+0x24> + 66350af1: 31 c0 xor %eax,%eax + 66350af3: c3 retq + 66350af4: 66 90 xchg %ax,%ax + 66350af6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66350afd: 00 00 00 + +0000000066350b00 <_FindPESectionByName>: + 66350b00: 57 push %rdi + 66350b01: 56 push %rsi + 66350b02: 53 push %rbx + 66350b03: 48 83 ec 20 sub $0x20,%rsp + 66350b07: 48 89 ce mov %rcx,%rsi + 66350b0a: e8 e9 05 00 00 callq 663510f8 + 66350b0f: 48 83 f8 08 cmp $0x8,%rax + 66350b13: 77 6b ja 66350b80 <_FindPESectionByName+0x80> + 66350b15: 48 8b 15 d4 27 00 00 mov 0x27d4(%rip),%rdx # 663532f0 <.refptr.__image_base__> + 66350b1c: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) + 66350b21: 75 5d jne 66350b80 <_FindPESectionByName+0x80> + 66350b23: 48 89 d1 mov %rdx,%rcx + 66350b26: e8 45 ff ff ff callq 66350a70 <_ValidateImageBase.part.0> + 66350b2b: 85 c0 test %eax,%eax + 66350b2d: 74 51 je 66350b80 <_FindPESectionByName+0x80> + 66350b2f: 48 63 4a 3c movslq 0x3c(%rdx),%rcx + 66350b33: 48 01 d1 add %rdx,%rcx + 66350b36: 0f b7 41 14 movzwl 0x14(%rcx),%eax + 66350b3a: 48 8d 5c 01 18 lea 0x18(%rcx,%rax,1),%rbx + 66350b3f: 0f b7 41 06 movzwl 0x6(%rcx),%eax + 66350b43: 85 c0 test %eax,%eax + 66350b45: 74 39 je 66350b80 <_FindPESectionByName+0x80> + 66350b47: 83 e8 01 sub $0x1,%eax + 66350b4a: 48 8d 04 80 lea (%rax,%rax,4),%rax + 66350b4e: 48 8d 7c c3 28 lea 0x28(%rbx,%rax,8),%rdi + 66350b53: eb 09 jmp 66350b5e <_FindPESectionByName+0x5e> + 66350b55: 48 83 c3 28 add $0x28,%rbx + 66350b59: 48 39 fb cmp %rdi,%rbx + 66350b5c: 74 22 je 66350b80 <_FindPESectionByName+0x80> + 66350b5e: 41 b8 08 00 00 00 mov $0x8,%r8d + 66350b64: 48 89 f2 mov %rsi,%rdx + 66350b67: 48 89 d9 mov %rbx,%rcx + 66350b6a: e8 81 05 00 00 callq 663510f0 + 66350b6f: 85 c0 test %eax,%eax + 66350b71: 75 e2 jne 66350b55 <_FindPESectionByName+0x55> + 66350b73: 48 89 d8 mov %rbx,%rax + 66350b76: 48 83 c4 20 add $0x20,%rsp + 66350b7a: 5b pop %rbx + 66350b7b: 5e pop %rsi + 66350b7c: 5f pop %rdi + 66350b7d: c3 retq + 66350b7e: 66 90 xchg %ax,%ax + 66350b80: 31 db xor %ebx,%ebx + 66350b82: 48 89 d8 mov %rbx,%rax + 66350b85: 48 83 c4 20 add $0x20,%rsp + 66350b89: 5b pop %rbx + 66350b8a: 5e pop %rsi + 66350b8b: 5f pop %rdi 66350b8c: c3 retq 66350b8d: 0f 1f 00 nopl (%rax) - 66350b90: 48 8d 15 69 34 00 00 lea 0x3469(%rip),%rdx # 66354000 <.rdata> - 66350b97: 41 b8 93 00 00 00 mov $0x93,%r8d - 66350b9d: 48 8d 0d 6c 34 00 00 lea 0x346c(%rip),%rcx # 66354010 <.rdata+0x10> - 66350ba4: e8 67 16 00 00 callq 66352210 <_assert> - 66350ba9: 48 8b 43 40 mov 0x40(%rbx),%rax - 66350bad: 89 30 mov %esi,(%rax) - 66350baf: eb 93 jmp 66350b44 - 66350bb1: 48 89 d9 mov %rbx,%rcx - 66350bb4: e8 77 08 ff ff callq 66341430 - 66350bb9: e9 fa fe ff ff jmpq 66350ab8 - 66350bbe: 66 90 xchg %ax,%ax -0000000066350bc0 : - 66350bc0: 48 8b 44 24 28 mov 0x28(%rsp),%rax - 66350bc5: 48 89 0d 54 6d 00 00 mov %rcx,0x6d54(%rip) # 66357920 - 66350bcc: 48 89 15 5d 6d 00 00 mov %rdx,0x6d5d(%rip) # 66357930 - 66350bd3: 4c 89 05 36 6d 00 00 mov %r8,0x6d36(%rip) # 66357910 - 66350bda: 4c 89 0d 47 6d 00 00 mov %r9,0x6d47(%rip) # 66357928 - 66350be1: 48 89 05 30 6d 00 00 mov %rax,0x6d30(%rip) # 66357918 - 66350be8: c3 retq - 66350be9: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) +0000000066350b90 <__mingw_GetSectionForAddress>: + 66350b90: 48 83 ec 28 sub $0x28,%rsp + 66350b94: 4c 8b 05 55 27 00 00 mov 0x2755(%rip),%r8 # 663532f0 <.refptr.__image_base__> + 66350b9b: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) + 66350ba1: 48 89 ca mov %rcx,%rdx + 66350ba4: 75 57 jne 66350bfd <__mingw_GetSectionForAddress+0x6d> + 66350ba6: 4c 89 c1 mov %r8,%rcx + 66350ba9: e8 c2 fe ff ff callq 66350a70 <_ValidateImageBase.part.0> + 66350bae: 85 c0 test %eax,%eax + 66350bb0: 74 4b je 66350bfd <__mingw_GetSectionForAddress+0x6d> + 66350bb2: 49 63 40 3c movslq 0x3c(%r8),%rax + 66350bb6: 48 89 d1 mov %rdx,%rcx + 66350bb9: 4c 29 c1 sub %r8,%rcx + 66350bbc: 49 01 c0 add %rax,%r8 + 66350bbf: 41 0f b7 50 06 movzwl 0x6(%r8),%edx + 66350bc4: 41 0f b7 40 14 movzwl 0x14(%r8),%eax + 66350bc9: 85 d2 test %edx,%edx + 66350bcb: 49 8d 44 00 18 lea 0x18(%r8,%rax,1),%rax + 66350bd0: 74 2b je 66350bfd <__mingw_GetSectionForAddress+0x6d> + 66350bd2: 83 ea 01 sub $0x1,%edx + 66350bd5: 48 8d 14 92 lea (%rdx,%rdx,4),%rdx + 66350bd9: 4c 8d 4c d0 28 lea 0x28(%rax,%rdx,8),%r9 + 66350bde: 66 90 xchg %ax,%ax + 66350be0: 44 8b 40 0c mov 0xc(%rax),%r8d + 66350be4: 4c 39 c1 cmp %r8,%rcx + 66350be7: 4c 89 c2 mov %r8,%rdx + 66350bea: 72 08 jb 66350bf4 <__mingw_GetSectionForAddress+0x64> + 66350bec: 03 50 08 add 0x8(%rax),%edx + 66350bef: 48 39 d1 cmp %rdx,%rcx + 66350bf2: 72 0b jb 66350bff <__mingw_GetSectionForAddress+0x6f> + 66350bf4: 48 83 c0 28 add $0x28,%rax + 66350bf8: 4c 39 c8 cmp %r9,%rax + 66350bfb: 75 e3 jne 66350be0 <__mingw_GetSectionForAddress+0x50> + 66350bfd: 31 c0 xor %eax,%eax + 66350bff: 48 83 c4 28 add $0x28,%rsp + 66350c03: c3 retq + 66350c04: 66 90 xchg %ax,%ax + 66350c06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66350c0d: 00 00 00 -0000000066350bf0 : - 66350bf0: 41 55 push %r13 - 66350bf2: 41 54 push %r12 - 66350bf4: 55 push %rbp - 66350bf5: 57 push %rdi - 66350bf6: 56 push %rsi - 66350bf7: 53 push %rbx - 66350bf8: 48 8b 35 31 6d 00 00 mov 0x6d31(%rip),%rsi # 66357930 - 66350bff: 8b 16 mov (%rsi),%edx - 66350c01: 85 d2 test %edx,%edx - 66350c03: 0f 8e aa 00 00 00 jle 66350cb3 - 66350c09: 48 8b 1d 10 6d 00 00 mov 0x6d10(%rip),%rbx # 66357920 - 66350c10: 45 31 c0 xor %r8d,%r8d - 66350c13: 48 8b 2d fe 6c 00 00 mov 0x6cfe(%rip),%rbp # 66357918 - 66350c1a: 48 8b 3d ef 6c 00 00 mov 0x6cef(%rip),%rdi # 66357910 - 66350c21: 4c 8b 1d 00 6d 00 00 mov 0x6d00(%rip),%r11 # 66357928 - 66350c28: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66350c2f: 00 - 66350c30: 4a 8b 14 c3 mov (%rbx,%r8,8),%rdx - 66350c34: 31 c9 xor %ecx,%ecx - 66350c36: 48 8b 42 08 mov 0x8(%rdx),%rax - 66350c3a: 8b 00 mov (%rax),%eax - 66350c3c: 85 c0 test %eax,%eax - 66350c3e: 48 8b 02 mov (%rdx),%rax - 66350c41: 0f 9f c1 setg %cl - 66350c44: 3b 08 cmp (%rax),%ecx - 66350c46: 74 4c je 66350c94 - 66350c48: 89 08 mov %ecx,(%rax) - 66350c4a: 4c 8b 62 20 mov 0x20(%rdx),%r12 - 66350c4e: 8b 4d 00 mov 0x0(%rbp),%ecx - 66350c51: 48 8b 42 18 mov 0x18(%rdx),%rax - 66350c55: 89 08 mov %ecx,(%rax) - 66350c57: 41 8b 0c 24 mov (%r12),%ecx - 66350c5b: 85 c9 test %ecx,%ecx - 66350c5d: 7e 35 jle 66350c94 - 66350c5f: 4c 8b 6a 28 mov 0x28(%rdx),%r13 - 66350c63: 31 c0 xor %eax,%eax - 66350c65: 4d 8b 4c c5 00 mov 0x0(%r13,%rax,8),%r9 - 66350c6a: 4d 8b 11 mov (%r9),%r10 - 66350c6d: 41 83 3a 00 cmpl $0x0,(%r10) - 66350c71: 75 4f jne 66350cc2 - 66350c73: 41 c7 02 01 00 00 00 movl $0x1,(%r10) - 66350c7a: 49 63 0b movslq (%r11),%rcx - 66350c7d: 48 83 c0 01 add $0x1,%rax - 66350c81: 44 8d 51 01 lea 0x1(%rcx),%r10d - 66350c85: 45 89 13 mov %r10d,(%r11) - 66350c88: 4c 89 0c cf mov %r9,(%rdi,%rcx,8) - 66350c8c: 41 8b 0c 24 mov (%r12),%ecx - 66350c90: 39 c1 cmp %eax,%ecx - 66350c92: 7f d1 jg 66350c65 - 66350c94: 48 8b 42 10 mov 0x10(%rdx),%rax - 66350c98: c7 00 00 00 00 00 movl $0x0,(%rax) - 66350c9e: 4a c7 04 c3 00 00 00 movq $0x0,(%rbx,%r8,8) - 66350ca5: 00 - 66350ca6: 49 83 c0 01 add $0x1,%r8 - 66350caa: 44 39 06 cmp %r8d,(%rsi) - 66350cad: 0f 8f 7d ff ff ff jg 66350c30 - 66350cb3: c7 06 00 00 00 00 movl $0x0,(%rsi) - 66350cb9: 5b pop %rbx - 66350cba: 5e pop %rsi - 66350cbb: 5f pop %rdi - 66350cbc: 5d pop %rbp - 66350cbd: 41 5c pop %r12 - 66350cbf: 41 5d pop %r13 - 66350cc1: c3 retq - 66350cc2: 48 83 c0 01 add $0x1,%rax - 66350cc6: 39 c1 cmp %eax,%ecx - 66350cc8: 7f 9b jg 66350c65 - 66350cca: eb c8 jmp 66350c94 - 66350ccc: 0f 1f 40 00 nopl 0x0(%rax) +0000000066350c10 <__mingw_GetSectionCount>: + 66350c10: 48 83 ec 28 sub $0x28,%rsp + 66350c14: 48 8b 15 d5 26 00 00 mov 0x26d5(%rip),%rdx # 663532f0 <.refptr.__image_base__> + 66350c1b: 45 31 c0 xor %r8d,%r8d + 66350c1e: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) + 66350c23: 74 0b je 66350c30 <__mingw_GetSectionCount+0x20> + 66350c25: 44 89 c0 mov %r8d,%eax + 66350c28: 48 83 c4 28 add $0x28,%rsp + 66350c2c: c3 retq + 66350c2d: 0f 1f 00 nopl (%rax) + 66350c30: 48 89 d1 mov %rdx,%rcx + 66350c33: e8 38 fe ff ff callq 66350a70 <_ValidateImageBase.part.0> + 66350c38: 85 c0 test %eax,%eax + 66350c3a: 74 e9 je 66350c25 <__mingw_GetSectionCount+0x15> + 66350c3c: 48 63 42 3c movslq 0x3c(%rdx),%rax + 66350c40: 44 0f b7 44 10 06 movzwl 0x6(%rax,%rdx,1),%r8d + 66350c46: 44 89 c0 mov %r8d,%eax + 66350c49: 48 83 c4 28 add $0x28,%rsp + 66350c4d: c3 retq + 66350c4e: 66 90 xchg %ax,%ax -0000000066350cd0 : - 66350cd0: 55 push %rbp - 66350cd1: 57 push %rdi - 66350cd2: 56 push %rsi - 66350cd3: 53 push %rbx - 66350cd4: 48 83 ec 28 sub $0x28,%rsp - 66350cd8: 4c 8b 1d 49 6c 00 00 mov 0x6c49(%rip),%r11 # 66357928 - 66350cdf: 41 8b 03 mov (%r11),%eax - 66350ce2: 85 c0 test %eax,%eax - 66350ce4: 7e 75 jle 66350d5b - 66350ce6: 41 89 c1 mov %eax,%r9d - 66350ce9: 4d 89 da mov %r11,%r10 - 66350cec: 31 db xor %ebx,%ebx - 66350cee: 48 8d 35 1b 6c 00 00 lea 0x6c1b(%rip),%rsi # 66357910 - 66350cf5: 31 ed xor %ebp,%ebp - 66350cf7: 48 8d 3d 02 23 00 00 lea 0x2302(%rip),%rdi # 66353000 <__data_start__> - 66350cfe: eb 11 jmp 66350d11 - 66350d00: 83 c3 01 add $0x1,%ebx - 66350d03: 41 39 d9 cmp %ebx,%r9d - 66350d06: 7e 53 jle 66350d5b - 66350d08: 48 63 eb movslq %ebx,%rbp - 66350d0b: 44 89 c8 mov %r9d,%eax - 66350d0e: 4d 89 d3 mov %r10,%r11 - 66350d11: 4c 8b 06 mov (%rsi),%r8 - 66350d14: 49 8d 14 e8 lea (%r8,%rbp,8),%rdx - 66350d18: 48 8b 0a mov (%rdx),%rcx - 66350d1b: 83 79 34 00 cmpl $0x0,0x34(%rcx) - 66350d1f: 74 df je 66350d00 - 66350d21: 4c 63 c8 movslq %eax,%r9 - 66350d24: 83 e8 01 sub $0x1,%eax - 66350d27: 4f 8d 44 c8 f8 lea -0x8(%r8,%r9,8),%r8 - 66350d2c: 4d 8b 08 mov (%r8),%r9 - 66350d2f: 4c 89 0a mov %r9,(%rdx) - 66350d32: 49 c7 00 00 00 00 00 movq $0x0,(%r8) - 66350d39: 41 89 03 mov %eax,(%r11) - 66350d3c: 48 8b 01 mov (%rcx),%rax - 66350d3f: c7 00 00 00 00 00 movl $0x0,(%rax) - 66350d45: 48 63 41 34 movslq 0x34(%rcx),%rax - 66350d49: ff 14 c7 callq *(%rdi,%rax,8) - 66350d4c: 4c 8b 15 d5 6b 00 00 mov 0x6bd5(%rip),%r10 # 66357928 - 66350d53: 45 8b 0a mov (%r10),%r9d - 66350d56: 44 39 cb cmp %r9d,%ebx - 66350d59: 7c b0 jl 66350d0b - 66350d5b: 48 83 c4 28 add $0x28,%rsp - 66350d5f: 5b pop %rbx - 66350d60: 5e pop %rsi - 66350d61: 5f pop %rdi - 66350d62: 5d pop %rbp - 66350d63: c3 retq - 66350d64: 90 nop - 66350d65: 90 nop - 66350d66: 90 nop - 66350d67: 90 nop - 66350d68: 90 nop - 66350d69: 90 nop - 66350d6a: 90 nop - 66350d6b: 90 nop - 66350d6c: 90 nop - 66350d6d: 90 nop - 66350d6e: 90 nop - 66350d6f: 90 nop +0000000066350c50 <_FindPESectionExec>: + 66350c50: 48 83 ec 28 sub $0x28,%rsp + 66350c54: 4c 8b 05 95 26 00 00 mov 0x2695(%rip),%r8 # 663532f0 <.refptr.__image_base__> + 66350c5b: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) + 66350c61: 48 89 ca mov %rcx,%rdx + 66350c64: 75 52 jne 66350cb8 <_FindPESectionExec+0x68> + 66350c66: 4c 89 c1 mov %r8,%rcx + 66350c69: e8 02 fe ff ff callq 66350a70 <_ValidateImageBase.part.0> + 66350c6e: 85 c0 test %eax,%eax + 66350c70: 74 46 je 66350cb8 <_FindPESectionExec+0x68> + 66350c72: 49 63 48 3c movslq 0x3c(%r8),%rcx + 66350c76: 4c 01 c1 add %r8,%rcx + 66350c79: 0f b7 41 14 movzwl 0x14(%rcx),%eax + 66350c7d: 48 8d 44 01 18 lea 0x18(%rcx,%rax,1),%rax + 66350c82: 0f b7 49 06 movzwl 0x6(%rcx),%ecx + 66350c86: 85 c9 test %ecx,%ecx + 66350c88: 74 2e je 66350cb8 <_FindPESectionExec+0x68> + 66350c8a: 83 e9 01 sub $0x1,%ecx + 66350c8d: 48 8d 0c 89 lea (%rcx,%rcx,4),%rcx + 66350c91: 48 8d 4c c8 28 lea 0x28(%rax,%rcx,8),%rcx + 66350c96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66350c9d: 00 00 00 + 66350ca0: f6 40 27 20 testb $0x20,0x27(%rax) + 66350ca4: 74 09 je 66350caf <_FindPESectionExec+0x5f> + 66350ca6: 48 85 d2 test %rdx,%rdx + 66350ca9: 74 0f je 66350cba <_FindPESectionExec+0x6a> + 66350cab: 48 83 ea 01 sub $0x1,%rdx + 66350caf: 48 83 c0 28 add $0x28,%rax + 66350cb3: 48 39 c8 cmp %rcx,%rax + 66350cb6: 75 e8 jne 66350ca0 <_FindPESectionExec+0x50> + 66350cb8: 31 c0 xor %eax,%eax + 66350cba: 48 83 c4 28 add $0x28,%rsp + 66350cbe: c3 retq + 66350cbf: 90 nop -0000000066350d70 <__do_global_dtors>: - 66350d70: 48 83 ec 28 sub $0x28,%rsp - 66350d74: 48 8b 05 65 26 00 00 mov 0x2665(%rip),%rax # 663533e0 - 66350d7b: 48 8b 00 mov (%rax),%rax - 66350d7e: 48 85 c0 test %rax,%rax - 66350d81: 74 1d je 66350da0 <__do_global_dtors+0x30> - 66350d83: ff d0 callq *%rax - 66350d85: 48 8b 05 54 26 00 00 mov 0x2654(%rip),%rax # 663533e0 - 66350d8c: 48 8d 50 08 lea 0x8(%rax),%rdx - 66350d90: 48 8b 40 08 mov 0x8(%rax),%rax - 66350d94: 48 89 15 45 26 00 00 mov %rdx,0x2645(%rip) # 663533e0 - 66350d9b: 48 85 c0 test %rax,%rax - 66350d9e: 75 e3 jne 66350d83 <__do_global_dtors+0x13> - 66350da0: 48 83 c4 28 add $0x28,%rsp - 66350da4: c3 retq - 66350da5: 90 nop - 66350da6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66350dad: 00 00 00 +0000000066350cc0 <_GetPEImageBase>: + 66350cc0: 48 83 ec 28 sub $0x28,%rsp + 66350cc4: 48 8b 15 25 26 00 00 mov 0x2625(%rip),%rdx # 663532f0 <.refptr.__image_base__> + 66350ccb: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) + 66350cd0: 75 1e jne 66350cf0 <_GetPEImageBase+0x30> + 66350cd2: 48 89 d1 mov %rdx,%rcx + 66350cd5: e8 96 fd ff ff callq 66350a70 <_ValidateImageBase.part.0> + 66350cda: 85 c0 test %eax,%eax + 66350cdc: b8 00 00 00 00 mov $0x0,%eax + 66350ce1: 48 0f 45 c2 cmovne %rdx,%rax + 66350ce5: 48 83 c4 28 add $0x28,%rsp + 66350ce9: c3 retq + 66350cea: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66350cf0: 31 c0 xor %eax,%eax + 66350cf2: 48 83 c4 28 add $0x28,%rsp + 66350cf6: c3 retq + 66350cf7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66350cfe: 00 00 -0000000066350db0 <__do_global_ctors>: - 66350db0: 56 push %rsi - 66350db1: 53 push %rbx - 66350db2: 48 83 ec 28 sub $0x28,%rsp - 66350db6: 48 8b 0d f3 34 00 00 mov 0x34f3(%rip),%rcx # 663542b0 <.refptr.__CTOR_LIST__> - 66350dbd: 48 8b 11 mov (%rcx),%rdx - 66350dc0: 83 fa ff cmp $0xffffffff,%edx - 66350dc3: 89 d0 mov %edx,%eax - 66350dc5: 74 39 je 66350e00 <__do_global_ctors+0x50> - 66350dc7: 85 c0 test %eax,%eax - 66350dc9: 74 20 je 66350deb <__do_global_ctors+0x3b> - 66350dcb: 89 c2 mov %eax,%edx - 66350dcd: 83 e8 01 sub $0x1,%eax - 66350dd0: 48 8d 1c d1 lea (%rcx,%rdx,8),%rbx - 66350dd4: 48 29 c2 sub %rax,%rdx - 66350dd7: 48 8d 74 d1 f8 lea -0x8(%rcx,%rdx,8),%rsi - 66350ddc: 0f 1f 40 00 nopl 0x0(%rax) - 66350de0: ff 13 callq *(%rbx) - 66350de2: 48 83 eb 08 sub $0x8,%rbx - 66350de6: 48 39 f3 cmp %rsi,%rbx - 66350de9: 75 f5 jne 66350de0 <__do_global_ctors+0x30> - 66350deb: 48 8d 0d 7e ff ff ff lea -0x82(%rip),%rcx # 66350d70 <__do_global_dtors> - 66350df2: 48 83 c4 28 add $0x28,%rsp - 66350df6: 5b pop %rbx - 66350df7: 5e pop %rsi - 66350df8: e9 83 05 ff ff jmpq 66341380 - 66350dfd: 0f 1f 00 nopl (%rax) - 66350e00: 31 c0 xor %eax,%eax - 66350e02: eb 02 jmp 66350e06 <__do_global_ctors+0x56> - 66350e04: 89 d0 mov %edx,%eax - 66350e06: 44 8d 40 01 lea 0x1(%rax),%r8d - 66350e0a: 4a 83 3c c1 00 cmpq $0x0,(%rcx,%r8,8) - 66350e0f: 4c 89 c2 mov %r8,%rdx - 66350e12: 75 f0 jne 66350e04 <__do_global_ctors+0x54> - 66350e14: eb b1 jmp 66350dc7 <__do_global_ctors+0x17> - 66350e16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66350e1d: 00 00 00 +0000000066350d00 <_IsNonwritableInCurrentImage>: + 66350d00: 48 83 ec 28 sub $0x28,%rsp + 66350d04: 4c 8b 05 e5 25 00 00 mov 0x25e5(%rip),%r8 # 663532f0 <.refptr.__image_base__> + 66350d0b: 31 c0 xor %eax,%eax + 66350d0d: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) + 66350d13: 48 89 ca mov %rcx,%rdx + 66350d16: 74 08 je 66350d20 <_IsNonwritableInCurrentImage+0x20> + 66350d18: 48 83 c4 28 add $0x28,%rsp + 66350d1c: c3 retq + 66350d1d: 0f 1f 00 nopl (%rax) + 66350d20: 4c 89 c1 mov %r8,%rcx + 66350d23: e8 48 fd ff ff callq 66350a70 <_ValidateImageBase.part.0> + 66350d28: 85 c0 test %eax,%eax + 66350d2a: 74 ec je 66350d18 <_IsNonwritableInCurrentImage+0x18> + 66350d2c: 49 63 40 3c movslq 0x3c(%r8),%rax + 66350d30: 48 89 d1 mov %rdx,%rcx + 66350d33: 4c 29 c1 sub %r8,%rcx + 66350d36: 49 01 c0 add %rax,%r8 + 66350d39: 41 0f b7 50 06 movzwl 0x6(%r8),%edx + 66350d3e: 41 0f b7 40 14 movzwl 0x14(%r8),%eax + 66350d43: 85 d2 test %edx,%edx + 66350d45: 49 8d 44 00 18 lea 0x18(%r8,%rax,1),%rax + 66350d4a: 74 31 je 66350d7d <_IsNonwritableInCurrentImage+0x7d> + 66350d4c: 83 ea 01 sub $0x1,%edx + 66350d4f: 48 8d 14 92 lea (%rdx,%rdx,4),%rdx + 66350d53: 4c 8d 4c d0 28 lea 0x28(%rax,%rdx,8),%r9 + 66350d58: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 66350d5f: 00 + 66350d60: 44 8b 40 0c mov 0xc(%rax),%r8d + 66350d64: 4c 39 c1 cmp %r8,%rcx + 66350d67: 4c 89 c2 mov %r8,%rdx + 66350d6a: 72 08 jb 66350d74 <_IsNonwritableInCurrentImage+0x74> + 66350d6c: 03 50 08 add 0x8(%rax),%edx + 66350d6f: 48 39 d1 cmp %rdx,%rcx + 66350d72: 72 10 jb 66350d84 <_IsNonwritableInCurrentImage+0x84> + 66350d74: 48 83 c0 28 add $0x28,%rax + 66350d78: 4c 39 c8 cmp %r9,%rax + 66350d7b: 75 e3 jne 66350d60 <_IsNonwritableInCurrentImage+0x60> + 66350d7d: 31 c0 xor %eax,%eax + 66350d7f: 48 83 c4 28 add $0x28,%rsp + 66350d83: c3 retq + 66350d84: 8b 40 24 mov 0x24(%rax),%eax + 66350d87: f7 d0 not %eax + 66350d89: c1 e8 1f shr $0x1f,%eax + 66350d8c: 48 83 c4 28 add $0x28,%rsp + 66350d90: c3 retq + 66350d91: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) + 66350d96: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 66350d9d: 00 00 00 -0000000066350e20 <__main>: - 66350e20: 8b 05 fa 61 00 00 mov 0x61fa(%rip),%eax # 66357020 - 66350e26: 85 c0 test %eax,%eax - 66350e28: 74 06 je 66350e30 <__main+0x10> - 66350e2a: c3 retq - 66350e2b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66350e30: c7 05 e6 61 00 00 01 movl $0x1,0x61e6(%rip) # 66357020 - 66350e37: 00 00 00 - 66350e3a: e9 71 ff ff ff jmpq 66350db0 <__do_global_ctors> - 66350e3f: 90 nop +0000000066350da0 <__mingw_enum_import_library_names>: + 66350da0: 48 83 ec 28 sub $0x28,%rsp + 66350da4: 4c 8b 1d 45 25 00 00 mov 0x2545(%rip),%r11 # 663532f0 <.refptr.__image_base__> + 66350dab: 66 41 81 3b 4d 5a cmpw $0x5a4d,(%r11) + 66350db1: 41 89 c9 mov %ecx,%r9d + 66350db4: 75 58 jne 66350e0e <__mingw_enum_import_library_names+0x6e> + 66350db6: 4c 89 d9 mov %r11,%rcx + 66350db9: e8 b2 fc ff ff callq 66350a70 <_ValidateImageBase.part.0> + 66350dbe: 85 c0 test %eax,%eax + 66350dc0: 74 4c je 66350e0e <__mingw_enum_import_library_names+0x6e> + 66350dc2: 49 63 43 3c movslq 0x3c(%r11),%rax + 66350dc6: 4c 01 d8 add %r11,%rax + 66350dc9: 8b 90 90 00 00 00 mov 0x90(%rax),%edx + 66350dcf: 85 d2 test %edx,%edx + 66350dd1: 74 3b je 66350e0e <__mingw_enum_import_library_names+0x6e> + 66350dd3: 0f b7 48 14 movzwl 0x14(%rax),%ecx + 66350dd7: 48 8d 4c 08 18 lea 0x18(%rax,%rcx,1),%rcx + 66350ddc: 0f b7 40 06 movzwl 0x6(%rax),%eax + 66350de0: 85 c0 test %eax,%eax + 66350de2: 74 2a je 66350e0e <__mingw_enum_import_library_names+0x6e> + 66350de4: 83 e8 01 sub $0x1,%eax + 66350de7: 48 8d 04 80 lea (%rax,%rax,4),%rax + 66350deb: 48 8d 44 c1 28 lea 0x28(%rcx,%rax,8),%rax + 66350df0: 44 8b 51 0c mov 0xc(%rcx),%r10d + 66350df4: 4c 39 d2 cmp %r10,%rdx + 66350df7: 4d 89 d0 mov %r10,%r8 + 66350dfa: 72 09 jb 66350e05 <__mingw_enum_import_library_names+0x65> + 66350dfc: 44 03 41 08 add 0x8(%rcx),%r8d + 66350e00: 4c 39 c2 cmp %r8,%rdx + 66350e03: 72 10 jb 66350e15 <__mingw_enum_import_library_names+0x75> + 66350e05: 48 83 c1 28 add $0x28,%rcx + 66350e09: 48 39 c1 cmp %rax,%rcx + 66350e0c: 75 e2 jne 66350df0 <__mingw_enum_import_library_names+0x50> + 66350e0e: 31 c0 xor %eax,%eax + 66350e10: 48 83 c4 28 add $0x28,%rsp + 66350e14: c3 retq + 66350e15: 4c 01 da add %r11,%rdx + 66350e18: 75 0e jne 66350e28 <__mingw_enum_import_library_names+0x88> + 66350e1a: eb f2 jmp 66350e0e <__mingw_enum_import_library_names+0x6e> + 66350e1c: 0f 1f 40 00 nopl 0x0(%rax) + 66350e20: 41 83 e9 01 sub $0x1,%r9d + 66350e24: 48 83 c2 14 add $0x14,%rdx + 66350e28: 8b 4a 04 mov 0x4(%rdx),%ecx + 66350e2b: 85 c9 test %ecx,%ecx + 66350e2d: 75 07 jne 66350e36 <__mingw_enum_import_library_names+0x96> + 66350e2f: 8b 42 0c mov 0xc(%rdx),%eax + 66350e32: 85 c0 test %eax,%eax + 66350e34: 74 d8 je 66350e0e <__mingw_enum_import_library_names+0x6e> + 66350e36: 45 85 c9 test %r9d,%r9d + 66350e39: 7f e5 jg 66350e20 <__mingw_enum_import_library_names+0x80> + 66350e3b: 8b 42 0c mov 0xc(%rdx),%eax + 66350e3e: 4c 01 d8 add %r11,%rax + 66350e41: 48 83 c4 28 add $0x28,%rsp + 66350e45: c3 retq + 66350e46: 90 nop + 66350e47: 90 nop + 66350e48: 90 nop + 66350e49: 90 nop + 66350e4a: 90 nop + 66350e4b: 90 nop + 66350e4c: 90 nop + 66350e4d: 90 nop + 66350e4e: 90 nop + 66350e4f: 90 nop -0000000066350e40 <__security_init_cookie>: - 66350e40: 41 54 push %r12 - 66350e42: 55 push %rbp - 66350e43: 57 push %rdi - 66350e44: 56 push %rsi - 66350e45: 53 push %rbx - 66350e46: 48 83 ec 30 sub $0x30,%rsp - 66350e4a: 48 8b 1d ef 25 00 00 mov 0x25ef(%rip),%rbx # 66353440 <__security_cookie> - 66350e51: 48 b8 32 a2 df 2d 99 movabs $0x2b992ddfa232,%rax - 66350e58: 2b 00 00 - 66350e5b: 48 39 c3 cmp %rax,%rbx - 66350e5e: 48 c7 44 24 20 00 00 movq $0x0,0x20(%rsp) - 66350e65: 00 00 - 66350e67: 74 17 je 66350e80 <__security_init_cookie+0x40> - 66350e69: 48 f7 d3 not %rbx - 66350e6c: 48 89 1d dd 25 00 00 mov %rbx,0x25dd(%rip) # 66353450 <__security_cookie_complement> - 66350e73: 48 83 c4 30 add $0x30,%rsp - 66350e77: 5b pop %rbx - 66350e78: 5e pop %rsi - 66350e79: 5f pop %rdi - 66350e7a: 5d pop %rbp - 66350e7b: 41 5c pop %r12 - 66350e7d: c3 retq - 66350e7e: 66 90 xchg %ax,%ax - 66350e80: 48 8d 4c 24 20 lea 0x20(%rsp),%rcx - 66350e85: ff 15 75 83 00 00 callq *0x8375(%rip) # 66359200 <__imp_GetSystemTimeAsFileTime> - 66350e8b: 48 8b 74 24 20 mov 0x20(%rsp),%rsi - 66350e90: ff 15 4a 83 00 00 callq *0x834a(%rip) # 663591e0 <__imp_GetCurrentProcessId> - 66350e96: 41 89 c4 mov %eax,%r12d - 66350e99: ff 15 49 83 00 00 callq *0x8349(%rip) # 663591e8 <__imp_GetCurrentThreadId> - 66350e9f: 89 c5 mov %eax,%ebp - 66350ea1: ff 15 61 83 00 00 callq *0x8361(%rip) # 66359208 <__imp_GetTickCount> - 66350ea7: 48 8d 4c 24 28 lea 0x28(%rsp),%rcx - 66350eac: 89 c7 mov %eax,%edi - 66350eae: ff 15 6c 83 00 00 callq *0x836c(%rip) # 66359220 <__imp_QueryPerformanceCounter> - 66350eb4: 48 33 74 24 28 xor 0x28(%rsp),%rsi - 66350eb9: 44 89 e0 mov %r12d,%eax - 66350ebc: 48 ba ff ff ff ff ff movabs $0xffffffffffff,%rdx - 66350ec3: ff 00 00 - 66350ec6: 48 31 f0 xor %rsi,%rax - 66350ec9: 89 ee mov %ebp,%esi - 66350ecb: 48 31 c6 xor %rax,%rsi - 66350ece: 89 f8 mov %edi,%eax - 66350ed0: 48 31 f0 xor %rsi,%rax - 66350ed3: 48 21 d0 and %rdx,%rax - 66350ed6: 48 39 d8 cmp %rbx,%rax - 66350ed9: 74 25 je 66350f00 <__security_init_cookie+0xc0> - 66350edb: 48 89 c2 mov %rax,%rdx - 66350ede: 48 f7 d2 not %rdx - 66350ee1: 48 89 05 58 25 00 00 mov %rax,0x2558(%rip) # 66353440 <__security_cookie> - 66350ee8: 48 89 15 61 25 00 00 mov %rdx,0x2561(%rip) # 66353450 <__security_cookie_complement> - 66350eef: 48 83 c4 30 add $0x30,%rsp - 66350ef3: 5b pop %rbx - 66350ef4: 5e pop %rsi - 66350ef5: 5f pop %rdi - 66350ef6: 5d pop %rbp - 66350ef7: 41 5c pop %r12 - 66350ef9: c3 retq - 66350efa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66350f00: 48 ba cc 5d 20 d2 66 movabs $0xffffd466d2205dcc,%rdx - 66350f07: d4 ff ff - 66350f0a: 48 b8 33 a2 df 2d 99 movabs $0x2b992ddfa233,%rax - 66350f11: 2b 00 00 - 66350f14: eb cb jmp 66350ee1 <__security_init_cookie+0xa1> - 66350f16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66350f1d: 00 00 00 +0000000066350e50 <_fpreset>: + 66350e50: db e3 fninit + 66350e52: c3 retq + 66350e53: 90 nop + 66350e54: 90 nop + 66350e55: 90 nop + 66350e56: 90 nop + 66350e57: 90 nop + 66350e58: 90 nop + 66350e59: 90 nop + 66350e5a: 90 nop + 66350e5b: 90 nop + 66350e5c: 90 nop + 66350e5d: 90 nop + 66350e5e: 90 nop + 66350e5f: 90 nop -0000000066350f20 <__report_gsfailure>: - 66350f20: 55 push %rbp - 66350f21: 56 push %rsi - 66350f22: 53 push %rbx - 66350f23: 48 89 e5 mov %rsp,%rbp - 66350f26: 48 83 ec 70 sub $0x70,%rsp - 66350f2a: 48 89 ce mov %rcx,%rsi - 66350f2d: 48 8d 0d 0c 61 00 00 lea 0x610c(%rip),%rcx # 66357040 - 66350f34: ff 15 f6 82 00 00 callq *0x82f6(%rip) # 66359230 <__imp_RtlCaptureContext> - 66350f3a: 48 8b 1d f7 61 00 00 mov 0x61f7(%rip),%rbx # 66357138 - 66350f41: 48 8d 55 d8 lea -0x28(%rbp),%rdx - 66350f45: 45 31 c0 xor %r8d,%r8d - 66350f48: 48 89 d9 mov %rbx,%rcx - 66350f4b: ff 15 e7 82 00 00 callq *0x82e7(%rip) # 66359238 <__imp_RtlLookupFunctionEntry> - 66350f51: 48 85 c0 test %rax,%rax - 66350f54: 0f 84 a3 00 00 00 je 66350ffd <__report_gsfailure+0xdd> - 66350f5a: 48 8d 55 e0 lea -0x20(%rbp),%rdx - 66350f5e: 49 89 c1 mov %rax,%r9 - 66350f61: 49 89 d8 mov %rbx,%r8 - 66350f64: 48 c7 44 24 38 00 00 movq $0x0,0x38(%rsp) - 66350f6b: 00 00 - 66350f6d: 48 8d 0d cc 60 00 00 lea 0x60cc(%rip),%rcx # 66357040 - 66350f74: 48 89 54 24 30 mov %rdx,0x30(%rsp) - 66350f79: 48 8d 55 e8 lea -0x18(%rbp),%rdx - 66350f7d: 48 89 4c 24 20 mov %rcx,0x20(%rsp) - 66350f82: 31 c9 xor %ecx,%ecx - 66350f84: 48 89 54 24 28 mov %rdx,0x28(%rsp) - 66350f89: 48 8b 55 d8 mov -0x28(%rbp),%rdx - 66350f8d: ff 15 ad 82 00 00 callq *0x82ad(%rip) # 66359240 <__imp_RtlVirtualUnwind> - 66350f93: 48 8b 05 9e 61 00 00 mov 0x619e(%rip),%rax # 66357138 - 66350f9a: 31 c9 xor %ecx,%ecx - 66350f9c: 48 89 35 1d 61 00 00 mov %rsi,0x611d(%rip) # 663570c0 - 66350fa3: 48 89 05 86 65 00 00 mov %rax,0x6586(%rip) # 66357530 - 66350faa: 48 b8 09 04 00 c0 01 movabs $0x1c0000409,%rax - 66350fb1: 00 00 00 - 66350fb4: 48 89 05 65 65 00 00 mov %rax,0x6565(%rip) # 66357520 - 66350fbb: 48 8b 05 7e 24 00 00 mov 0x247e(%rip),%rax # 66353440 <__security_cookie> - 66350fc2: 48 89 45 f0 mov %rax,-0x10(%rbp) - 66350fc6: 48 8b 05 83 24 00 00 mov 0x2483(%rip),%rax # 66353450 <__security_cookie_complement> - 66350fcd: 48 89 45 f8 mov %rax,-0x8(%rbp) - 66350fd1: ff 15 71 82 00 00 callq *0x8271(%rip) # 66359248 <__imp_SetUnhandledExceptionFilter> - 66350fd7: 48 8d 0d 52 30 00 00 lea 0x3052(%rip),%rcx # 66354030 - 66350fde: ff 15 84 82 00 00 callq *0x8284(%rip) # 66359268 <__imp_UnhandledExceptionFilter> - 66350fe4: ff 15 ee 81 00 00 callq *0x81ee(%rip) # 663591d8 <__imp_GetCurrentProcess> - 66350fea: ba 09 04 00 c0 mov $0xc0000409,%edx - 66350fef: 48 89 c1 mov %rax,%rcx - 66350ff2: ff 15 60 82 00 00 callq *0x8260(%rip) # 66359258 <__imp_TerminateProcess> - 66350ff8: e8 4b 13 00 00 callq 66352348 - 66350ffd: 48 8b 45 18 mov 0x18(%rbp),%rax - 66351001: 48 89 05 30 61 00 00 mov %rax,0x6130(%rip) # 66357138 - 66351008: 48 8d 45 08 lea 0x8(%rbp),%rax - 6635100c: 48 89 05 c5 60 00 00 mov %rax,0x60c5(%rip) # 663570d8 - 66351013: e9 7b ff ff ff jmpq 66350f93 <__report_gsfailure+0x73> - 66351018: 90 nop - 66351019: 90 nop - 6635101a: 90 nop - 6635101b: 90 nop - 6635101c: 90 nop - 6635101d: 90 nop - 6635101e: 90 nop - 6635101f: 90 nop +0000000066350e60 <___chkstk_ms>: + 66350e60: 51 push %rcx + 66350e61: 50 push %rax + 66350e62: 48 3d 00 10 00 00 cmp $0x1000,%rax + 66350e68: 48 8d 4c 24 18 lea 0x18(%rsp),%rcx + 66350e6d: 72 19 jb 66350e88 <___chkstk_ms+0x28> + 66350e6f: 48 81 e9 00 10 00 00 sub $0x1000,%rcx + 66350e76: 48 83 09 00 orq $0x0,(%rcx) + 66350e7a: 48 2d 00 10 00 00 sub $0x1000,%rax + 66350e80: 48 3d 00 10 00 00 cmp $0x1000,%rax + 66350e86: 77 e7 ja 66350e6f <___chkstk_ms+0xf> + 66350e88: 48 29 c1 sub %rax,%rcx + 66350e8b: 48 83 09 00 orq $0x0,(%rcx) + 66350e8f: 58 pop %rax + 66350e90: 59 pop %rcx + 66350e91: c3 retq + 66350e92: 90 nop + 66350e93: 90 nop + 66350e94: 90 nop + 66350e95: 90 nop + 66350e96: 90 nop + 66350e97: 90 nop + 66350e98: 90 nop + 66350e99: 90 nop + 66350e9a: 90 nop + 66350e9b: 90 nop + 66350e9c: 90 nop + 66350e9d: 90 nop + 66350e9e: 90 nop + 66350e9f: 90 nop -0000000066351020 <__dyn_tls_dtor>: - 66351020: 48 83 ec 28 sub $0x28,%rsp - 66351024: 83 fa 03 cmp $0x3,%edx - 66351027: 74 17 je 66351040 <__dyn_tls_dtor+0x20> - 66351029: 85 d2 test %edx,%edx - 6635102b: 74 13 je 66351040 <__dyn_tls_dtor+0x20> - 6635102d: b8 01 00 00 00 mov $0x1,%eax - 66351032: 48 83 c4 28 add $0x28,%rsp - 66351036: c3 retq - 66351037: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6635103e: 00 00 - 66351040: e8 5b 0b 00 00 callq 66351ba0 <__mingw_TLScallback> - 66351045: b8 01 00 00 00 mov $0x1,%eax - 6635104a: 48 83 c4 28 add $0x28,%rsp - 6635104e: c3 retq - 6635104f: 90 nop +0000000066350ea0 : + 66350ea0: b8 01 00 00 00 mov $0x1,%eax + 66350ea5: c3 retq + 66350ea6: 90 nop + 66350ea7: 90 nop + 66350ea8: 90 nop + 66350ea9: 90 nop + 66350eaa: 90 nop + 66350eab: 90 nop + 66350eac: 90 nop + 66350ead: 90 nop + 66350eae: 90 nop + 66350eaf: 90 nop -0000000066351050 <__dyn_tls_init>: - 66351050: 56 push %rsi - 66351051: 53 push %rbx - 66351052: 48 83 ec 28 sub $0x28,%rsp - 66351056: 48 8b 05 43 32 00 00 mov 0x3243(%rip),%rax # 663542a0 <.refptr._CRT_MT> - 6635105d: 83 38 02 cmpl $0x2,(%rax) - 66351060: 74 06 je 66351068 <__dyn_tls_init+0x18> - 66351062: c7 00 02 00 00 00 movl $0x2,(%rax) - 66351068: 83 fa 02 cmp $0x2,%edx - 6635106b: 74 13 je 66351080 <__dyn_tls_init+0x30> - 6635106d: 83 fa 01 cmp $0x1,%edx - 66351070: 74 40 je 663510b2 <__dyn_tls_init+0x62> - 66351072: b8 01 00 00 00 mov $0x1,%eax - 66351077: 48 83 c4 28 add $0x28,%rsp - 6635107b: 5b pop %rbx - 6635107c: 5e pop %rsi - 6635107d: c3 retq - 6635107e: 66 90 xchg %ax,%ax - 66351080: 48 8d 1d c9 8f 00 00 lea 0x8fc9(%rip),%rbx # 6635a050 <__xd_z> - 66351087: 48 8d 35 c2 8f 00 00 lea 0x8fc2(%rip),%rsi # 6635a050 <__xd_z> - 6635108e: 48 39 de cmp %rbx,%rsi - 66351091: 74 df je 66351072 <__dyn_tls_init+0x22> - 66351093: 48 8b 03 mov (%rbx),%rax - 66351096: 48 85 c0 test %rax,%rax - 66351099: 74 02 je 6635109d <__dyn_tls_init+0x4d> - 6635109b: ff d0 callq *%rax - 6635109d: 48 83 c3 08 add $0x8,%rbx - 663510a1: 48 39 de cmp %rbx,%rsi - 663510a4: 75 ed jne 66351093 <__dyn_tls_init+0x43> - 663510a6: b8 01 00 00 00 mov $0x1,%eax - 663510ab: 48 83 c4 28 add $0x28,%rsp - 663510af: 5b pop %rbx - 663510b0: 5e pop %rsi - 663510b1: c3 retq - 663510b2: e8 e9 0a 00 00 callq 66351ba0 <__mingw_TLScallback> - 663510b7: b8 01 00 00 00 mov $0x1,%eax - 663510bc: 48 83 c4 28 add $0x28,%rsp - 663510c0: 5b pop %rbx - 663510c1: 5e pop %rsi - 663510c2: c3 retq - 663510c3: 0f 1f 00 nopl (%rax) - 663510c6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663510cd: 00 00 00 +0000000066350eb0 : + 66350eb0: b8 01 00 00 00 mov $0x1,%eax + 66350eb5: c3 retq + 66350eb6: 90 nop + 66350eb7: 90 nop + 66350eb8: 90 nop + 66350eb9: 90 nop + 66350eba: 90 nop + 66350ebb: 90 nop + 66350ebc: 90 nop + 66350ebd: 90 nop + 66350ebe: 90 nop + 66350ebf: 90 nop -00000000663510d0 <__tlregdtor>: - 663510d0: 31 c0 xor %eax,%eax - 663510d2: c3 retq - 663510d3: 90 nop - 663510d4: 90 nop +0000000066350ec0 <_wassert>: + 66350ec0: 41 54 push %r12 + 66350ec2: 55 push %rbp + 66350ec3: 57 push %rdi + 66350ec4: 56 push %rsi + 66350ec5: 53 push %rbx + 66350ec6: 48 81 ec 50 02 00 00 sub $0x250,%rsp + 66350ecd: 48 89 d3 mov %rdx,%rbx + 66350ed0: 48 89 ce mov %rcx,%rsi + 66350ed3: b9 00 40 00 00 mov $0x4000,%ecx + 66350ed8: 45 89 c4 mov %r8d,%r12d + 66350edb: e8 30 02 00 00 callq 66351110 + 66350ee0: 48 85 db test %rbx,%rbx + 66350ee3: 48 89 c5 mov %rax,%rbp + 66350ee6: 0f 84 c4 00 00 00 je 66350fb0 <_wassert+0xf0> + 66350eec: 66 83 3b 00 cmpw $0x0,(%rbx) + 66350ef0: 48 8d 05 c9 22 00 00 lea 0x22c9(%rip),%rax # 663531c0 <.rdata> + 66350ef7: 48 0f 44 d8 cmove %rax,%rbx + 66350efb: 48 85 f6 test %rsi,%rsi + 66350efe: 0f 84 9d 00 00 00 je 66350fa1 <_wassert+0xe1> + 66350f04: 66 83 3e 00 cmpw $0x0,(%rsi) + 66350f08: 48 8d 05 c5 22 00 00 lea 0x22c5(%rip),%rax # 663531d4 <.rdata+0x14> + 66350f0f: 48 0f 44 f0 cmove %rax,%rsi + 66350f13: 31 c9 xor %ecx,%ecx + 66350f15: 41 b8 04 01 00 00 mov $0x104,%r8d + 66350f1b: 48 8d 7c 24 40 lea 0x40(%rsp),%rdi + 66350f20: 48 89 fa mov %rdi,%rdx + 66350f23: ff 15 cf 72 00 00 callq *0x72cf(%rip) # 663581f8 <__imp_GetModuleFileNameW> + 66350f29: 85 c0 test %eax,%eax + 66350f2b: 74 63 je 66350f90 <_wassert+0xd0> + 66350f2d: 48 89 74 24 30 mov %rsi,0x30(%rsp) + 66350f32: 49 89 f9 mov %rdi,%r9 + 66350f35: ba ff 1f 00 00 mov $0x1fff,%edx + 66350f3a: 48 89 e9 mov %rbp,%rcx + 66350f3d: 44 89 64 24 28 mov %r12d,0x28(%rsp) + 66350f42: 4c 8d 05 8f 22 00 00 lea 0x228f(%rip),%r8 # 663531d8 <.rdata+0x18> + 66350f49: 48 89 5c 24 20 mov %rbx,0x20(%rsp) + 66350f4e: e8 ed 01 00 00 callq 66351140 <_snwprintf> + 66350f53: 48 8b 05 16 24 00 00 mov 0x2416(%rip),%rax # 66353370 <.refptr.mingw_app_type> + 66350f5a: 8b 00 mov (%rax),%eax + 66350f5c: 85 c0 test %eax,%eax + 66350f5e: 74 75 je 66350fd5 <_wassert+0x115> + 66350f60: 31 c9 xor %ecx,%ecx + 66350f62: 41 b9 12 20 01 00 mov $0x12012,%r9d + 66350f68: 48 89 ea mov %rbp,%rdx + 66350f6b: 4c 8d 05 fe 22 00 00 lea 0x22fe(%rip),%r8 # 66353270 <.rdata+0xb0> + 66350f72: ff 15 b8 73 00 00 callq *0x73b8(%rip) # 66358330 <__imp_MessageBoxW> + 66350f78: 83 f8 03 cmp $0x3,%eax + 66350f7b: 74 44 je 66350fc1 <_wassert+0x101> + 66350f7d: 83 f8 05 cmp $0x5,%eax + 66350f80: 75 3a jne 66350fbc <_wassert+0xfc> + 66350f82: 48 81 c4 50 02 00 00 add $0x250,%rsp + 66350f89: 5b pop %rbx + 66350f8a: 5e pop %rsi + 66350f8b: 5f pop %rdi + 66350f8c: 5d pop %rbp + 66350f8d: 41 5c pop %r12 + 66350f8f: c3 retq + 66350f90: 48 8d 15 29 22 00 00 lea 0x2229(%rip),%rdx # 663531c0 <.rdata> + 66350f97: 48 89 f9 mov %rdi,%rcx + 66350f9a: e8 41 01 00 00 callq 663510e0 + 66350f9f: eb 8c jmp 66350f2d <_wassert+0x6d> + 66350fa1: 48 8d 35 2c 22 00 00 lea 0x222c(%rip),%rsi # 663531d4 <.rdata+0x14> + 66350fa8: e9 66 ff ff ff jmpq 66350f13 <_wassert+0x53> + 66350fad: 0f 1f 00 nopl (%rax) + 66350fb0: 48 8d 1d 09 22 00 00 lea 0x2209(%rip),%rbx # 663531c0 <.rdata> + 66350fb7: e9 3f ff ff ff jmpq 66350efb <_wassert+0x3b> + 66350fbc: e8 77 01 00 00 callq 66351138 + 66350fc1: b9 16 00 00 00 mov $0x16,%ecx + 66350fc6: e8 3d 01 00 00 callq 66351108 + 66350fcb: b9 03 00 00 00 mov $0x3,%ecx + 66350fd0: e8 7b 01 00 00 callq 66351150 <_exit> + 66350fd5: b9 02 00 00 00 mov $0x2,%ecx + 66350fda: e8 f1 02 00 00 callq 663512d0 <__acrt_iob_func> + 66350fdf: 48 8d 15 7a 22 00 00 lea 0x227a(%rip),%rdx # 66353260 <.rdata+0xa0> + 66350fe6: 49 89 e8 mov %rbp,%r8 + 66350fe9: 48 89 c1 mov %rax,%rcx + 66350fec: e8 2f 01 00 00 callq 66351120 + 66350ff1: e8 42 01 00 00 callq 66351138 + 66350ff6: 90 nop + 66350ff7: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) + 66350ffe: 00 00 + +0000000066351000 <_assert>: + 66351000: 55 push %rbp + 66351001: 57 push %rdi + 66351002: 56 push %rsi + 66351003: 53 push %rbx + 66351004: 48 83 ec 38 sub $0x38,%rsp + 66351008: 48 89 d7 mov %rdx,%rdi + 6635100b: 44 89 44 24 2c mov %r8d,0x2c(%rsp) + 66351010: 48 89 cd mov %rcx,%rbp + 66351013: e8 e0 00 00 00 callq 663510f8 + 66351018: 48 8d 4c 00 02 lea 0x2(%rax,%rax,1),%rcx + 6635101d: e8 ee 00 00 00 callq 66351110 + 66351022: 48 89 f9 mov %rdi,%rcx + 66351025: 48 89 c6 mov %rax,%rsi + 66351028: e8 cb 00 00 00 callq 663510f8 + 6635102d: 48 8d 4c 00 02 lea 0x2(%rax,%rax,1),%rcx + 66351032: e8 d9 00 00 00 callq 66351110 + 66351037: 0f b6 4d 00 movzbl 0x0(%rbp),%ecx + 6635103b: 48 89 c3 mov %rax,%rbx + 6635103e: 44 8b 44 24 2c mov 0x2c(%rsp),%r8d + 66351043: 84 c9 test %cl,%cl + 66351045: 74 79 je 663510c0 <_assert+0xc0> + 66351047: 45 31 c9 xor %r9d,%r9d + 6635104a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) + 66351050: 66 42 89 0c 4e mov %cx,(%rsi,%r9,2) + 66351055: 49 83 c1 01 add $0x1,%r9 + 66351059: 42 0f b6 4c 0d 00 movzbl 0x0(%rbp,%r9,1),%ecx + 6635105f: 84 c9 test %cl,%cl + 66351061: 75 ed jne 66351050 <_assert+0x50> + 66351063: 4a 8d 04 4e lea (%rsi,%r9,2),%rax + 66351067: 31 c9 xor %ecx,%ecx + 66351069: 66 89 08 mov %cx,(%rax) + 6635106c: 0f b6 0f movzbl (%rdi),%ecx + 6635106f: 84 c9 test %cl,%cl + 66351071: 74 5d je 663510d0 <_assert+0xd0> + 66351073: 45 31 c9 xor %r9d,%r9d + 66351076: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6635107d: 00 00 00 + 66351080: 66 42 89 0c 4b mov %cx,(%rbx,%r9,2) + 66351085: 49 83 c1 01 add $0x1,%r9 + 66351089: 42 0f b6 0c 0f movzbl (%rdi,%r9,1),%ecx + 6635108e: 84 c9 test %cl,%cl + 66351090: 75 ee jne 66351080 <_assert+0x80> + 66351092: 4a 8d 04 4b lea (%rbx,%r9,2),%rax + 66351096: 31 d2 xor %edx,%edx + 66351098: 48 89 f1 mov %rsi,%rcx + 6635109b: 66 89 10 mov %dx,(%rax) + 6635109e: 48 89 da mov %rbx,%rdx + 663510a1: e8 1a fe ff ff callq 66350ec0 <_wassert> + 663510a6: 48 89 f1 mov %rsi,%rcx + 663510a9: e8 7a 00 00 00 callq 66351128 + 663510ae: 48 89 d9 mov %rbx,%rcx + 663510b1: 48 83 c4 38 add $0x38,%rsp + 663510b5: 5b pop %rbx + 663510b6: 5e pop %rsi + 663510b7: 5f pop %rdi + 663510b8: 5d pop %rbp + 663510b9: e9 6a 00 00 00 jmpq 66351128 + 663510be: 66 90 xchg %ax,%ax + 663510c0: 31 c9 xor %ecx,%ecx + 663510c2: 48 89 f0 mov %rsi,%rax + 663510c5: 66 89 08 mov %cx,(%rax) + 663510c8: 0f b6 0f movzbl (%rdi),%ecx + 663510cb: 84 c9 test %cl,%cl + 663510cd: 75 a4 jne 66351073 <_assert+0x73> + 663510cf: 90 nop + 663510d0: 48 89 d8 mov %rbx,%rax + 663510d3: eb c1 jmp 66351096 <_assert+0x96> 663510d5: 90 nop 663510d6: 90 nop 663510d7: 90 nop @@ -19157,1882 +19540,458 @@ Disassembly of section .text: 663510de: 90 nop 663510df: 90 nop -00000000663510e0 <_decode_pointer>: - 663510e0: 48 89 c8 mov %rcx,%rax - 663510e3: c3 retq - 663510e4: 66 90 xchg %ax,%ax - 663510e6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 663510ed: 00 00 00 +00000000663510e0 : + 663510e0: ff 25 3a 72 00 00 jmpq *0x723a(%rip) # 66358320 <__imp_wcscpy> + 663510e6: 90 nop + 663510e7: 90 nop -00000000663510f0 <_encode_pointer>: - 663510f0: 48 89 c8 mov %rcx,%rax - 663510f3: c3 retq - 663510f4: 90 nop - 663510f5: 90 nop +00000000663510e8 : + 663510e8: ff 25 2a 72 00 00 jmpq *0x722a(%rip) # 66358318 <__imp_vfprintf> + 663510ee: 90 nop + 663510ef: 90 nop + +00000000663510f0 : + 663510f0: ff 25 1a 72 00 00 jmpq *0x721a(%rip) # 66358310 <__imp_strncmp> 663510f6: 90 nop 663510f7: 90 nop - 663510f8: 90 nop - 663510f9: 90 nop - 663510fa: 90 nop - 663510fb: 90 nop - 663510fc: 90 nop - 663510fd: 90 nop + +00000000663510f8 : + 663510f8: ff 25 0a 72 00 00 jmpq *0x720a(%rip) # 66358308 <__imp_strlen> 663510fe: 90 nop 663510ff: 90 nop -0000000066351100 <__write_memory.part.0>: - 66351100: 41 54 push %r12 - 66351102: 55 push %rbp - 66351103: 57 push %rdi - 66351104: 56 push %rsi - 66351105: 53 push %rbx - 66351106: 48 83 ec 50 sub $0x50,%rsp - 6635110a: 48 63 35 d3 64 00 00 movslq 0x64d3(%rip),%rsi # 663575e4 - 66351111: 85 f6 test %esi,%esi - 66351113: 48 89 cb mov %rcx,%rbx - 66351116: 48 89 d5 mov %rdx,%rbp - 66351119: 4c 89 c7 mov %r8,%rdi - 6635111c: 0f 8e 66 01 00 00 jle 66351288 <__write_memory.part.0+0x188> - 66351122: 48 8b 05 bf 64 00 00 mov 0x64bf(%rip),%rax # 663575e8 - 66351129: 31 c9 xor %ecx,%ecx - 6635112b: 48 83 c0 18 add $0x18,%rax +0000000066351100 : + 66351100: ff 25 fa 71 00 00 jmpq *0x71fa(%rip) # 66358300 <__imp_signal> + 66351106: 90 nop + 66351107: 90 nop + +0000000066351108 : + 66351108: ff 25 e2 71 00 00 jmpq *0x71e2(%rip) # 663582f0 <__imp_raise> + 6635110e: 90 nop + 6635110f: 90 nop + +0000000066351110 : + 66351110: ff 25 d2 71 00 00 jmpq *0x71d2(%rip) # 663582e8 <__imp_malloc> + 66351116: 90 nop + 66351117: 90 nop + +0000000066351118 : + 66351118: ff 25 c2 71 00 00 jmpq *0x71c2(%rip) # 663582e0 <__imp_fwrite> + 6635111e: 90 nop + 6635111f: 90 nop + +0000000066351120 : + 66351120: ff 25 b2 71 00 00 jmpq *0x71b2(%rip) # 663582d8 <__imp_fwprintf> + 66351126: 90 nop + 66351127: 90 nop + +0000000066351128 : + 66351128: ff 25 a2 71 00 00 jmpq *0x71a2(%rip) # 663582d0 <__imp_free> + 6635112e: 90 nop 6635112f: 90 nop - 66351130: 48 8b 10 mov (%rax),%rdx - 66351133: 48 39 d3 cmp %rdx,%rbx - 66351136: 72 14 jb 6635114c <__write_memory.part.0+0x4c> - 66351138: 4c 8b 40 08 mov 0x8(%rax),%r8 - 6635113c: 45 8b 40 08 mov 0x8(%r8),%r8d - 66351140: 4c 01 c2 add %r8,%rdx - 66351143: 48 39 d3 cmp %rdx,%rbx - 66351146: 0f 82 89 00 00 00 jb 663511d5 <__write_memory.part.0+0xd5> - 6635114c: 83 c1 01 add $0x1,%ecx - 6635114f: 48 83 c0 28 add $0x28,%rax - 66351153: 39 f1 cmp %esi,%ecx - 66351155: 75 d9 jne 66351130 <__write_memory.part.0+0x30> - 66351157: 48 89 d9 mov %rbx,%rcx - 6635115a: e8 41 0c 00 00 callq 66351da0 <__mingw_GetSectionForAddress> - 6635115f: 48 85 c0 test %rax,%rax - 66351162: 49 89 c4 mov %rax,%r12 - 66351165: 0f 84 52 01 00 00 je 663512bd <__write_memory.part.0+0x1bd> - 6635116b: 48 8b 05 76 64 00 00 mov 0x6476(%rip),%rax # 663575e8 - 66351172: 48 8d 34 b6 lea (%rsi,%rsi,4),%rsi - 66351176: 48 c1 e6 03 shl $0x3,%rsi - 6635117a: 48 01 f0 add %rsi,%rax - 6635117d: 4c 89 60 20 mov %r12,0x20(%rax) - 66351181: c7 00 00 00 00 00 movl $0x0,(%rax) - 66351187: e8 44 0d 00 00 callq 66351ed0 <_GetPEImageBase> - 6635118c: 41 8b 4c 24 0c mov 0xc(%r12),%ecx - 66351191: 48 8d 54 24 20 lea 0x20(%rsp),%rdx - 66351196: 41 b8 30 00 00 00 mov $0x30,%r8d - 6635119c: 48 01 c1 add %rax,%rcx - 6635119f: 48 8b 05 42 64 00 00 mov 0x6442(%rip),%rax # 663575e8 - 663511a6: 48 89 4c 30 18 mov %rcx,0x18(%rax,%rsi,1) - 663511ab: ff 15 c7 80 00 00 callq *0x80c7(%rip) # 66359278 <__imp_VirtualQuery> - 663511b1: 48 85 c0 test %rax,%rax - 663511b4: 0f 84 e6 00 00 00 je 663512a0 <__write_memory.part.0+0x1a0> - 663511ba: 8b 44 24 44 mov 0x44(%rsp),%eax - 663511be: 8d 50 fc lea -0x4(%rax),%edx - 663511c1: 83 e2 fb and $0xfffffffb,%edx - 663511c4: 74 08 je 663511ce <__write_memory.part.0+0xce> - 663511c6: 83 e8 40 sub $0x40,%eax - 663511c9: 83 e0 bf and $0xffffffbf,%eax - 663511cc: 75 62 jne 66351230 <__write_memory.part.0+0x130> - 663511ce: 83 05 0f 64 00 00 01 addl $0x1,0x640f(%rip) # 663575e4 - 663511d5: 83 ff 08 cmp $0x8,%edi - 663511d8: 73 29 jae 66351203 <__write_memory.part.0+0x103> - 663511da: 40 f6 c7 04 test $0x4,%dil - 663511de: 0f 85 90 00 00 00 jne 66351274 <__write_memory.part.0+0x174> - 663511e4: 85 ff test %edi,%edi - 663511e6: 74 10 je 663511f8 <__write_memory.part.0+0xf8> - 663511e8: 0f b6 45 00 movzbl 0x0(%rbp),%eax - 663511ec: 40 f6 c7 02 test $0x2,%dil - 663511f0: 88 03 mov %al,(%rbx) - 663511f2: 0f 85 97 00 00 00 jne 6635128f <__write_memory.part.0+0x18f> - 663511f8: 48 83 c4 50 add $0x50,%rsp - 663511fc: 5b pop %rbx - 663511fd: 5e pop %rsi - 663511fe: 5f pop %rdi - 663511ff: 5d pop %rbp - 66351200: 41 5c pop %r12 - 66351202: c3 retq - 66351203: 89 f8 mov %edi,%eax - 66351205: 83 ef 01 sub $0x1,%edi - 66351208: 48 8b 54 05 f8 mov -0x8(%rbp,%rax,1),%rdx - 6635120d: 83 ff 08 cmp $0x8,%edi - 66351210: 48 89 54 03 f8 mov %rdx,-0x8(%rbx,%rax,1) - 66351215: 72 e1 jb 663511f8 <__write_memory.part.0+0xf8> - 66351217: 83 e7 f8 and $0xfffffff8,%edi - 6635121a: 31 c0 xor %eax,%eax - 6635121c: 89 c2 mov %eax,%edx - 6635121e: 83 c0 08 add $0x8,%eax - 66351221: 48 8b 4c 15 00 mov 0x0(%rbp,%rdx,1),%rcx - 66351226: 39 f8 cmp %edi,%eax - 66351228: 48 89 0c 13 mov %rcx,(%rbx,%rdx,1) - 6635122c: 72 ee jb 6635121c <__write_memory.part.0+0x11c> - 6635122e: eb c8 jmp 663511f8 <__write_memory.part.0+0xf8> - 66351230: 48 03 35 b1 63 00 00 add 0x63b1(%rip),%rsi # 663575e8 - 66351237: 41 b8 40 00 00 00 mov $0x40,%r8d - 6635123d: 48 8b 4c 24 20 mov 0x20(%rsp),%rcx - 66351242: 48 8b 54 24 38 mov 0x38(%rsp),%rdx - 66351247: 49 89 f1 mov %rsi,%r9 - 6635124a: 48 89 4e 08 mov %rcx,0x8(%rsi) - 6635124e: 48 89 56 10 mov %rdx,0x10(%rsi) - 66351252: ff 15 18 80 00 00 callq *0x8018(%rip) # 66359270 <__imp_VirtualProtect> - 66351258: 85 c0 test %eax,%eax - 6635125a: 0f 85 6e ff ff ff jne 663511ce <__write_memory.part.0+0xce> - 66351260: ff 15 8a 7f 00 00 callq *0x7f8a(%rip) # 663591f0 <__imp_GetLastError> - 66351266: 48 8d 0d ab 2e 00 00 lea 0x2eab(%rip),%rcx # 66354118 <.rdata+0x78> - 6635126d: 89 c2 mov %eax,%edx - 6635126f: e8 7c 13 00 00 callq 663525f0 <__report_error> - 66351274: 8b 45 00 mov 0x0(%rbp),%eax - 66351277: 89 ff mov %edi,%edi - 66351279: 89 03 mov %eax,(%rbx) - 6635127b: 8b 44 3d fc mov -0x4(%rbp,%rdi,1),%eax - 6635127f: 89 44 3b fc mov %eax,-0x4(%rbx,%rdi,1) - 66351283: e9 70 ff ff ff jmpq 663511f8 <__write_memory.part.0+0xf8> - 66351288: 31 f6 xor %esi,%esi - 6635128a: e9 c8 fe ff ff jmpq 66351157 <__write_memory.part.0+0x57> - 6635128f: 89 ff mov %edi,%edi - 66351291: 0f b7 44 3d fe movzwl -0x2(%rbp,%rdi,1),%eax - 66351296: 66 89 44 3b fe mov %ax,-0x2(%rbx,%rdi,1) - 6635129b: e9 58 ff ff ff jmpq 663511f8 <__write_memory.part.0+0xf8> - 663512a0: 48 8b 05 41 63 00 00 mov 0x6341(%rip),%rax # 663575e8 - 663512a7: 48 8d 0d 32 2e 00 00 lea 0x2e32(%rip),%rcx # 663540e0 <.rdata+0x40> - 663512ae: 41 8b 54 24 08 mov 0x8(%r12),%edx - 663512b3: 4c 8b 44 30 18 mov 0x18(%rax,%rsi,1),%r8 - 663512b8: e8 33 13 00 00 callq 663525f0 <__report_error> - 663512bd: 48 8d 0d fc 2d 00 00 lea 0x2dfc(%rip),%rcx # 663540c0 <.rdata+0x20> - 663512c4: 48 89 da mov %rbx,%rdx - 663512c7: e8 24 13 00 00 callq 663525f0 <__report_error> - 663512cc: 90 nop - 663512cd: 0f 1f 00 nopl (%rax) -00000000663512d0 <_pei386_runtime_relocator>: - 663512d0: 55 push %rbp - 663512d1: 41 57 push %r15 - 663512d3: 41 56 push %r14 - 663512d5: 41 55 push %r13 - 663512d7: 41 54 push %r12 - 663512d9: 57 push %rdi - 663512da: 56 push %rsi - 663512db: 53 push %rbx - 663512dc: 48 83 ec 38 sub $0x38,%rsp - 663512e0: 48 8d ac 24 80 00 00 lea 0x80(%rsp),%rbp - 663512e7: 00 - 663512e8: 8b 1d f2 62 00 00 mov 0x62f2(%rip),%ebx # 663575e0 - 663512ee: 85 db test %ebx,%ebx - 663512f0: 74 11 je 66351303 <_pei386_runtime_relocator+0x33> - 663512f2: 48 8d 65 b8 lea -0x48(%rbp),%rsp - 663512f6: 5b pop %rbx - 663512f7: 5e pop %rsi - 663512f8: 5f pop %rdi - 663512f9: 41 5c pop %r12 - 663512fb: 41 5d pop %r13 - 663512fd: 41 5e pop %r14 - 663512ff: 41 5f pop %r15 - 66351301: 5d pop %rbp - 66351302: c3 retq - 66351303: c7 05 d3 62 00 00 01 movl $0x1,0x62d3(%rip) # 663575e0 - 6635130a: 00 00 00 - 6635130d: e8 0e 0b 00 00 callq 66351e20 <__mingw_GetSectionCount> - 66351312: 48 98 cltq - 66351314: 48 8d 04 80 lea (%rax,%rax,4),%rax - 66351318: 48 8d 04 c5 1e 00 00 lea 0x1e(,%rax,8),%rax +0000000066351130 : + 66351130: ff 25 92 71 00 00 jmpq *0x7192(%rip) # 663582c8 <__imp_calloc> + 66351136: 90 nop + 66351137: 90 nop + +0000000066351138 : + 66351138: ff 25 82 71 00 00 jmpq *0x7182(%rip) # 663582c0 <__imp_abort> + 6635113e: 90 nop + 6635113f: 90 nop + +0000000066351140 <_snwprintf>: + 66351140: ff 25 6a 71 00 00 jmpq *0x716a(%rip) # 663582b0 <__imp__snwprintf> + 66351146: 90 nop + 66351147: 90 nop + +0000000066351148 <_initterm>: + 66351148: ff 25 52 71 00 00 jmpq *0x7152(%rip) # 663582a0 <__imp__initterm> + 6635114e: 90 nop + 6635114f: 90 nop + +0000000066351150 <_exit>: + 66351150: ff 25 42 71 00 00 jmpq *0x7142(%rip) # 66358298 <__imp__exit> + 66351156: 90 nop + 66351157: 90 nop + +0000000066351158 <_amsg_exit>: + 66351158: ff 25 32 71 00 00 jmpq *0x7132(%rip) # 66358290 <__imp__amsg_exit> + 6635115e: 90 nop + 6635115f: 90 nop + +0000000066351160 <_initialize_onexit_table>: + 66351160: 48 85 c9 test %rcx,%rcx + 66351163: 74 1a je 6635117f <_initialize_onexit_table+0x1f> + 66351165: 31 c0 xor %eax,%eax + 66351167: 48 c7 41 10 00 00 00 movq $0x0,0x10(%rcx) + 6635116e: 00 + 6635116f: 48 c7 41 08 00 00 00 movq $0x0,0x8(%rcx) + 66351176: 00 + 66351177: 48 c7 01 00 00 00 00 movq $0x0,(%rcx) + 6635117e: c3 retq + 6635117f: b8 ff ff ff ff mov $0xffffffff,%eax + 66351184: c3 retq + 66351185: 90 nop + 66351186: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) + 6635118d: 00 00 00 + +0000000066351190 <_register_onexit_function>: + 66351190: 55 push %rbp + 66351191: 57 push %rdi + 66351192: 56 push %rsi + 66351193: 53 push %rbx + 66351194: 48 83 ec 28 sub $0x28,%rsp + 66351198: 48 85 c9 test %rcx,%rcx + 6635119b: 48 89 cb mov %rcx,%rbx + 6635119e: 48 89 d7 mov %rdx,%rdi + 663511a1: 0f 84 99 00 00 00 je 66351240 <_register_onexit_function+0xb0> + 663511a7: b9 08 00 00 00 mov $0x8,%ecx + 663511ac: e8 4f 01 00 00 callq 66351300 <_lock> + 663511b1: 48 83 3b 00 cmpq $0x0,(%rbx) + 663511b5: 74 5d je 66351214 <_register_onexit_function+0x84> + 663511b7: 48 8b 73 08 mov 0x8(%rbx),%rsi + 663511bb: 48 8b 43 10 mov 0x10(%rbx),%rax + 663511bf: 48 39 f0 cmp %rsi,%rax + 663511c2: 74 20 je 663511e4 <_register_onexit_function+0x54> + 663511c4: 48 8d 46 08 lea 0x8(%rsi),%rax + 663511c8: b9 08 00 00 00 mov $0x8,%ecx + 663511cd: 48 89 43 08 mov %rax,0x8(%rbx) + 663511d1: 48 89 3e mov %rdi,(%rsi) + 663511d4: e8 1f 01 00 00 callq 663512f8 <_unlock> + 663511d9: 31 c0 xor %eax,%eax + 663511db: 48 83 c4 28 add $0x28,%rsp + 663511df: 5b pop %rbx + 663511e0: 5e pop %rsi + 663511e1: 5f pop %rdi + 663511e2: 5d pop %rbp + 663511e3: c3 retq + 663511e4: 48 8b 0b mov (%rbx),%rcx + 663511e7: 48 29 ce sub %rcx,%rsi + 663511ea: 48 89 f0 mov %rsi,%rax + 663511ed: 48 c1 f8 03 sar $0x3,%rax + 663511f1: 48 c1 e0 04 shl $0x4,%rax + 663511f5: 48 89 c2 mov %rax,%rdx + 663511f8: 48 89 c5 mov %rax,%rbp + 663511fb: e8 f0 00 00 00 callq 663512f0 + 66351200: 48 85 c0 test %rax,%rax + 66351203: 74 42 je 66351247 <_register_onexit_function+0xb7> + 66351205: 48 89 03 mov %rax,(%rbx) + 66351208: 48 01 c6 add %rax,%rsi + 6635120b: 48 01 e8 add %rbp,%rax + 6635120e: 48 89 43 10 mov %rax,0x10(%rbx) + 66351212: eb b0 jmp 663511c4 <_register_onexit_function+0x34> + 66351214: ba 08 00 00 00 mov $0x8,%edx + 66351219: b9 20 00 00 00 mov $0x20,%ecx + 6635121e: e8 0d ff ff ff callq 66351130 + 66351223: 48 85 c0 test %rax,%rax + 66351226: 48 89 c6 mov %rax,%rsi + 66351229: 48 89 03 mov %rax,(%rbx) + 6635122c: 74 19 je 66351247 <_register_onexit_function+0xb7> + 6635122e: 48 89 43 08 mov %rax,0x8(%rbx) + 66351232: 48 8d 80 00 01 00 00 lea 0x100(%rax),%rax + 66351239: 48 89 43 10 mov %rax,0x10(%rbx) + 6635123d: eb 80 jmp 663511bf <_register_onexit_function+0x2f> + 6635123f: 90 nop + 66351240: b8 ff ff ff ff mov $0xffffffff,%eax + 66351245: eb 94 jmp 663511db <_register_onexit_function+0x4b> + 66351247: b9 08 00 00 00 mov $0x8,%ecx + 6635124c: e8 a7 00 00 00 callq 663512f8 <_unlock> + 66351251: b8 ff ff ff ff mov $0xffffffff,%eax + 66351256: eb 83 jmp 663511db <_register_onexit_function+0x4b> + 66351258: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 6635125f: 00 + +0000000066351260 <_execute_onexit_table>: + 66351260: 57 push %rdi + 66351261: 56 push %rsi + 66351262: 53 push %rbx + 66351263: 48 83 ec 20 sub $0x20,%rsp + 66351267: 48 89 cf mov %rcx,%rdi + 6635126a: b9 08 00 00 00 mov $0x8,%ecx + 6635126f: e8 8c 00 00 00 callq 66351300 <_lock> + 66351274: 48 8b 37 mov (%rdi),%rsi + 66351277: b9 08 00 00 00 mov $0x8,%ecx + 6635127c: 48 c7 47 10 00 00 00 movq $0x0,0x10(%rdi) + 66351283: 00 + 66351284: 48 8b 5f 08 mov 0x8(%rdi),%rbx + 66351288: 48 c7 07 00 00 00 00 movq $0x0,(%rdi) + 6635128f: 48 c7 47 08 00 00 00 movq $0x0,0x8(%rdi) + 66351296: 00 + 66351297: e8 5c 00 00 00 callq 663512f8 <_unlock> + 6635129c: 48 85 f6 test %rsi,%rsi + 6635129f: 74 24 je 663512c5 <_execute_onexit_table+0x65> + 663512a1: 48 83 eb 08 sub $0x8,%rbx + 663512a5: 48 39 de cmp %rbx,%rsi + 663512a8: 77 13 ja 663512bd <_execute_onexit_table+0x5d> + 663512aa: 48 8b 03 mov (%rbx),%rax + 663512ad: 48 85 c0 test %rax,%rax + 663512b0: 74 ef je 663512a1 <_execute_onexit_table+0x41> + 663512b2: ff d0 callq *%rax + 663512b4: 48 83 eb 08 sub $0x8,%rbx + 663512b8: 48 39 de cmp %rbx,%rsi + 663512bb: 76 ed jbe 663512aa <_execute_onexit_table+0x4a> + 663512bd: 48 89 f1 mov %rsi,%rcx + 663512c0: e8 63 fe ff ff callq 66351128 + 663512c5: 31 c0 xor %eax,%eax + 663512c7: 48 83 c4 20 add $0x20,%rsp + 663512cb: 5b pop %rbx + 663512cc: 5e pop %rsi + 663512cd: 5f pop %rdi + 663512ce: c3 retq + 663512cf: 90 nop + +00000000663512d0 <__acrt_iob_func>: + 663512d0: 53 push %rbx + 663512d1: 48 83 ec 20 sub $0x20,%rsp + 663512d5: 89 cb mov %ecx,%ebx + 663512d7: e8 2c 00 00 00 callq 66351308 <__iob_func> + 663512dc: 89 d9 mov %ebx,%ecx + 663512de: 48 8d 14 49 lea (%rcx,%rcx,2),%rdx + 663512e2: 48 c1 e2 04 shl $0x4,%rdx + 663512e6: 48 01 d0 add %rdx,%rax + 663512e9: 48 83 c4 20 add $0x20,%rsp + 663512ed: 5b pop %rbx + 663512ee: c3 retq + 663512ef: 90 nop + +00000000663512f0 : + 663512f0: ff 25 02 70 00 00 jmpq *0x7002(%rip) # 663582f8 <__imp_realloc> + 663512f6: 90 nop + 663512f7: 90 nop + +00000000663512f8 <_unlock>: + 663512f8: ff 25 ba 6f 00 00 jmpq *0x6fba(%rip) # 663582b8 <__imp__unlock> + 663512fe: 90 nop + 663512ff: 90 nop + +0000000066351300 <_lock>: + 66351300: ff 25 a2 6f 00 00 jmpq *0x6fa2(%rip) # 663582a8 <__imp__lock> + 66351306: 90 nop + 66351307: 90 nop + +0000000066351308 <__iob_func>: + 66351308: ff 25 7a 6f 00 00 jmpq *0x6f7a(%rip) # 66358288 <__imp___iob_func> + 6635130e: 90 nop + 6635130f: 90 nop + +0000000066351310 : + 66351310: ff 25 1a 70 00 00 jmpq *0x701a(%rip) # 66358330 <__imp_MessageBoxW> + 66351316: 90 nop + 66351317: 90 nop + 66351318: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) 6635131f: 00 - 66351320: 48 83 e0 f0 and $0xfffffffffffffff0,%rax - 66351324: e8 47 0d 00 00 callq 66352070 <___chkstk_ms> - 66351329: 4c 8b 25 90 2f 00 00 mov 0x2f90(%rip),%r12 # 663542c0 <.refptr.__RUNTIME_PSEUDO_RELOC_LIST_END__> - 66351330: c7 05 aa 62 00 00 00 movl $0x0,0x62aa(%rip) # 663575e4 - 66351337: 00 00 00 - 6635133a: 48 8b 35 8f 2f 00 00 mov 0x2f8f(%rip),%rsi # 663542d0 <.refptr.__RUNTIME_PSEUDO_RELOC_LIST__> - 66351341: 48 29 c4 sub %rax,%rsp - 66351344: 48 8d 44 24 20 lea 0x20(%rsp),%rax - 66351349: 48 89 05 98 62 00 00 mov %rax,0x6298(%rip) # 663575e8 - 66351350: 4c 89 e0 mov %r12,%rax - 66351353: 48 29 f0 sub %rsi,%rax - 66351356: 48 83 f8 07 cmp $0x7,%rax - 6635135a: 7e 96 jle 663512f2 <_pei386_runtime_relocator+0x22> - 6635135c: 48 83 f8 0b cmp $0xb,%rax - 66351360: 8b 16 mov (%rsi),%edx - 66351362: 0f 8e c8 00 00 00 jle 66351430 <_pei386_runtime_relocator+0x160> - 66351368: 85 d2 test %edx,%edx - 6635136a: 0f 84 a4 00 00 00 je 66351414 <_pei386_runtime_relocator+0x144> - 66351370: 4c 39 e6 cmp %r12,%rsi - 66351373: 0f 83 79 ff ff ff jae 663512f2 <_pei386_runtime_relocator+0x22> - 66351379: 4c 8d 76 08 lea 0x8(%rsi),%r14 - 6635137d: 49 83 c4 07 add $0x7,%r12 - 66351381: 4c 8b 2d 68 2f 00 00 mov 0x2f68(%rip),%r13 # 663542f0 <.refptr.__image_base__> - 66351388: 48 8d 7d a8 lea -0x58(%rbp),%rdi - 6635138c: 4d 29 f4 sub %r14,%r12 - 6635138f: 49 c1 ec 03 shr $0x3,%r12 - 66351393: 4e 8d 64 e6 08 lea 0x8(%rsi,%r12,8),%r12 - 66351398: eb 0a jmp 663513a4 <_pei386_runtime_relocator+0xd4> - 6635139a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 663513a0: 49 83 c6 08 add $0x8,%r14 - 663513a4: 8b 4e 04 mov 0x4(%rsi),%ecx - 663513a7: 41 b8 04 00 00 00 mov $0x4,%r8d - 663513ad: 48 89 fa mov %rdi,%rdx - 663513b0: 8b 06 mov (%rsi),%eax - 663513b2: 4c 89 f6 mov %r14,%rsi - 663513b5: 4c 01 e9 add %r13,%rcx - 663513b8: 03 01 add (%rcx),%eax - 663513ba: 89 45 a8 mov %eax,-0x58(%rbp) - 663513bd: e8 3e fd ff ff callq 66351100 <__write_memory.part.0> - 663513c2: 4d 39 e6 cmp %r12,%r14 - 663513c5: 75 d9 jne 663513a0 <_pei386_runtime_relocator+0xd0> - 663513c7: 8b 05 17 62 00 00 mov 0x6217(%rip),%eax # 663575e4 - 663513cd: 31 f6 xor %esi,%esi - 663513cf: 4c 8b 25 9a 7e 00 00 mov 0x7e9a(%rip),%r12 # 66359270 <__imp_VirtualProtect> - 663513d6: 85 c0 test %eax,%eax - 663513d8: 0f 8e 14 ff ff ff jle 663512f2 <_pei386_runtime_relocator+0x22> - 663513de: 66 90 xchg %ax,%ax - 663513e0: 48 8b 05 01 62 00 00 mov 0x6201(%rip),%rax # 663575e8 - 663513e7: 48 01 f0 add %rsi,%rax - 663513ea: 44 8b 00 mov (%rax),%r8d - 663513ed: 45 85 c0 test %r8d,%r8d - 663513f0: 74 0e je 66351400 <_pei386_runtime_relocator+0x130> - 663513f2: 48 8b 50 10 mov 0x10(%rax),%rdx - 663513f6: 49 89 f9 mov %rdi,%r9 - 663513f9: 48 8b 48 08 mov 0x8(%rax),%rcx - 663513fd: 41 ff d4 callq *%r12 - 66351400: 83 c3 01 add $0x1,%ebx - 66351403: 48 83 c6 28 add $0x28,%rsi - 66351407: 3b 1d d7 61 00 00 cmp 0x61d7(%rip),%ebx # 663575e4 - 6635140d: 7c d1 jl 663513e0 <_pei386_runtime_relocator+0x110> - 6635140f: e9 de fe ff ff jmpq 663512f2 <_pei386_runtime_relocator+0x22> - 66351414: 8b 4e 04 mov 0x4(%rsi),%ecx - 66351417: 85 c9 test %ecx,%ecx - 66351419: 0f 85 51 ff ff ff jne 66351370 <_pei386_runtime_relocator+0xa0> - 6635141f: 8b 56 08 mov 0x8(%rsi),%edx - 66351422: 85 d2 test %edx,%edx - 66351424: 75 1d jne 66351443 <_pei386_runtime_relocator+0x173> - 66351426: 8b 56 0c mov 0xc(%rsi),%edx - 66351429: 48 83 c6 0c add $0xc,%rsi - 6635142d: 0f 1f 00 nopl (%rax) - 66351430: 85 d2 test %edx,%edx - 66351432: 0f 85 38 ff ff ff jne 66351370 <_pei386_runtime_relocator+0xa0> - 66351438: 8b 46 04 mov 0x4(%rsi),%eax - 6635143b: 85 c0 test %eax,%eax - 6635143d: 0f 85 2d ff ff ff jne 66351370 <_pei386_runtime_relocator+0xa0> - 66351443: 8b 56 08 mov 0x8(%rsi),%edx - 66351446: 83 fa 01 cmp $0x1,%edx - 66351449: 0f 85 2f 01 00 00 jne 6635157e <_pei386_runtime_relocator+0x2ae> - 6635144f: 4c 8b 2d 9a 2e 00 00 mov 0x2e9a(%rip),%r13 # 663542f0 <.refptr.__image_base__> - 66351456: 48 83 c6 0c add $0xc,%rsi - 6635145a: 49 bf 00 00 00 00 ff movabs $0xffffffff00000000,%r15 - 66351461: ff ff ff - 66351464: 4c 8d 75 a8 lea -0x58(%rbp),%r14 - 66351468: 4c 39 e6 cmp %r12,%rsi - 6635146b: 72 48 jb 663514b5 <_pei386_runtime_relocator+0x1e5> - 6635146d: e9 80 fe ff ff jmpq 663512f2 <_pei386_runtime_relocator+0x22> - 66351472: 0f 86 b8 00 00 00 jbe 66351530 <_pei386_runtime_relocator+0x260> - 66351478: 83 fa 20 cmp $0x20,%edx - 6635147b: 0f 84 7f 00 00 00 je 66351500 <_pei386_runtime_relocator+0x230> - 66351481: 83 fa 40 cmp $0x40,%edx - 66351484: 0f 85 e0 00 00 00 jne 6635156a <_pei386_runtime_relocator+0x29a> - 6635148a: 48 8b 11 mov (%rcx),%rdx - 6635148d: 41 b8 08 00 00 00 mov $0x8,%r8d - 66351493: 4c 89 f7 mov %r14,%rdi - 66351496: 48 29 c2 sub %rax,%rdx - 66351499: 4c 01 ca add %r9,%rdx - 6635149c: 48 89 55 a8 mov %rdx,-0x58(%rbp) - 663514a0: 4c 89 f2 mov %r14,%rdx - 663514a3: e8 58 fc ff ff callq 66351100 <__write_memory.part.0> - 663514a8: 48 83 c6 0c add $0xc,%rsi - 663514ac: 4c 39 e6 cmp %r12,%rsi - 663514af: 0f 83 12 ff ff ff jae 663513c7 <_pei386_runtime_relocator+0xf7> - 663514b5: 8b 4e 04 mov 0x4(%rsi),%ecx - 663514b8: 8b 06 mov (%rsi),%eax - 663514ba: 0f b6 56 08 movzbl 0x8(%rsi),%edx - 663514be: 4c 01 e9 add %r13,%rcx - 663514c1: 4c 01 e8 add %r13,%rax - 663514c4: 83 fa 10 cmp $0x10,%edx - 663514c7: 4c 8b 08 mov (%rax),%r9 - 663514ca: 75 a6 jne 66351472 <_pei386_runtime_relocator+0x1a2> - 663514cc: 44 0f b7 01 movzwl (%rcx),%r8d - 663514d0: 4c 89 f2 mov %r14,%rdx - 663514d3: 4c 89 f7 mov %r14,%rdi - 663514d6: 4d 89 c2 mov %r8,%r10 - 663514d9: 49 81 ca 00 00 ff ff or $0xffffffffffff0000,%r10 - 663514e0: 66 45 85 c0 test %r8w,%r8w - 663514e4: 4d 0f 48 c2 cmovs %r10,%r8 - 663514e8: 49 29 c0 sub %rax,%r8 - 663514eb: 4d 01 c8 add %r9,%r8 - 663514ee: 4c 89 45 a8 mov %r8,-0x58(%rbp) - 663514f2: 41 b8 02 00 00 00 mov $0x2,%r8d - 663514f8: e8 03 fc ff ff callq 66351100 <__write_memory.part.0> - 663514fd: eb a9 jmp 663514a8 <_pei386_runtime_relocator+0x1d8> - 663514ff: 90 nop - 66351500: 8b 11 mov (%rcx),%edx - 66351502: 4c 89 f7 mov %r14,%rdi - 66351505: 49 89 d0 mov %rdx,%r8 - 66351508: 4c 09 fa or %r15,%rdx - 6635150b: 45 85 c0 test %r8d,%r8d - 6635150e: 49 0f 49 d0 cmovns %r8,%rdx - 66351512: 41 b8 04 00 00 00 mov $0x4,%r8d - 66351518: 48 29 c2 sub %rax,%rdx - 6635151b: 4c 01 ca add %r9,%rdx - 6635151e: 48 89 55 a8 mov %rdx,-0x58(%rbp) - 66351522: 4c 89 f2 mov %r14,%rdx - 66351525: e8 d6 fb ff ff callq 66351100 <__write_memory.part.0> - 6635152a: e9 79 ff ff ff jmpq 663514a8 <_pei386_runtime_relocator+0x1d8> - 6635152f: 90 nop - 66351530: 83 fa 08 cmp $0x8,%edx - 66351533: 75 35 jne 6635156a <_pei386_runtime_relocator+0x29a> - 66351535: 44 0f b6 01 movzbl (%rcx),%r8d - 66351539: 4c 89 f2 mov %r14,%rdx - 6635153c: 4c 89 f7 mov %r14,%rdi - 6635153f: 4d 89 c2 mov %r8,%r10 - 66351542: 49 81 ca 00 ff ff ff or $0xffffffffffffff00,%r10 - 66351549: 45 84 c0 test %r8b,%r8b - 6635154c: 4d 0f 48 c2 cmovs %r10,%r8 - 66351550: 49 29 c0 sub %rax,%r8 - 66351553: 4d 01 c8 add %r9,%r8 - 66351556: 4c 89 45 a8 mov %r8,-0x58(%rbp) - 6635155a: 41 b8 01 00 00 00 mov $0x1,%r8d - 66351560: e8 9b fb ff ff callq 66351100 <__write_memory.part.0> - 66351565: e9 3e ff ff ff jmpq 663514a8 <_pei386_runtime_relocator+0x1d8> - 6635156a: 48 8d 0d 07 2c 00 00 lea 0x2c07(%rip),%rcx # 66354178 <.rdata+0xd8> - 66351571: 48 c7 45 a8 00 00 00 movq $0x0,-0x58(%rbp) - 66351578: 00 - 66351579: e8 72 10 00 00 callq 663525f0 <__report_error> - 6635157e: 48 8d 0d bb 2b 00 00 lea 0x2bbb(%rip),%rcx # 66354140 <.rdata+0xa0> - 66351585: e8 66 10 00 00 callq 663525f0 <__report_error> - 6635158a: 90 nop - 6635158b: 90 nop - 6635158c: 90 nop - 6635158d: 90 nop - 6635158e: 90 nop - 6635158f: 90 nop -0000000066351590 <__mingw_SEH_error_handler>: - 66351590: 48 83 ec 28 sub $0x28,%rsp - 66351594: 8b 01 mov (%rcx),%eax - 66351596: 3d 91 00 00 c0 cmp $0xc0000091,%eax - 6635159b: 77 63 ja 66351600 <__mingw_SEH_error_handler+0x70> - 6635159d: 3d 8d 00 00 c0 cmp $0xc000008d,%eax - 663515a2: 73 7b jae 6635161f <__mingw_SEH_error_handler+0x8f> - 663515a4: 3d 08 00 00 c0 cmp $0xc0000008,%eax - 663515a9: 0f 84 05 01 00 00 je 663516b4 <__mingw_SEH_error_handler+0x124> - 663515af: 0f 87 cb 00 00 00 ja 66351680 <__mingw_SEH_error_handler+0xf0> - 663515b5: 3d 02 00 00 80 cmp $0x80000002,%eax - 663515ba: 0f 84 f4 00 00 00 je 663516b4 <__mingw_SEH_error_handler+0x124> - 663515c0: 3d 05 00 00 c0 cmp $0xc0000005,%eax - 663515c5: 0f 85 c3 00 00 00 jne 6635168e <__mingw_SEH_error_handler+0xfe> - 663515cb: 31 d2 xor %edx,%edx - 663515cd: b9 0b 00 00 00 mov $0xb,%ecx - 663515d2: e8 39 0d 00 00 callq 66352310 - 663515d7: 48 83 f8 01 cmp $0x1,%rax - 663515db: 0f 84 2f 01 00 00 je 66351710 <__mingw_SEH_error_handler+0x180> - 663515e1: 48 85 c0 test %rax,%rax - 663515e4: 0f 84 3c 01 00 00 je 66351726 <__mingw_SEH_error_handler+0x196> - 663515ea: b9 0b 00 00 00 mov $0xb,%ecx - 663515ef: ff d0 callq *%rax - 663515f1: 31 c0 xor %eax,%eax - 663515f3: 48 83 c4 28 add $0x28,%rsp - 663515f7: c3 retq - 663515f8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663515ff: 00 - 66351600: 3d 94 00 00 c0 cmp $0xc0000094,%eax - 66351605: 0f 84 b5 00 00 00 je 663516c0 <__mingw_SEH_error_handler+0x130> - 6635160b: 77 37 ja 66351644 <__mingw_SEH_error_handler+0xb4> - 6635160d: 3d 92 00 00 c0 cmp $0xc0000092,%eax - 66351612: 0f 84 9c 00 00 00 je 663516b4 <__mingw_SEH_error_handler+0x124> - 66351618: 3d 93 00 00 c0 cmp $0xc0000093,%eax - 6635161d: 75 6f jne 6635168e <__mingw_SEH_error_handler+0xfe> - 6635161f: 31 d2 xor %edx,%edx - 66351621: b9 08 00 00 00 mov $0x8,%ecx - 66351626: e8 e5 0c 00 00 callq 66352310 - 6635162b: 48 83 f8 01 cmp $0x1,%rax - 6635162f: 74 6f je 663516a0 <__mingw_SEH_error_handler+0x110> - 66351631: 48 85 c0 test %rax,%rax - 66351634: 74 58 je 6635168e <__mingw_SEH_error_handler+0xfe> - 66351636: b9 08 00 00 00 mov $0x8,%ecx - 6635163b: ff d0 callq *%rax - 6635163d: 31 c0 xor %eax,%eax - 6635163f: 48 83 c4 28 add $0x28,%rsp - 66351643: c3 retq - 66351644: 3d 95 00 00 c0 cmp $0xc0000095,%eax - 66351649: 74 69 je 663516b4 <__mingw_SEH_error_handler+0x124> - 6635164b: 3d 96 00 00 c0 cmp $0xc0000096,%eax - 66351650: 75 3c jne 6635168e <__mingw_SEH_error_handler+0xfe> - 66351652: 31 d2 xor %edx,%edx - 66351654: b9 04 00 00 00 mov $0x4,%ecx - 66351659: e8 b2 0c 00 00 callq 66352310 - 6635165e: 48 83 f8 01 cmp $0x1,%rax - 66351662: 0f 84 88 00 00 00 je 663516f0 <__mingw_SEH_error_handler+0x160> - 66351668: 48 85 c0 test %rax,%rax - 6635166b: 0f 84 b5 00 00 00 je 66351726 <__mingw_SEH_error_handler+0x196> - 66351671: b9 04 00 00 00 mov $0x4,%ecx - 66351676: ff d0 callq *%rax - 66351678: 31 c0 xor %eax,%eax - 6635167a: 48 83 c4 28 add $0x28,%rsp - 6635167e: c3 retq - 6635167f: 90 nop - 66351680: 3d 1d 00 00 c0 cmp $0xc000001d,%eax - 66351685: 74 cb je 66351652 <__mingw_SEH_error_handler+0xc2> - 66351687: 3d 8c 00 00 c0 cmp $0xc000008c,%eax - 6635168c: 74 26 je 663516b4 <__mingw_SEH_error_handler+0x124> - 6635168e: b8 01 00 00 00 mov $0x1,%eax - 66351693: 48 83 c4 28 add $0x28,%rsp - 66351697: c3 retq - 66351698: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6635169f: 00 - 663516a0: ba 01 00 00 00 mov $0x1,%edx - 663516a5: b9 08 00 00 00 mov $0x8,%ecx - 663516aa: e8 61 0c 00 00 callq 66352310 - 663516af: e8 ac 09 00 00 callq 66352060 <_fpreset> - 663516b4: 31 c0 xor %eax,%eax - 663516b6: 48 83 c4 28 add $0x28,%rsp - 663516ba: c3 retq - 663516bb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 663516c0: 31 d2 xor %edx,%edx - 663516c2: b9 08 00 00 00 mov $0x8,%ecx - 663516c7: e8 44 0c 00 00 callq 66352310 - 663516cc: 48 83 f8 01 cmp $0x1,%rax - 663516d0: 0f 85 5b ff ff ff jne 66351631 <__mingw_SEH_error_handler+0xa1> - 663516d6: ba 01 00 00 00 mov $0x1,%edx - 663516db: b9 08 00 00 00 mov $0x8,%ecx - 663516e0: e8 2b 0c 00 00 callq 66352310 - 663516e5: 31 c0 xor %eax,%eax - 663516e7: e9 07 ff ff ff jmpq 663515f3 <__mingw_SEH_error_handler+0x63> - 663516ec: 0f 1f 40 00 nopl 0x0(%rax) - 663516f0: ba 01 00 00 00 mov $0x1,%edx - 663516f5: b9 04 00 00 00 mov $0x4,%ecx - 663516fa: e8 11 0c 00 00 callq 66352310 - 663516ff: 31 c0 xor %eax,%eax - 66351701: e9 ed fe ff ff jmpq 663515f3 <__mingw_SEH_error_handler+0x63> - 66351706: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6635170d: 00 00 00 - 66351710: ba 01 00 00 00 mov $0x1,%edx - 66351715: b9 0b 00 00 00 mov $0xb,%ecx - 6635171a: e8 f1 0b 00 00 callq 66352310 - 6635171f: 31 c0 xor %eax,%eax - 66351721: e9 cd fe ff ff jmpq 663515f3 <__mingw_SEH_error_handler+0x63> - 66351726: b8 04 00 00 00 mov $0x4,%eax - 6635172b: e9 c3 fe ff ff jmpq 663515f3 <__mingw_SEH_error_handler+0x63> - -0000000066351730 <__mingw_init_ehandler>: - 66351730: 41 54 push %r12 - 66351732: 55 push %rbp - 66351733: 57 push %rdi - 66351734: 56 push %rsi - 66351735: 53 push %rbx - 66351736: 48 83 ec 20 sub $0x20,%rsp - 6635173a: e8 91 07 00 00 callq 66351ed0 <_GetPEImageBase> - 6635173f: 48 89 c5 mov %rax,%rbp - 66351742: 8b 05 c0 5e 00 00 mov 0x5ec0(%rip),%eax # 66357608 - 66351748: 85 c0 test %eax,%eax - 6635174a: 75 25 jne 66351771 <__mingw_init_ehandler+0x41> - 6635174c: 48 85 ed test %rbp,%rbp - 6635174f: 74 20 je 66351771 <__mingw_init_ehandler+0x41> - 66351751: 48 8d 0d 58 2a 00 00 lea 0x2a58(%rip),%rcx # 663541b0 <.rdata> - 66351758: c7 05 a6 5e 00 00 01 movl $0x1,0x5ea6(%rip) # 66357608 - 6635175f: 00 00 00 - 66351762: e8 a9 05 00 00 callq 66351d10 <_FindPESectionByName> - 66351767: 48 85 c0 test %rax,%rax - 6635176a: 74 14 je 66351780 <__mingw_init_ehandler+0x50> - 6635176c: b8 01 00 00 00 mov $0x1,%eax - 66351771: 48 83 c4 20 add $0x20,%rsp - 66351775: 5b pop %rbx - 66351776: 5e pop %rsi - 66351777: 5f pop %rdi - 66351778: 5d pop %rbp - 66351779: 41 5c pop %r12 - 6635177b: c3 retq - 6635177c: 0f 1f 40 00 nopl 0x0(%rax) - 66351780: 48 8d 1d 99 5f 00 00 lea 0x5f99(%rip),%rbx # 66357720 - 66351787: b9 30 00 00 00 mov $0x30,%ecx - 6635178c: 31 f6 xor %esi,%esi - 6635178e: 48 8d 15 8b 5e 00 00 lea 0x5e8b(%rip),%rdx # 66357620 - 66351795: 48 89 df mov %rbx,%rdi - 66351798: f3 48 ab rep stos %rax,%es:(%rdi) - 6635179b: 4c 8d 25 ee fd ff ff lea -0x212(%rip),%r12 # 66351590 <__mingw_SEH_error_handler> - 663517a2: b9 20 00 00 00 mov $0x20,%ecx - 663517a7: 48 89 d7 mov %rdx,%rdi - 663517aa: f3 48 ab rep stos %rax,%es:(%rdi) - 663517ad: 49 29 ec sub %rbp,%r12 - 663517b0: 48 89 d7 mov %rdx,%rdi - 663517b3: eb 2e jmp 663517e3 <__mingw_init_ehandler+0xb3> - 663517b5: c6 07 09 movb $0x9,(%rdi) - 663517b8: 48 83 c6 01 add $0x1,%rsi - 663517bc: 48 83 c3 0c add $0xc,%rbx - 663517c0: 44 89 67 04 mov %r12d,0x4(%rdi) - 663517c4: 8b 48 0c mov 0xc(%rax),%ecx - 663517c7: 89 4b f4 mov %ecx,-0xc(%rbx) - 663517ca: 03 48 08 add 0x8(%rax),%ecx - 663517cd: 48 89 f8 mov %rdi,%rax - 663517d0: 48 83 c7 08 add $0x8,%rdi - 663517d4: 48 29 e8 sub %rbp,%rax - 663517d7: 89 43 fc mov %eax,-0x4(%rbx) - 663517da: 89 4b f8 mov %ecx,-0x8(%rbx) - 663517dd: 48 83 fe 20 cmp $0x20,%rsi - 663517e1: 74 32 je 66351815 <__mingw_init_ehandler+0xe5> - 663517e3: 48 89 f1 mov %rsi,%rcx - 663517e6: e8 75 06 00 00 callq 66351e60 <_FindPESectionExec> - 663517eb: 48 85 c0 test %rax,%rax - 663517ee: 75 c5 jne 663517b5 <__mingw_init_ehandler+0x85> - 663517f0: 48 85 f6 test %rsi,%rsi - 663517f3: 89 f2 mov %esi,%edx - 663517f5: 0f 84 71 ff ff ff je 6635176c <__mingw_init_ehandler+0x3c> - 663517fb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66351800: 48 8d 0d 19 5f 00 00 lea 0x5f19(%rip),%rcx # 66357720 - 66351807: 49 89 e8 mov %rbp,%r8 - 6635180a: ff 15 18 7a 00 00 callq *0x7a18(%rip) # 66359228 <__imp_RtlAddFunctionTable> - 66351810: e9 57 ff ff ff jmpq 6635176c <__mingw_init_ehandler+0x3c> - 66351815: ba 20 00 00 00 mov $0x20,%edx - 6635181a: eb e4 jmp 66351800 <__mingw_init_ehandler+0xd0> - 6635181c: 0f 1f 40 00 nopl 0x0(%rax) - -0000000066351820 <_gnu_exception_handler>: - 66351820: 53 push %rbx - 66351821: 48 83 ec 20 sub $0x20,%rsp - 66351825: 48 8b 11 mov (%rcx),%rdx - 66351828: 8b 02 mov (%rdx),%eax - 6635182a: 48 89 cb mov %rcx,%rbx - 6635182d: 89 c1 mov %eax,%ecx - 6635182f: 81 e1 ff ff ff 20 and $0x20ffffff,%ecx - 66351835: 81 f9 43 43 47 20 cmp $0x20474343,%ecx - 6635183b: 0f 84 bf 00 00 00 je 66351900 <_gnu_exception_handler+0xe0> - 66351841: 3d 91 00 00 c0 cmp $0xc0000091,%eax - 66351846: 77 68 ja 663518b0 <_gnu_exception_handler+0x90> - 66351848: 3d 8d 00 00 c0 cmp $0xc000008d,%eax - 6635184d: 73 7c jae 663518cb <_gnu_exception_handler+0xab> - 6635184f: 3d 08 00 00 c0 cmp $0xc0000008,%eax - 66351854: 0f 84 b0 00 00 00 je 6635190a <_gnu_exception_handler+0xea> - 6635185a: 0f 87 f4 00 00 00 ja 66351954 <_gnu_exception_handler+0x134> - 66351860: 3d 02 00 00 80 cmp $0x80000002,%eax - 66351865: 0f 84 9f 00 00 00 je 6635190a <_gnu_exception_handler+0xea> - 6635186b: 3d 05 00 00 c0 cmp $0xc0000005,%eax - 66351870: 75 1f jne 66351891 <_gnu_exception_handler+0x71> - 66351872: 31 d2 xor %edx,%edx - 66351874: b9 0b 00 00 00 mov $0xb,%ecx - 66351879: e8 92 0a 00 00 callq 66352310 - 6635187e: 48 83 f8 01 cmp $0x1,%rax - 66351882: 0f 84 51 01 00 00 je 663519d9 <_gnu_exception_handler+0x1b9> - 66351888: 48 85 c0 test %rax,%rax - 6635188b: 0f 85 0f 01 00 00 jne 663519a0 <_gnu_exception_handler+0x180> - 66351891: 48 8b 05 68 5d 00 00 mov 0x5d68(%rip),%rax # 66357600 <__mingw_oldexcpt_handler> - 66351898: 48 85 c0 test %rax,%rax - 6635189b: 0f 84 10 01 00 00 je 663519b1 <_gnu_exception_handler+0x191> - 663518a1: 48 89 d9 mov %rbx,%rcx - 663518a4: 48 83 c4 20 add $0x20,%rsp - 663518a8: 5b pop %rbx - 663518a9: 48 ff e0 rex.W jmpq *%rax - 663518ac: 0f 1f 40 00 nopl 0x0(%rax) - 663518b0: 3d 94 00 00 c0 cmp $0xc0000094,%eax - 663518b5: 0f 84 b5 00 00 00 je 66351970 <_gnu_exception_handler+0x150> - 663518bb: 77 58 ja 66351915 <_gnu_exception_handler+0xf5> - 663518bd: 3d 92 00 00 c0 cmp $0xc0000092,%eax - 663518c2: 74 46 je 6635190a <_gnu_exception_handler+0xea> - 663518c4: 3d 93 00 00 c0 cmp $0xc0000093,%eax - 663518c9: 75 c6 jne 66351891 <_gnu_exception_handler+0x71> - 663518cb: 31 d2 xor %edx,%edx - 663518cd: b9 08 00 00 00 mov $0x8,%ecx - 663518d2: e8 39 0a 00 00 callq 66352310 - 663518d7: 48 83 f8 01 cmp $0x1,%rax - 663518db: 0f 84 df 00 00 00 je 663519c0 <_gnu_exception_handler+0x1a0> - 663518e1: 48 85 c0 test %rax,%rax - 663518e4: 74 ab je 66351891 <_gnu_exception_handler+0x71> - 663518e6: b9 08 00 00 00 mov $0x8,%ecx - 663518eb: ff d0 callq *%rax - 663518ed: b8 ff ff ff ff mov $0xffffffff,%eax - 663518f2: 48 83 c4 20 add $0x20,%rsp - 663518f6: 5b pop %rbx - 663518f7: c3 retq - 663518f8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663518ff: 00 - 66351900: f6 42 04 01 testb $0x1,0x4(%rdx) - 66351904: 0f 85 37 ff ff ff jne 66351841 <_gnu_exception_handler+0x21> - 6635190a: b8 ff ff ff ff mov $0xffffffff,%eax - 6635190f: 48 83 c4 20 add $0x20,%rsp - 66351913: 5b pop %rbx - 66351914: c3 retq - 66351915: 3d 95 00 00 c0 cmp $0xc0000095,%eax - 6635191a: 74 ee je 6635190a <_gnu_exception_handler+0xea> - 6635191c: 3d 96 00 00 c0 cmp $0xc0000096,%eax - 66351921: 0f 85 6a ff ff ff jne 66351891 <_gnu_exception_handler+0x71> - 66351927: 31 d2 xor %edx,%edx - 66351929: b9 04 00 00 00 mov $0x4,%ecx - 6635192e: e8 dd 09 00 00 callq 66352310 - 66351933: 48 83 f8 01 cmp $0x1,%rax - 66351937: 0f 84 b3 00 00 00 je 663519f0 <_gnu_exception_handler+0x1d0> - 6635193d: 48 85 c0 test %rax,%rax - 66351940: 0f 84 4b ff ff ff je 66351891 <_gnu_exception_handler+0x71> - 66351946: b9 04 00 00 00 mov $0x4,%ecx - 6635194b: ff d0 callq *%rax - 6635194d: b8 ff ff ff ff mov $0xffffffff,%eax - 66351952: eb 9e jmp 663518f2 <_gnu_exception_handler+0xd2> - 66351954: 3d 1d 00 00 c0 cmp $0xc000001d,%eax - 66351959: 74 cc je 66351927 <_gnu_exception_handler+0x107> - 6635195b: 3d 8c 00 00 c0 cmp $0xc000008c,%eax - 66351960: 0f 85 2b ff ff ff jne 66351891 <_gnu_exception_handler+0x71> - 66351966: eb a2 jmp 6635190a <_gnu_exception_handler+0xea> - 66351968: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6635196f: 00 - 66351970: 31 d2 xor %edx,%edx - 66351972: b9 08 00 00 00 mov $0x8,%ecx - 66351977: e8 94 09 00 00 callq 66352310 - 6635197c: 48 83 f8 01 cmp $0x1,%rax - 66351980: 0f 85 5b ff ff ff jne 663518e1 <_gnu_exception_handler+0xc1> - 66351986: ba 01 00 00 00 mov $0x1,%edx - 6635198b: b9 08 00 00 00 mov $0x8,%ecx - 66351990: e8 7b 09 00 00 callq 66352310 - 66351995: b8 ff ff ff ff mov $0xffffffff,%eax - 6635199a: e9 53 ff ff ff jmpq 663518f2 <_gnu_exception_handler+0xd2> - 6635199f: 90 nop - 663519a0: b9 0b 00 00 00 mov $0xb,%ecx - 663519a5: ff d0 callq *%rax - 663519a7: b8 ff ff ff ff mov $0xffffffff,%eax - 663519ac: e9 41 ff ff ff jmpq 663518f2 <_gnu_exception_handler+0xd2> - 663519b1: 31 c0 xor %eax,%eax - 663519b3: e9 3a ff ff ff jmpq 663518f2 <_gnu_exception_handler+0xd2> - 663519b8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663519bf: 00 - 663519c0: ba 01 00 00 00 mov $0x1,%edx - 663519c5: b9 08 00 00 00 mov $0x8,%ecx - 663519ca: e8 41 09 00 00 callq 66352310 - 663519cf: e8 8c 06 00 00 callq 66352060 <_fpreset> - 663519d4: e9 31 ff ff ff jmpq 6635190a <_gnu_exception_handler+0xea> - 663519d9: ba 01 00 00 00 mov $0x1,%edx - 663519de: b9 0b 00 00 00 mov $0xb,%ecx - 663519e3: e8 28 09 00 00 callq 66352310 - 663519e8: 83 c8 ff or $0xffffffff,%eax - 663519eb: e9 02 ff ff ff jmpq 663518f2 <_gnu_exception_handler+0xd2> - 663519f0: ba 01 00 00 00 mov $0x1,%edx - 663519f5: b9 04 00 00 00 mov $0x4,%ecx - 663519fa: e8 11 09 00 00 callq 66352310 - 663519ff: 83 c8 ff or $0xffffffff,%eax - 66351a02: e9 eb fe ff ff jmpq 663518f2 <_gnu_exception_handler+0xd2> - 66351a07: 90 nop - 66351a08: 90 nop - 66351a09: 90 nop - 66351a0a: 90 nop - 66351a0b: 90 nop - 66351a0c: 90 nop - 66351a0d: 90 nop - 66351a0e: 90 nop - 66351a0f: 90 nop - -0000000066351a10 <__mingwthr_run_key_dtors.part.0>: - 66351a10: 55 push %rbp - 66351a11: 57 push %rdi - 66351a12: 56 push %rsi - 66351a13: 53 push %rbx - 66351a14: 48 83 ec 28 sub $0x28,%rsp - 66351a18: 48 8d 0d a1 5e 00 00 lea 0x5ea1(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351a1f: ff 15 ab 77 00 00 callq *0x77ab(%rip) # 663591d0 <__imp_EnterCriticalSection> - 66351a25: 48 8b 1d 74 5e 00 00 mov 0x5e74(%rip),%rbx # 663578a0 - 66351a2c: 48 85 db test %rbx,%rbx - 66351a2f: 74 33 je 66351a64 <__mingwthr_run_key_dtors.part.0+0x54> - 66351a31: 48 8b 2d 28 78 00 00 mov 0x7828(%rip),%rbp # 66359260 <__imp_TlsGetValue> - 66351a38: 48 8b 3d b1 77 00 00 mov 0x77b1(%rip),%rdi # 663591f0 <__imp_GetLastError> - 66351a3f: 90 nop - 66351a40: 8b 0b mov (%rbx),%ecx - 66351a42: ff d5 callq *%rbp - 66351a44: 48 89 c6 mov %rax,%rsi - 66351a47: ff d7 callq *%rdi - 66351a49: 85 c0 test %eax,%eax - 66351a4b: 75 0e jne 66351a5b <__mingwthr_run_key_dtors.part.0+0x4b> - 66351a4d: 48 85 f6 test %rsi,%rsi - 66351a50: 74 09 je 66351a5b <__mingwthr_run_key_dtors.part.0+0x4b> - 66351a52: 48 8b 43 08 mov 0x8(%rbx),%rax - 66351a56: 48 89 f1 mov %rsi,%rcx - 66351a59: ff d0 callq *%rax - 66351a5b: 48 8b 5b 10 mov 0x10(%rbx),%rbx - 66351a5f: 48 85 db test %rbx,%rbx - 66351a62: 75 dc jne 66351a40 <__mingwthr_run_key_dtors.part.0+0x30> - 66351a64: 48 8d 0d 55 5e 00 00 lea 0x5e55(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351a6b: 48 83 c4 28 add $0x28,%rsp - 66351a6f: 5b pop %rbx - 66351a70: 5e pop %rsi - 66351a71: 5f pop %rdi - 66351a72: 5d pop %rbp - 66351a73: 48 ff 25 9e 77 00 00 rex.W jmpq *0x779e(%rip) # 66359218 <__imp_LeaveCriticalSection> - 66351a7a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - -0000000066351a80 <___w64_mingwthr_add_key_dtor>: - 66351a80: 55 push %rbp - 66351a81: 57 push %rdi - 66351a82: 56 push %rsi - 66351a83: 53 push %rbx - 66351a84: 48 83 ec 28 sub $0x28,%rsp - 66351a88: 8b 05 1a 5e 00 00 mov 0x5e1a(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 66351a8e: 31 f6 xor %esi,%esi - 66351a90: 85 c0 test %eax,%eax - 66351a92: 89 cd mov %ecx,%ebp - 66351a94: 48 89 d7 mov %rdx,%rdi - 66351a97: 75 0b jne 66351aa4 <___w64_mingwthr_add_key_dtor+0x24> - 66351a99: 89 f0 mov %esi,%eax - 66351a9b: 48 83 c4 28 add $0x28,%rsp - 66351a9f: 5b pop %rbx - 66351aa0: 5e pop %rsi - 66351aa1: 5f pop %rdi - 66351aa2: 5d pop %rbp - 66351aa3: c3 retq - 66351aa4: ba 18 00 00 00 mov $0x18,%edx - 66351aa9: b9 01 00 00 00 mov $0x1,%ecx - 66351aae: e8 8d 08 00 00 callq 66352340 - 66351ab3: 48 85 c0 test %rax,%rax - 66351ab6: 48 89 c3 mov %rax,%rbx - 66351ab9: 74 3d je 66351af8 <___w64_mingwthr_add_key_dtor+0x78> - 66351abb: 89 28 mov %ebp,(%rax) - 66351abd: 48 8d 0d fc 5d 00 00 lea 0x5dfc(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351ac4: 48 89 78 08 mov %rdi,0x8(%rax) - 66351ac8: ff 15 02 77 00 00 callq *0x7702(%rip) # 663591d0 <__imp_EnterCriticalSection> - 66351ace: 48 8b 05 cb 5d 00 00 mov 0x5dcb(%rip),%rax # 663578a0 - 66351ad5: 48 8d 0d e4 5d 00 00 lea 0x5de4(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351adc: 48 89 1d bd 5d 00 00 mov %rbx,0x5dbd(%rip) # 663578a0 - 66351ae3: 48 89 43 10 mov %rax,0x10(%rbx) - 66351ae7: ff 15 2b 77 00 00 callq *0x772b(%rip) # 66359218 <__imp_LeaveCriticalSection> - 66351aed: 89 f0 mov %esi,%eax - 66351aef: 48 83 c4 28 add $0x28,%rsp - 66351af3: 5b pop %rbx - 66351af4: 5e pop %rsi - 66351af5: 5f pop %rdi - 66351af6: 5d pop %rbp - 66351af7: c3 retq - 66351af8: be ff ff ff ff mov $0xffffffff,%esi - 66351afd: eb 9a jmp 66351a99 <___w64_mingwthr_add_key_dtor+0x19> - 66351aff: 90 nop - -0000000066351b00 <___w64_mingwthr_remove_key_dtor>: - 66351b00: 53 push %rbx - 66351b01: 48 83 ec 20 sub $0x20,%rsp - 66351b05: 8b 05 9d 5d 00 00 mov 0x5d9d(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 66351b0b: 85 c0 test %eax,%eax - 66351b0d: 89 cb mov %ecx,%ebx - 66351b0f: 75 0f jne 66351b20 <___w64_mingwthr_remove_key_dtor+0x20> - 66351b11: 31 c0 xor %eax,%eax - 66351b13: 48 83 c4 20 add $0x20,%rsp - 66351b17: 5b pop %rbx - 66351b18: c3 retq - 66351b19: 0f 1f 80 00 00 00 00 nopl 0x0(%rax) - 66351b20: 48 8d 0d 99 5d 00 00 lea 0x5d99(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351b27: ff 15 a3 76 00 00 callq *0x76a3(%rip) # 663591d0 <__imp_EnterCriticalSection> - 66351b2d: 48 8b 05 6c 5d 00 00 mov 0x5d6c(%rip),%rax # 663578a0 - 66351b34: 48 85 c0 test %rax,%rax - 66351b37: 74 1a je 66351b53 <___w64_mingwthr_remove_key_dtor+0x53> - 66351b39: 8b 10 mov (%rax),%edx - 66351b3b: 39 d3 cmp %edx,%ebx - 66351b3d: 75 0b jne 66351b4a <___w64_mingwthr_remove_key_dtor+0x4a> - 66351b3f: eb 4f jmp 66351b90 <___w64_mingwthr_remove_key_dtor+0x90> - 66351b41: 8b 11 mov (%rcx),%edx - 66351b43: 39 da cmp %ebx,%edx - 66351b45: 74 29 je 66351b70 <___w64_mingwthr_remove_key_dtor+0x70> - 66351b47: 48 89 c8 mov %rcx,%rax - 66351b4a: 48 8b 48 10 mov 0x10(%rax),%rcx - 66351b4e: 48 85 c9 test %rcx,%rcx - 66351b51: 75 ee jne 66351b41 <___w64_mingwthr_remove_key_dtor+0x41> - 66351b53: 48 8d 0d 66 5d 00 00 lea 0x5d66(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351b5a: ff 15 b8 76 00 00 callq *0x76b8(%rip) # 66359218 <__imp_LeaveCriticalSection> - 66351b60: 31 c0 xor %eax,%eax - 66351b62: 48 83 c4 20 add $0x20,%rsp - 66351b66: 5b pop %rbx - 66351b67: c3 retq - 66351b68: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66351b6f: 00 - 66351b70: 48 8b 51 10 mov 0x10(%rcx),%rdx - 66351b74: 48 89 50 10 mov %rdx,0x10(%rax) - 66351b78: e8 bb 07 00 00 callq 66352338 - 66351b7d: 48 8d 0d 3c 5d 00 00 lea 0x5d3c(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351b84: ff 15 8e 76 00 00 callq *0x768e(%rip) # 66359218 <__imp_LeaveCriticalSection> - 66351b8a: eb d4 jmp 66351b60 <___w64_mingwthr_remove_key_dtor+0x60> - 66351b8c: 0f 1f 40 00 nopl 0x0(%rax) - 66351b90: 48 8b 50 10 mov 0x10(%rax),%rdx - 66351b94: 48 89 c1 mov %rax,%rcx - 66351b97: 48 89 15 02 5d 00 00 mov %rdx,0x5d02(%rip) # 663578a0 - 66351b9e: eb d8 jmp 66351b78 <___w64_mingwthr_remove_key_dtor+0x78> - -0000000066351ba0 <__mingw_TLScallback>: - 66351ba0: 53 push %rbx - 66351ba1: 48 83 ec 20 sub $0x20,%rsp - 66351ba5: 83 fa 01 cmp $0x1,%edx - 66351ba8: 0f 84 92 00 00 00 je 66351c40 <__mingw_TLScallback+0xa0> - 66351bae: 72 30 jb 66351be0 <__mingw_TLScallback+0x40> - 66351bb0: 83 fa 02 cmp $0x2,%edx - 66351bb3: 74 1b je 66351bd0 <__mingw_TLScallback+0x30> - 66351bb5: 83 fa 03 cmp $0x3,%edx - 66351bb8: 75 1b jne 66351bd5 <__mingw_TLScallback+0x35> - 66351bba: 8b 05 e8 5c 00 00 mov 0x5ce8(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 66351bc0: 85 c0 test %eax,%eax - 66351bc2: 74 11 je 66351bd5 <__mingw_TLScallback+0x35> - 66351bc4: e8 47 fe ff ff callq 66351a10 <__mingwthr_run_key_dtors.part.0> - 66351bc9: eb 0a jmp 66351bd5 <__mingw_TLScallback+0x35> - 66351bcb: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66351bd0: e8 8b 04 00 00 callq 66352060 <_fpreset> - 66351bd5: b8 01 00 00 00 mov $0x1,%eax - 66351bda: 48 83 c4 20 add $0x20,%rsp - 66351bde: 5b pop %rbx - 66351bdf: c3 retq - 66351be0: 8b 05 c2 5c 00 00 mov 0x5cc2(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 66351be6: 85 c0 test %eax,%eax - 66351be8: 0f 85 82 00 00 00 jne 66351c70 <__mingw_TLScallback+0xd0> - 66351bee: 8b 05 b4 5c 00 00 mov 0x5cb4(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 66351bf4: 83 f8 01 cmp $0x1,%eax - 66351bf7: 75 dc jne 66351bd5 <__mingw_TLScallback+0x35> - 66351bf9: 48 8b 0d a0 5c 00 00 mov 0x5ca0(%rip),%rcx # 663578a0 - 66351c00: 48 85 c9 test %rcx,%rcx - 66351c03: 74 11 je 66351c16 <__mingw_TLScallback+0x76> - 66351c05: 48 8b 59 10 mov 0x10(%rcx),%rbx - 66351c09: e8 2a 07 00 00 callq 66352338 - 66351c0e: 48 85 db test %rbx,%rbx - 66351c11: 48 89 d9 mov %rbx,%rcx - 66351c14: 75 ef jne 66351c05 <__mingw_TLScallback+0x65> - 66351c16: 48 8d 0d a3 5c 00 00 lea 0x5ca3(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351c1d: 48 c7 05 78 5c 00 00 movq $0x0,0x5c78(%rip) # 663578a0 - 66351c24: 00 00 00 00 - 66351c28: c7 05 76 5c 00 00 00 movl $0x0,0x5c76(%rip) # 663578a8 <__mingwthr_cs_init> - 66351c2f: 00 00 00 - 66351c32: ff 15 90 75 00 00 callq *0x7590(%rip) # 663591c8 <__IAT_start__> - 66351c38: eb 9b jmp 66351bd5 <__mingw_TLScallback+0x35> - 66351c3a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66351c40: 8b 05 62 5c 00 00 mov 0x5c62(%rip),%eax # 663578a8 <__mingwthr_cs_init> - 66351c46: 85 c0 test %eax,%eax - 66351c48: 74 16 je 66351c60 <__mingw_TLScallback+0xc0> - 66351c4a: c7 05 54 5c 00 00 01 movl $0x1,0x5c54(%rip) # 663578a8 <__mingwthr_cs_init> - 66351c51: 00 00 00 - 66351c54: b8 01 00 00 00 mov $0x1,%eax - 66351c59: 48 83 c4 20 add $0x20,%rsp - 66351c5d: 5b pop %rbx - 66351c5e: c3 retq - 66351c5f: 90 nop - 66351c60: 48 8d 0d 59 5c 00 00 lea 0x5c59(%rip),%rcx # 663578c0 <__mingwthr_cs> - 66351c67: ff 15 a3 75 00 00 callq *0x75a3(%rip) # 66359210 <__imp_InitializeCriticalSection> - 66351c6d: eb db jmp 66351c4a <__mingw_TLScallback+0xaa> - 66351c6f: 90 nop - 66351c70: e8 9b fd ff ff callq 66351a10 <__mingwthr_run_key_dtors.part.0> - 66351c75: e9 74 ff ff ff jmpq 66351bee <__mingw_TLScallback+0x4e> - 66351c7a: 90 nop - 66351c7b: 90 nop - 66351c7c: 90 nop - 66351c7d: 90 nop - 66351c7e: 90 nop - 66351c7f: 90 nop - -0000000066351c80 <_ValidateImageBase.part.0>: - 66351c80: 48 63 41 3c movslq 0x3c(%rcx),%rax - 66351c84: 48 01 c1 add %rax,%rcx - 66351c87: 31 c0 xor %eax,%eax - 66351c89: 81 39 50 45 00 00 cmpl $0x4550,(%rcx) - 66351c8f: 74 01 je 66351c92 <_ValidateImageBase.part.0+0x12> - 66351c91: c3 retq - 66351c92: 31 c0 xor %eax,%eax - 66351c94: 66 81 79 18 0b 02 cmpw $0x20b,0x18(%rcx) - 66351c9a: 0f 94 c0 sete %al - 66351c9d: c3 retq - 66351c9e: 66 90 xchg %ax,%ax - -0000000066351ca0 <_ValidateImageBase>: - 66351ca0: 66 81 39 4d 5a cmpw $0x5a4d,(%rcx) - 66351ca5: 74 09 je 66351cb0 <_ValidateImageBase+0x10> - 66351ca7: 31 c0 xor %eax,%eax - 66351ca9: c3 retq - 66351caa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66351cb0: eb ce jmp 66351c80 <_ValidateImageBase.part.0> - 66351cb2: 0f 1f 40 00 nopl 0x0(%rax) - 66351cb6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66351cbd: 00 00 00 - -0000000066351cc0 <_FindPESection>: - 66351cc0: 48 63 41 3c movslq 0x3c(%rcx),%rax - 66351cc4: 48 01 c1 add %rax,%rcx - 66351cc7: 0f b7 41 14 movzwl 0x14(%rcx),%eax - 66351ccb: 48 8d 44 01 18 lea 0x18(%rcx,%rax,1),%rax - 66351cd0: 0f b7 49 06 movzwl 0x6(%rcx),%ecx - 66351cd4: 85 c9 test %ecx,%ecx - 66351cd6: 74 29 je 66351d01 <_FindPESection+0x41> - 66351cd8: 83 e9 01 sub $0x1,%ecx - 66351cdb: 48 8d 0c 89 lea (%rcx,%rcx,4),%rcx - 66351cdf: 4c 8d 4c c8 28 lea 0x28(%rax,%rcx,8),%r9 - 66351ce4: 44 8b 40 0c mov 0xc(%rax),%r8d - 66351ce8: 49 39 d0 cmp %rdx,%r8 - 66351ceb: 4c 89 c1 mov %r8,%rcx - 66351cee: 77 08 ja 66351cf8 <_FindPESection+0x38> - 66351cf0: 03 48 08 add 0x8(%rax),%ecx - 66351cf3: 48 39 d1 cmp %rdx,%rcx - 66351cf6: 77 0b ja 66351d03 <_FindPESection+0x43> - 66351cf8: 48 83 c0 28 add $0x28,%rax - 66351cfc: 4c 39 c8 cmp %r9,%rax - 66351cff: 75 e3 jne 66351ce4 <_FindPESection+0x24> - 66351d01: 31 c0 xor %eax,%eax - 66351d03: c3 retq - 66351d04: 66 90 xchg %ax,%ax - 66351d06: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66351d0d: 00 00 00 - -0000000066351d10 <_FindPESectionByName>: - 66351d10: 57 push %rdi - 66351d11: 56 push %rsi - 66351d12: 53 push %rbx - 66351d13: 48 83 ec 20 sub $0x20,%rsp - 66351d17: 48 89 ce mov %rcx,%rsi - 66351d1a: e8 e9 05 00 00 callq 66352308 - 66351d1f: 48 83 f8 08 cmp $0x8,%rax - 66351d23: 77 6b ja 66351d90 <_FindPESectionByName+0x80> - 66351d25: 48 8b 15 c4 25 00 00 mov 0x25c4(%rip),%rdx # 663542f0 <.refptr.__image_base__> - 66351d2c: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) - 66351d31: 75 5d jne 66351d90 <_FindPESectionByName+0x80> - 66351d33: 48 89 d1 mov %rdx,%rcx - 66351d36: e8 45 ff ff ff callq 66351c80 <_ValidateImageBase.part.0> - 66351d3b: 85 c0 test %eax,%eax - 66351d3d: 74 51 je 66351d90 <_FindPESectionByName+0x80> - 66351d3f: 48 63 4a 3c movslq 0x3c(%rdx),%rcx - 66351d43: 48 01 d1 add %rdx,%rcx - 66351d46: 0f b7 41 14 movzwl 0x14(%rcx),%eax - 66351d4a: 48 8d 5c 01 18 lea 0x18(%rcx,%rax,1),%rbx - 66351d4f: 0f b7 41 06 movzwl 0x6(%rcx),%eax - 66351d53: 85 c0 test %eax,%eax - 66351d55: 74 39 je 66351d90 <_FindPESectionByName+0x80> - 66351d57: 83 e8 01 sub $0x1,%eax - 66351d5a: 48 8d 04 80 lea (%rax,%rax,4),%rax - 66351d5e: 48 8d 7c c3 28 lea 0x28(%rbx,%rax,8),%rdi - 66351d63: eb 09 jmp 66351d6e <_FindPESectionByName+0x5e> - 66351d65: 48 83 c3 28 add $0x28,%rbx - 66351d69: 48 39 fb cmp %rdi,%rbx - 66351d6c: 74 22 je 66351d90 <_FindPESectionByName+0x80> - 66351d6e: 41 b8 08 00 00 00 mov $0x8,%r8d - 66351d74: 48 89 f2 mov %rsi,%rdx - 66351d77: 48 89 d9 mov %rbx,%rcx - 66351d7a: e8 81 05 00 00 callq 66352300 - 66351d7f: 85 c0 test %eax,%eax - 66351d81: 75 e2 jne 66351d65 <_FindPESectionByName+0x55> - 66351d83: 48 89 d8 mov %rbx,%rax - 66351d86: 48 83 c4 20 add $0x20,%rsp - 66351d8a: 5b pop %rbx - 66351d8b: 5e pop %rsi - 66351d8c: 5f pop %rdi - 66351d8d: c3 retq - 66351d8e: 66 90 xchg %ax,%ax - 66351d90: 31 db xor %ebx,%ebx - 66351d92: 48 89 d8 mov %rbx,%rax - 66351d95: 48 83 c4 20 add $0x20,%rsp - 66351d99: 5b pop %rbx - 66351d9a: 5e pop %rsi - 66351d9b: 5f pop %rdi - 66351d9c: c3 retq - 66351d9d: 0f 1f 00 nopl (%rax) - -0000000066351da0 <__mingw_GetSectionForAddress>: - 66351da0: 48 83 ec 28 sub $0x28,%rsp - 66351da4: 4c 8b 05 45 25 00 00 mov 0x2545(%rip),%r8 # 663542f0 <.refptr.__image_base__> - 66351dab: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) - 66351db1: 48 89 ca mov %rcx,%rdx - 66351db4: 75 57 jne 66351e0d <__mingw_GetSectionForAddress+0x6d> - 66351db6: 4c 89 c1 mov %r8,%rcx - 66351db9: e8 c2 fe ff ff callq 66351c80 <_ValidateImageBase.part.0> - 66351dbe: 85 c0 test %eax,%eax - 66351dc0: 74 4b je 66351e0d <__mingw_GetSectionForAddress+0x6d> - 66351dc2: 49 63 40 3c movslq 0x3c(%r8),%rax - 66351dc6: 48 89 d1 mov %rdx,%rcx - 66351dc9: 4c 29 c1 sub %r8,%rcx - 66351dcc: 49 01 c0 add %rax,%r8 - 66351dcf: 41 0f b7 50 06 movzwl 0x6(%r8),%edx - 66351dd4: 41 0f b7 40 14 movzwl 0x14(%r8),%eax - 66351dd9: 85 d2 test %edx,%edx - 66351ddb: 49 8d 44 00 18 lea 0x18(%r8,%rax,1),%rax - 66351de0: 74 2b je 66351e0d <__mingw_GetSectionForAddress+0x6d> - 66351de2: 83 ea 01 sub $0x1,%edx - 66351de5: 48 8d 14 92 lea (%rdx,%rdx,4),%rdx - 66351de9: 4c 8d 4c d0 28 lea 0x28(%rax,%rdx,8),%r9 - 66351dee: 66 90 xchg %ax,%ax - 66351df0: 44 8b 40 0c mov 0xc(%rax),%r8d - 66351df4: 4c 39 c1 cmp %r8,%rcx - 66351df7: 4c 89 c2 mov %r8,%rdx - 66351dfa: 72 08 jb 66351e04 <__mingw_GetSectionForAddress+0x64> - 66351dfc: 03 50 08 add 0x8(%rax),%edx - 66351dff: 48 39 d1 cmp %rdx,%rcx - 66351e02: 72 0b jb 66351e0f <__mingw_GetSectionForAddress+0x6f> - 66351e04: 48 83 c0 28 add $0x28,%rax - 66351e08: 4c 39 c8 cmp %r9,%rax - 66351e0b: 75 e3 jne 66351df0 <__mingw_GetSectionForAddress+0x50> - 66351e0d: 31 c0 xor %eax,%eax - 66351e0f: 48 83 c4 28 add $0x28,%rsp - 66351e13: c3 retq - 66351e14: 66 90 xchg %ax,%ax - 66351e16: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66351e1d: 00 00 00 - -0000000066351e20 <__mingw_GetSectionCount>: - 66351e20: 48 83 ec 28 sub $0x28,%rsp - 66351e24: 48 8b 15 c5 24 00 00 mov 0x24c5(%rip),%rdx # 663542f0 <.refptr.__image_base__> - 66351e2b: 45 31 c0 xor %r8d,%r8d - 66351e2e: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) - 66351e33: 74 0b je 66351e40 <__mingw_GetSectionCount+0x20> - 66351e35: 44 89 c0 mov %r8d,%eax - 66351e38: 48 83 c4 28 add $0x28,%rsp - 66351e3c: c3 retq - 66351e3d: 0f 1f 00 nopl (%rax) - 66351e40: 48 89 d1 mov %rdx,%rcx - 66351e43: e8 38 fe ff ff callq 66351c80 <_ValidateImageBase.part.0> - 66351e48: 85 c0 test %eax,%eax - 66351e4a: 74 e9 je 66351e35 <__mingw_GetSectionCount+0x15> - 66351e4c: 48 63 42 3c movslq 0x3c(%rdx),%rax - 66351e50: 44 0f b7 44 10 06 movzwl 0x6(%rax,%rdx,1),%r8d - 66351e56: 44 89 c0 mov %r8d,%eax - 66351e59: 48 83 c4 28 add $0x28,%rsp - 66351e5d: c3 retq - 66351e5e: 66 90 xchg %ax,%ax - -0000000066351e60 <_FindPESectionExec>: - 66351e60: 48 83 ec 28 sub $0x28,%rsp - 66351e64: 4c 8b 05 85 24 00 00 mov 0x2485(%rip),%r8 # 663542f0 <.refptr.__image_base__> - 66351e6b: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) - 66351e71: 48 89 ca mov %rcx,%rdx - 66351e74: 75 52 jne 66351ec8 <_FindPESectionExec+0x68> - 66351e76: 4c 89 c1 mov %r8,%rcx - 66351e79: e8 02 fe ff ff callq 66351c80 <_ValidateImageBase.part.0> - 66351e7e: 85 c0 test %eax,%eax - 66351e80: 74 46 je 66351ec8 <_FindPESectionExec+0x68> - 66351e82: 49 63 48 3c movslq 0x3c(%r8),%rcx - 66351e86: 4c 01 c1 add %r8,%rcx - 66351e89: 0f b7 41 14 movzwl 0x14(%rcx),%eax - 66351e8d: 48 8d 44 01 18 lea 0x18(%rcx,%rax,1),%rax - 66351e92: 0f b7 49 06 movzwl 0x6(%rcx),%ecx - 66351e96: 85 c9 test %ecx,%ecx - 66351e98: 74 2e je 66351ec8 <_FindPESectionExec+0x68> - 66351e9a: 83 e9 01 sub $0x1,%ecx - 66351e9d: 48 8d 0c 89 lea (%rcx,%rcx,4),%rcx - 66351ea1: 48 8d 4c c8 28 lea 0x28(%rax,%rcx,8),%rcx - 66351ea6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66351ead: 00 00 00 - 66351eb0: f6 40 27 20 testb $0x20,0x27(%rax) - 66351eb4: 74 09 je 66351ebf <_FindPESectionExec+0x5f> - 66351eb6: 48 85 d2 test %rdx,%rdx - 66351eb9: 74 0f je 66351eca <_FindPESectionExec+0x6a> - 66351ebb: 48 83 ea 01 sub $0x1,%rdx - 66351ebf: 48 83 c0 28 add $0x28,%rax - 66351ec3: 48 39 c8 cmp %rcx,%rax - 66351ec6: 75 e8 jne 66351eb0 <_FindPESectionExec+0x50> - 66351ec8: 31 c0 xor %eax,%eax - 66351eca: 48 83 c4 28 add $0x28,%rsp - 66351ece: c3 retq - 66351ecf: 90 nop - -0000000066351ed0 <_GetPEImageBase>: - 66351ed0: 48 83 ec 28 sub $0x28,%rsp - 66351ed4: 48 8b 15 15 24 00 00 mov 0x2415(%rip),%rdx # 663542f0 <.refptr.__image_base__> - 66351edb: 66 81 3a 4d 5a cmpw $0x5a4d,(%rdx) - 66351ee0: 75 1e jne 66351f00 <_GetPEImageBase+0x30> - 66351ee2: 48 89 d1 mov %rdx,%rcx - 66351ee5: e8 96 fd ff ff callq 66351c80 <_ValidateImageBase.part.0> - 66351eea: 85 c0 test %eax,%eax - 66351eec: b8 00 00 00 00 mov $0x0,%eax - 66351ef1: 48 0f 45 c2 cmovne %rdx,%rax - 66351ef5: 48 83 c4 28 add $0x28,%rsp - 66351ef9: c3 retq - 66351efa: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66351f00: 31 c0 xor %eax,%eax - 66351f02: 48 83 c4 28 add $0x28,%rsp - 66351f06: c3 retq - 66351f07: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 66351f0e: 00 00 - -0000000066351f10 <_IsNonwritableInCurrentImage>: - 66351f10: 48 83 ec 28 sub $0x28,%rsp - 66351f14: 4c 8b 05 d5 23 00 00 mov 0x23d5(%rip),%r8 # 663542f0 <.refptr.__image_base__> - 66351f1b: 31 c0 xor %eax,%eax - 66351f1d: 66 41 81 38 4d 5a cmpw $0x5a4d,(%r8) - 66351f23: 48 89 ca mov %rcx,%rdx - 66351f26: 74 08 je 66351f30 <_IsNonwritableInCurrentImage+0x20> - 66351f28: 48 83 c4 28 add $0x28,%rsp - 66351f2c: c3 retq - 66351f2d: 0f 1f 00 nopl (%rax) - 66351f30: 4c 89 c1 mov %r8,%rcx - 66351f33: e8 48 fd ff ff callq 66351c80 <_ValidateImageBase.part.0> - 66351f38: 85 c0 test %eax,%eax - 66351f3a: 74 ec je 66351f28 <_IsNonwritableInCurrentImage+0x18> - 66351f3c: 49 63 40 3c movslq 0x3c(%r8),%rax - 66351f40: 48 89 d1 mov %rdx,%rcx - 66351f43: 4c 29 c1 sub %r8,%rcx - 66351f46: 49 01 c0 add %rax,%r8 - 66351f49: 41 0f b7 50 06 movzwl 0x6(%r8),%edx - 66351f4e: 41 0f b7 40 14 movzwl 0x14(%r8),%eax - 66351f53: 85 d2 test %edx,%edx - 66351f55: 49 8d 44 00 18 lea 0x18(%r8,%rax,1),%rax - 66351f5a: 74 31 je 66351f8d <_IsNonwritableInCurrentImage+0x7d> - 66351f5c: 83 ea 01 sub $0x1,%edx - 66351f5f: 48 8d 14 92 lea (%rdx,%rdx,4),%rdx - 66351f63: 4c 8d 4c d0 28 lea 0x28(%rax,%rdx,8),%r9 - 66351f68: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 66351f6f: 00 - 66351f70: 44 8b 40 0c mov 0xc(%rax),%r8d - 66351f74: 4c 39 c1 cmp %r8,%rcx - 66351f77: 4c 89 c2 mov %r8,%rdx - 66351f7a: 72 08 jb 66351f84 <_IsNonwritableInCurrentImage+0x74> - 66351f7c: 03 50 08 add 0x8(%rax),%edx - 66351f7f: 48 39 d1 cmp %rdx,%rcx - 66351f82: 72 10 jb 66351f94 <_IsNonwritableInCurrentImage+0x84> - 66351f84: 48 83 c0 28 add $0x28,%rax - 66351f88: 4c 39 c8 cmp %r9,%rax - 66351f8b: 75 e3 jne 66351f70 <_IsNonwritableInCurrentImage+0x60> - 66351f8d: 31 c0 xor %eax,%eax - 66351f8f: 48 83 c4 28 add $0x28,%rsp - 66351f93: c3 retq - 66351f94: 8b 40 24 mov 0x24(%rax),%eax - 66351f97: f7 d0 not %eax - 66351f99: c1 e8 1f shr $0x1f,%eax - 66351f9c: 48 83 c4 28 add $0x28,%rsp - 66351fa0: c3 retq - 66351fa1: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) - 66351fa6: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 66351fad: 00 00 00 - -0000000066351fb0 <__mingw_enum_import_library_names>: - 66351fb0: 48 83 ec 28 sub $0x28,%rsp - 66351fb4: 4c 8b 1d 35 23 00 00 mov 0x2335(%rip),%r11 # 663542f0 <.refptr.__image_base__> - 66351fbb: 66 41 81 3b 4d 5a cmpw $0x5a4d,(%r11) - 66351fc1: 41 89 c9 mov %ecx,%r9d - 66351fc4: 75 58 jne 6635201e <__mingw_enum_import_library_names+0x6e> - 66351fc6: 4c 89 d9 mov %r11,%rcx - 66351fc9: e8 b2 fc ff ff callq 66351c80 <_ValidateImageBase.part.0> - 66351fce: 85 c0 test %eax,%eax - 66351fd0: 74 4c je 6635201e <__mingw_enum_import_library_names+0x6e> - 66351fd2: 49 63 43 3c movslq 0x3c(%r11),%rax - 66351fd6: 4c 01 d8 add %r11,%rax - 66351fd9: 8b 90 90 00 00 00 mov 0x90(%rax),%edx - 66351fdf: 85 d2 test %edx,%edx - 66351fe1: 74 3b je 6635201e <__mingw_enum_import_library_names+0x6e> - 66351fe3: 0f b7 48 14 movzwl 0x14(%rax),%ecx - 66351fe7: 48 8d 4c 08 18 lea 0x18(%rax,%rcx,1),%rcx - 66351fec: 0f b7 40 06 movzwl 0x6(%rax),%eax - 66351ff0: 85 c0 test %eax,%eax - 66351ff2: 74 2a je 6635201e <__mingw_enum_import_library_names+0x6e> - 66351ff4: 83 e8 01 sub $0x1,%eax - 66351ff7: 48 8d 04 80 lea (%rax,%rax,4),%rax - 66351ffb: 48 8d 44 c1 28 lea 0x28(%rcx,%rax,8),%rax - 66352000: 44 8b 51 0c mov 0xc(%rcx),%r10d - 66352004: 4c 39 d2 cmp %r10,%rdx - 66352007: 4d 89 d0 mov %r10,%r8 - 6635200a: 72 09 jb 66352015 <__mingw_enum_import_library_names+0x65> - 6635200c: 44 03 41 08 add 0x8(%rcx),%r8d - 66352010: 4c 39 c2 cmp %r8,%rdx - 66352013: 72 10 jb 66352025 <__mingw_enum_import_library_names+0x75> - 66352015: 48 83 c1 28 add $0x28,%rcx - 66352019: 48 39 c1 cmp %rax,%rcx - 6635201c: 75 e2 jne 66352000 <__mingw_enum_import_library_names+0x50> - 6635201e: 31 c0 xor %eax,%eax - 66352020: 48 83 c4 28 add $0x28,%rsp - 66352024: c3 retq - 66352025: 4c 01 da add %r11,%rdx - 66352028: 75 0e jne 66352038 <__mingw_enum_import_library_names+0x88> - 6635202a: eb f2 jmp 6635201e <__mingw_enum_import_library_names+0x6e> - 6635202c: 0f 1f 40 00 nopl 0x0(%rax) - 66352030: 41 83 e9 01 sub $0x1,%r9d - 66352034: 48 83 c2 14 add $0x14,%rdx - 66352038: 8b 4a 04 mov 0x4(%rdx),%ecx - 6635203b: 85 c9 test %ecx,%ecx - 6635203d: 75 07 jne 66352046 <__mingw_enum_import_library_names+0x96> - 6635203f: 8b 42 0c mov 0xc(%rdx),%eax - 66352042: 85 c0 test %eax,%eax - 66352044: 74 d8 je 6635201e <__mingw_enum_import_library_names+0x6e> - 66352046: 45 85 c9 test %r9d,%r9d - 66352049: 7f e5 jg 66352030 <__mingw_enum_import_library_names+0x80> - 6635204b: 8b 42 0c mov 0xc(%rdx),%eax - 6635204e: 4c 01 d8 add %r11,%rax - 66352051: 48 83 c4 28 add $0x28,%rsp - 66352055: c3 retq - 66352056: 90 nop - 66352057: 90 nop - 66352058: 90 nop - 66352059: 90 nop - 6635205a: 90 nop - 6635205b: 90 nop - 6635205c: 90 nop - 6635205d: 90 nop - 6635205e: 90 nop - 6635205f: 90 nop - -0000000066352060 <_fpreset>: - 66352060: db e3 fninit - 66352062: c3 retq - 66352063: 90 nop - 66352064: 90 nop - 66352065: 90 nop - 66352066: 90 nop - 66352067: 90 nop - 66352068: 90 nop - 66352069: 90 nop - 6635206a: 90 nop - 6635206b: 90 nop - 6635206c: 90 nop - 6635206d: 90 nop - 6635206e: 90 nop - 6635206f: 90 nop - -0000000066352070 <___chkstk_ms>: - 66352070: 51 push %rcx - 66352071: 50 push %rax - 66352072: 48 3d 00 10 00 00 cmp $0x1000,%rax - 66352078: 48 8d 4c 24 18 lea 0x18(%rsp),%rcx - 6635207d: 72 19 jb 66352098 <___chkstk_ms+0x28> - 6635207f: 48 81 e9 00 10 00 00 sub $0x1000,%rcx - 66352086: 48 83 09 00 orq $0x0,(%rcx) - 6635208a: 48 2d 00 10 00 00 sub $0x1000,%rax - 66352090: 48 3d 00 10 00 00 cmp $0x1000,%rax - 66352096: 77 e7 ja 6635207f <___chkstk_ms+0xf> - 66352098: 48 29 c1 sub %rax,%rcx - 6635209b: 48 83 09 00 orq $0x0,(%rcx) - 6635209f: 58 pop %rax - 663520a0: 59 pop %rcx - 663520a1: c3 retq - 663520a2: 90 nop - 663520a3: 90 nop - 663520a4: 90 nop - 663520a5: 90 nop - 663520a6: 90 nop - 663520a7: 90 nop - 663520a8: 90 nop - 663520a9: 90 nop - 663520aa: 90 nop - 663520ab: 90 nop - 663520ac: 90 nop - 663520ad: 90 nop - 663520ae: 90 nop - 663520af: 90 nop - -00000000663520b0 : - 663520b0: b8 01 00 00 00 mov $0x1,%eax - 663520b5: c3 retq - 663520b6: 90 nop - 663520b7: 90 nop - 663520b8: 90 nop - 663520b9: 90 nop - 663520ba: 90 nop - 663520bb: 90 nop - 663520bc: 90 nop - 663520bd: 90 nop - 663520be: 90 nop - 663520bf: 90 nop - -00000000663520c0 : - 663520c0: b8 01 00 00 00 mov $0x1,%eax - 663520c5: c3 retq - 663520c6: 90 nop - 663520c7: 90 nop - 663520c8: 90 nop - 663520c9: 90 nop - 663520ca: 90 nop - 663520cb: 90 nop - 663520cc: 90 nop - 663520cd: 90 nop - 663520ce: 90 nop - 663520cf: 90 nop - -00000000663520d0 <_wassert>: - 663520d0: 41 54 push %r12 - 663520d2: 55 push %rbp - 663520d3: 57 push %rdi - 663520d4: 56 push %rsi - 663520d5: 53 push %rbx - 663520d6: 48 81 ec 50 02 00 00 sub $0x250,%rsp - 663520dd: 48 89 d3 mov %rdx,%rbx - 663520e0: 48 89 ce mov %rcx,%rsi - 663520e3: b9 00 40 00 00 mov $0x4000,%ecx - 663520e8: 45 89 c4 mov %r8d,%r12d - 663520eb: e8 30 02 00 00 callq 66352320 - 663520f0: 48 85 db test %rbx,%rbx - 663520f3: 48 89 c5 mov %rax,%rbp - 663520f6: 0f 84 c4 00 00 00 je 663521c0 <_wassert+0xf0> - 663520fc: 66 83 3b 00 cmpw $0x0,(%rbx) - 66352100: 48 8d 05 b9 20 00 00 lea 0x20b9(%rip),%rax # 663541c0 <.rdata> - 66352107: 48 0f 44 d8 cmove %rax,%rbx - 6635210b: 48 85 f6 test %rsi,%rsi - 6635210e: 0f 84 9d 00 00 00 je 663521b1 <_wassert+0xe1> - 66352114: 66 83 3e 00 cmpw $0x0,(%rsi) - 66352118: 48 8d 05 b5 20 00 00 lea 0x20b5(%rip),%rax # 663541d4 <.rdata+0x14> - 6635211f: 48 0f 44 f0 cmove %rax,%rsi - 66352123: 31 c9 xor %ecx,%ecx - 66352125: 41 b8 04 01 00 00 mov $0x104,%r8d - 6635212b: 48 8d 7c 24 40 lea 0x40(%rsp),%rdi - 66352130: 48 89 fa mov %rdi,%rdx - 66352133: ff 15 bf 70 00 00 callq *0x70bf(%rip) # 663591f8 <__imp_GetModuleFileNameW> - 66352139: 85 c0 test %eax,%eax - 6635213b: 74 63 je 663521a0 <_wassert+0xd0> - 6635213d: 48 89 74 24 30 mov %rsi,0x30(%rsp) - 66352142: 49 89 f9 mov %rdi,%r9 - 66352145: ba ff 1f 00 00 mov $0x1fff,%edx - 6635214a: 48 89 e9 mov %rbp,%rcx - 6635214d: 44 89 64 24 28 mov %r12d,0x28(%rsp) - 66352152: 4c 8d 05 7f 20 00 00 lea 0x207f(%rip),%r8 # 663541d8 <.rdata+0x18> - 66352159: 48 89 5c 24 20 mov %rbx,0x20(%rsp) - 6635215e: e8 ed 01 00 00 callq 66352350 <_snwprintf> - 66352163: 48 8b 05 06 22 00 00 mov 0x2206(%rip),%rax # 66354370 <.refptr.mingw_app_type> - 6635216a: 8b 00 mov (%rax),%eax - 6635216c: 85 c0 test %eax,%eax - 6635216e: 74 75 je 663521e5 <_wassert+0x115> - 66352170: 31 c9 xor %ecx,%ecx - 66352172: 41 b9 12 20 01 00 mov $0x12012,%r9d - 66352178: 48 89 ea mov %rbp,%rdx - 6635217b: 4c 8d 05 ee 20 00 00 lea 0x20ee(%rip),%r8 # 66354270 <.rdata+0xb0> - 66352182: ff 15 a8 71 00 00 callq *0x71a8(%rip) # 66359330 <__imp_MessageBoxW> - 66352188: 83 f8 03 cmp $0x3,%eax - 6635218b: 74 44 je 663521d1 <_wassert+0x101> - 6635218d: 83 f8 05 cmp $0x5,%eax - 66352190: 75 3a jne 663521cc <_wassert+0xfc> - 66352192: 48 81 c4 50 02 00 00 add $0x250,%rsp - 66352199: 5b pop %rbx - 6635219a: 5e pop %rsi - 6635219b: 5f pop %rdi - 6635219c: 5d pop %rbp - 6635219d: 41 5c pop %r12 - 6635219f: c3 retq - 663521a0: 48 8d 15 19 20 00 00 lea 0x2019(%rip),%rdx # 663541c0 <.rdata> - 663521a7: 48 89 f9 mov %rdi,%rcx - 663521aa: e8 41 01 00 00 callq 663522f0 - 663521af: eb 8c jmp 6635213d <_wassert+0x6d> - 663521b1: 48 8d 35 1c 20 00 00 lea 0x201c(%rip),%rsi # 663541d4 <.rdata+0x14> - 663521b8: e9 66 ff ff ff jmpq 66352123 <_wassert+0x53> - 663521bd: 0f 1f 00 nopl (%rax) - 663521c0: 48 8d 1d f9 1f 00 00 lea 0x1ff9(%rip),%rbx # 663541c0 <.rdata> - 663521c7: e9 3f ff ff ff jmpq 6635210b <_wassert+0x3b> - 663521cc: e8 77 01 00 00 callq 66352348 - 663521d1: b9 16 00 00 00 mov $0x16,%ecx - 663521d6: e8 3d 01 00 00 callq 66352318 - 663521db: b9 03 00 00 00 mov $0x3,%ecx - 663521e0: e8 7b 01 00 00 callq 66352360 <_exit> - 663521e5: b9 02 00 00 00 mov $0x2,%ecx - 663521ea: e8 f1 02 00 00 callq 663524e0 <__acrt_iob_func> - 663521ef: 48 8d 15 6a 20 00 00 lea 0x206a(%rip),%rdx # 66354260 <.rdata+0xa0> - 663521f6: 49 89 e8 mov %rbp,%r8 - 663521f9: 48 89 c1 mov %rax,%rcx - 663521fc: e8 2f 01 00 00 callq 66352330 - 66352201: e8 42 01 00 00 callq 66352348 - 66352206: 90 nop - 66352207: 66 0f 1f 84 00 00 00 nopw 0x0(%rax,%rax,1) - 6635220e: 00 00 - -0000000066352210 <_assert>: - 66352210: 55 push %rbp - 66352211: 57 push %rdi - 66352212: 56 push %rsi - 66352213: 53 push %rbx - 66352214: 48 83 ec 38 sub $0x38,%rsp - 66352218: 48 89 d7 mov %rdx,%rdi - 6635221b: 44 89 44 24 2c mov %r8d,0x2c(%rsp) - 66352220: 48 89 cd mov %rcx,%rbp - 66352223: e8 e0 00 00 00 callq 66352308 - 66352228: 48 8d 4c 00 02 lea 0x2(%rax,%rax,1),%rcx - 6635222d: e8 ee 00 00 00 callq 66352320 - 66352232: 48 89 f9 mov %rdi,%rcx - 66352235: 48 89 c6 mov %rax,%rsi - 66352238: e8 cb 00 00 00 callq 66352308 - 6635223d: 48 8d 4c 00 02 lea 0x2(%rax,%rax,1),%rcx - 66352242: e8 d9 00 00 00 callq 66352320 - 66352247: 0f b6 4d 00 movzbl 0x0(%rbp),%ecx - 6635224b: 48 89 c3 mov %rax,%rbx - 6635224e: 44 8b 44 24 2c mov 0x2c(%rsp),%r8d - 66352253: 84 c9 test %cl,%cl - 66352255: 74 79 je 663522d0 <_assert+0xc0> - 66352257: 45 31 c9 xor %r9d,%r9d - 6635225a: 66 0f 1f 44 00 00 nopw 0x0(%rax,%rax,1) - 66352260: 66 42 89 0c 4e mov %cx,(%rsi,%r9,2) - 66352265: 49 83 c1 01 add $0x1,%r9 - 66352269: 42 0f b6 4c 0d 00 movzbl 0x0(%rbp,%r9,1),%ecx - 6635226f: 84 c9 test %cl,%cl - 66352271: 75 ed jne 66352260 <_assert+0x50> - 66352273: 4a 8d 04 4e lea (%rsi,%r9,2),%rax - 66352277: 31 c9 xor %ecx,%ecx - 66352279: 66 89 08 mov %cx,(%rax) - 6635227c: 0f b6 0f movzbl (%rdi),%ecx - 6635227f: 84 c9 test %cl,%cl - 66352281: 74 5d je 663522e0 <_assert+0xd0> - 66352283: 45 31 c9 xor %r9d,%r9d - 66352286: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6635228d: 00 00 00 - 66352290: 66 42 89 0c 4b mov %cx,(%rbx,%r9,2) - 66352295: 49 83 c1 01 add $0x1,%r9 - 66352299: 42 0f b6 0c 0f movzbl (%rdi,%r9,1),%ecx - 6635229e: 84 c9 test %cl,%cl - 663522a0: 75 ee jne 66352290 <_assert+0x80> - 663522a2: 4a 8d 04 4b lea (%rbx,%r9,2),%rax - 663522a6: 31 d2 xor %edx,%edx - 663522a8: 48 89 f1 mov %rsi,%rcx - 663522ab: 66 89 10 mov %dx,(%rax) - 663522ae: 48 89 da mov %rbx,%rdx - 663522b1: e8 1a fe ff ff callq 663520d0 <_wassert> - 663522b6: 48 89 f1 mov %rsi,%rcx - 663522b9: e8 7a 00 00 00 callq 66352338 - 663522be: 48 89 d9 mov %rbx,%rcx - 663522c1: 48 83 c4 38 add $0x38,%rsp - 663522c5: 5b pop %rbx - 663522c6: 5e pop %rsi - 663522c7: 5f pop %rdi - 663522c8: 5d pop %rbp - 663522c9: e9 6a 00 00 00 jmpq 66352338 - 663522ce: 66 90 xchg %ax,%ax - 663522d0: 31 c9 xor %ecx,%ecx - 663522d2: 48 89 f0 mov %rsi,%rax - 663522d5: 66 89 08 mov %cx,(%rax) - 663522d8: 0f b6 0f movzbl (%rdi),%ecx - 663522db: 84 c9 test %cl,%cl - 663522dd: 75 a4 jne 66352283 <_assert+0x73> - 663522df: 90 nop - 663522e0: 48 89 d8 mov %rbx,%rax - 663522e3: eb c1 jmp 663522a6 <_assert+0x96> - 663522e5: 90 nop - 663522e6: 90 nop - 663522e7: 90 nop - 663522e8: 90 nop - 663522e9: 90 nop - 663522ea: 90 nop - 663522eb: 90 nop - 663522ec: 90 nop - 663522ed: 90 nop - 663522ee: 90 nop - 663522ef: 90 nop - -00000000663522f0 : - 663522f0: ff 25 2a 70 00 00 jmpq *0x702a(%rip) # 66359320 <__imp_wcscpy> - 663522f6: 90 nop - 663522f7: 90 nop - -00000000663522f8 : - 663522f8: ff 25 1a 70 00 00 jmpq *0x701a(%rip) # 66359318 <__imp_vfprintf> - 663522fe: 90 nop - 663522ff: 90 nop - -0000000066352300 : - 66352300: ff 25 0a 70 00 00 jmpq *0x700a(%rip) # 66359310 <__imp_strncmp> - 66352306: 90 nop - 66352307: 90 nop - -0000000066352308 : - 66352308: ff 25 fa 6f 00 00 jmpq *0x6ffa(%rip) # 66359308 <__imp_strlen> - 6635230e: 90 nop - 6635230f: 90 nop - -0000000066352310 : - 66352310: ff 25 ea 6f 00 00 jmpq *0x6fea(%rip) # 66359300 <__imp_signal> - 66352316: 90 nop - 66352317: 90 nop - -0000000066352318 : - 66352318: ff 25 d2 6f 00 00 jmpq *0x6fd2(%rip) # 663592f0 <__imp_raise> - 6635231e: 90 nop - 6635231f: 90 nop - -0000000066352320 : - 66352320: ff 25 c2 6f 00 00 jmpq *0x6fc2(%rip) # 663592e8 <__imp_malloc> - 66352326: 90 nop - 66352327: 90 nop - -0000000066352328 : - 66352328: ff 25 b2 6f 00 00 jmpq *0x6fb2(%rip) # 663592e0 <__imp_fwrite> - 6635232e: 90 nop - 6635232f: 90 nop - -0000000066352330 : - 66352330: ff 25 a2 6f 00 00 jmpq *0x6fa2(%rip) # 663592d8 <__imp_fwprintf> - 66352336: 90 nop - 66352337: 90 nop - -0000000066352338 : - 66352338: ff 25 92 6f 00 00 jmpq *0x6f92(%rip) # 663592d0 <__imp_free> - 6635233e: 90 nop - 6635233f: 90 nop - -0000000066352340 : - 66352340: ff 25 82 6f 00 00 jmpq *0x6f82(%rip) # 663592c8 <__imp_calloc> - 66352346: 90 nop - 66352347: 90 nop - -0000000066352348 : - 66352348: ff 25 72 6f 00 00 jmpq *0x6f72(%rip) # 663592c0 <__imp_abort> - 6635234e: 90 nop - 6635234f: 90 nop - -0000000066352350 <_snwprintf>: - 66352350: ff 25 5a 6f 00 00 jmpq *0x6f5a(%rip) # 663592b0 <__imp__snwprintf> - 66352356: 90 nop - 66352357: 90 nop - -0000000066352358 <_initterm>: - 66352358: ff 25 42 6f 00 00 jmpq *0x6f42(%rip) # 663592a0 <__imp__initterm> - 6635235e: 90 nop - 6635235f: 90 nop - -0000000066352360 <_exit>: - 66352360: ff 25 32 6f 00 00 jmpq *0x6f32(%rip) # 66359298 <__imp__exit> - 66352366: 90 nop - 66352367: 90 nop - -0000000066352368 <_amsg_exit>: - 66352368: ff 25 22 6f 00 00 jmpq *0x6f22(%rip) # 66359290 <__imp__amsg_exit> - 6635236e: 90 nop - 6635236f: 90 nop - -0000000066352370 <_initialize_onexit_table>: - 66352370: 48 85 c9 test %rcx,%rcx - 66352373: 74 1a je 6635238f <_initialize_onexit_table+0x1f> - 66352375: 31 c0 xor %eax,%eax - 66352377: 48 c7 41 10 00 00 00 movq $0x0,0x10(%rcx) - 6635237e: 00 - 6635237f: 48 c7 41 08 00 00 00 movq $0x0,0x8(%rcx) - 66352386: 00 - 66352387: 48 c7 01 00 00 00 00 movq $0x0,(%rcx) - 6635238e: c3 retq - 6635238f: b8 ff ff ff ff mov $0xffffffff,%eax - 66352394: c3 retq - 66352395: 90 nop - 66352396: 66 2e 0f 1f 84 00 00 nopw %cs:0x0(%rax,%rax,1) - 6635239d: 00 00 00 - -00000000663523a0 <_register_onexit_function>: - 663523a0: 55 push %rbp - 663523a1: 57 push %rdi - 663523a2: 56 push %rsi - 663523a3: 53 push %rbx - 663523a4: 48 83 ec 28 sub $0x28,%rsp - 663523a8: 48 85 c9 test %rcx,%rcx - 663523ab: 48 89 cb mov %rcx,%rbx - 663523ae: 48 89 d7 mov %rdx,%rdi - 663523b1: 0f 84 99 00 00 00 je 66352450 <_register_onexit_function+0xb0> - 663523b7: b9 08 00 00 00 mov $0x8,%ecx - 663523bc: e8 4f 01 00 00 callq 66352510 <_lock> - 663523c1: 48 83 3b 00 cmpq $0x0,(%rbx) - 663523c5: 74 5d je 66352424 <_register_onexit_function+0x84> - 663523c7: 48 8b 73 08 mov 0x8(%rbx),%rsi - 663523cb: 48 8b 43 10 mov 0x10(%rbx),%rax - 663523cf: 48 39 f0 cmp %rsi,%rax - 663523d2: 74 20 je 663523f4 <_register_onexit_function+0x54> - 663523d4: 48 8d 46 08 lea 0x8(%rsi),%rax - 663523d8: b9 08 00 00 00 mov $0x8,%ecx - 663523dd: 48 89 43 08 mov %rax,0x8(%rbx) - 663523e1: 48 89 3e mov %rdi,(%rsi) - 663523e4: e8 1f 01 00 00 callq 66352508 <_unlock> - 663523e9: 31 c0 xor %eax,%eax - 663523eb: 48 83 c4 28 add $0x28,%rsp - 663523ef: 5b pop %rbx - 663523f0: 5e pop %rsi - 663523f1: 5f pop %rdi - 663523f2: 5d pop %rbp - 663523f3: c3 retq - 663523f4: 48 8b 0b mov (%rbx),%rcx - 663523f7: 48 29 ce sub %rcx,%rsi - 663523fa: 48 89 f0 mov %rsi,%rax - 663523fd: 48 c1 f8 03 sar $0x3,%rax - 66352401: 48 c1 e0 04 shl $0x4,%rax - 66352405: 48 89 c2 mov %rax,%rdx - 66352408: 48 89 c5 mov %rax,%rbp - 6635240b: e8 f0 00 00 00 callq 66352500 - 66352410: 48 85 c0 test %rax,%rax - 66352413: 74 42 je 66352457 <_register_onexit_function+0xb7> - 66352415: 48 89 03 mov %rax,(%rbx) - 66352418: 48 01 c6 add %rax,%rsi - 6635241b: 48 01 e8 add %rbp,%rax - 6635241e: 48 89 43 10 mov %rax,0x10(%rbx) - 66352422: eb b0 jmp 663523d4 <_register_onexit_function+0x34> - 66352424: ba 08 00 00 00 mov $0x8,%edx - 66352429: b9 20 00 00 00 mov $0x20,%ecx - 6635242e: e8 0d ff ff ff callq 66352340 - 66352433: 48 85 c0 test %rax,%rax - 66352436: 48 89 c6 mov %rax,%rsi - 66352439: 48 89 03 mov %rax,(%rbx) - 6635243c: 74 19 je 66352457 <_register_onexit_function+0xb7> - 6635243e: 48 89 43 08 mov %rax,0x8(%rbx) - 66352442: 48 8d 80 00 01 00 00 lea 0x100(%rax),%rax - 66352449: 48 89 43 10 mov %rax,0x10(%rbx) - 6635244d: eb 80 jmp 663523cf <_register_onexit_function+0x2f> - 6635244f: 90 nop - 66352450: b8 ff ff ff ff mov $0xffffffff,%eax - 66352455: eb 94 jmp 663523eb <_register_onexit_function+0x4b> - 66352457: b9 08 00 00 00 mov $0x8,%ecx - 6635245c: e8 a7 00 00 00 callq 66352508 <_unlock> - 66352461: b8 ff ff ff ff mov $0xffffffff,%eax - 66352466: eb 83 jmp 663523eb <_register_onexit_function+0x4b> - 66352468: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6635246f: 00 - -0000000066352470 <_execute_onexit_table>: - 66352470: 57 push %rdi - 66352471: 56 push %rsi - 66352472: 53 push %rbx - 66352473: 48 83 ec 20 sub $0x20,%rsp - 66352477: 48 89 cf mov %rcx,%rdi - 6635247a: b9 08 00 00 00 mov $0x8,%ecx - 6635247f: e8 8c 00 00 00 callq 66352510 <_lock> - 66352484: 48 8b 37 mov (%rdi),%rsi - 66352487: b9 08 00 00 00 mov $0x8,%ecx - 6635248c: 48 c7 47 10 00 00 00 movq $0x0,0x10(%rdi) - 66352493: 00 - 66352494: 48 8b 5f 08 mov 0x8(%rdi),%rbx - 66352498: 48 c7 07 00 00 00 00 movq $0x0,(%rdi) - 6635249f: 48 c7 47 08 00 00 00 movq $0x0,0x8(%rdi) - 663524a6: 00 - 663524a7: e8 5c 00 00 00 callq 66352508 <_unlock> - 663524ac: 48 85 f6 test %rsi,%rsi - 663524af: 74 24 je 663524d5 <_execute_onexit_table+0x65> - 663524b1: 48 83 eb 08 sub $0x8,%rbx - 663524b5: 48 39 de cmp %rbx,%rsi - 663524b8: 77 13 ja 663524cd <_execute_onexit_table+0x5d> - 663524ba: 48 8b 03 mov (%rbx),%rax - 663524bd: 48 85 c0 test %rax,%rax - 663524c0: 74 ef je 663524b1 <_execute_onexit_table+0x41> - 663524c2: ff d0 callq *%rax - 663524c4: 48 83 eb 08 sub $0x8,%rbx - 663524c8: 48 39 de cmp %rbx,%rsi - 663524cb: 76 ed jbe 663524ba <_execute_onexit_table+0x4a> - 663524cd: 48 89 f1 mov %rsi,%rcx - 663524d0: e8 63 fe ff ff callq 66352338 - 663524d5: 31 c0 xor %eax,%eax - 663524d7: 48 83 c4 20 add $0x20,%rsp - 663524db: 5b pop %rbx - 663524dc: 5e pop %rsi - 663524dd: 5f pop %rdi - 663524de: c3 retq - 663524df: 90 nop - -00000000663524e0 <__acrt_iob_func>: - 663524e0: 53 push %rbx - 663524e1: 48 83 ec 20 sub $0x20,%rsp - 663524e5: 89 cb mov %ecx,%ebx - 663524e7: e8 2c 00 00 00 callq 66352518 <__iob_func> - 663524ec: 89 d9 mov %ebx,%ecx - 663524ee: 48 8d 14 49 lea (%rcx,%rcx,2),%rdx - 663524f2: 48 c1 e2 04 shl $0x4,%rdx - 663524f6: 48 01 d0 add %rdx,%rax - 663524f9: 48 83 c4 20 add $0x20,%rsp - 663524fd: 5b pop %rbx - 663524fe: c3 retq - 663524ff: 90 nop - -0000000066352500 : - 66352500: ff 25 f2 6d 00 00 jmpq *0x6df2(%rip) # 663592f8 <__imp_realloc> - 66352506: 90 nop - 66352507: 90 nop - -0000000066352508 <_unlock>: - 66352508: ff 25 aa 6d 00 00 jmpq *0x6daa(%rip) # 663592b8 <__imp__unlock> - 6635250e: 90 nop - 6635250f: 90 nop - -0000000066352510 <_lock>: - 66352510: ff 25 92 6d 00 00 jmpq *0x6d92(%rip) # 663592a8 <__imp__lock> - 66352516: 90 nop - 66352517: 90 nop - -0000000066352518 <__iob_func>: - 66352518: ff 25 6a 6d 00 00 jmpq *0x6d6a(%rip) # 66359288 <__imp___iob_func> - 6635251e: 90 nop - 6635251f: 90 nop - -0000000066352520 : - 66352520: ff 25 0a 6e 00 00 jmpq *0x6e0a(%rip) # 66359330 <__imp_MessageBoxW> - 66352526: 90 nop - 66352527: 90 nop - 66352528: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 6635252f: 00 - -0000000066352530 : - 66352530: ff 25 42 6d 00 00 jmpq *0x6d42(%rip) # 66359278 <__imp_VirtualQuery> - 66352536: 90 nop - 66352537: 90 nop - -0000000066352538 : - 66352538: ff 25 32 6d 00 00 jmpq *0x6d32(%rip) # 66359270 <__imp_VirtualProtect> - 6635253e: 90 nop - 6635253f: 90 nop - -0000000066352540 : - 66352540: ff 25 22 6d 00 00 jmpq *0x6d22(%rip) # 66359268 <__imp_UnhandledExceptionFilter> - 66352546: 90 nop - 66352547: 90 nop - -0000000066352548 : - 66352548: ff 25 12 6d 00 00 jmpq *0x6d12(%rip) # 66359260 <__imp_TlsGetValue> - 6635254e: 90 nop - 6635254f: 90 nop - -0000000066352550 : - 66352550: ff 25 02 6d 00 00 jmpq *0x6d02(%rip) # 66359258 <__imp_TerminateProcess> - 66352556: 90 nop - 66352557: 90 nop - -0000000066352558 : - 66352558: ff 25 f2 6c 00 00 jmpq *0x6cf2(%rip) # 66359250 <__imp_Sleep> - 6635255e: 90 nop - 6635255f: 90 nop - -0000000066352560 : - 66352560: ff 25 e2 6c 00 00 jmpq *0x6ce2(%rip) # 66359248 <__imp_SetUnhandledExceptionFilter> - 66352566: 90 nop - 66352567: 90 nop - -0000000066352568 : - 66352568: ff 25 d2 6c 00 00 jmpq *0x6cd2(%rip) # 66359240 <__imp_RtlVirtualUnwind> - 6635256e: 90 nop - 6635256f: 90 nop - -0000000066352570 : - 66352570: ff 25 c2 6c 00 00 jmpq *0x6cc2(%rip) # 66359238 <__imp_RtlLookupFunctionEntry> - 66352576: 90 nop - 66352577: 90 nop - -0000000066352578 : - 66352578: ff 25 b2 6c 00 00 jmpq *0x6cb2(%rip) # 66359230 <__imp_RtlCaptureContext> - 6635257e: 90 nop - 6635257f: 90 nop - -0000000066352580 : - 66352580: ff 25 a2 6c 00 00 jmpq *0x6ca2(%rip) # 66359228 <__imp_RtlAddFunctionTable> - 66352586: 90 nop - 66352587: 90 nop - -0000000066352588 : - 66352588: ff 25 92 6c 00 00 jmpq *0x6c92(%rip) # 66359220 <__imp_QueryPerformanceCounter> - 6635258e: 90 nop - 6635258f: 90 nop - -0000000066352590 : - 66352590: ff 25 82 6c 00 00 jmpq *0x6c82(%rip) # 66359218 <__imp_LeaveCriticalSection> - 66352596: 90 nop - 66352597: 90 nop - -0000000066352598 : - 66352598: ff 25 72 6c 00 00 jmpq *0x6c72(%rip) # 66359210 <__imp_InitializeCriticalSection> - 6635259e: 90 nop - 6635259f: 90 nop - -00000000663525a0 : - 663525a0: ff 25 62 6c 00 00 jmpq *0x6c62(%rip) # 66359208 <__imp_GetTickCount> - 663525a6: 90 nop - 663525a7: 90 nop - -00000000663525a8 : - 663525a8: ff 25 52 6c 00 00 jmpq *0x6c52(%rip) # 66359200 <__imp_GetSystemTimeAsFileTime> - 663525ae: 90 nop - 663525af: 90 nop - -00000000663525b0 : - 663525b0: ff 25 42 6c 00 00 jmpq *0x6c42(%rip) # 663591f8 <__imp_GetModuleFileNameW> - 663525b6: 90 nop - 663525b7: 90 nop - -00000000663525b8 : - 663525b8: ff 25 32 6c 00 00 jmpq *0x6c32(%rip) # 663591f0 <__imp_GetLastError> - 663525be: 90 nop - 663525bf: 90 nop - -00000000663525c0 : - 663525c0: ff 25 22 6c 00 00 jmpq *0x6c22(%rip) # 663591e8 <__imp_GetCurrentThreadId> - 663525c6: 90 nop - 663525c7: 90 nop - -00000000663525c8 : - 663525c8: ff 25 12 6c 00 00 jmpq *0x6c12(%rip) # 663591e0 <__imp_GetCurrentProcessId> - 663525ce: 90 nop - 663525cf: 90 nop - -00000000663525d0 : - 663525d0: ff 25 02 6c 00 00 jmpq *0x6c02(%rip) # 663591d8 <__imp_GetCurrentProcess> - 663525d6: 90 nop - 663525d7: 90 nop - -00000000663525d8 : - 663525d8: ff 25 f2 6b 00 00 jmpq *0x6bf2(%rip) # 663591d0 <__imp_EnterCriticalSection> - 663525de: 90 nop - 663525df: 90 nop - -00000000663525e0 : - 663525e0: ff 25 e2 6b 00 00 jmpq *0x6be2(%rip) # 663591c8 <__IAT_start__> - 663525e6: 90 nop - 663525e7: 90 nop - 663525e8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) - 663525ef: 00 - -00000000663525f0 <__report_error>: - 663525f0: 56 push %rsi - 663525f1: 53 push %rbx - 663525f2: 48 83 ec 38 sub $0x38,%rsp - 663525f6: 48 8d 44 24 58 lea 0x58(%rsp),%rax - 663525fb: 48 89 cb mov %rcx,%rbx - 663525fe: b9 02 00 00 00 mov $0x2,%ecx - 66352603: 48 89 54 24 58 mov %rdx,0x58(%rsp) - 66352608: 4c 89 44 24 60 mov %r8,0x60(%rsp) - 6635260d: 4c 89 4c 24 68 mov %r9,0x68(%rsp) - 66352612: 48 89 44 24 28 mov %rax,0x28(%rsp) - 66352617: e8 c4 fe ff ff callq 663524e0 <__acrt_iob_func> - 6635261c: 41 b8 1b 00 00 00 mov $0x1b,%r8d - 66352622: ba 01 00 00 00 mov $0x1,%edx - 66352627: 48 8d 0d 72 1a 00 00 lea 0x1a72(%rip),%rcx # 663540a0 <.rdata> - 6635262e: 49 89 c1 mov %rax,%r9 - 66352631: e8 f2 fc ff ff callq 66352328 - 66352636: 48 8b 74 24 28 mov 0x28(%rsp),%rsi - 6635263b: b9 02 00 00 00 mov $0x2,%ecx - 66352640: e8 9b fe ff ff callq 663524e0 <__acrt_iob_func> - 66352645: 48 89 da mov %rbx,%rdx - 66352648: 48 89 c1 mov %rax,%rcx - 6635264b: 49 89 f0 mov %rsi,%r8 - 6635264e: e8 a5 fc ff ff callq 663522f8 - 66352653: e8 f0 fc ff ff callq 66352348 - 66352658: 90 nop - 66352659: 90 nop - 6635265a: 90 nop - 6635265b: 90 nop - 6635265c: 90 nop - 6635265d: 90 nop - 6635265e: 90 nop - 6635265f: 90 nop - -0000000066352660 : - 66352660: 48 83 ec 18 sub $0x18,%rsp - 66352664: 0f ae 5c 24 0c stmxcsr 0xc(%rsp) - 66352669: 81 4c 24 0c 40 80 00 orl $0x8040,0xc(%rsp) - 66352670: 00 - 66352671: 0f ae 54 24 0c ldmxcsr 0xc(%rsp) - 66352676: 48 83 c4 18 add $0x18,%rsp - 6635267a: c3 retq - 6635267b: 90 nop - 6635267c: 90 nop - 6635267d: 90 nop - 6635267e: 90 nop - 6635267f: 90 nop - -0000000066352680 : - 66352680: e9 0b ed fe ff jmpq 66341390 <__gcc_register_frame> - 66352685: 90 nop - 66352686: 90 nop - 66352687: 90 nop - 66352688: 90 nop - 66352689: 90 nop - 6635268a: 90 nop - 6635268b: 90 nop - 6635268c: 90 nop - 6635268d: 90 nop - 6635268e: 90 nop - 6635268f: 90 nop - -0000000066352690 <__CTOR_LIST__>: - 66352690: ff (bad) - 66352691: ff (bad) - 66352692: ff (bad) - 66352693: ff (bad) - 66352694: ff (bad) - 66352695: ff (bad) - 66352696: ff (bad) - 66352697: ff .byte 0xff - -0000000066352698 <.ctors>: - 66352698: 60 (bad) - 66352699: 26 35 66 00 00 00 es xor $0x66,%eax +0000000066351320 : + 66351320: ff 25 52 6f 00 00 jmpq *0x6f52(%rip) # 66358278 <__imp_VirtualQuery> + 66351326: 90 nop + 66351327: 90 nop + +0000000066351328 : + 66351328: ff 25 42 6f 00 00 jmpq *0x6f42(%rip) # 66358270 <__imp_VirtualProtect> + 6635132e: 90 nop + 6635132f: 90 nop + +0000000066351330 : + 66351330: ff 25 32 6f 00 00 jmpq *0x6f32(%rip) # 66358268 <__imp_UnhandledExceptionFilter> + 66351336: 90 nop + 66351337: 90 nop + +0000000066351338 : + 66351338: ff 25 22 6f 00 00 jmpq *0x6f22(%rip) # 66358260 <__imp_TlsGetValue> + 6635133e: 90 nop + 6635133f: 90 nop + +0000000066351340 : + 66351340: ff 25 12 6f 00 00 jmpq *0x6f12(%rip) # 66358258 <__imp_TerminateProcess> + 66351346: 90 nop + 66351347: 90 nop + +0000000066351348 : + 66351348: ff 25 02 6f 00 00 jmpq *0x6f02(%rip) # 66358250 <__imp_Sleep> + 6635134e: 90 nop + 6635134f: 90 nop + +0000000066351350 : + 66351350: ff 25 f2 6e 00 00 jmpq *0x6ef2(%rip) # 66358248 <__imp_SetUnhandledExceptionFilter> + 66351356: 90 nop + 66351357: 90 nop + +0000000066351358 : + 66351358: ff 25 e2 6e 00 00 jmpq *0x6ee2(%rip) # 66358240 <__imp_RtlVirtualUnwind> + 6635135e: 90 nop + 6635135f: 90 nop + +0000000066351360 : + 66351360: ff 25 d2 6e 00 00 jmpq *0x6ed2(%rip) # 66358238 <__imp_RtlLookupFunctionEntry> + 66351366: 90 nop + 66351367: 90 nop + +0000000066351368 : + 66351368: ff 25 c2 6e 00 00 jmpq *0x6ec2(%rip) # 66358230 <__imp_RtlCaptureContext> + 6635136e: 90 nop + 6635136f: 90 nop + +0000000066351370 : + 66351370: ff 25 b2 6e 00 00 jmpq *0x6eb2(%rip) # 66358228 <__imp_RtlAddFunctionTable> + 66351376: 90 nop + 66351377: 90 nop + +0000000066351378 : + 66351378: ff 25 a2 6e 00 00 jmpq *0x6ea2(%rip) # 66358220 <__imp_QueryPerformanceCounter> + 6635137e: 90 nop + 6635137f: 90 nop + +0000000066351380 : + 66351380: ff 25 92 6e 00 00 jmpq *0x6e92(%rip) # 66358218 <__imp_LeaveCriticalSection> + 66351386: 90 nop + 66351387: 90 nop + +0000000066351388 : + 66351388: ff 25 82 6e 00 00 jmpq *0x6e82(%rip) # 66358210 <__imp_InitializeCriticalSection> + 6635138e: 90 nop + 6635138f: 90 nop + +0000000066351390 : + 66351390: ff 25 72 6e 00 00 jmpq *0x6e72(%rip) # 66358208 <__imp_GetTickCount> + 66351396: 90 nop + 66351397: 90 nop + +0000000066351398 : + 66351398: ff 25 62 6e 00 00 jmpq *0x6e62(%rip) # 66358200 <__imp_GetSystemTimeAsFileTime> + 6635139e: 90 nop + 6635139f: 90 nop + +00000000663513a0 : + 663513a0: ff 25 52 6e 00 00 jmpq *0x6e52(%rip) # 663581f8 <__imp_GetModuleFileNameW> + 663513a6: 90 nop + 663513a7: 90 nop + +00000000663513a8 : + 663513a8: ff 25 42 6e 00 00 jmpq *0x6e42(%rip) # 663581f0 <__imp_GetLastError> + 663513ae: 90 nop + 663513af: 90 nop + +00000000663513b0 : + 663513b0: ff 25 32 6e 00 00 jmpq *0x6e32(%rip) # 663581e8 <__imp_GetCurrentThreadId> + 663513b6: 90 nop + 663513b7: 90 nop + +00000000663513b8 : + 663513b8: ff 25 22 6e 00 00 jmpq *0x6e22(%rip) # 663581e0 <__imp_GetCurrentProcessId> + 663513be: 90 nop + 663513bf: 90 nop + +00000000663513c0 : + 663513c0: ff 25 12 6e 00 00 jmpq *0x6e12(%rip) # 663581d8 <__imp_GetCurrentProcess> + 663513c6: 90 nop + 663513c7: 90 nop + +00000000663513c8 : + 663513c8: ff 25 02 6e 00 00 jmpq *0x6e02(%rip) # 663581d0 <__imp_EnterCriticalSection> + 663513ce: 90 nop + 663513cf: 90 nop + +00000000663513d0 : + 663513d0: ff 25 f2 6d 00 00 jmpq *0x6df2(%rip) # 663581c8 <__IAT_start__> + 663513d6: 90 nop + 663513d7: 90 nop + 663513d8: 0f 1f 84 00 00 00 00 nopl 0x0(%rax,%rax,1) + 663513df: 00 + +00000000663513e0 <__report_error>: + 663513e0: 56 push %rsi + 663513e1: 53 push %rbx + 663513e2: 48 83 ec 38 sub $0x38,%rsp + 663513e6: 48 8d 44 24 58 lea 0x58(%rsp),%rax + 663513eb: 48 89 cb mov %rcx,%rbx + 663513ee: b9 02 00 00 00 mov $0x2,%ecx + 663513f3: 48 89 54 24 58 mov %rdx,0x58(%rsp) + 663513f8: 4c 89 44 24 60 mov %r8,0x60(%rsp) + 663513fd: 4c 89 4c 24 68 mov %r9,0x68(%rsp) + 66351402: 48 89 44 24 28 mov %rax,0x28(%rsp) + 66351407: e8 c4 fe ff ff callq 663512d0 <__acrt_iob_func> + 6635140c: 41 b8 1b 00 00 00 mov $0x1b,%r8d + 66351412: ba 01 00 00 00 mov $0x1,%edx + 66351417: 48 8d 0d 82 1c 00 00 lea 0x1c82(%rip),%rcx # 663530a0 <.rdata> + 6635141e: 49 89 c1 mov %rax,%r9 + 66351421: e8 f2 fc ff ff callq 66351118 + 66351426: 48 8b 74 24 28 mov 0x28(%rsp),%rsi + 6635142b: b9 02 00 00 00 mov $0x2,%ecx + 66351430: e8 9b fe ff ff callq 663512d0 <__acrt_iob_func> + 66351435: 48 89 da mov %rbx,%rdx + 66351438: 48 89 c1 mov %rax,%rcx + 6635143b: 49 89 f0 mov %rsi,%r8 + 6635143e: e8 a5 fc ff ff callq 663510e8 + 66351443: e8 f0 fc ff ff callq 66351138 + 66351448: 90 nop + 66351449: 90 nop + 6635144a: 90 nop + 6635144b: 90 nop + 6635144c: 90 nop + 6635144d: 90 nop + 6635144e: 90 nop + 6635144f: 90 nop + +0000000066351450 : + 66351450: 48 83 ec 18 sub $0x18,%rsp + 66351454: 0f ae 5c 24 0c stmxcsr 0xc(%rsp) + 66351459: 81 4c 24 0c 40 80 00 orl $0x8040,0xc(%rsp) + 66351460: 00 + 66351461: 0f ae 54 24 0c ldmxcsr 0xc(%rsp) + 66351466: 48 83 c4 18 add $0x18,%rsp + 6635146a: c3 retq + 6635146b: 90 nop + 6635146c: 90 nop + 6635146d: 90 nop + 6635146e: 90 nop + 6635146f: 90 nop + +0000000066351470 : + 66351470: e9 1b ff fe ff jmpq 66341390 <__gcc_register_frame> + 66351475: 90 nop + 66351476: 90 nop + 66351477: 90 nop + 66351478: 90 nop + 66351479: 90 nop + 6635147a: 90 nop + 6635147b: 90 nop + 6635147c: 90 nop + 6635147d: 90 nop + 6635147e: 90 nop + 6635147f: 90 nop + +0000000066351480 <__CTOR_LIST__>: + 66351480: ff (bad) + 66351481: ff (bad) + 66351482: ff (bad) + 66351483: ff (bad) + 66351484: ff (bad) + 66351485: ff (bad) + 66351486: ff (bad) + 66351487: ff .byte 0xff + +0000000066351488 <.ctors>: + 66351488: 50 push %rax + 66351489: 14 35 adc $0x35,%al + 6635148b: 66 00 00 data16 add %al,(%rax) ... -00000000663526a0 <.ctors.65535>: - 663526a0: 80 26 35 andb $0x35,(%rsi) - 663526a3: 66 00 00 data16 add %al,(%rax) +0000000066351490 <.ctors.65535>: + 66351490: 70 14 jo 663514a6 <__DTOR_LIST__+0x6> + 66351492: 35 66 00 00 00 xor $0x66,%eax ... -00000000663526b0 <__DTOR_LIST__>: - 663526b0: ff (bad) - 663526b1: ff (bad) - 663526b2: ff (bad) - 663526b3: ff (bad) - 663526b4: ff (bad) - 663526b5: ff (bad) - 663526b6: ff (bad) - 663526b7: ff 00 incl (%rax) - 663526b9: 00 00 add %al,(%rax) - 663526bb: 00 00 add %al,(%rax) - 663526bd: 00 00 add %al,(%rax) +00000000663514a0 <__DTOR_LIST__>: + 663514a0: ff (bad) + 663514a1: ff (bad) + 663514a2: ff (bad) + 663514a3: ff (bad) + 663514a4: ff (bad) + 663514a5: ff (bad) + 663514a6: ff (bad) + 663514a7: ff 00 incl (%rax) + 663514a9: 00 00 add %al,(%rax) + 663514ab: 00 00 add %al,(%rax) + 663514ad: 00 00 add %al,(%rax) ... diff --git a/sim/gencfuncs.lua b/sim/gencfuncs.lua index 2084bd5..d422514 100644 --- a/sim/gencfuncs.lua +++ b/sim/gencfuncs.lua @@ -74,6 +74,7 @@ local function createMux(n) return { name = "Mux"..n, names = {"Mux "..n.." Bit" local function createDemux(n) return { name = "Demux"..n, names = {"Demux "..n.." Bit", "Demux "..n.." Bit Vertical"}, size = 1, func = "int pa = getdata(0); if(getport("..(n+math.pow(2,n)+1)..")) { int a = getword("..n..", 1) + "..(n+1).."; if(pa != a) { if(pa) { setport(pa, 0); } setport(a, 1); setdata(0, a); } } else { if(pa) { setport(pa, 0); setdata(0, 0); } }" } end local function createRom(x, y, z) local w = log2(x*y); return { name = "Rom"..w.."x"..z, names = {"ROM "..x.."x"..y..(z>1 and ("x"..z) or "")}, size = x*y*z, func="if(getport("..(w+z+1)..")) { int a = getword("..w..", 1); for(int i=0; i<"..z.."; i++) { setport("..(w+1).."+i, getdata(a + i*"..(x*y)..")); } } else { clearword("..z..", "..(w+1).."); }" } end local function createAdder(n) return { name = "Adder"..n, names = {"Adder "..n.." Bit"}, func = (n>=32 and "unsigned long long" or "int").." v = getword("..n..", 1) + getword("..n..", "..(n+1)..") + getport("..(n*3+1).."); setword("..n..", "..(n*2+1)..", v); setport("..(n*3+2)..", (v>>"..n..") & 1);" } end +local function createBinary(name, f, inv, n) local ilist = {}; for i = 1, n do table.insert(ilist, "getport("..i..")") end; return { name = name..n, names = {name:upper().." "..n.." Bit"}, func = "setport("..(n+1)..", "..inv.."("..table.concat(ilist, " "..f.." ").."));" } end local romsizes = { -- copied from brick gen -- 1 bit data 4 bit data 8 bit data 16 bit data 32 bit data 48 bit data 64 bit data @@ -85,6 +86,14 @@ local romsizes = { -- copied from brick gen {64, 32, 8}, {64, 32, 16}, {64, 32, 32}, {64, 32, 48}, {64, 32, 64}, -- 11 bit addr {64, 64, 8}, {64, 64, 16}, {64, 64, 32}, {64, 64, 48}, {64, 64, 64}, -- 12 bit addr } +local binaries = { + {"And", "&&", ""}, + {"Or", "||", ""}, + {"Xor", "^", ""}, + {"Nand", "&&", "!"}, + {"Nor", "||", "!"}, + {"Xnor", "^", "!"}, +} local gates = { { name = "Diode", names = {"Diode", "Diode Up", "Diode Down"}, func = "setport(2, getport(1));" }, { name = "Not" , names = {"Not" , "Not Up" , "Not Down" }, func = "setport(2, !getport(1));" }, @@ -95,6 +104,7 @@ local gates = { createDemux(1), createDemux(2), createDemux(3), createDemux(4), createDemux(5), createDemux(6), createDemux(7), createDemux(8), createAdder(1), createAdder(2), createAdder(4), createAdder(8), createAdder(16), createAdder(32), } +for _, v in ipairs(binaries) do for i = 2, 8 do table.insert(gates, createBinary(v[1], v[2], v[3], i)) end end for i, size in ipairs(romsizes) do table.insert(gates, createRom(size[1], size[2], size[3] or 1)) end exportGates(gates)