~ This file is a commented hexadecimal representation of a compiled ~ program, the output of Evocation's hex transform. The comments are ~ intended to allow a human reader to audit it. You can convert it to a ~ runnable executable by piping it through the program named 'hex' and ~ chmodding the output 755. The difference between a source and a binary ~ is comments! Enjoy. :) ~ This particular program is 'evoke', the compiler. If you already have ~ a binary copy of 'hex', run this file through it and you'll have a ~ working compiler. Pretty sweet, right? ~ ~ If you're auditing this by hand, first off, thank you for doing that. ~ You may wish to pull up the source code side-by-side with the hex dump; ~ there's a lot of structural stuff in the actual source that aids in ~ readability but isn't easily reproduced in this form, though every ~ effort has been made. ~ ELF file header ~ * denotes mandatory fields according to breadbox 7f 45 4c 46 ~ *magic number 02 ~ 64-bit 01 ~ little-endian 01 ~ ELF header format v1 00 ~ System-V ABI 00 00 00 00 00 00 00 00 ~ (padding) 02 00 ~ *executable 3e 00 ~ *Intel x86-64 01 00 00 00 ~ ELF format version 78 00 00 08 00 00 00 00 ~ *entry point 40 00 00 00 00 00 00 00 ~ *program header offset 00 00 00 00 00 00 00 00 ~ section header offset 00 00 00 00 ~ processor flags 40 00 ~ ELF header size 38 00 ~ *program header entry size 01 00 ~ *number of program header entries 00 00 ~ section header entry size 00 00 ~ number of section header entries 00 00 ~ section name string table index ~ ELF program header ~ label elf-program-header at offset 0x0000000000000040 is here. 01 00 00 00 ~ *"loadable" segment type 05 00 00 00 ~ *read+execute permission 00 00 00 00 00 00 00 00 ~ *offset in file 00 00 00 08 00 00 00 00 ~ *virtual address 00 00 00 00 00 00 00 00 ~ physical address (ignored) c0 07 05 00 00 00 00 00 ~ *size in file c0 07 05 00 00 00 00 00 ~ *size in memory 00 00 00 00 00 00 00 00 ~ segment alignment ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ This is the start of the cold-start routine, which is the first code ~ of any kind the executable runs. It has the responsibility of creating ~ the Forth execution environment, then invoking the warm-start routine, ~ which is defined below. ~ label cold-start at offset 0x0000000000000078 is here. fc ~ cld 48 b8 09 00 00 00 00 00 00 00 ~ 0x9 :rax mov-reg64-imm64 ~ mmap() 48 bf 00 00 00 00 10 00 00 00 ~ 0x1000000000 :rdi mov-reg64-imm64 ~ address (very arbitrary) 48 be 00 00 00 01 00 00 00 00 ~ 0x1000000 :rsi mov-reg64-imm64 ~ size (one meg) 48 ba 07 00 00 00 00 00 00 00 ~ 0x7 :rdx mov-reg64-imm64 ~ protection (read+write+exec) 49 ba 22 00 00 00 00 00 00 00 ~ 0x22 :r10 mov-extrareg64-imm64 ~ flags (private+anonymous) 49 b8 00 00 00 00 00 00 00 00 ~ 0x0 :r8 mov-extrareg64-imm64 ~ file descriptor (ignored) 49 b9 00 00 00 00 00 00 00 00 ~ 0x0 :r9 mov-extrareg64-imm64 ~ offset (ignored) 0f 05 ~ syscall 48 89 c7 ~ :rax :rdi mov-reg64-reg64 48 8d af 00 00 01 00 ~ :rdi 0x00010000 :rbp lea-reg64-disp32-reg64 48 89 bf 00 00 01 00 ~ :rdi 0x00010000 :rdi mov-reg64-disp32-reg64 48 89 a7 08 00 01 00 ~ :rsp 0x00010008 :rdi mov-reg64-disp32-reg64 48 89 af 10 00 01 00 ~ :rbp 0x00010010 :rdi mov-reg64-disp32-reg64 48 b8 00 00 00 00 00 00 00 00 ~ 0x0 :rax mov-reg64-imm64 48 89 87 18 00 01 00 ~ :rax 0x00010018 :rdi mov-reg64-disp32-reg64 48 8d 87 28 00 01 00 ~ :rdi 0x00010028 :rax lea-reg64-disp32-reg64 48 89 87 20 00 01 00 ~ :rax 0x00010020 :rdi mov-reg64-disp32-reg64 57 ~ :rdi push-reg64 48 be 10 01 00 08 00 00 00 00 ~ 0x8000110 :rsi mov-reg64-imm64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ This is the start of the warm-start routine, which is the first Forth ~ code the executable runs, after the cold-start routine has created the ~ Forth execution environment. ~ ~ It does some initial setup here at the top; then the vast bulk of it ~ is actually the log-load routine, directly included; then finally there ~ is a small amount of finishing work done at the tail end of the ~ warm-start routine. ~ ~ The routine's body is interpreted Forth code, meaning that it is an ~ an array of pointers to the codewords of Forth words, occasionally ~ interspersed with literal values. ~ ~ The codeword pointers were located by using the label system, which ~ means the labels they reference must have been defined somewhere else, ~ normally by the label transform. The label-transformed code normally ~ occurs after the warm-start routine in the executable, which means these ~ are forward references to words defined far below. 00 00 ~ (alignment padding) ~ label warm-start at offset 0x0000000000000110 is here. 48 f1 04 08 00 00 00 00 ~ log-load-log (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log" (string literal with null) 6c 6f 67 00 00 00 00 00 ~ (alignment padding) 90 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) 88 f1 04 08 00 00 00 00 ~ log-load-s0 (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) 90 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) e0 f1 04 08 00 00 00 00 ~ log-load-r0 (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) 90 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) 58 f2 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) 90 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) 90 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) ~ This is the start of the log-load routine, which is a long block of ~ code that has been processed by the log-load transform. It is part of ~ the warm-start routine, which does other things before and after it. ~ For clarity's sake, to avoid weird nesting, the section header above ~ calls this the warm-start section of the executable, but in a sense it ~ might be more accurate to call it the log-load section. ~ ~ The routine is interpreted Forth code, just as the warm-start routine ~ as a whole is; see above. ~ ~ The job of the log-load routine is to create runnable code in the ~ dynamic log, at runtime. The normal way to create a Forth executable ~ is to use label-transformed code to implement a minimal set of ~ functionality needed for the log-load routine to run, then invoke the ~ log-load routine to copy a more complete set of functionality into ~ memory. ~ ~ The log-load routine is super important, but also extremely verbose, ~ which necessarily makes it hard to read. If you're skimming this file ~ for the first time to get a sense of what it contains, you might want ~ to search for the words "label transform" to get to the stuff that makes ~ better introductory reading. ~ (alignment padding) ~ This is the actual docol routine, the interpreter which is pointed to by ~ the codeword of every interpreted word. It does not itself have an entry ~ in the dictionary; the word "docol" will return a pointer to this routine. ~ The word's entry follows immediately after the routine. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 10 f0 04 08 00 00 00 00 ~ pack-pushcontrol (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 68 e0 04 08 00 00 00 00 ~ add-reg64-imm8 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 78 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 60 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) ~ This is the dictionary entry for docol. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) ~ create 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) a8 f6 04 08 00 00 00 00 ~ log-load-self-codeword ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) c0 c1 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 78 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 60 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) ~ exit is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 98 f0 04 08 00 00 00 00 ~ pack-popcontrol (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ swap is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ drop is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 2drop is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ roll is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) f0 e4 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 c6 04 08 00 00 00 00 ~ mov-reg64-indexed-reg64 ~ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 80 bf 04 08 00 00 00 00 ~ lea-reg64-indexed-reg64 ~ (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 c0 04 08 00 00 00 00 ~ lea-reg64-disp8-indexed-reg64 ~ (codeword pointer) a8 bb 04 08 00 00 00 00 ~ std (codeword pointer) 18 d1 04 08 00 00 00 00 ~ rep-movs64 (codeword pointer) 70 bb 04 08 00 00 00 00 ~ cld (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 38 c3 04 08 00 00 00 00 ~ mov-indirect-reg64-reg64 ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ unroll is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) f0 e4 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 60 c4 04 08 00 00 00 00 ~ mov-reg64-indirect-reg64 ~ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 40 be 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 40 be 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) 18 d1 04 08 00 00 00 00 ~ rep-movs64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e8 c6 04 08 00 00 00 00 ~ mov-indexed-reg64-reg64 ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 3roll is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 3unroll is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ dup is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 2dup is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ + is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e0 de 04 08 00 00 00 00 ~ add-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ - is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f8 e0 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ * is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 10 e3 04 08 00 00 00 00 ~ mul-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ /% is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 88 e3 04 08 00 00 00 00 ~ divmod-reg64 (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 1+ is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e4 04 08 00 00 00 00 ~ inc-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 1- is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) f0 e4 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ = is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) b0 92 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 08 ec 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ != is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) e0 92 04 08 00 00 00 00 ~ :cc-not-equal (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 08 ec 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ > is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) d8 94 04 08 00 00 00 00 ~ :cc-greater (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 08 ec 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ < is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 38 94 04 08 00 00 00 00 ~ :cc-less (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 08 ec 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ >= is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 70 94 04 08 00 00 00 00 ~ :cc-greater-equal (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 08 ec 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ <= is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) a8 94 04 08 00 00 00 00 ~ :cc-less-equal (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 08 ec 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ >unsigned is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">unsigned" (string literal with null) 3e 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 48 93 04 08 00 00 00 00 ~ :cc-above (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 08 ec 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ =unsigned is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=unsigned" (string literal with null) 3e 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 80 92 04 08 00 00 00 00 ~ :cc-above-equal (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 08 ec 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ <=unsigned is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=unsigned" (string literal with null) 3c 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 18 93 04 08 00 00 00 00 ~ :cc-below-equal (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 08 ec 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ & is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 70 e5 04 08 00 00 00 00 ~ and-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ | is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e6 04 08 00 00 00 00 ~ or-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ xor is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "xor" (string literal with null) 78 6f 72 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ invert is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) e8 e7 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ lit is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 48 d2 04 08 00 00 00 00 ~ lods64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ litstring is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) e8 e7 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) 58 dd 04 08 00 00 00 00 ~ repnz-scas8 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 68 e0 04 08 00 00 00 00 ~ add-reg64-imm8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 30 6a 04 08 00 00 00 00 ~ invert (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e8 e5 04 08 00 00 00 00 ~ and-reg64-imm8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ ! is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 38 c3 04 08 00 00 00 00 ~ mov-indirect-reg64-reg64 ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ @ is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 60 c4 04 08 00 00 00 00 ~ mov-reg64-indirect-reg64 ~ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ +! is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+!" (string literal with null) 2b 21 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 68 df 04 08 00 00 00 00 ~ add-indirect-reg64-reg64 ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ -! is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-!" (string literal with null) 2d 21 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 e1 04 08 00 00 00 00 ~ sub-indirect-reg64-reg64 ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 8! is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8!" (string literal with null) 38 21 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 60 cc 04 08 00 00 00 00 ~ mov-indirect-reg64-reg8 ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 8@ is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 78 cd 04 08 00 00 00 00 ~ mov-reg8-indirect-reg64 ~ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 16! is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16!" (string literal with null) 31 36 21 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 58 8f 04 08 00 00 00 00 ~ :ax (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) e0 c9 04 08 00 00 00 00 ~ mov-indirect-reg64-reg16 ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 16@ is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16@" (string literal with null) 31 36 40 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 58 8f 04 08 00 00 00 00 ~ :ax (codeword pointer) 28 cb 04 08 00 00 00 00 ~ mov-reg16-indirect-reg64 ~ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 32! is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32!" (string literal with null) 33 32 21 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 18 8e 04 08 00 00 00 00 ~ :eax (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) c0 c7 04 08 00 00 00 00 ~ mov-indirect-reg64-reg32 ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ 32@ is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32@" (string literal with null) 33 32 40 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 18 8e 04 08 00 00 00 00 ~ :eax (codeword pointer) d8 c8 04 08 00 00 00 00 ~ mov-reg32-indirect-reg64 ~ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ control! is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control!" (string literal with null) 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ control@ is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ value! is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value!" (string literal with null) 76 61 6c 75 65 21 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ value@ is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ memcopy is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memcopy" (string literal with null) 6d 65 6d 63 6f 70 79 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) f8 cf 04 08 00 00 00 00 ~ rep-movs8 (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ memmove is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 88 ea 04 08 00 00 00 00 ~ cmp-reg64-reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 48 92 04 08 00 00 00 00 ~ :cc-below (codeword pointer) c0 ec 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) f8 cf 04 08 00 00 00 00 ~ rep-movs8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 30 ee 04 08 00 00 00 00 ~ jmp-rel-imm8 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e0 de 04 08 00 00 00 00 ~ add-reg64-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f0 e4 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) e0 de 04 08 00 00 00 00 ~ add-reg64-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f0 e4 04 08 00 00 00 00 ~ dec-reg64 (codeword pointer) a8 bb 04 08 00 00 00 00 ~ std (codeword pointer) f8 cf 04 08 00 00 00 00 ~ rep-movs8 (codeword pointer) 70 bb 04 08 00 00 00 00 ~ cld (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ stringlen is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) e8 e7 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) 58 dd 04 08 00 00 00 00 ~ repnz-scas8 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 e0 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) f8 e1 04 08 00 00 00 00 ~ sub-reg64-imm8 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ reverse-stringlen is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-stringlen" (string literal with null) 72 65 76 65 72 73 65 2d 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) e8 e7 04 08 00 00 00 00 ~ not-reg64 (codeword pointer) a8 bb 04 08 00 00 00 00 ~ std (codeword pointer) 58 dd 04 08 00 00 00 00 ~ repnz-scas8 (codeword pointer) 70 bb 04 08 00 00 00 00 ~ cld (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 e0 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 e1 04 08 00 00 00 00 ~ sub-reg64-imm8 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ reverse-padding-len is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-padding-len" (string literal with null) 72 65 76 65 72 73 65 2d 70 61 64 64 69 6e 67 2d 6c 65 6e 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 30 c1 04 08 00 00 00 00 ~ mov-reg64-imm32 (codeword pointer) a8 bb 04 08 00 00 00 00 ~ std (codeword pointer) d8 db 04 08 00 00 00 00 ~ repz-scas8 (codeword pointer) 70 bb 04 08 00 00 00 00 ~ cld (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 e0 04 08 00 00 00 00 ~ sub-reg64-reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) f8 e1 04 08 00 00 00 00 ~ sub-reg64-imm8 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ stringcmp is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringcmp" (string literal with null) 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 e7 04 08 00 00 00 00 ~ xor-reg64-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) 60 c4 04 08 00 00 00 00 ~ mov-reg64-indirect-reg64 ~ (codeword pointer) c0 90 04 08 00 00 00 00 ~ :cl (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) 70 ce 04 08 00 00 00 00 ~ mov-reg8-reg8 (codeword pointer) a0 d6 04 08 00 00 00 00 ~ cmps8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) b0 92 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) c0 ec 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) 48 93 04 08 00 00 00 00 ~ :cc-above (codeword pointer) 10 91 04 08 00 00 00 00 ~ :bl (codeword pointer) 08 ec 04 08 00 00 00 00 ~ set-reg8-cc (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 88 e2 04 08 00 00 00 00 ~ sbb-reg64-imm8 (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 78 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 eb 04 08 00 00 00 00 ~ test-reg64-reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) e4 ff ff ff ff ff ff ff ~ 0xffffffffffffffe4 (integer literal) e0 92 04 08 00 00 00 00 ~ :cc-not-equal (codeword pointer) c0 ec 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 bd 04 08 00 00 00 00 ~ push-imm32-extended64 ~ (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ branch is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) f0 df 04 08 00 00 00 00 ~ add-reg64-indirect-reg64 ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ 0branch is defined here via the log-load transform. 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 90 eb 04 08 00 00 00 00 ~ test-reg64-reg64 (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) b0 92 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) c0 ec 04 08 00 00 00 00 ~ jmp-cc-rel-imm8 (codeword pointer) 48 d2 04 08 00 00 00 00 ~ lods64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ execute is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) c0 ed 04 08 00 00 00 00 ~ jmp-abs-indirect-reg64 ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ entry-to-execution-token is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ execution-token-to-entry is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execution-token-to-entry" (string literal with null) 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 2d 74 6f 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-padding-len" (string literal with null) 72 65 76 65 72 73 65 2d 70 61 64 64 69 6e 67 2d 6c 65 6e 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reverse-stringlen" (string literal with null) 72 65 76 65 72 73 65 2d 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ entry-flags@ is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ entry-flags! is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ff ff ff ff ff ff ff ~ 0xffffffffffffff00 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ entry-to-name is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32!" (string literal with null) 33 32 21 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack16" (string literal with null) 70 61 63 6b 31 36 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16!" (string literal with null) 31 36 21 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8!" (string literal with null) 38 21 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ packstring is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packstring" (string literal with null) 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memcopy" (string literal with null) 6d 65 6d 63 6f 70 79 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-raw-string is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-raw-string" (string literal with null) 70 61 63 6b 2d 72 61 77 2d 73 74 72 69 6e 67 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memcopy" (string literal with null) 6d 65 6d 63 6f 70 79 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ packalign is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 04 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack64" (string literal with null) 75 6e 70 61 63 6b 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack32" (string literal with null) 75 6e 70 61 63 6b 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "32@" (string literal with null) 33 32 40 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack16" (string literal with null) 75 6e 70 61 63 6b 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "16@" (string literal with null) 31 36 40 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpack8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ align-size is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unpackalign is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpackalign" (string literal with null) 75 6e 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ crash is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "crash" (string literal with null) 63 72 61 73 68 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 38 bc 04 08 00 00 00 00 ~ hlt (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ max is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "max" (string literal with null) 6d 61 78 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ min is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "min" (string literal with null) 6d 69 6e 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ over is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pick is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ndrop is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndrop" (string literal with null) 6e 64 72 6f 70 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ndup is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndup" (string literal with null) 6e 64 75 70 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ 3drop is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3drop" (string literal with null) 33 64 72 6f 70 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ 3dup is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3dup" (string literal with null) 33 64 75 70 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ && is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ || is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "||" (string literal with null) 7c 7c 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ not is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "not" (string literal with null) 6e 6f 74 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ negate is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "negate" (string literal with null) 6e 65 67 61 74 65 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ align-floor is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-floor" (string literal with null) 61 6c 69 67 6e 2d 66 6c 6f 6f 72 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ find-in is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find-in" (string literal with null) 66 69 6e 64 2d 69 6e 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringcmp" (string literal with null) 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 04 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ syscall-0 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-0" (string literal with null) 73 79 73 63 61 6c 6c 2d 30 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-1 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-1" (string literal with null) 73 79 73 63 61 6c 6c 2d 31 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-2 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-2" (string literal with null) 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-3 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-3" (string literal with null) 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-4 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-4" (string literal with null) 73 79 73 63 61 6c 6c 2d 34 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 28 8d 04 08 00 00 00 00 ~ :r10 (codeword pointer) 78 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-5 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-5" (string literal with null) 73 79 73 63 61 6c 6c 2d 35 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) d8 8c 04 08 00 00 00 00 ~ :r8 (codeword pointer) 78 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) 28 8d 04 08 00 00 00 00 ~ :r10 (codeword pointer) 78 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ syscall-6 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-6" (string literal with null) 73 79 73 63 61 6c 6c 2d 36 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 00 8d 04 08 00 00 00 00 ~ :r9 (codeword pointer) 78 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) d8 8c 04 08 00 00 00 00 ~ :r8 (codeword pointer) 78 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) 28 8d 04 08 00 00 00 00 ~ :r10 (codeword pointer) 78 bd 04 08 00 00 00 00 ~ pop-extrareg64 (codeword pointer) e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) 28 bd 04 08 00 00 00 00 ~ pop-reg64 (codeword pointer) e8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 c2 04 08 00 00 00 00 ~ mov-reg64-reg64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ sys-exit is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 3c 00 00 00 00 00 00 00 ~ 0x3c (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-1" (string literal with null) 73 79 73 63 61 6c 6c 2d 31 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "crash" (string literal with null) 63 72 61 73 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-write is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-write" (string literal with null) 73 79 73 2d 77 72 69 74 65 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-3" (string literal with null) 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-read is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-read" (string literal with null) 73 79 73 2d 72 65 61 64 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-3" (string literal with null) 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-open is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-open" (string literal with null) 73 79 73 2d 6f 70 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-3" (string literal with null) 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-close is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-close" (string literal with null) 73 79 73 2d 63 6c 6f 73 65 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-1" (string literal with null) 73 79 73 63 61 6c 6c 2d 31 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ emitstring is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-write" (string literal with null) 73 79 73 2d 77 72 69 74 65 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ space is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ newline is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pow is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pow" (string literal with null) 70 6f 77 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 04 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ logfloor is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "logfloor" (string literal with null) 6c 6f 67 66 6c 6f 6f 72 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">unsigned" (string literal with null) 3e 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 04 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ logceil is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "logceil" (string literal with null) 6c 6f 67 63 65 69 6c 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=unsigned" (string literal with null) 3e 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 04 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .base-unsigned is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "logfloor" (string literal with null) 6c 6f 67 66 6c 6f 6f 72 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pow" (string literal with null) 70 6f 77 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 04 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .base is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base" (string literal with null) 2e 62 61 73 65 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ . is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base" (string literal with null) 2e 62 61 73 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex" (string literal with null) 2e 68 65 78 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex8" (string literal with null) 2e 68 65 78 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex16" (string literal with null) 2e 68 65 78 31 36 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex32" (string literal with null) 2e 68 65 78 33 32 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hex64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ .hexn is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hexn" (string literal with null) 2e 68 65 78 6e 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".base-unsigned" (string literal with null) 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rcx" (string literal with null) 3a 72 63 78 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdx" (string literal with null) 3a 72 64 78 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbx" (string literal with null) 3a 72 62 78 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdi" (string literal with null) 3a 72 64 69 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r8" (string literal with null) 3a 72 38 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r9" (string literal with null) 3a 72 39 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r10" (string literal with null) 3a 72 31 30 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r11" (string literal with null) 3a 72 31 31 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r12" (string literal with null) 3a 72 31 32 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r13" (string literal with null) 3a 72 31 33 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r14" (string literal with null) 3a 72 31 34 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r15" (string literal with null) 3a 72 31 35 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":eax" (string literal with null) 3a 65 61 78 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ecx" (string literal with null) 3a 65 63 78 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edx" (string literal with null) 3a 65 64 78 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebx" (string literal with null) 3a 65 62 78 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esp" (string literal with null) 3a 65 73 70 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebp" (string literal with null) 3a 65 62 70 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esi" (string literal with null) 3a 65 73 69 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edi" (string literal with null) 3a 65 64 69 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ax" (string literal with null) 3a 61 78 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cx" (string literal with null) 3a 63 78 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dx" (string literal with null) 3a 64 78 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bx" (string literal with null) 3a 62 78 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":sp" (string literal with null) 3a 73 70 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bp" (string literal with null) 3a 62 70 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":si" (string literal with null) 3a 73 69 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":di" (string literal with null) 3a 64 69 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":al" (string literal with null) 3a 61 6c 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cl" (string literal with null) 3a 63 6c 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dl" (string literal with null) 3a 64 6c 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bl" (string literal with null) 3a 62 6c 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ah" (string literal with null) 3a 61 68 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ch" (string literal with null) 3a 63 68 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dh" (string literal with null) 3a 64 68 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bh" (string literal with null) 3a 62 68 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-overflow" (string literal with null) 3a 63 63 2d 6f 76 65 72 66 6c 6f 77 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-no-overflow" (string literal with null) 3a 63 63 2d 6e 6f 2d 6f 76 65 72 66 6c 6f 77 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above-equal" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 2d 65 71 75 61 6c 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-equal" (string literal with null) 3a 63 63 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-equal" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 65 71 75 61 6c 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below-equal" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 2d 65 71 75 61 6c 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-sign" (string literal with null) 3a 63 63 2d 73 69 67 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-sign" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 73 69 67 6e 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-even" (string literal with null) 3a 63 63 2d 65 76 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-odd" (string literal with null) 3a 63 63 2d 6f 64 64 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less" (string literal with null) 3a 63 63 2d 6c 65 73 73 00 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater-equal" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less-equal" (string literal with null) 3a 63 63 2d 6c 65 73 73 2d 65 71 75 61 6c 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 f9 04 08 00 00 00 00 ~ log-load-keyword (codeword pointer) ~ reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rcx" (string literal with null) 3a 72 63 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdx" (string literal with null) 3a 72 64 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbx" (string literal with null) 3a 72 62 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rdi" (string literal with null) 3a 72 64 69 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg64 is not a reg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 20 72 65 67 36 34 2e 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ extrareg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r8" (string literal with null) 3a 72 38 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r9" (string literal with null) 3a 72 39 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r10" (string literal with null) 3a 72 31 30 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r11" (string literal with null) 3a 72 31 31 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r12" (string literal with null) 3a 72 31 32 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r13" (string literal with null) 3a 72 31 33 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r14" (string literal with null) 3a 72 31 34 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":r15" (string literal with null) 3a 72 31 35 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to extrareg64 is not an extrareg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 65 78 74 72 61 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 6e 20 65 78 74 72 61 72 65 67 36 34 2e 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ reg32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":eax" (string literal with null) 3a 65 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ecx" (string literal with null) 3a 65 63 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edx" (string literal with null) 3a 65 64 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebx" (string literal with null) 3a 65 62 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esp" (string literal with null) 3a 65 73 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ebp" (string literal with null) 3a 65 62 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":esi" (string literal with null) 3a 65 73 69 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":edi" (string literal with null) 3a 65 64 69 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg32 is not a reg32." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 33 32 20 69 73 20 6e 6f 74 20 61 20 72 65 67 33 32 2e 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ reg16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ax" (string literal with null) 3a 61 78 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cx" (string literal with null) 3a 63 78 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dx" (string literal with null) 3a 64 78 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bx" (string literal with null) 3a 62 78 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":sp" (string literal with null) 3a 73 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bp" (string literal with null) 3a 62 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":si" (string literal with null) 3a 73 69 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":di" (string literal with null) 3a 64 69 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg16 is not a reg16." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 31 36 20 69 73 20 6e 6f 74 20 61 20 72 65 67 31 36 2e 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ reg8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":al" (string literal with null) 3a 61 6c 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cl" (string literal with null) 3a 63 6c 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dl" (string literal with null) 3a 64 6c 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bl" (string literal with null) 3a 62 6c 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ah" (string literal with null) 3a 61 68 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":ch" (string literal with null) 3a 63 68 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":dh" (string literal with null) 3a 64 68 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":bh" (string literal with null) 3a 62 68 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg8 is not a reg8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 38 20 69 73 20 6e 6f 74 20 61 20 72 65 67 38 2e 00 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scalefield is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scalefield" (string literal with null) 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to scalefield is not 1, 2, 4, or 8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 73 63 61 6c 65 66 69 65 6c 64 20 69 73 20 6e 6f 74 20 31 2c 20 32 2c 20 34 2c 20 6f 72 20 38 2e 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ condition-code is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-overflow" (string literal with null) 3a 63 63 2d 6f 76 65 72 66 6c 6f 77 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-no-overflow" (string literal with null) 3a 63 63 2d 6e 6f 2d 6f 76 65 72 66 6c 6f 77 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above-equal" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 2d 65 71 75 61 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-equal" (string literal with null) 3a 63 63 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-equal" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 65 71 75 61 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-below-equal" (string literal with null) 3a 63 63 2d 62 65 6c 6f 77 2d 65 71 75 61 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-above" (string literal with null) 3a 63 63 2d 61 62 6f 76 65 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-sign" (string literal with null) 3a 63 63 2d 73 69 67 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-not-sign" (string literal with null) 3a 63 63 2d 6e 6f 74 2d 73 69 67 6e 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-even" (string literal with null) 3a 63 63 2d 65 76 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-odd" (string literal with null) 3a 63 63 2d 6f 64 64 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less" (string literal with null) 3a 63 63 2d 6c 65 73 73 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0c 00 00 00 00 00 00 00 ~ 0xc (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater-equal" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-less-equal" (string literal with null) 3a 63 63 2d 6c 65 73 73 2d 65 71 75 61 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0e 00 00 00 00 00 00 00 ~ 0xe (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":cc-greater" (string literal with null) 3a 63 63 2d 67 72 65 61 74 65 72 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to condition-code is not a condition code." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 20 69 73 20 6e 6f 74 20 61 20 63 6f 6e 64 69 74 69 6f 6e 20 63 6f 64 65 2e 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-0 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-0" (string literal with null) 72 65 78 2d 30 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-w is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 48 00 00 00 00 00 00 00 ~ 0x48 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-r is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-r" (string literal with null) 72 65 78 2d 72 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 44 00 00 00 00 00 00 00 ~ 0x44 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-x is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-x" (string literal with null) 72 65 78 2d 78 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 42 00 00 00 00 00 00 00 ~ 0x42 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-b is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-b" (string literal with null) 72 65 78 2d 62 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wr is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wr" (string literal with null) 72 65 78 2d 77 72 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4c 00 00 00 00 00 00 00 ~ 0x4c (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wx is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wx" (string literal with null) 72 65 78 2d 77 78 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4a 00 00 00 00 00 00 00 ~ 0x4a (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wb is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wb" (string literal with null) 72 65 78 2d 77 62 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 49 00 00 00 00 00 00 00 ~ 0x49 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-rx is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-rx" (string literal with null) 72 65 78 2d 72 78 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 46 00 00 00 00 00 00 00 ~ 0x46 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-rb is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-rb" (string literal with null) 72 65 78 2d 72 62 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 45 00 00 00 00 00 00 00 ~ 0x45 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-xb is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-xb" (string literal with null) 72 65 78 2d 78 62 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 43 00 00 00 00 00 00 00 ~ 0x43 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wrx is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wrx" (string literal with null) 72 65 78 2d 77 72 78 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4e 00 00 00 00 00 00 00 ~ 0x4e (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wrb is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wrb" (string literal with null) 72 65 78 2d 77 72 62 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4d 00 00 00 00 00 00 00 ~ 0x4d (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wxb is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wxb" (string literal with null) 72 65 78 2d 77 78 62 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4b 00 00 00 00 00 00 00 ~ 0x4b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-rxb is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-rxb" (string literal with null) 72 65 78 2d 72 78 62 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 47 00 00 00 00 00 00 00 ~ 0x47 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rex-wrxb is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wrxb" (string literal with null) 72 65 78 2d 77 72 78 62 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4f 00 00 00 00 00 00 00 ~ 0x4f (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ opcodereg is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ opcodecc is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ modrm is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sib is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-reg8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg8" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-indirect-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "R/M parameter to addressing-indirect-reg64 is :rbp." (string literal with null) 52 2f 4d 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-disp8-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-disp32-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp32-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsp" (string literal with null) 3a 72 73 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-indexed-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scalefield" (string literal with null) 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Base parameter to addressing-indexed-reg64 is :rbp." (string literal with null) 42 61 73 65 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ addressing-disp8-indexed-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scalefield" (string literal with null) 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sib" (string literal with null) 73 69 62 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cld is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cld" (string literal with null) 63 6c 64 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) fc 00 00 00 00 00 00 00 ~ 0xfc (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ std is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "std" (string literal with null) 73 74 64 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) fd 00 00 00 00 00 00 00 ~ 0xfd (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ syscall is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall" (string literal with null) 73 79 73 63 61 6c 6c 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hlt is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hlt" (string literal with null) 68 6c 74 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f4 00 00 00 00 00 00 00 ~ 0xf4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ push-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ push-extrareg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-extrareg64" (string literal with null) 70 75 73 68 2d 65 78 74 72 61 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-b" (string literal with null) 72 65 78 2d 62 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pop-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pop-reg64" (string literal with null) 70 6f 70 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pop-extrareg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pop-extrareg64" (string literal with null) 70 6f 70 2d 65 78 74 72 61 72 65 67 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-b" (string literal with null) 72 65 78 2d 62 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ push-imm32-extended64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-imm32-extended64" (string literal with null) 70 75 73 68 2d 69 6d 6d 33 32 2d 65 78 74 65 6e 64 65 64 36 34 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 68 00 00 00 00 00 00 00 ~ 0x68 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-disp8-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-disp32-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp32-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp32-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-indexed-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-indexed-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lea-reg64-disp8-indexed-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-indexed-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-imm32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm32" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 33 32 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c7 00 00 00 00 00 00 00 ~ 0xc7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-imm64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-extrareg64-imm64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-extrareg64-imm64" (string literal with null) 6d 6f 76 2d 65 78 74 72 61 72 65 67 36 34 2d 69 6d 6d 36 34 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-wb" (string literal with null) 72 65 78 2d 77 62 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "extrareg64" (string literal with null) 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodereg" (string literal with null) 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg64" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg64" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-indirect-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-disp8-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-disp32-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-disp32-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp32-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg64-indexed-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-indexed-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indexed-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indexed-reg64-reg64" (string literal with null) 6d 6f 76 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indexed-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg32" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg32" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 33 32 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg32-indirect-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg32-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 33 32 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg32-disp8-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg32-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 33 32 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg32" (string literal with null) 72 65 67 33 32 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg16" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg16" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 31 36 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg16-indirect-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg16-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 31 36 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg16-disp8-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg16-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 31 36 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg16" (string literal with null) 72 65 67 31 36 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-indirect-reg64-reg8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-indirect-reg64-reg8" (string literal with null) 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 38 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-disp8-reg64-reg8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg8" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 38 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg8-indirect-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg8-indirect-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 38 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg8-disp8-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg8-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 38 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-disp8-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mov-reg8-reg8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg8-reg8" (string literal with null) 6d 6f 76 2d 72 65 67 38 2d 72 65 67 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg8" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs8" (string literal with null) 6d 6f 76 73 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs16" (string literal with null) 6d 6f 76 73 31 36 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs32" (string literal with null) 6d 6f 76 73 33 32 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ movs64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "movs64" (string literal with null) 6d 6f 76 73 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs8" (string literal with null) 72 65 70 2d 6d 6f 76 73 38 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs16" (string literal with null) 72 65 70 2d 6d 6f 76 73 31 36 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs32" (string literal with null) 72 65 70 2d 6d 6f 76 73 33 32 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-movs64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-movs64" (string literal with null) 72 65 70 2d 6d 6f 76 73 36 34 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods8" (string literal with null) 6c 6f 64 73 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods16" (string literal with null) 6c 6f 64 73 31 36 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods32" (string literal with null) 6c 6f 64 73 33 32 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ lods64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods64" (string literal with null) 6c 6f 64 73 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods8" (string literal with null) 72 65 70 2d 6c 6f 64 73 38 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods16" (string literal with null) 72 65 70 2d 6c 6f 64 73 31 36 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods32" (string literal with null) 72 65 70 2d 6c 6f 64 73 33 32 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-lods64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-lods64" (string literal with null) 72 65 70 2d 6c 6f 64 73 36 34 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos8" (string literal with null) 73 74 6f 73 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos16" (string literal with null) 73 74 6f 73 31 36 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos32" (string literal with null) 73 74 6f 73 33 32 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stos64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stos64" (string literal with null) 73 74 6f 73 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos8" (string literal with null) 72 65 70 2d 73 74 6f 73 38 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos16" (string literal with null) 72 65 70 2d 73 74 6f 73 31 36 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos32" (string literal with null) 72 65 70 2d 73 74 6f 73 33 32 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rep-stos64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rep-stos64" (string literal with null) 72 65 70 2d 73 74 6f 73 36 34 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps8" (string literal with null) 63 6d 70 73 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps16" (string literal with null) 63 6d 70 73 31 36 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps32" (string literal with null) 63 6d 70 73 33 32 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmps64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmps64" (string literal with null) 63 6d 70 73 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps8" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 38 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps16" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 31 36 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps32" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 33 32 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-cmps64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-cmps64" (string literal with null) 72 65 70 7a 2d 63 6d 70 73 36 34 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps8" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 38 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps16" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 31 36 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps32" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 33 32 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-cmps64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-cmps64" (string literal with null) 72 65 70 6e 7a 2d 63 6d 70 73 36 34 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas8" (string literal with null) 73 63 61 73 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a8 00 00 00 00 00 00 00 ~ 0xa8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas16" (string literal with null) 73 63 61 73 31 36 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas32" (string literal with null) 73 63 61 73 33 32 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ scas64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "scas64" (string literal with null) 73 63 61 73 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas8" (string literal with null) 72 65 70 7a 2d 73 63 61 73 38 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas16" (string literal with null) 72 65 70 7a 2d 73 63 61 73 31 36 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas32" (string literal with null) 72 65 70 7a 2d 73 63 61 73 33 32 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repz-scas64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repz-scas64" (string literal with null) 72 65 70 7a 2d 73 63 61 73 36 34 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas8" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 38 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas16 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas16" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 31 36 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas32" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 33 32 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ repnz-scas64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "repnz-scas64" (string literal with null) 72 65 70 6e 7a 2d 73 63 61 73 36 34 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-reg64-reg64" (string literal with null) 61 64 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-indirect-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-indirect-reg64-reg64" (string literal with null) 61 64 64 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-reg64-indirect-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-reg64-indirect-reg64" (string literal with null) 61 64 64 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ add-reg64-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "add-reg64-imm8" (string literal with null) 61 64 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sub-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sub-reg64-reg64" (string literal with null) 73 75 62 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sub-indirect-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sub-indirect-reg64-reg64" (string literal with null) 73 75 62 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sub-reg64-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sub-reg64-imm8" (string literal with null) 73 75 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sbb-reg64-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sbb-reg64-imm8" (string literal with null) 73 62 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ mul-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mul-reg64" (string literal with null) 6d 75 6c 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ divmod-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "divmod-reg64" (string literal with null) 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ idivmod-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "idivmod-reg64" (string literal with null) 69 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ inc-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "inc-reg64" (string literal with null) 69 6e 63 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ dec-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dec-reg64" (string literal with null) 64 65 63 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ and-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "and-reg64-reg64" (string literal with null) 61 6e 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 23 00 00 00 00 00 00 00 ~ 0x23 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ and-reg64-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "and-reg64-imm8" (string literal with null) 61 6e 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ or-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "or-reg64-reg64" (string literal with null) 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ or-reg64-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "or-reg64-imm8" (string literal with null) 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ xor-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "xor-reg64-reg64" (string literal with null) 78 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 33 00 00 00 00 00 00 00 ~ 0x33 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ not-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "not-reg64" (string literal with null) 6e 6f 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rol-reg64-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rol-reg64-imm8" (string literal with null) 72 6f 6c 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ rol-reg8-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rol-reg8-imm8" (string literal with null) 72 6f 6c 2d 72 65 67 38 2d 69 6d 6d 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg8" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ror-reg64-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ror-reg64-imm8" (string literal with null) 72 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ror-reg8-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ror-reg8-imm8" (string literal with null) 72 6f 72 2d 72 65 67 38 2d 69 6d 6d 38 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmp-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmp-reg64-reg64" (string literal with null) 63 6d 70 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 3b 00 00 00 00 00 00 00 ~ 0x3b (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ cmp-reg64-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cmp-reg64-imm8" (string literal with null) 63 6d 70 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ test-reg64-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "test-reg64-reg64" (string literal with null) 74 65 73 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "rex-w" (string literal with null) 72 65 78 2d 77 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 85 00 00 00 00 00 00 00 ~ 0x85 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg64" (string literal with null) 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ set-reg8-cc is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "set-reg8-cc" (string literal with null) 73 65 74 2d 72 65 67 38 2d 63 63 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 90 00 00 00 00 00 00 00 ~ 0x90 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "reg8" (string literal with null) 72 65 67 38 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "modrm" (string literal with null) 6d 6f 64 72 6d 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-cc-rel-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-cc-rel-imm8" (string literal with null) 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 38 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-cc-rel-imm32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-cc-rel-imm32" (string literal with null) 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "condition-code" (string literal with null) 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "opcodecc" (string literal with null) 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-abs-indirect-reg64 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "addressing-indirect-reg64" (string literal with null) 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-rel-imm8 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-rel-imm8" (string literal with null) 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 38 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) eb 00 00 00 00 00 00 00 ~ 0xeb (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ jmp-rel-imm32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-rel-imm32" (string literal with null) 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) e9 00 00 00 00 00 00 00 ~ 0xe9 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ call-rel-imm32 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "call-rel-imm32" (string literal with null) 63 61 6c 6c 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) e8 00 00 00 00 00 00 00 ~ 0xe8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack32" (string literal with null) 70 61 63 6b 33 32 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ ret is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ret" (string literal with null) 72 65 74 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c3 00 00 00 00 00 00 00 ~ 0xc3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-next is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lods64" (string literal with null) 6c 6f 64 73 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-beforenext is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-beforenext" (string literal with null) 70 61 63 6b 2d 62 65 66 6f 72 65 6e 65 78 74 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-pushcontrol is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-pushcontrol" (string literal with null) 70 61 63 6b 2d 70 75 73 68 63 6f 6e 74 72 6f 6c 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f8 ff ff ff ff ff ff ff ~ 0xfffffffffffffff8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-disp8-reg64-reg64" (string literal with null) 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ pack-popcontrol is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-popcontrol" (string literal with null) 70 61 63 6b 2d 70 6f 70 63 6f 6e 74 72 6f 6c 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-disp8-reg64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rbp" (string literal with null) 3a 72 62 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lea-reg64-disp8-reg64" (string literal with null) 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-offset is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 01 00 00 00 00 00 ~ 0x10000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-log is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-log" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 6f 67 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-s0 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-s0" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 73 30 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-r0 is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-r0" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 72 30 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-latest is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-here is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-offset" (string literal with null) 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-find is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find-in" (string literal with null) 66 69 6e 64 2d 69 6e 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-find-execution-token is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find-execution-token" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "No such word: " (string literal with null) 4e 6f 20 73 75 63 68 20 77 6f 72 64 3a 20 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-create is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-create" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-self-codeword is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-self-codeword" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-comma is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-semicolon-assembly is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-semicolon-assembly" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6d 69 63 6f 6c 6f 6e 2d 61 73 73 65 6d 62 6c 79 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-latest" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-variable is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-variable" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 76 61 72 69 61 62 6c 65 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-create" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-keyword is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-keyword" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6b 65 79 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-create" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-comma-string is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma-string" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 2d 73 74 72 69 6e 67 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packstring" (string literal with null) 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-left-curly-brace is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-left-curly-brace" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 6c 65 66 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-right-curly-brace is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-right-curly-brace" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 72 69 67 68 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-if is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-if" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 69 66 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-unless is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-unless" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 75 6e 6c 65 73 73 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-if-else is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-if-else" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 69 66 2d 65 6c 73 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-forever is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-forever" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 6f 72 65 76 65 72 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ log-load-while is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-while" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 77 68 69 6c 65 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-here" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-find" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log-load-comma" (string literal with null) 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stack is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stack" (string literal with null) 73 74 61 63 6b 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ stackhex is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stackhex" (string literal with null) 73 74 61 63 6b 68 65 78 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s0" (string literal with null) 73 30 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-in-log is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log" (string literal with null) 6c 6f 67 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ oldest-entry is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ oldest-entry-in is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry-in" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 2d 69 6e 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ next-newer-entry is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ next-newer-entry-in is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry-in" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 2d 69 6e 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ guess-entry-end is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "guess-entry-end" (string literal with null) 67 75 65 73 73 2d 65 6e 74 72 79 2d 65 6e 64 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ containing-entry is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "over" (string literal with null) 6f 76 65 72 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-assembly-word is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-assembly-word" (string literal with null) 69 73 2d 61 73 73 65 6d 62 6c 79 2d 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-docol-itself is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-itself" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 74 73 65 6c 66 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringcmp" (string literal with null) 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-docol-codeword is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-codeword" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 63 6f 64 65 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-itself" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 74 73 65 6c 66 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-itself" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 74 73 65 6c 66 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-docol-interpreted-word is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-interpreted-word" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 6e 74 65 72 70 72 65 74 65 64 2d 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-assembly-word" (string literal with null) 69 73 2d 61 73 73 65 6d 62 6c 79 2d 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-codeword" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 63 6f 64 65 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-codeword-pointer is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-codeword-pointer" (string literal with null) 69 73 2d 63 6f 64 65 77 6f 72 64 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2drop" (string literal with null) 32 64 72 6f 70 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ indent is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ word-heading is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 36 00 00 00 00 00 00 00 ~ 0x36 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "max" (string literal with null) 6d 61 78 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "H" (string literal with null) 48 00 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "M" (string literal with null) 4d 00 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "I" (string literal with null) 49 00 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-assembly-word" (string literal with null) 69 73 2d 61 73 73 65 6d 62 6c 79 2d 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " asm" (string literal with null) 20 61 73 6d 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-interpreted-word" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 6e 74 65 72 70 72 65 74 65 64 2d 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " raw" (string literal with null) 20 72 61 77 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ list-dictionary is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "list-dictionary" (string literal with null) 6c 69 73 74 2d 64 69 63 74 69 6f 6e 61 72 79 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-printable is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-printable" (string literal with null) 69 73 2d 70 72 69 6e 74 61 62 6c 65 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 7f 00 00 00 00 00 00 00 ~ 0x7f (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump-row is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-row" (string literal with null) 68 65 78 64 75 6d 70 2d 72 6f 77 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex32" (string literal with null) 2e 68 65 78 33 32 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex8" (string literal with null) 2e 68 65 78 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "indent" (string literal with null) 69 6e 64 65 6e 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-printable" (string literal with null) 69 73 2d 70 72 69 6e 74 61 62 6c 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndrop" (string literal with null) 6e 64 72 6f 70 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump-between is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-between" (string literal with null) 68 65 78 64 75 6d 70 2d 62 65 74 77 65 65 6e 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1-" (string literal with null) 31 2d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3dup" (string literal with null) 33 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-row" (string literal with null) 68 65 78 64 75 6d 70 2d 72 6f 77 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndrop" (string literal with null) 6e 64 72 6f 70 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump-from is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-from" (string literal with null) 68 65 78 64 75 6d 70 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-between" (string literal with null) 68 65 78 64 75 6d 70 2d 62 65 74 77 65 65 6e 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ hexdump is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump" (string literal with null) 68 65 78 64 75 6d 70 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-from" (string literal with null) 68 65 78 64 75 6d 70 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-hex is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-hex" (string literal with null) 64 65 73 63 72 69 62 65 2d 68 65 78 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "guess-entry-end" (string literal with null) 67 75 65 73 73 2d 65 6e 74 72 79 2d 65 6e 64 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump-between" (string literal with null) 68 65 78 64 75 6d 70 2d 62 65 74 77 65 65 6e 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-docol is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-docol" (string literal with null) 64 65 73 63 72 69 62 65 2d 64 6f 63 6f 6c 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word-heading" (string literal with null) 77 6f 72 64 2d 68 65 61 64 69 6e 67 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "guess-entry-end" (string literal with null) 67 75 65 73 73 2d 65 6e 74 72 79 2d 65 6e 64 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "space" (string literal with null) 73 70 61 63 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-codeword-pointer" (string literal with null) 69 73 2d 63 6f 64 65 77 6f 72 64 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execution-token-to-entry" (string literal with null) 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 2d 74 6f 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe" (string literal with null) 64 65 73 63 72 69 62 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-docol-interpreted-word" (string literal with null) 69 73 2d 64 6f 63 6f 6c 2d 69 6e 74 65 72 70 72 65 74 65 64 2d 77 6f 72 64 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-docol" (string literal with null) 64 65 73 63 72 69 62 65 2d 64 6f 63 6f 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-hex" (string literal with null) 64 65 73 63 72 69 62 65 2d 68 65 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-all is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-all" (string literal with null) 64 65 73 63 72 69 62 65 2d 61 6c 6c 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "oldest-entry" (string literal with null) 6f 6c 64 65 73 74 2d 65 6e 74 72 79 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe" (string literal with null) 64 65 73 63 72 69 62 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "next-newer-entry" (string literal with null) 6e 65 78 74 2d 6e 65 77 65 72 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ describe-compilation is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "describe-compilation" (string literal with null) 64 65 73 63 72 69 62 65 2d 63 6f 6d 70 69 6c 61 74 69 6f 6e 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "compilation in progress" (string literal with null) 63 6f 6d 70 69 6c 61 74 69 6f 6e 20 69 6e 20 70 72 6f 67 72 65 73 73 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "hexdump" (string literal with null) 68 65 78 64 75 6d 70 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " here " (string literal with null) 20 20 68 65 72 65 20 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " latest " (string literal with null) 20 20 6c 61 74 65 73 74 20 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ " name of latest: " (string literal with null) 20 20 6e 61 6d 65 20 6f 66 20 6c 61 74 65 73 74 3a 20 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ symbolize-pointer is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "symbolize-pointer" (string literal with null) 73 79 6d 62 6f 6c 69 7a 65 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "containing-entry" (string literal with null) 63 6f 6e 74 61 69 6e 69 6e 67 2d 65 6e 74 72 79 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-in-log" (string literal with null) 69 73 2d 69 6e 2d 6c 6f 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-name" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":" (string literal with null) 3a 00 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "." (string literal with null) 2e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0x" (string literal with null) 30 78 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ list-callers is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "list-callers" (string literal with null) 6c 69 73 74 2d 63 61 6c 6c 65 72 73 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<" (string literal with null) 3c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "log" (string literal with null) 6c 6f 67 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "||" (string literal with null) 7c 7c 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control stack pointer out of range: " (string literal with null) 63 6f 6e 74 72 6f 6c 20 73 74 61 63 6b 20 70 6f 69 6e 74 65 72 20 6f 75 74 20 6f 66 20 72 61 6e 67 65 3a 20 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ".hex64" (string literal with null) 2e 68 65 78 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "symbolize-pointer" (string literal with null) 73 79 6d 62 6f 6c 69 7a 65 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ bye is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "bye" (string literal with null) 62 79 65 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ forget is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "forget" (string literal with null) 66 6f 72 67 65 74 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ , is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-immediate is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-hidden is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-visible is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-visible" (string literal with null) 6d 61 6b 65 2d 76 69 73 69 62 6c 65 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ make-metadata is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-metadata" (string literal with null) 6d 61 6b 65 2d 6d 65 74 61 64 61 74 61 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags!" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ recurse is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "recurse" (string literal with null) 72 65 63 75 72 73 65 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ find is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find-in" (string literal with null) 66 69 6e 64 2d 69 6e 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-string is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-string" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 74 72 69 6e 67 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "1+" (string literal with null) 31 2b 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ create is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ create-in is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create-in" (string literal with null) 63 72 65 61 74 65 2d 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packstring" (string literal with null) 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ self-codeword is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ variable is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "variable" (string literal with null) 76 61 72 69 61 62 6c 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ keyword is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "keyword" (string literal with null) 6b 65 79 77 6f 72 64 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack64" (string literal with null) 70 61 63 6b 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "push-reg64" (string literal with null) 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ literal is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-physical-start is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-physical-length is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-logical-start is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-logical-length is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ buffer-file-descriptor is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-file-descriptor" (string literal with null) 62 75 66 66 65 72 2d 66 69 6c 65 2d 64 65 73 63 72 69 70 74 6f 72 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ input-buffer-refill is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ input-buffer-next-source is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-next-source" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6e 65 78 74 2d 73 6f 75 72 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ clear-buffer is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "clear-buffer" (string literal with null) 63 6c 65 61 72 2d 62 75 66 66 65 72 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ zero-input-buffer-metadata is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "zero-input-buffer-metadata" (string literal with null) 7a 65 72 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-file-descriptor" (string literal with null) 62 75 66 66 65 72 2d 66 69 6c 65 2d 64 65 73 63 72 69 70 74 6f 72 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-next-source" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6e 65 78 74 2d 73 6f 75 72 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-input-buffer-metadata is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-input-buffer-metadata" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "zero-input-buffer-metadata" (string literal with null) 7a 65 72 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-input-buffer is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-input-buffer" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "zero-input-buffer-metadata" (string literal with null) 7a 65 72 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "clear-buffer" (string literal with null) 63 6c 65 61 72 2d 62 75 66 66 65 72 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ attach-string-to-input-buffer is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "attach-string-to-input-buffer" (string literal with null) 61 74 74 61 63 68 2d 73 74 72 69 6e 67 2d 74 6f 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-file-descriptor" (string literal with null) 62 75 66 66 65 72 2d 66 69 6c 65 2d 64 65 73 63 72 69 70 74 6f 72 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ consume-from is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume-from" (string literal with null) 63 6f 6e 73 75 6d 65 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ peek-from is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek-from" (string literal with null) 70 65 65 6b 2d 66 72 6f 6d 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "8@" (string literal with null) 38 40 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ key-from is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key-from" (string literal with null) 6b 65 79 2d 66 72 6f 6d 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek-from" (string literal with null) 70 65 65 6b 2d 66 72 6f 6d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume-from" (string literal with null) 63 6f 6e 73 75 6d 65 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ normalize-buffer is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "normalize-buffer" (string literal with null) 6e 6f 72 6d 61 6c 69 7a 65 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ compute-next-buffer-free-block is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "compute-next-buffer-free-block" (string literal with null) 63 6f 6d 70 75 74 65 2d 6e 65 78 74 2d 62 75 66 66 65 72 2d 66 72 65 65 2d 62 6c 6f 63 6b 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ refill-input-buffer-from-stream is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "refill-input-buffer-from-stream" (string literal with null) 72 65 66 69 6c 6c 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 66 72 6f 6d 2d 73 74 72 65 61 6d 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "normalize-buffer" (string literal with null) 6e 6f 72 6d 61 6c 69 7a 65 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "compute-next-buffer-free-block" (string literal with null) 63 6f 6d 70 75 74 65 2d 6e 65 78 74 2d 62 75 66 66 65 72 2d 66 72 65 65 2d 62 6c 6f 63 6b 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ndup" (string literal with null) 6e 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-file-descriptor" (string literal with null) 62 75 66 66 65 72 2d 66 69 6c 65 2d 64 65 73 63 72 69 70 74 6f 72 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-read" (string literal with null) 73 79 73 2d 72 65 61 64 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) fc ff ff ff ff ff ff ff ~ 0xfffffffffffffffc (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Read error." (string literal with null) 52 65 61 64 20 65 72 72 6f 72 2e 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 04 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer-metadata" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) ~ create 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer-metadata" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 70 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-input-buffer-metadata" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 6d 65 74 61 64 61 74 61 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) ~ peek is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek" (string literal with null) 70 65 65 6b 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek-from" (string literal with null) 70 65 65 6b 2d 66 72 6f 6d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ consume is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume" (string literal with null) 63 6f 6e 73 75 6d 65 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume-from" (string literal with null) 63 6f 6e 73 75 6d 65 2d 66 72 6f 6d 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ key is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key-from" (string literal with null) 6b 65 79 2d 66 72 6f 6d 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ unroll-past-string is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll-past-string" (string literal with null) 75 6e 72 6f 6c 6c 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ swap-past-string is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap-past-string" (string literal with null) 73 77 61 70 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll-past-string" (string literal with null) 75 6e 72 6f 6c 6c 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ dropstring is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value!" (string literal with null) 76 61 6c 75 65 21 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ dropstring-with-result is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap-past-string" (string literal with null) 73 77 61 70 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ accumulate-string is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "accumulate-string" (string literal with null) 61 63 63 75 6d 75 6c 61 74 65 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "stringlen" (string literal with null) 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "align-size" (string literal with null) 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ff 00 00 00 00 00 00 ~ 0xff00 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 01 00 00 00 00 00 00 ~ 0x100 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 ff 00 00 00 00 00 ~ 0xff0000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 01 00 00 00 00 00 ~ 0x10000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 ff 00 00 00 00 ~ 0xff000000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 01 00 00 00 00 ~ 0x1000000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 ff 00 00 00 ~ 0xff00000000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 01 00 00 00 ~ 0x100000000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 ff 00 00 ~ 0xff0000000000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 01 00 00 ~ 0x10000000000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 ff 00 ~ 0xff000000000000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 01 00 ~ 0x1000000000000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 01 ~ 0x100000000000000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll-past-string" (string literal with null) 75 6e 72 6f 6c 6c 2d 70 61 73 74 2d 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-space is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-space" (string literal with null) 69 73 2d 73 70 61 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0c 00 00 00 00 00 00 00 ~ 0xc (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ is-alphanumeric is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-alphanumeric" (string literal with null) 69 73 2d 61 6c 70 68 61 6e 75 6d 65 72 69 63 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 39 00 00 00 00 00 00 00 ~ 0x39 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 5a 00 00 00 00 00 00 00 ~ 0x5a (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 7a 00 00 00 00 00 00 00 ~ 0x7a (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">=" (string literal with null) 3e 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ word is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-space" (string literal with null) 69 73 2d 73 70 61 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "accumulate-string" (string literal with null) 61 63 63 75 6d 75 6c 61 74 65 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "peek" (string literal with null) 70 65 65 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-space" (string literal with null) 69 73 2d 73 70 61 63 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ unless 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) f0 fd 04 08 00 00 00 00 ~ log-load-unless (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume" (string literal with null) 63 6f 6e 73 75 6d 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "accumulate-string" (string literal with null) 61 63 63 75 6d 75 6c 61 74 65 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 04 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ generalized-digit-value is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "generalized-digit-value" (string literal with null) 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 2d 76 61 6c 75 65 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "<=" (string literal with null) 3c 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ decode-generalized-digit is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "decode-generalized-digit" (string literal with null) 64 65 63 6f 64 65 2d 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "is-alphanumeric" (string literal with null) 69 73 2d 61 6c 70 68 61 6e 75 6d 65 72 69 63 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "generalized-digit-value" (string literal with null) 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 2d 76 61 6c 75 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ">" (string literal with null) 3e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-base-unsigned is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "decode-generalized-digit" (string literal with null) 64 65 63 6f 64 65 2d 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "decode-generalized-digit" (string literal with null) 64 65 63 6f 64 65 2d 67 65 6e 65 72 61 6c 69 7a 65 64 2d 64 69 67 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 04 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-integer-unsigned is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer-unsigned" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 2d 75 6e 73 69 67 6e 65 64 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 78 00 00 00 00 00 00 00 ~ 0x78 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 6f 00 00 00 00 00 00 00 ~ 0x6f (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 62 00 00 00 00 00 00 00 ~ 0x62 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-integer is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2d 00 00 00 00 00 00 00 ~ 0x2d (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer-unsigned" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 2d 75 6e 73 69 67 6e 65 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer-unsigned" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 2d 75 6e 73 69 67 6e 65 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ read-decimal is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-decimal" (string literal with null) 72 65 61 64 2d 64 65 63 69 6d 61 6c 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unpack8" (string literal with null) 75 6e 70 61 63 6b 38 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2d 00 00 00 00 00 00 00 ~ 0x2d (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-base-unsigned" (string literal with null) 72 65 61 64 2d 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ { 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ } 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags-storage" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 2d 73 74 6f 72 61 67 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ create 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 f8 04 08 00 00 00 00 ~ log-load-variable (codeword pointer) ~ [ is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "[" (string literal with null) 5b 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "invert" (string literal with null) 69 6e 76 65 72 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) ~ ] is defined here via the log-load transform. 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "]" (string literal with null) 5d 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "|" (string literal with null) 7c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) ~ : is defined here via the log-load transform. 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":" (string literal with null) 3a 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ ; is defined here via the log-load transform. 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ";" (string literal with null) 3b 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-visible" (string literal with null) 6d 61 6b 65 2d 76 69 73 69 62 6c 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 38 78 04 08 00 00 00 00 ~ over (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) ~ ;asm is defined here via the log-load transform. 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ";asm" (string literal with null) 3b 61 73 6d 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack-next" (string literal with null) 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-visible" (string literal with null) 6d 61 6b 65 2d 76 69 73 69 62 6c 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 70 78 04 08 00 00 00 00 ~ pick (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) ~ ' is defined here via the log-load transform. 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "'" (string literal with null) 27 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ s" is defined here via the log-load transform. 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s"" (string literal with null) 73 22 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "consume" (string literal with null) 63 6f 6e 73 75 6d 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 22 00 00 00 00 00 00 00 ~ 0x22 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pack8" (string literal with null) 70 61 63 6b 38 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ ." is defined here via the log-load transform. 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "."" (string literal with null) 2e 22 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "s"" (string literal with null) 73 22 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if-else 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 00 05 08 00 00 00 00 ~ log-load-if-else (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ ~ is defined here via the log-load transform. 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "~" (string literal with null) 7e 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&&" (string literal with null) 26 26 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "key" (string literal with null) 6b 65 79 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ while 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) b8 04 05 08 00 00 00 00 ~ log-load-while (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ interpret is defined here via the log-load transform. 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpret" (string literal with null) 69 6e 74 65 72 70 72 65 74 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "word" (string literal with null) 77 6f 72 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-flags@" (string literal with null) 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "execute" (string literal with null) 65 78 65 63 75 74 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "read-integer" (string literal with null) 72 65 61 64 2d 69 6e 74 65 67 65 72 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpreter-flags" (string literal with null) 69 6e 74 65 72 70 72 65 74 65 72 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "&" (string literal with null) 26 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring-with-result" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 2d 77 69 74 68 2d 72 65 73 75 6c 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ if 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) d0 fb 04 08 00 00 00 00 ~ log-load-if (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "No such word: " (string literal with null) 4e 6f 20 73 75 63 68 20 77 6f 72 64 3a 20 00 00 ~ (alignment padding) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "value@" (string literal with null) 76 61 6c 75 65 40 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dropstring" (string literal with null) 64 72 6f 70 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ quit is defined here via the log-load transform. 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "quit" (string literal with null) 71 75 69 74 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control!" (string literal with null) 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 08 fb 04 08 00 00 00 00 ~ log-load-left-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ { 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "interpret" (string literal with null) 69 6e 74 65 72 70 72 65 74 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ } 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 fb 04 08 00 00 00 00 ~ log-load-right-curly-brace ~ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) ~ forever 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 10 04 05 08 00 00 00 00 ~ log-load-forever (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 40 70 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 30 6a 04 08 00 00 00 00 ~ invert (codeword pointer) b0 69 04 08 00 00 00 00 ~ & (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 70 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 40 70 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 30 6a 04 08 00 00 00 00 ~ invert (codeword pointer) b0 69 04 08 00 00 00 00 ~ & (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 70 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 40 70 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 30 6a 04 08 00 00 00 00 ~ invert (codeword pointer) b0 69 04 08 00 00 00 00 ~ & (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 70 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 40 70 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 30 6a 04 08 00 00 00 00 ~ invert (codeword pointer) b0 69 04 08 00 00 00 00 ~ & (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 70 04 08 00 00 00 00 ~ entry-flags! (codeword pointer) ~ relink-main-input-buffer-to-stdin is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "relink-main-input-buffer-to-stdin" (string literal with null) 72 65 6c 69 6e 6b 2d 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 74 6f 2d 73 74 64 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-start" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 73 74 61 72 74 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-start" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 73 74 61 72 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-physical-length" (string literal with null) 62 75 66 66 65 72 2d 70 68 79 73 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-logical-length" (string literal with null) 62 75 66 66 65 72 2d 6c 6f 67 69 63 61 6c 2d 6c 65 6e 67 74 68 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "buffer-file-descriptor" (string literal with null) 62 75 66 66 65 72 2d 66 69 6c 65 2d 64 65 73 63 72 69 70 74 6f 72 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "refill-input-buffer-from-stream" (string literal with null) 72 65 66 69 6c 6c 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 66 72 6f 6d 2d 73 74 72 65 61 6d 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "literal" (string literal with null) 6c 69 74 65 72 61 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "main-input-buffer" (string literal with null) 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "input-buffer-refill" (string literal with null) 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 72 65 66 69 6c 6c 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "relink-main-input-buffer-to-stdin" (string literal with null) 72 65 6c 69 6e 6b 2d 6d 61 69 6e 2d 69 6e 70 75 74 2d 62 75 66 66 65 72 2d 74 6f 2d 73 74 64 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ { is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "{" (string literal with null) 7b 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ } is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "}" (string literal with null) 7d 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ if is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "if" (string literal with null) 69 66 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ unless is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unless" (string literal with null) 75 6e 6c 65 73 73 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ if-else is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "if-else" (string literal with null) 69 66 2d 65 6c 73 65 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "pick" (string literal with null) 70 69 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ forever is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "forever" (string literal with null) 66 6f 72 65 76 65 72 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ while is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "while" (string literal with null) 77 68 69 6c 65 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "memmove" (string literal with null) 6d 65 6d 6d 6f 76 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "unroll" (string literal with null) 75 6e 72 6f 6c 6c 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "," (string literal with null) 2c 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-immediate" (string literal with null) 6d 61 6b 65 2d 69 6d 6d 65 64 69 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ nexit is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "nexit" (string literal with null) 6e 65 78 69 74 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control@" (string literal with null) 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "r0" (string literal with null) 72 30 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "min" (string literal with null) 6d 69 6e 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "control!" (string literal with null) 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-timespec is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-timespec" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 74 69 6d 65 73 70 65 63 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ timespec-seconds is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-seconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 73 65 63 6f 6e 64 73 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ timespec-nanoseconds is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-nanoseconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 6e 61 6e 6f 73 65 63 6f 6e 64 73 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ nanosleep is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "nanosleep" (string literal with null) 6e 61 6e 6f 73 6c 65 65 70 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ca 9a 3b 00 00 00 00 ~ 0x3b9aca00 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "/%" (string literal with null) 2f 25 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-timespec" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 74 69 6d 65 73 70 65 63 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-seconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 73 65 63 6f 6e 64 73 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-nanoseconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 6e 61 6e 6f 73 65 63 6f 6e 64 73 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-timespec" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 74 69 6d 65 73 70 65 63 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-seconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 73 65 63 6f 6e 64 73 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "timespec-nanoseconds" (string literal with null) 74 69 6d 65 73 70 65 63 2d 6e 61 6e 6f 73 65 63 6f 6e 64 73 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3unroll" (string literal with null) 33 75 6e 72 6f 6c 6c 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 23 00 00 00 00 00 00 00 ~ 0x23 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-2" (string literal with null) 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-sigaction is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaction" (string literal with null) 73 79 73 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-4" (string literal with null) 73 79 73 63 61 6c 6c 2d 34 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sys-sigaltstack is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaltstack" (string literal with null) 73 79 73 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "syscall-2" (string literal with null) 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-sigaction is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaction" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-action is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-action" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 61 63 74 69 6f 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-flags is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-flags" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 66 6c 61 67 73 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-restorer is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-restorer" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 72 65 73 74 6f 72 65 72 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaction-mask is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-mask" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 6d 61 73 6b 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ allocate-sigaltstack is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaltstack" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaltstack-pointer is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-pointer" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaltstack-flags is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-flags" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ sigaltstack-size is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-size" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 73 69 7a 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "+" (string literal with null) 2b 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ prepare-signal-stack is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "prepare-signal-stack" (string literal with null) 70 72 65 70 61 72 65 2d 73 69 67 6e 61 6c 2d 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 08 00 00 00 00 00 00 ~ 0x800 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate" (string literal with null) 61 6c 6c 6f 63 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaltstack" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "2dup" (string literal with null) 32 64 75 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-pointer" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 70 6f 69 6e 74 65 72 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-flags" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 66 6c 61 67 73 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaltstack-size" (string literal with null) 73 69 67 61 6c 74 73 74 61 63 6b 2d 73 69 7a 65 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 04 00 00 00 00 00 00 ~ 0x400 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "*" (string literal with null) 2a 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaltstack" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaltstack" (string literal with null) 73 79 73 2d 73 69 67 61 6c 74 73 74 61 63 6b 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ signal-return-trampoline is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "signal-return-trampoline" (string literal with null) 73 69 67 6e 61 6c 2d 72 65 74 75 72 6e 2d 74 72 61 6d 70 6f 6c 69 6e 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) c0 c1 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) e8 bb 04 08 00 00 00 00 ~ syscall (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) c0 f7 04 08 00 00 00 00 ~ log-load-semicolon-assembly ~ (codeword pointer) ~ wrap-signal-handler is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "wrap-signal-handler" (string literal with null) 77 72 61 70 2d 73 69 67 6e 61 6c 2d 68 61 6e 64 6c 65 72 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "signal-handler-wrapper" (string literal with null) 73 69 67 6e 61 6c 2d 68 61 6e 64 6c 65 72 2d 77 72 61 70 70 65 72 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "create" (string literal with null) 63 72 65 61 74 65 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "make-hidden" (string literal with null) 6d 61 6b 65 2d 68 69 64 64 65 6e 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "cld" (string literal with null) 63 6c 64 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "3roll" (string literal with null) 33 72 6f 6c 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rax" (string literal with null) 3a 72 61 78 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "jmp-abs-indirect-reg64" (string literal with null) 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "self-codeword" (string literal with null) 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ ":rsi" (string literal with null) 3a 72 73 69 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "mov-reg64-imm64" (string literal with null) 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "ret" (string literal with null) 72 65 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "packalign" (string literal with null) 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "here" (string literal with null) 68 65 72 65 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "latest" (string literal with null) 6c 61 74 65 73 74 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ bind-signal is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "bind-signal" (string literal with null) 62 69 6e 64 2d 73 69 67 6e 61 6c 00 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaction" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-action" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 61 63 74 69 6f 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "roll" (string literal with null) 72 6f 6c 6c 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-mask" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 6d 61 73 6b 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-flags" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 66 6c 61 67 73 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 04 00 00 00 00 ~ 0x4000000 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "dup" (string literal with null) 64 75 70 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sigaction-restorer" (string literal with null) 73 69 67 61 63 74 69 6f 6e 2d 72 65 73 74 6f 72 65 72 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "signal-return-trampoline" (string literal with null) 73 69 67 6e 61 6c 2d 72 65 74 75 72 6e 2d 74 72 61 6d 70 6f 6c 69 6e 65 00 00 00 00 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "@" (string literal with null) 40 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "swap" (string literal with null) 73 77 61 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!" (string literal with null) 21 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "allocate-sigaction" (string literal with null) 61 6c 6c 6f 63 61 74 65 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-sigaction" (string literal with null) 73 79 73 2d 73 69 67 61 63 74 69 6f 6e 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "drop" (string literal with null) 64 72 6f 70 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ handle-crash is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "handle-crash" (string literal with null) 68 61 6e 64 6c 65 2d 63 72 61 73 68 00 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "CRASH" (string literal with null) 43 52 41 53 48 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "emitstring" (string literal with null) 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "newline" (string literal with null) 6e 65 77 6c 69 6e 65 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "list-callers" (string literal with null) 6c 69 73 74 2d 63 61 6c 6c 65 72 73 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "sys-exit" (string literal with null) 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) ~ install-crash-handler is defined here via the log-load transform. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "install-crash-handler" (string literal with null) 69 6e 73 74 61 6c 6c 2d 63 72 61 73 68 2d 68 61 6e 64 6c 65 72 00 00 00 ~ (alignment padding) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "docol" (string literal with null) 64 6f 63 6f 6c 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "handle-crash" (string literal with null) 68 61 6e 64 6c 65 2d 63 72 61 73 68 00 00 00 00 ~ (alignment padding) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "litstring" (string literal with null) 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 68 fa 04 08 00 00 00 00 ~ log-load-comma-string ~ (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "find" (string literal with null) 66 69 6e 64 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "entry-to-execution-token" (string literal with null) 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "wrap-signal-handler" (string literal with null) 77 72 61 70 2d 73 69 67 6e 61 6c 2d 68 61 6e 64 6c 65 72 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "bind-signal" (string literal with null) 62 69 6e 64 2d 73 69 67 6e 61 6c 00 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "exit" (string literal with null) 65 78 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "install-crash-handler" (string literal with null) 69 6e 73 74 61 6c 6c 2d 63 72 61 73 68 2d 68 61 6e 64 6c 65 72 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ We're now done with the log-load routine; the next little bit of code ~ here is the final bit of the warm-start routine. 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "quit" (string literal with null) 71 75 69 74 00 00 00 00 ~ (alignment padding) a8 f3 04 08 00 00 00 00 ~ log-load-find-execution-token ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ Get rid of that heap pointer on the stack, we're finally done with it! 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) e0 6e 04 08 00 00 00 00 ~ execute (codeword pointer) ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~ This is the start of a long block of code which has been processed by ~ the label transform, meaning it consists of ready-to-run Forth word ~ definitions that reference each other by address, suitable for direct ~ execution as soon as the cold-start routine has set up the basic ~ registers, flags, and memory areas that form Evocation's internal ABI. ~ ~ Each word definition consists of a dictionary entry header, a ~ codeword, and a word body. For words implemented as Forth code, the ~ codeword points to the "docol" routine, and the word body is an array of ~ pointers to the codewords of other words, occasionally interspersed with ~ literal values. For words implemented as machine code, the codeword ~ points to the start of the body, and the body is the machine code. ~ ~ All the word entry headers in this code link to each other, from last ~ backwards to first, forming an Evocation dictionary. ~ ~ The warm-start routine relies on words defined by the label transform, ~ as does the log-load routine. ~ (alignment padding) ~ This is the actual docol routine, the interpreter which is pointed to by ~ the codeword of every interpreted word. It does not itself have an entry ~ in the dictionary; the word "docol" will return a pointer to this routine. ~ The word's entry follows immediately after the routine. ~ label docol-codeword-value at offset 0x00000000000464c8 is here. ~ "pushcontrol" macro 48 8d 6d f8 ~ :rbp 0xfffffffffffffff8 :rbp lea-reg64-disp8-reg64 48 89 75 00 ~ :rsi :rbp 0x00 mov-disp8-reg64-reg64 48 83 c0 08 ~ 0x8 :rax add-reg64-imm8 48 89 c6 ~ :rax :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ This is the dictionary entry for docol. 00 00 00 00 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 6f 63 6f 6c 00 ~ (alignment padding) ~ label docol at offset 0x00000000000464f0 is here. f8 64 04 08 00 00 00 00 48 b8 c8 64 04 08 00 00 00 00 ~ 0x80464c8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ exit is defined here via the label transform; this is its entry header. e0 64 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 69 74 00 00 ~ (alignment padding) ~ label exit at offset 0x0000000000046518 is here. 20 65 04 08 00 00 00 00 ~ (self codeword) ~ "popcontrol" macro 48 8b 75 00 ~ :rbp 0x00 :rsi mov-reg64-disp8-reg64 48 8d 6d 08 ~ :rbp 0x08 :rbp lea-reg64-disp8-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 ~ (alignment padding) ~ swap is defined here via the label transform; this is its entry header. 08 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 77 61 70 00 00 ~ (alignment padding) ~ label swap at offset 0x0000000000046540 is here. 48 65 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 50 ~ :rax push-reg64 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ drop is defined here via the label transform; this is its entry header. 30 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 72 6f 70 00 00 ~ (alignment padding) ~ label drop at offset 0x0000000000046560 is here. 68 65 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ 2drop is defined here via the label transform; this is its entry header. 50 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 32 64 72 6f 70 00 ~ (alignment padding) ~ label 2drop at offset 0x0000000000046580 is here. 88 65 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 58 ~ :rax pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ roll is defined here via the label transform; this is its entry header. 70 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 6c 6c 00 00 ~ (alignment padding) ~ label roll at offset 0x00000000000465a0 is here. a8 65 04 08 00 00 00 00 ~ (self codeword) 59 ~ :rcx pop-reg64 48 ff c9 ~ :rcx dec-reg64 48 8b 1c cc ~ :rsp :rcx 8 :rbx mov-reg64-indexed-reg64 56 ~ :rsi push-reg64 48 8d 34 cc ~ :rsp :rcx 8 :rsi lea-reg64-indexed-reg64 48 8d 7c cc 08 ~ :rsp :rcx 8 0x08 :rdi lea-reg64-disp8-indexed-reg64 fd ~ std f3 48 a5 ~ rep-movs64 fc ~ cld 5e ~ :rsi pop-reg64 48 89 1c 24 ~ :rbx :rsp mov-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ unroll is defined here via the label transform; this is its entry header. 90 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 72 6f 6c 6c 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label unroll at offset 0x00000000000465e0 is here. e8 65 04 08 00 00 00 00 ~ (self codeword) 59 ~ :rcx pop-reg64 48 ff c9 ~ :rcx dec-reg64 48 89 ca ~ :rcx :rdx mov-reg64-reg64 48 8b 1c 24 ~ :rsp :rbx mov-reg64-indirect-reg64 56 ~ :rsi push-reg64 48 8d 74 24 10 ~ :rsp 0x10 :rsi lea-reg64-disp8-reg64 48 8d 7c 24 08 ~ :rsp 0x08 :rdi lea-reg64-disp8-reg64 f3 48 a5 ~ rep-movs64 5e ~ :rsi pop-reg64 48 89 1c d4 ~ :rbx :rsp :rdx 8 mov-indexed-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ 3roll is defined here via the label transform; this is its entry header. c8 65 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 72 6f 6c 6c 00 ~ (alignment padding) ~ label 3roll at offset 0x0000000000046620 is here. 28 66 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 59 ~ :rcx pop-reg64 53 ~ :rbx push-reg64 50 ~ :rax push-reg64 51 ~ :rcx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ 3unroll is defined here via the label transform; this is its entry header. 10 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 75 6e 72 6f 6c 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label 3unroll at offset 0x0000000000046650 is here. 58 66 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 59 ~ :rcx pop-reg64 50 ~ :rax push-reg64 51 ~ :rcx push-reg64 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ dup is defined here via the label transform; this is its entry header. 38 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 75 70 00 00 00 ~ (alignment padding) ~ label dup at offset 0x0000000000046678 is here. 80 66 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 50 ~ :rax push-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ 2dup is defined here via the label transform; this is its entry header. 68 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 32 64 75 70 00 00 ~ (alignment padding) ~ label 2dup at offset 0x0000000000046698 is here. a0 66 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 53 ~ :rbx push-reg64 50 ~ :rax push-reg64 53 ~ :rbx push-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ + is defined here via the label transform; this is its entry header. 88 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2b 00 00 00 00 00 ~ (alignment padding) ~ label + at offset 0x00000000000466c0 is here. c8 66 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 01 d8 ~ :rbx :rax add-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ - is defined here via the label transform; this is its entry header. b0 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2d 00 00 00 00 00 ~ (alignment padding) ~ label - at offset 0x00000000000466e8 is here. f0 66 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 2b c3 ~ :rbx :rax sub-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ * is defined here via the label transform; this is its entry header. d8 66 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2a 00 00 00 00 00 ~ (alignment padding) ~ label * at offset 0x0000000000046710 is here. 18 67 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 f7 e3 ~ :rbx mul-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ /% is defined here via the label transform; this is its entry header. 00 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2f 25 00 00 00 00 ~ (alignment padding) ~ label /% at offset 0x0000000000046738 is here. 40 67 04 08 00 00 00 00 ~ (self codeword) 48 33 d2 ~ :rdx :rdx xor-reg64-reg64 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 f7 f3 ~ :rbx divmod-reg64 52 ~ :rdx push-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ 1+ is defined here via the label transform; this is its entry header. 28 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 2b 00 00 00 00 ~ (alignment padding) ~ label 1+ at offset 0x0000000000046760 is here. 68 67 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 ff c0 ~ :rax inc-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ 1- is defined here via the label transform; this is its entry header. 50 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 2d 00 00 00 00 ~ (alignment padding) ~ label 1- at offset 0x0000000000046788 is here. 90 67 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 ff c8 ~ :rax dec-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ = is defined here via the label transform; this is its entry header. 78 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3d 00 00 00 00 00 ~ (alignment padding) ~ label = at offset 0x00000000000467b0 is here. b8 67 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 94 c0 ~ :cc-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ != is defined here via the label transform; this is its entry header. a0 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 21 3d 00 00 00 00 ~ (alignment padding) ~ label != at offset 0x00000000000467e0 is here. e8 67 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 95 c0 ~ :cc-not-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ > is defined here via the label transform; this is its entry header. d0 67 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 00 00 00 00 00 ~ (alignment padding) ~ label > at offset 0x0000000000046810 is here. 18 68 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9f c0 ~ :cc-greater :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ < is defined here via the label transform; this is its entry header. 00 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3c 00 00 00 00 00 ~ (alignment padding) ~ label < at offset 0x0000000000046840 is here. 48 68 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9c c0 ~ :cc-less :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ >= is defined here via the label transform; this is its entry header. 30 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 3d 00 00 00 00 ~ (alignment padding) ~ label >= at offset 0x0000000000046870 is here. 78 68 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9d c0 ~ :cc-greater-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ <= is defined here via the label transform; this is its entry header. 60 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3c 3d 00 00 00 00 ~ (alignment padding) ~ label <= at offset 0x00000000000468a0 is here. a8 68 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 9e c0 ~ :cc-less-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ >unsigned is defined here via the label transform; this is its entry header. 90 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 75 6e 73 69 67 6e 65 64 00 00 00 00 00 ~ (alignment padding) ~ label >unsigned at offset 0x00000000000468d8 is here. e0 68 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 97 c0 ~ :cc-above :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ =unsigned is defined here via the label transform; this is its entry header. f8 68 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3e 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 ~ (alignment padding) ~ label >=unsigned at offset 0x0000000000046948 is here. 50 69 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 93 c0 ~ :cc-above-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ <=unsigned is defined here via the label transform; this is its entry header. 30 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3c 3d 75 6e 73 69 67 6e 65 64 00 00 00 00 ~ (alignment padding) ~ label <=unsigned at offset 0x0000000000046980 is here. 88 69 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5b ~ :rbx pop-reg64 48 3b c3 ~ :rbx :rax cmp-reg64-reg64 0f 96 c0 ~ :cc-below-equal :al set-reg8-cc 48 83 e0 01 ~ 0x1 :rax and-reg64-imm8 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ & is defined here via the label transform; this is its entry header. 68 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 26 00 00 00 00 00 ~ (alignment padding) ~ label & at offset 0x00000000000469b0 is here. b8 69 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 23 c3 ~ :rbx :rax and-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ | is defined here via the label transform; this is its entry header. a0 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 7c 00 00 00 00 00 ~ (alignment padding) ~ label | at offset 0x00000000000469d8 is here. e0 69 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 0b c3 ~ :rbx :rax or-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ xor is defined here via the label transform; this is its entry header. c8 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 78 6f 72 00 00 00 ~ (alignment padding) ~ label xor at offset 0x0000000000046a00 is here. 08 6a 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 33 c3 ~ :rbx :rax xor-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 ~ (alignment padding) ~ invert is defined here via the label transform; this is its entry header. f0 69 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 69 6e 76 65 72 74 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label invert at offset 0x0000000000046a30 is here. 38 6a 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 f7 d0 ~ :rax not-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ lit is defined here via the label transform; this is its entry header. 18 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 69 74 00 00 00 ~ (alignment padding) ~ label lit at offset 0x0000000000046a58 is here. 60 6a 04 08 00 00 00 00 ~ (self codeword) 48 ad ~ lods64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ litstring is defined here via the label transform; this is its entry header. 48 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 69 74 73 74 72 69 6e 67 00 00 00 00 00 ~ (alignment padding) ~ label litstring at offset 0x0000000000046a80 is here. 88 6a 04 08 00 00 00 00 ~ (self codeword) 56 ~ :rsi push-reg64 48 89 f7 ~ :rsi :rdi mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 33 c9 ~ :rcx :rcx xor-reg64-reg64 48 f7 d1 ~ :rcx not-reg64 f2 ae ~ repnz-scas8 48 89 fe ~ :rdi :rsi mov-reg64-reg64 48 83 c6 07 ~ 0x7 :rsi add-reg64-imm8 48 83 e6 f8 ~ 0xfffffffffffffff8 :rsi and-reg64-imm8 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ ! is defined here via the label transform; this is its entry header. 68 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 21 00 00 00 00 00 ~ (alignment padding) ~ label ! at offset 0x0000000000046ab8 is here. c0 6a 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 89 03 ~ :rax :rbx mov-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ @ is defined here via the label transform; this is its entry header. a8 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 40 00 00 00 00 00 ~ (alignment padding) ~ label @ at offset 0x0000000000046ae0 is here. e8 6a 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 8b 00 ~ :rax :rax mov-reg64-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ +! is defined here via the label transform; this is its entry header. d0 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2b 21 00 00 00 00 ~ (alignment padding) ~ label +! at offset 0x0000000000046b08 is here. 10 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 01 03 ~ :rax :rbx add-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ -! is defined here via the label transform; this is its entry header. f8 6a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2d 21 00 00 00 00 ~ (alignment padding) ~ label -! at offset 0x0000000000046b30 is here. 38 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 48 2b 03 ~ :rax :rbx sub-indirect-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ 8! is defined here via the label transform; this is its entry header. 20 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 38 21 00 00 00 00 ~ (alignment padding) ~ label 8! at offset 0x0000000000046b58 is here. 60 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 88 03 ~ :al :rbx mov-indirect-reg64-reg8 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ 8@ is defined here via the label transform; this is its entry header. 48 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 38 40 00 00 00 00 ~ (alignment padding) ~ label 8@ at offset 0x0000000000046b78 is here. 80 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 8a 03 ~ :rbx :al mov-reg8-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ 16! is defined here via the label transform; this is its entry header. 68 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 36 21 00 00 00 ~ (alignment padding) ~ label 16! at offset 0x0000000000046ba0 is here. a8 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 66 89 03 ~ :ax :rbx mov-indirect-reg64-reg16 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ 16@ is defined here via the label transform; this is its entry header. 90 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 31 36 40 00 00 00 ~ (alignment padding) ~ label 16@ at offset 0x0000000000046bc8 is here. d0 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 66 8b 03 ~ :rbx :ax mov-reg16-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 ~ (alignment padding) ~ 32! is defined here via the label transform; this is its entry header. b8 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 32 21 00 00 00 ~ (alignment padding) ~ label 32! at offset 0x0000000000046bf0 is here. f8 6b 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 58 ~ :rax pop-reg64 89 03 ~ :eax :rbx mov-indirect-reg64-reg32 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ 32@ is defined here via the label transform; this is its entry header. e0 6b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 32 40 00 00 00 ~ (alignment padding) ~ label 32@ at offset 0x0000000000046c10 is here. 18 6c 04 08 00 00 00 00 ~ (self codeword) 5b ~ :rbx pop-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 8b 03 ~ :rbx :eax mov-reg32-indirect-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ control! is defined here via the label transform; this is its entry header. 00 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6f 6e 74 72 6f 6c 21 00 00 00 00 00 00 ~ (alignment padding) ~ label control! at offset 0x0000000000046c40 is here. 48 6c 04 08 00 00 00 00 ~ (self codeword) 5d ~ :rbp pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ control@ is defined here via the label transform; this is its entry header. 28 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6f 6e 74 72 6f 6c 40 00 00 00 00 00 00 ~ (alignment padding) ~ label control@ at offset 0x0000000000046c68 is here. 70 6c 04 08 00 00 00 00 ~ (self codeword) 55 ~ :rbp push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ value! is defined here via the label transform; this is its entry header. 50 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 76 61 6c 75 65 21 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label value! at offset 0x0000000000046c90 is here. 98 6c 04 08 00 00 00 00 ~ (self codeword) 5c ~ :rsp pop-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ value@ is defined here via the label transform; this is its entry header. 78 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 76 61 6c 75 65 40 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label value@ at offset 0x0000000000046cb8 is here. c0 6c 04 08 00 00 00 00 ~ (self codeword) 54 ~ :rsp push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ memcopy is defined here via the label transform; this is its entry header. a0 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 65 6d 63 6f 70 79 00 00 00 00 00 00 00 ~ (alignment padding) ~ label memcopy at offset 0x0000000000046ce0 is here. e8 6c 04 08 00 00 00 00 ~ (self codeword) 48 89 f2 ~ :rsi :rdx mov-reg64-reg64 59 ~ :rcx pop-reg64 5f ~ :rdi pop-reg64 5e ~ :rsi pop-reg64 f3 a4 ~ rep-movs8 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ memmove is defined here via the label transform; this is its entry header. c8 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 65 6d 6d 6f 76 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label memmove at offset 0x0000000000046d10 is here. 18 6d 04 08 00 00 00 00 ~ (self codeword) 48 89 f2 ~ :rsi :rdx mov-reg64-reg64 59 ~ :rcx pop-reg64 5f ~ :rdi pop-reg64 5e ~ :rsi pop-reg64 48 89 f0 ~ :rsi :rax mov-reg64-reg64 48 3b c7 ~ :rdi :rax cmp-reg64-reg64 72 04 ~ 0x4 :cc-below jmp-cc-rel-imm8 f3 a4 ~ rep-movs8 eb 10 ~ 0x10 jmp-rel-imm8 48 01 ce ~ :rcx :rsi add-reg64-reg64 48 ff ce ~ :rsi dec-reg64 48 01 cf ~ :rcx :rdi add-reg64-reg64 48 ff cf ~ :rdi dec-reg64 fd ~ std f3 a4 ~ rep-movs8 fc ~ cld 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ stringlen is defined here via the label transform; this is its entry header. f8 6c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 ~ (alignment padding) ~ label stringlen at offset 0x0000000000046d60 is here. 68 6d 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 48 89 fb ~ :rdi :rbx mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 33 c9 ~ :rcx :rcx xor-reg64-reg64 48 f7 d1 ~ :rcx not-reg64 f2 ae ~ repnz-scas8 48 2b fb ~ :rbx :rdi sub-reg64-reg64 48 83 ef 01 ~ 0x1 :rdi sub-reg64-imm8 57 ~ :rdi push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ reverse-stringlen is defined here via the label transform; this is its entry header. 48 6d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 76 65 72 73 65 2d 73 74 72 69 6e 67 6c 65 6e 00 00 00 00 00 ~ (alignment padding) ~ label reverse-stringlen at offset 0x0000000000046da8 is here. b0 6d 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 48 89 fb ~ :rdi :rbx mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 33 c9 ~ :rcx :rcx xor-reg64-reg64 48 f7 d1 ~ :rcx not-reg64 fd ~ std f2 ae ~ repnz-scas8 fc ~ cld 48 2b df ~ :rdi :rbx sub-reg64-reg64 48 83 eb 01 ~ 0x1 :rbx sub-reg64-imm8 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ reverse-padding-len is defined here via the label transform; this is its entry header. 88 6d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 76 65 72 73 65 2d 70 61 64 64 69 6e 67 2d 6c 65 6e 00 00 00 ~ (alignment padding) ~ label reverse-padding-len at offset 0x0000000000046df0 is here. f8 6d 04 08 00 00 00 00 ~ (self codeword) 5f ~ :rdi pop-reg64 48 89 fb ~ :rdi :rbx mov-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 c7 c1 09 00 00 00 ~ 0x9 :rcx mov-reg64-imm32 fd ~ std f3 ae ~ repz-scas8 fc ~ cld 48 2b df ~ :rdi :rbx sub-reg64-reg64 48 83 eb 01 ~ 0x1 :rbx sub-reg64-imm8 53 ~ :rbx push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 ~ (alignment padding) ~ stringcmp is defined here via the label transform; this is its entry header. d0 6d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 72 69 6e 67 63 6d 70 00 00 00 00 00 ~ (alignment padding) ~ label stringcmp at offset 0x0000000000046e30 is here. 38 6e 04 08 00 00 00 00 ~ (self codeword) 48 89 f2 ~ :rsi :rdx mov-reg64-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 48 33 db ~ :rbx :rbx xor-reg64-reg64 48 33 c0 ~ :rax :rax xor-reg64-reg64 48 8b 0e ~ :rsi :rcx mov-reg64-indirect-reg64 88 c8 ~ :cl :al mov-reg8-reg8 a6 ~ cmps8 74 0f ~ 0xf :cc-equal jmp-cc-rel-imm8 0f 97 c3 ~ :cc-above :bl set-reg8-cc 48 83 db 00 ~ 0x0 :rbx sbb-reg64-imm8 53 ~ :rbx push-reg64 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 48 85 c0 ~ :rax :rax test-reg64-reg64 75 e4 ~ 0xffffffffffffffe4 :cc-not-equal jmp-cc-rel-imm8 68 00 00 00 00 ~ 0x0 push-imm32-extended64 48 89 d6 ~ :rdx :rsi mov-reg64-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ branch is defined here via the label transform; this is its entry header. 18 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 62 72 61 6e 63 68 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label branch at offset 0x0000000000046e88 is here. 90 6e 04 08 00 00 00 00 ~ (self codeword) 48 03 36 ~ :rsi :rsi add-reg64-indirect-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ 0branch is defined here via the label transform; this is its entry header. 70 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 30 62 72 61 6e 63 68 00 00 00 00 00 00 00 ~ (alignment padding) ~ label 0branch at offset 0x0000000000046eb0 is here. b8 6e 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 48 85 c0 ~ :rax :rax test-reg64-reg64 74 d2 ~ 0xffffffffffffffd2 :cc-equal jmp-cc-rel-imm8 48 ad ~ lods64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 ~ (alignment padding) ~ execute is defined here via the label transform; this is its entry header. 98 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 65 63 75 74 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label execute at offset 0x0000000000046ee0 is here. e8 6e 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ entry-to-execution-token is defined here via the label transform; this is its entry header. c8 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 74 6f 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label entry-to-execution-token at offset 0x0000000000046f18 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 60 6d 04 08 00 00 00 00 ~ stringlen (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 30 6a 04 08 00 00 00 00 ~ invert (codeword pointer) b0 69 04 08 00 00 00 00 ~ & (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ execution-token-to-entry is defined here via the label transform; this is its entry header. f0 6e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 2d 74 6f 2d 65 6e 74 72 79 00 00 00 00 00 00 ~ (alignment padding) ~ label execution-token-to-entry at offset 0x0000000000046fb8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) f0 6d 04 08 00 00 00 00 ~ reverse-padding-len (codeword pointer) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) a8 6d 04 08 00 00 00 00 ~ reverse-stringlen (codeword pointer) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ entry-flags@ is defined here via the label transform; this is its entry header. 90 6f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 66 6c 61 67 73 40 00 00 ~ (alignment padding) ~ label entry-flags@ at offset 0x0000000000047040 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) b0 69 04 08 00 00 00 00 ~ & (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ entry-flags! is defined here via the label transform; this is its entry header. 28 70 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 66 6c 61 67 73 21 00 00 ~ (alignment padding) ~ label entry-flags! at offset 0x00000000000470a0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) b0 69 04 08 00 00 00 00 ~ & (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 ff ff ff ff ff ff ff ~ 0xffffffffffffff00 (integer literal) b0 69 04 08 00 00 00 00 ~ & (codeword pointer) d8 69 04 08 00 00 00 00 ~ | (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ entry-to-name is defined here via the label transform; this is its entry header. 88 70 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6e 74 72 79 2d 74 6f 2d 6e 61 6d 65 00 ~ (alignment padding) ~ label entry-to-name at offset 0x0000000000047148 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack64 is defined here via the label transform; this is its entry header. 30 71 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack64 at offset 0x0000000000047188 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack32 is defined here via the label transform; this is its entry header. 70 71 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack32 at offset 0x00000000000471e8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) f0 6b 04 08 00 00 00 00 ~ 32! (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack16 is defined here via the label transform; this is its entry header. d0 71 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack16 at offset 0x0000000000047248 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) a0 6b 04 08 00 00 00 00 ~ 16! (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack8 is defined here via the label transform; this is its entry header. 30 72 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 38 00 ~ (alignment padding) ~ label pack8 at offset 0x00000000000472a0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 58 6b 04 08 00 00 00 00 ~ 8! (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ packstring is defined here via the label transform; this is its entry header. 90 72 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 73 74 72 69 6e 67 00 00 00 00 ~ (alignment padding) ~ label packstring at offset 0x0000000000047300 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 60 6d 04 08 00 00 00 00 ~ stringlen (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6c 04 08 00 00 00 00 ~ memcopy (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-raw-string is defined here via the label transform; this is its entry header. e8 72 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 72 61 77 2d 73 74 72 69 6e 67 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-raw-string at offset 0x00000000000473c0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 60 6d 04 08 00 00 00 00 ~ stringlen (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) e0 6c 04 08 00 00 00 00 ~ memcopy (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ packalign is defined here via the label transform; this is its entry header. a0 73 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 61 6c 69 67 6e 00 00 00 00 00 ~ (alignment padding) ~ label packalign at offset 0x0000000000047460 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 38 67 04 08 00 00 00 00 ~ /% (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 18 00 00 00 00 00 00 00 ~ 0x18 (branch offset) 60 65 04 08 00 00 00 00 ~ swap (codeword pointer) ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 40 65 04 08 00 00 00 00 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 80 ff ff ff ff ff ff ff ~ 0xffffffffffffff80 (branch offset) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack64 is defined here via the label transform; this is its entry header. 48 74 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack64 at offset 0x0000000000047510 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack32 is defined here via the label transform; this is its entry header. f8 74 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 33 32 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack32 at offset 0x0000000000047570 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 6c 04 08 00 00 00 00 ~ 32@ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack16 is defined here via the label transform; this is its entry header. 58 75 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 31 36 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack16 at offset 0x00000000000475d0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) c8 6b 04 08 00 00 00 00 ~ 16@ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpack8 is defined here via the label transform; this is its entry header. b8 75 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label unpack8 at offset 0x0000000000047630 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 78 6b 04 08 00 00 00 00 ~ 8@ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ align-size is defined here via the label transform; this is its entry header. 18 76 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6c 69 67 6e 2d 73 69 7a 65 00 00 00 00 ~ (alignment padding) ~ label align-size at offset 0x0000000000047690 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 67 04 08 00 00 00 00 ~ /% (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ unpackalign is defined here via the label transform; this is its entry header. 78 76 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 75 6e 70 61 63 6b 61 6c 69 67 6e 00 00 00 ~ (alignment padding) ~ label unpackalign at offset 0x0000000000047720 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 90 76 04 08 00 00 00 00 ~ align-size (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ crash is defined here via the label transform; this is its entry header. 08 77 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 72 61 73 68 00 ~ (alignment padding) ~ label crash at offset 0x0000000000047748 is here. 50 77 04 08 00 00 00 00 ~ (self codeword) f4 ~ hlt ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ max is defined here via the label transform; this is its entry header. 38 77 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 61 78 00 00 00 ~ (alignment padding) ~ label max at offset 0x0000000000047768 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 70 68 04 08 00 00 00 00 ~ >= (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (branch offset) 40 65 04 08 00 00 00 00 ~ drop (codeword pointer) ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ min is defined here via the label transform; this is its entry header. 58 77 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 69 6e 00 00 00 ~ (alignment padding) ~ label min at offset 0x00000000000477d0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) a0 68 04 08 00 00 00 00 ~ <= (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (branch offset) 40 65 04 08 00 00 00 00 ~ drop (codeword pointer) ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ over is defined here via the label transform; this is its entry header. c0 77 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 76 65 72 00 00 ~ (alignment padding) ~ label over at offset 0x0000000000047838 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pick is defined here via the label transform; this is its entry header. 28 78 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 69 63 6b 00 00 ~ (alignment padding) ~ label pick at offset 0x0000000000047870 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ndrop is defined here via the label transform; this is its entry header. 60 78 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 64 72 6f 70 00 ~ (alignment padding) ~ label ndrop at offset 0x00000000000478d0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 88 67 04 08 00 00 00 00 ~ 1- (codeword pointer) 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) b0 ff ff ff ff ff ff ff ~ 0xffffffffffffffb0 (branch offset) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ndup is defined here via the label transform; this is its entry header. c0 78 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 64 75 70 00 00 ~ (alignment padding) ~ label ndup at offset 0x0000000000047950 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 60 67 04 08 00 00 00 00 ~ 1+ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 48 00 00 00 00 00 00 00 ~ 0x48 (branch offset) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 70 78 04 08 00 00 00 00 ~ pick (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 67 04 08 00 00 00 00 ~ 1- (codeword pointer) 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 98 ff ff ff ff ff ff ff ~ 0xffffffffffffff98 (branch offset) 80 65 04 08 00 00 00 00 ~ 2drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ 3drop is defined here via the label transform; this is its entry header. 40 79 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 64 72 6f 70 00 ~ (alignment padding) ~ label 3drop at offset 0x0000000000047a00 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ 3dup is defined here via the label transform; this is its entry header. f0 79 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 33 64 75 70 00 00 ~ (alignment padding) ~ label 3dup at offset 0x0000000000047a38 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 70 78 04 08 00 00 00 00 ~ pick (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 70 78 04 08 00 00 00 00 ~ pick (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 70 78 04 08 00 00 00 00 ~ pick (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ && is defined here via the label transform; this is its entry header. 28 7a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 26 26 00 00 00 00 ~ (alignment padding) ~ label && at offset 0x0000000000047aa0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ || is defined here via the label transform; this is its entry header. 90 7a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 7c 7c 00 00 00 00 ~ (alignment padding) ~ label || at offset 0x0000000000047b00 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) d8 69 04 08 00 00 00 00 ~ | (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ not is defined here via the label transform; this is its entry header. f0 7a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 6f 74 00 00 00 ~ (alignment padding) ~ label not at offset 0x0000000000047b40 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ negate is defined here via the label transform; this is its entry header. 30 7b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 65 67 61 74 65 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label negate at offset 0x0000000000047b80 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ align-floor is defined here via the label transform; this is its entry header. 68 7b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6c 69 67 6e 2d 66 6c 6f 6f 72 00 00 00 ~ (alignment padding) ~ label align-floor at offset 0x0000000000047bc0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 38 67 04 08 00 00 00 00 ~ /% (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ find-in is defined here via the label transform; this is its entry header. a8 7b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 66 69 6e 64 2d 69 6e 00 00 00 00 00 00 00 ~ (alignment padding) ~ label find-in at offset 0x0000000000047c18 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (branch offset) 40 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 40 70 04 08 00 00 00 00 ~ entry-flags@ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) b0 69 04 08 00 00 00 00 ~ & (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 80 00 00 00 00 00 00 00 ~ 0x80 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (branch offset) 98 66 04 08 00 00 00 00 ~ @ (codeword pointer) ~ 2dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 30 6e 04 08 00 00 00 00 ~ stringcmp (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (branch offset) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) e0 6a 04 08 00 00 00 00 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) a8 fe ff ff ff ff ff ff ~ 0xfffffffffffffea8 (branch offset) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ syscall-0 is defined here via the label transform; this is its entry header. 00 7c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 30 00 00 00 00 00 ~ (alignment padding) ~ label syscall-0 at offset 0x0000000000047da8 is here. b0 7d 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 0f 05 ~ syscall 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ syscall-1 is defined here via the label transform; this is its entry header. 90 7d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 31 00 00 00 00 00 ~ (alignment padding) ~ label syscall-1 at offset 0x0000000000047dd0 is here. d8 7d 04 08 00 00 00 00 ~ (self codeword) 58 ~ :rax pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ syscall-2 is defined here via the label transform; this is its entry header. b8 7d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 32 00 00 00 00 00 ~ (alignment padding) ~ label syscall-2 at offset 0x0000000000047e00 is here. 08 7e 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 ~ (alignment padding) ~ syscall-3 is defined here via the label transform; this is its entry header. e8 7d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 33 00 00 00 00 00 ~ (alignment padding) ~ label syscall-3 at offset 0x0000000000047e30 is here. 38 7e 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 00 00 ~ (alignment padding) ~ syscall-4 is defined here via the label transform; this is its entry header. 18 7e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 34 00 00 00 00 00 ~ (alignment padding) ~ label syscall-4 at offset 0x0000000000047e68 is here. 70 7e 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 41 5a ~ :r10 pop-extrareg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 00 00 ~ (alignment padding) ~ syscall-5 is defined here via the label transform; this is its entry header. 50 7e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 35 00 00 00 00 00 ~ (alignment padding) ~ label syscall-5 at offset 0x0000000000047ea0 is here. a8 7e 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 41 58 ~ :r8 pop-extrareg64 41 5a ~ :r10 pop-extrareg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 00 00 ~ (alignment padding) ~ syscall-6 is defined here via the label transform; this is its entry header. 88 7e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 2d 36 00 00 00 00 00 ~ (alignment padding) ~ label syscall-6 at offset 0x0000000000047ed8 is here. e0 7e 04 08 00 00 00 00 ~ (self codeword) 48 89 f3 ~ :rsi :rbx mov-reg64-reg64 58 ~ :rax pop-reg64 41 59 ~ :r9 pop-extrareg64 41 58 ~ :r8 pop-extrareg64 41 5a ~ :r10 pop-extrareg64 5a ~ :rdx pop-reg64 5e ~ :rsi pop-reg64 5f ~ :rdi pop-reg64 0f 05 ~ syscall 48 89 de ~ :rbx :rsi mov-reg64-reg64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ sys-exit is defined here via the label transform; this is its entry header. c0 7e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 65 78 69 74 00 00 00 00 00 00 ~ (alignment padding) ~ label sys-exit at offset 0x0000000000047f10 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 3c 00 00 00 00 00 00 00 ~ 0x3c (integer literal) d0 7d 04 08 00 00 00 00 ~ syscall-1 (codeword pointer) 48 77 04 08 00 00 00 00 ~ crash (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sys-write is defined here via the label transform; this is its entry header. f8 7e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 77 72 69 74 65 00 00 00 00 00 ~ (alignment padding) ~ label sys-write at offset 0x0000000000047f58 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 30 7e 04 08 00 00 00 00 ~ syscall-3 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sys-read is defined here via the label transform; this is its entry header. 40 7f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 72 65 61 64 00 00 00 00 00 00 ~ (alignment padding) ~ label sys-read at offset 0x0000000000047f98 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 30 7e 04 08 00 00 00 00 ~ syscall-3 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sys-open is defined here via the label transform; this is its entry header. 80 7f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 6f 70 65 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label sys-open at offset 0x0000000000047fd8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 30 7e 04 08 00 00 00 00 ~ syscall-3 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sys-close is defined here via the label transform; this is its entry header. c0 7f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 2d 63 6c 6f 73 65 00 00 00 00 00 ~ (alignment padding) ~ label sys-close at offset 0x0000000000048018 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) d0 7d 04 08 00 00 00 00 ~ syscall-1 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ emitstring is defined here via the label transform; this is its entry header. 00 80 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 6d 69 74 73 74 72 69 6e 67 00 00 00 00 ~ (alignment padding) ~ label emitstring at offset 0x0000000000048058 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 60 6d 04 08 00 00 00 00 ~ stringlen (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 58 7f 04 08 00 00 00 00 ~ sys-write (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ space is defined here via the label transform; this is its entry header. 40 80 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 70 61 63 65 00 ~ (alignment padding) ~ label space at offset 0x00000000000480b0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 20 00 00 00 00 00 00 00 ~ 0x20 (integer literal) b8 6c 04 08 00 00 00 00 ~ value@ (codeword pointer) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ newline is defined here via the label transform; this is its entry header. a0 80 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 65 77 6c 69 6e 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label newline at offset 0x0000000000048100 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) b8 6c 04 08 00 00 00 00 ~ value@ (codeword pointer) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pow is defined here via the label transform; this is its entry header. e8 80 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 6f 77 00 00 00 ~ (alignment padding) ~ label pow at offset 0x0000000000048148 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ lit (codeword pointer) ~ drop (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 58 6a 04 08 00 00 00 00 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 50 ff ff ff ff ff ff ff ~ 0xffffffffffffff50 (branch offset) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ logfloor is defined here via the label transform; this is its entry header. 38 81 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 66 6c 6f 6f 72 00 00 00 00 00 00 ~ (alignment padding) ~ label logfloor at offset 0x0000000000048240 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) d8 68 04 08 00 00 00 00 ~ >unsigned (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 60 65 04 08 00 00 00 00 ~ lit (codeword pointer) ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 58 6a 04 08 00 00 00 00 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 40 68 04 08 00 00 00 00 ~ < (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 68 fe ff ff ff ff ff ff ~ 0xfffffffffffffe68 (branch offset) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ logceil is defined here via the label transform; this is its entry header. 28 82 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 63 65 69 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label logceil at offset 0x0000000000048430 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 48 69 04 08 00 00 00 00 ~ >=unsigned (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 60 65 04 08 00 00 00 00 ~ lit (codeword pointer) ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 58 6a 04 08 00 00 00 00 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 40 68 04 08 00 00 00 00 ~ < (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 68 fe ff ff ff ff ff ff ~ 0xfffffffffffffe68 (branch offset) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .base-unsigned is defined here via the label transform; this is its entry header. 18 84 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 62 61 73 65 2d 75 6e 73 69 67 6e 65 64 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .base-unsigned at offset 0x0000000000048620 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 40 82 04 08 00 00 00 00 ~ logfloor (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 10 68 04 08 00 00 00 00 ~ > (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (branch offset) 60 65 04 08 00 00 00 00 ~ 2dup (codeword pointer) ~ drop (codeword pointer) 98 66 04 08 00 00 00 00 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 48 81 04 08 00 00 00 00 ~ pow (codeword pointer) 38 67 04 08 00 00 00 00 ~ /% (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 38 67 04 08 00 00 00 00 ~ /% (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 10 68 04 08 00 00 00 00 ~ > (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (integer literal) 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 58 6a 04 08 00 00 00 00 ~ + (codeword pointer) ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 61 00 00 00 00 00 00 00 ~ 0x61 (integer literal) c0 66 04 08 00 00 00 00 b8 6c 04 08 00 00 00 00 ~ value@ (codeword pointer) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 18 fe ff ff ff ff ff ff ~ 0xfffffffffffffe18 (branch offset) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .base is defined here via the label transform; this is its entry header. 00 86 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 62 61 73 65 00 ~ (alignment padding) ~ label .base at offset 0x00000000000488e0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 10 68 04 08 00 00 00 00 ~ > (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 38 00 00 00 00 00 00 00 ~ 0x38 (branch offset) 58 6a 04 08 00 00 00 00 ~ swap (codeword pointer) ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "-" (string literal with null) 2d 00 00 00 00 00 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 40 65 04 08 00 00 00 00 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 20 86 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ . is defined here via the label transform; this is its entry header. d0 88 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 00 00 00 00 00 ~ (alignment padding) ~ label . at offset 0x00000000000489a0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) e0 88 04 08 00 00 00 00 ~ .base (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex is defined here via the label transform; this is its entry header. 90 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 00 00 ~ (alignment padding) ~ label .hex at offset 0x00000000000489d8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 20 86 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex8 is defined here via the label transform; this is its entry header. c8 89 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 38 00 ~ (alignment padding) ~ label .hex8 at offset 0x0000000000048a20 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 20 86 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex16 is defined here via the label transform; this is its entry header. 10 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .hex16 at offset 0x0000000000048a70 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 20 86 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex32 is defined here via the label transform; this is its entry header. 58 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .hex32 at offset 0x0000000000048ac0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 20 86 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hex64 is defined here via the label transform; this is its entry header. a8 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label .hex64 at offset 0x0000000000048b10 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 20 86 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ .hexn is defined here via the label transform; this is its entry header. f8 8a 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 2e 68 65 78 6e 00 ~ (alignment padding) ~ label .hexn at offset 0x0000000000048b58 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 10 00 00 00 00 00 00 00 ~ 0x10 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 86 04 08 00 00 00 00 ~ .base-unsigned (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ :rax is defined here via the label transform; this is its entry header. 48 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 61 78 00 00 ~ (alignment padding) ~ label :rax at offset 0x0000000000048b98 is here. a0 8b 04 08 00 00 00 00 48 b8 98 8b 04 08 00 00 00 00 ~ 0x8048b98 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rcx is defined here via the label transform; this is its entry header. 88 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 63 78 00 00 ~ (alignment padding) ~ label :rcx at offset 0x0000000000048bc0 is here. c8 8b 04 08 00 00 00 00 48 b8 c0 8b 04 08 00 00 00 00 ~ 0x8048bc0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rdx is defined here via the label transform; this is its entry header. b0 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 64 78 00 00 ~ (alignment padding) ~ label :rdx at offset 0x0000000000048be8 is here. f0 8b 04 08 00 00 00 00 48 b8 e8 8b 04 08 00 00 00 00 ~ 0x8048be8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rbx is defined here via the label transform; this is its entry header. d8 8b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 62 78 00 00 ~ (alignment padding) ~ label :rbx at offset 0x0000000000048c10 is here. 18 8c 04 08 00 00 00 00 48 b8 10 8c 04 08 00 00 00 00 ~ 0x8048c10 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rsp is defined here via the label transform; this is its entry header. 00 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 73 70 00 00 ~ (alignment padding) ~ label :rsp at offset 0x0000000000048c38 is here. 40 8c 04 08 00 00 00 00 48 b8 38 8c 04 08 00 00 00 00 ~ 0x8048c38 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rbp is defined here via the label transform; this is its entry header. 28 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 62 70 00 00 ~ (alignment padding) ~ label :rbp at offset 0x0000000000048c60 is here. 68 8c 04 08 00 00 00 00 48 b8 60 8c 04 08 00 00 00 00 ~ 0x8048c60 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rsi is defined here via the label transform; this is its entry header. 50 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 73 69 00 00 ~ (alignment padding) ~ label :rsi at offset 0x0000000000048c88 is here. 90 8c 04 08 00 00 00 00 48 b8 88 8c 04 08 00 00 00 00 ~ 0x8048c88 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :rdi is defined here via the label transform; this is its entry header. 78 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 64 69 00 00 ~ (alignment padding) ~ label :rdi at offset 0x0000000000048cb0 is here. b8 8c 04 08 00 00 00 00 48 b8 b0 8c 04 08 00 00 00 00 ~ 0x8048cb0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r8 is defined here via the label transform; this is its entry header. a0 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 38 00 00 00 ~ (alignment padding) ~ label :r8 at offset 0x0000000000048cd8 is here. e0 8c 04 08 00 00 00 00 48 b8 d8 8c 04 08 00 00 00 00 ~ 0x8048cd8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r9 is defined here via the label transform; this is its entry header. c8 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 39 00 00 00 ~ (alignment padding) ~ label :r9 at offset 0x0000000000048d00 is here. 08 8d 04 08 00 00 00 00 48 b8 00 8d 04 08 00 00 00 00 ~ 0x8048d00 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r10 is defined here via the label transform; this is its entry header. f0 8c 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 30 00 00 ~ (alignment padding) ~ label :r10 at offset 0x0000000000048d28 is here. 30 8d 04 08 00 00 00 00 48 b8 28 8d 04 08 00 00 00 00 ~ 0x8048d28 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r11 is defined here via the label transform; this is its entry header. 18 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 31 00 00 ~ (alignment padding) ~ label :r11 at offset 0x0000000000048d50 is here. 58 8d 04 08 00 00 00 00 48 b8 50 8d 04 08 00 00 00 00 ~ 0x8048d50 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r12 is defined here via the label transform; this is its entry header. 40 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 32 00 00 ~ (alignment padding) ~ label :r12 at offset 0x0000000000048d78 is here. 80 8d 04 08 00 00 00 00 48 b8 78 8d 04 08 00 00 00 00 ~ 0x8048d78 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r13 is defined here via the label transform; this is its entry header. 68 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 33 00 00 ~ (alignment padding) ~ label :r13 at offset 0x0000000000048da0 is here. a8 8d 04 08 00 00 00 00 48 b8 a0 8d 04 08 00 00 00 00 ~ 0x8048da0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r14 is defined here via the label transform; this is its entry header. 90 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 34 00 00 ~ (alignment padding) ~ label :r14 at offset 0x0000000000048dc8 is here. d0 8d 04 08 00 00 00 00 48 b8 c8 8d 04 08 00 00 00 00 ~ 0x8048dc8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :r15 is defined here via the label transform; this is its entry header. b8 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 72 31 35 00 00 ~ (alignment padding) ~ label :r15 at offset 0x0000000000048df0 is here. f8 8d 04 08 00 00 00 00 48 b8 f0 8d 04 08 00 00 00 00 ~ 0x8048df0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :eax is defined here via the label transform; this is its entry header. e0 8d 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 61 78 00 00 ~ (alignment padding) ~ label :eax at offset 0x0000000000048e18 is here. 20 8e 04 08 00 00 00 00 48 b8 18 8e 04 08 00 00 00 00 ~ 0x8048e18 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ecx is defined here via the label transform; this is its entry header. 08 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 63 78 00 00 ~ (alignment padding) ~ label :ecx at offset 0x0000000000048e40 is here. 48 8e 04 08 00 00 00 00 48 b8 40 8e 04 08 00 00 00 00 ~ 0x8048e40 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :edx is defined here via the label transform; this is its entry header. 30 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 64 78 00 00 ~ (alignment padding) ~ label :edx at offset 0x0000000000048e68 is here. 70 8e 04 08 00 00 00 00 48 b8 68 8e 04 08 00 00 00 00 ~ 0x8048e68 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ebx is defined here via the label transform; this is its entry header. 58 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 62 78 00 00 ~ (alignment padding) ~ label :ebx at offset 0x0000000000048e90 is here. 98 8e 04 08 00 00 00 00 48 b8 90 8e 04 08 00 00 00 00 ~ 0x8048e90 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :esp is defined here via the label transform; this is its entry header. 80 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 73 70 00 00 ~ (alignment padding) ~ label :esp at offset 0x0000000000048eb8 is here. c0 8e 04 08 00 00 00 00 48 b8 b8 8e 04 08 00 00 00 00 ~ 0x8048eb8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ebp is defined here via the label transform; this is its entry header. a8 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 62 70 00 00 ~ (alignment padding) ~ label :ebp at offset 0x0000000000048ee0 is here. e8 8e 04 08 00 00 00 00 48 b8 e0 8e 04 08 00 00 00 00 ~ 0x8048ee0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :esi is defined here via the label transform; this is its entry header. d0 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 73 69 00 00 ~ (alignment padding) ~ label :esi at offset 0x0000000000048f08 is here. 10 8f 04 08 00 00 00 00 48 b8 08 8f 04 08 00 00 00 00 ~ 0x8048f08 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :edi is defined here via the label transform; this is its entry header. f8 8e 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 65 64 69 00 00 ~ (alignment padding) ~ label :edi at offset 0x0000000000048f30 is here. 38 8f 04 08 00 00 00 00 48 b8 30 8f 04 08 00 00 00 00 ~ 0x8048f30 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ax is defined here via the label transform; this is its entry header. 20 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 61 78 00 00 00 ~ (alignment padding) ~ label :ax at offset 0x0000000000048f58 is here. 60 8f 04 08 00 00 00 00 48 b8 58 8f 04 08 00 00 00 00 ~ 0x8048f58 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cx is defined here via the label transform; this is its entry header. 48 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 78 00 00 00 ~ (alignment padding) ~ label :cx at offset 0x0000000000048f80 is here. 88 8f 04 08 00 00 00 00 48 b8 80 8f 04 08 00 00 00 00 ~ 0x8048f80 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :dx is defined here via the label transform; this is its entry header. 70 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 78 00 00 00 ~ (alignment padding) ~ label :dx at offset 0x0000000000048fa8 is here. b0 8f 04 08 00 00 00 00 48 b8 a8 8f 04 08 00 00 00 00 ~ 0x8048fa8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bx is defined here via the label transform; this is its entry header. 98 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 78 00 00 00 ~ (alignment padding) ~ label :bx at offset 0x0000000000048fd0 is here. d8 8f 04 08 00 00 00 00 48 b8 d0 8f 04 08 00 00 00 00 ~ 0x8048fd0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :sp is defined here via the label transform; this is its entry header. c0 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 73 70 00 00 00 ~ (alignment padding) ~ label :sp at offset 0x0000000000048ff8 is here. 00 90 04 08 00 00 00 00 48 b8 f8 8f 04 08 00 00 00 00 ~ 0x8048ff8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bp is defined here via the label transform; this is its entry header. e8 8f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 70 00 00 00 ~ (alignment padding) ~ label :bp at offset 0x0000000000049020 is here. 28 90 04 08 00 00 00 00 48 b8 20 90 04 08 00 00 00 00 ~ 0x8049020 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :si is defined here via the label transform; this is its entry header. 10 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 73 69 00 00 00 ~ (alignment padding) ~ label :si at offset 0x0000000000049048 is here. 50 90 04 08 00 00 00 00 48 b8 48 90 04 08 00 00 00 00 ~ 0x8049048 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :di is defined here via the label transform; this is its entry header. 38 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 69 00 00 00 ~ (alignment padding) ~ label :di at offset 0x0000000000049070 is here. 78 90 04 08 00 00 00 00 48 b8 70 90 04 08 00 00 00 00 ~ 0x8049070 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :al is defined here via the label transform; this is its entry header. 60 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 61 6c 00 00 00 ~ (alignment padding) ~ label :al at offset 0x0000000000049098 is here. a0 90 04 08 00 00 00 00 48 b8 98 90 04 08 00 00 00 00 ~ 0x8049098 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cl is defined here via the label transform; this is its entry header. 88 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 6c 00 00 00 ~ (alignment padding) ~ label :cl at offset 0x00000000000490c0 is here. c8 90 04 08 00 00 00 00 48 b8 c0 90 04 08 00 00 00 00 ~ 0x80490c0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :dl is defined here via the label transform; this is its entry header. b0 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 6c 00 00 00 ~ (alignment padding) ~ label :dl at offset 0x00000000000490e8 is here. f0 90 04 08 00 00 00 00 48 b8 e8 90 04 08 00 00 00 00 ~ 0x80490e8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bl is defined here via the label transform; this is its entry header. d8 90 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 6c 00 00 00 ~ (alignment padding) ~ label :bl at offset 0x0000000000049110 is here. 18 91 04 08 00 00 00 00 48 b8 10 91 04 08 00 00 00 00 ~ 0x8049110 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ah is defined here via the label transform; this is its entry header. 00 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 61 68 00 00 00 ~ (alignment padding) ~ label :ah at offset 0x0000000000049138 is here. 40 91 04 08 00 00 00 00 48 b8 38 91 04 08 00 00 00 00 ~ 0x8049138 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :ch is defined here via the label transform; this is its entry header. 28 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 68 00 00 00 ~ (alignment padding) ~ label :ch at offset 0x0000000000049160 is here. 68 91 04 08 00 00 00 00 48 b8 60 91 04 08 00 00 00 00 ~ 0x8049160 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :dh is defined here via the label transform; this is its entry header. 50 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 64 68 00 00 00 ~ (alignment padding) ~ label :dh at offset 0x0000000000049188 is here. 90 91 04 08 00 00 00 00 48 b8 88 91 04 08 00 00 00 00 ~ 0x8049188 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :bh is defined here via the label transform; this is its entry header. 78 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 62 68 00 00 00 ~ (alignment padding) ~ label :bh at offset 0x00000000000491b0 is here. b8 91 04 08 00 00 00 00 48 b8 b0 91 04 08 00 00 00 00 ~ 0x80491b0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-overflow is defined here via the label transform; this is its entry header. a0 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6f 76 65 72 66 6c 6f 77 00 00 ~ (alignment padding) ~ label :cc-overflow at offset 0x00000000000491e0 is here. e8 91 04 08 00 00 00 00 48 b8 e0 91 04 08 00 00 00 00 ~ 0x80491e0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-no-overflow is defined here via the label transform; this is its entry header. c8 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6e 6f 2d 6f 76 65 72 66 6c 6f 77 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-no-overflow at offset 0x0000000000049218 is here. 20 92 04 08 00 00 00 00 48 b8 18 92 04 08 00 00 00 00 ~ 0x8049218 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-below is defined here via the label transform; this is its entry header. f8 91 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 62 65 6c 6f 77 00 00 00 00 00 ~ (alignment padding) ~ label :cc-below at offset 0x0000000000049248 is here. 50 92 04 08 00 00 00 00 48 b8 48 92 04 08 00 00 00 00 ~ 0x8049248 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-above-equal is defined here via the label transform; this is its entry header. 30 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 61 62 6f 76 65 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-above-equal at offset 0x0000000000049280 is here. 88 92 04 08 00 00 00 00 48 b8 80 92 04 08 00 00 00 00 ~ 0x8049280 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-equal is defined here via the label transform; this is its entry header. 60 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 65 71 75 61 6c 00 00 00 00 00 ~ (alignment padding) ~ label :cc-equal at offset 0x00000000000492b0 is here. b8 92 04 08 00 00 00 00 48 b8 b0 92 04 08 00 00 00 00 ~ 0x80492b0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-not-equal is defined here via the label transform; this is its entry header. 98 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6e 6f 74 2d 65 71 75 61 6c 00 ~ (alignment padding) ~ label :cc-not-equal at offset 0x00000000000492e0 is here. e8 92 04 08 00 00 00 00 48 b8 e0 92 04 08 00 00 00 00 ~ 0x80492e0 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-below-equal is defined here via the label transform; this is its entry header. c8 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 62 65 6c 6f 77 2d 65 71 75 61 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-below-equal at offset 0x0000000000049318 is here. 20 93 04 08 00 00 00 00 48 b8 18 93 04 08 00 00 00 00 ~ 0x8049318 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-above is defined here via the label transform; this is its entry header. f8 92 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 61 62 6f 76 65 00 00 00 00 00 ~ (alignment padding) ~ label :cc-above at offset 0x0000000000049348 is here. 50 93 04 08 00 00 00 00 48 b8 48 93 04 08 00 00 00 00 ~ 0x8049348 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-sign is defined here via the label transform; this is its entry header. 30 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 73 69 67 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-sign at offset 0x0000000000049378 is here. 80 93 04 08 00 00 00 00 48 b8 78 93 04 08 00 00 00 00 ~ 0x8049378 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-not-sign is defined here via the label transform; this is its entry header. 60 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6e 6f 74 2d 73 69 67 6e 00 00 ~ (alignment padding) ~ label :cc-not-sign at offset 0x00000000000493a8 is here. b0 93 04 08 00 00 00 00 48 b8 a8 93 04 08 00 00 00 00 ~ 0x80493a8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-even is defined here via the label transform; this is its entry header. 90 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 65 76 65 6e 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-even at offset 0x00000000000493d8 is here. e0 93 04 08 00 00 00 00 48 b8 d8 93 04 08 00 00 00 00 ~ 0x80493d8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-odd is defined here via the label transform; this is its entry header. c0 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6f 64 64 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-odd at offset 0x0000000000049408 is here. 10 94 04 08 00 00 00 00 48 b8 08 94 04 08 00 00 00 00 ~ 0x8049408 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-less is defined here via the label transform; this is its entry header. f0 93 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6c 65 73 73 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-less at offset 0x0000000000049438 is here. 40 94 04 08 00 00 00 00 48 b8 38 94 04 08 00 00 00 00 ~ 0x8049438 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-greater-equal is defined here via the label transform; this is its entry header. 20 94 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 67 72 65 61 74 65 72 2d 65 71 75 61 6c 00 00 00 00 00 ~ (alignment padding) ~ label :cc-greater-equal at offset 0x0000000000049470 is here. 78 94 04 08 00 00 00 00 48 b8 70 94 04 08 00 00 00 00 ~ 0x8049470 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-less-equal is defined here via the label transform; this is its entry header. 50 94 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 6c 65 73 73 2d 65 71 75 61 6c 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label :cc-less-equal at offset 0x00000000000494a8 is here. b0 94 04 08 00 00 00 00 48 b8 a8 94 04 08 00 00 00 00 ~ 0x80494a8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ :cc-greater is defined here via the label transform; this is its entry header. 88 94 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 3a 63 63 2d 67 72 65 61 74 65 72 00 00 00 ~ (alignment padding) ~ label :cc-greater at offset 0x00000000000494d8 is here. e0 94 04 08 00 00 00 00 48 b8 d8 94 04 08 00 00 00 00 ~ 0x80494d8 :rax mov-reg64-imm64 50 ~ :rax push-reg64 ~ "next" macro 48 ad ~ lods64 ff 20 ~ :rax jmp-abs-indirect-reg64 00 ~ (alignment padding) ~ reg64 is defined here via the label transform; this is its entry header. c0 94 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 36 34 00 ~ (alignment padding) ~ label reg64 at offset 0x0000000000049500 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 c0 8b 04 08 00 00 00 00 ~ :rcx (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 e8 8b 04 08 00 00 00 00 ~ :rdx (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 10 8c 04 08 00 00 00 00 ~ :rbx (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 88 8c 04 08 00 00 00 00 ~ :rsi (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 b0 8c 04 08 00 00 00 00 ~ :rdi (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg64 is not a reg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 20 72 65 67 36 34 2e 00 00 00 00 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 7f 04 08 00 00 00 00 ~ sys-exit (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ extrareg64 is defined here via the label transform; this is its entry header. f0 94 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 65 78 74 72 61 72 65 67 36 34 00 00 00 00 ~ (alignment padding) ~ label extrareg64 at offset 0x0000000000049878 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) d8 8c 04 08 00 00 00 00 ~ :r8 (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 00 8d 04 08 00 00 00 00 ~ :r9 (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 28 8d 04 08 00 00 00 00 ~ :r10 (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 50 8d 04 08 00 00 00 00 ~ :r11 (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 78 8d 04 08 00 00 00 00 ~ :r12 (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 a0 8d 04 08 00 00 00 00 ~ :r13 (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 c8 8d 04 08 00 00 00 00 ~ :r14 (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 f0 8d 04 08 00 00 00 00 ~ :r15 (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to extrareg64 is not an extrareg64." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 65 78 74 72 61 72 65 67 36 34 20 69 73 20 6e 6f 74 20 61 6e 20 65 78 74 72 61 72 65 67 36 34 2e 00 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 7f 04 08 00 00 00 00 ~ sys-exit (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ reg32 is defined here via the label transform; this is its entry header. 60 98 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 33 32 00 ~ (alignment padding) ~ label reg32 at offset 0x0000000000049bf0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 18 8e 04 08 00 00 00 00 ~ :eax (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 40 8e 04 08 00 00 00 00 ~ :ecx (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 68 8e 04 08 00 00 00 00 ~ :edx (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 90 8e 04 08 00 00 00 00 ~ :ebx (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 b8 8e 04 08 00 00 00 00 ~ :esp (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 e0 8e 04 08 00 00 00 00 ~ :ebp (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 08 8f 04 08 00 00 00 00 ~ :esi (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 30 8f 04 08 00 00 00 00 ~ :edi (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg32 is not a reg32." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 33 32 20 69 73 20 6e 6f 74 20 61 20 72 65 67 33 32 2e 00 00 00 00 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 7f 04 08 00 00 00 00 ~ sys-exit (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ reg16 is defined here via the label transform; this is its entry header. e0 9b 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 31 36 00 ~ (alignment padding) ~ label reg16 at offset 0x0000000000049f60 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 8f 04 08 00 00 00 00 ~ :ax (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 80 8f 04 08 00 00 00 00 ~ :cx (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 a8 8f 04 08 00 00 00 00 ~ :dx (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 d0 8f 04 08 00 00 00 00 ~ :bx (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 f8 8f 04 08 00 00 00 00 ~ :sp (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 20 90 04 08 00 00 00 00 ~ :bp (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 48 90 04 08 00 00 00 00 ~ :si (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 70 90 04 08 00 00 00 00 ~ :di (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg16 is not a reg16." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 31 36 20 69 73 20 6e 6f 74 20 61 20 72 65 67 31 36 2e 00 00 00 00 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 7f 04 08 00 00 00 00 ~ sys-exit (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ reg8 is defined here via the label transform; this is its entry header. 50 9f 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 67 38 00 00 ~ (alignment padding) ~ label reg8 at offset 0x000000000004a2d0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 98 90 04 08 00 00 00 00 ~ :al (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 c0 90 04 08 00 00 00 00 ~ :cl (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 e8 90 04 08 00 00 00 00 ~ :dl (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 10 91 04 08 00 00 00 00 ~ :bl (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 38 91 04 08 00 00 00 00 ~ :ah (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 60 91 04 08 00 00 00 00 ~ :ch (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 88 91 04 08 00 00 00 00 ~ :dh (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 b0 91 04 08 00 00 00 00 ~ :bh (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to reg8 is not a reg8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 72 65 67 38 20 69 73 20 6e 6f 74 20 61 20 72 65 67 38 2e 00 00 00 00 00 00 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 7f 04 08 00 00 00 00 ~ sys-exit (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scalefield is defined here via the label transform; this is its entry header. c0 a2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 6c 65 66 69 65 6c 64 00 00 00 00 ~ (alignment padding) ~ label scalefield at offset 0x000000000004a648 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to scalefield is not 1, 2, 4, or 8." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 73 63 61 6c 65 66 69 65 6c 64 20 69 73 20 6e 6f 74 20 31 2c 20 32 2c 20 34 2c 20 6f 72 20 38 2e 00 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 7f 04 08 00 00 00 00 ~ sys-exit (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ condition-code is defined here via the label transform; this is its entry header. 30 a6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label condition-code at offset 0x000000000004a870 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 91 04 08 00 00 00 00 ~ :cc-overflow (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 18 92 04 08 00 00 00 00 ~ :cc-no-overflow (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 48 92 04 08 00 00 00 00 ~ :cc-below (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 80 92 04 08 00 00 00 00 ~ :cc-above-equal (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 b0 92 04 08 00 00 00 00 ~ :cc-equal (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 e0 92 04 08 00 00 00 00 ~ :cc-not-equal (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 18 93 04 08 00 00 00 00 ~ :cc-below-equal (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 48 93 04 08 00 00 00 00 ~ :cc-above (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 78 93 04 08 00 00 00 00 ~ :cc-sign (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 a8 93 04 08 00 00 00 00 ~ :cc-not-sign (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 09 00 00 00 00 00 00 00 ~ 0x9 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 d8 93 04 08 00 00 00 00 ~ :cc-even (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 08 94 04 08 00 00 00 00 ~ :cc-odd (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 38 94 04 08 00 00 00 00 ~ :cc-less (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0c 00 00 00 00 00 00 00 ~ 0xc (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 70 94 04 08 00 00 00 00 ~ :cc-greater-equal (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0d 00 00 00 00 00 00 00 ~ 0xd (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 a8 94 04 08 00 00 00 00 ~ :cc-less-equal (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ dup (codeword pointer) ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0e 00 00 00 00 00 00 00 ~ 0xe (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 78 66 04 08 00 00 00 00 d8 94 04 08 00 00 00 00 ~ :cc-greater (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 28 00 00 00 00 00 00 00 ~ 0x28 (branch offset) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Parameter to condition-code is not a condition code." (string literal with null) 50 61 72 61 6d 65 74 65 72 20 74 6f 20 63 6f 6e 64 69 74 69 6f 6e 2d 63 6f 64 65 20 69 73 20 6e 6f 74 20 61 20 63 6f 6e 64 69 74 69 6f 6e 20 63 6f 64 65 2e 00 00 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 7f 04 08 00 00 00 00 ~ sys-exit (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-0 is defined here via the label transform; this is its entry header. 50 a8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 30 00 ~ (alignment padding) ~ label rex-0 at offset 0x000000000004aef0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-w is defined here via the label transform; this is its entry header. e0 ae 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 00 ~ (alignment padding) ~ label rex-w at offset 0x000000000004af28 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 48 00 00 00 00 00 00 00 ~ 0x48 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-r is defined here via the label transform; this is its entry header. 18 af 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 00 ~ (alignment padding) ~ label rex-r at offset 0x000000000004af60 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 44 00 00 00 00 00 00 00 ~ 0x44 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-x is defined here via the label transform; this is its entry header. 50 af 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 78 00 ~ (alignment padding) ~ label rex-x at offset 0x000000000004af98 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 42 00 00 00 00 00 00 00 ~ 0x42 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-b is defined here via the label transform; this is its entry header. 88 af 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 62 00 ~ (alignment padding) ~ label rex-b at offset 0x000000000004afd0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 41 00 00 00 00 00 00 00 ~ 0x41 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wr is defined here via the label transform; this is its entry header. c0 af 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wr at offset 0x000000000004b010 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4c 00 00 00 00 00 00 00 ~ 0x4c (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wx is defined here via the label transform; this is its entry header. f8 af 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 78 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wx at offset 0x000000000004b050 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4a 00 00 00 00 00 00 00 ~ 0x4a (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wb is defined here via the label transform; this is its entry header. 38 b0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 62 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wb at offset 0x000000000004b090 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 49 00 00 00 00 00 00 00 ~ 0x49 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-rx is defined here via the label transform; this is its entry header. 78 b0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 78 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-rx at offset 0x000000000004b0d0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 46 00 00 00 00 00 00 00 ~ 0x46 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-rb is defined here via the label transform; this is its entry header. b8 b0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 62 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-rb at offset 0x000000000004b110 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 45 00 00 00 00 00 00 00 ~ 0x45 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-xb is defined here via the label transform; this is its entry header. f8 b0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 78 62 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-xb at offset 0x000000000004b150 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 43 00 00 00 00 00 00 00 ~ 0x43 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wrx is defined here via the label transform; this is its entry header. 38 b1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 78 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wrx at offset 0x000000000004b190 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4e 00 00 00 00 00 00 00 ~ 0x4e (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wrb is defined here via the label transform; this is its entry header. 78 b1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 62 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wrb at offset 0x000000000004b1d0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4d 00 00 00 00 00 00 00 ~ 0x4d (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wxb is defined here via the label transform; this is its entry header. b8 b1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 78 62 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wxb at offset 0x000000000004b210 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4b 00 00 00 00 00 00 00 ~ 0x4b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-rxb is defined here via the label transform; this is its entry header. f8 b1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 72 78 62 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-rxb at offset 0x000000000004b250 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 47 00 00 00 00 00 00 00 ~ 0x47 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rex-wrxb is defined here via the label transform; this is its entry header. 38 b2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 78 2d 77 72 78 62 00 00 00 00 00 00 ~ (alignment padding) ~ label rex-wrxb at offset 0x000000000004b290 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 4f 00 00 00 00 00 00 00 ~ 0x4f (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ opcodereg is defined here via the label transform; this is its entry header. 78 b2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 70 63 6f 64 65 72 65 67 00 00 00 00 00 ~ (alignment padding) ~ label opcodereg at offset 0x000000000004b2d0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) d8 69 04 08 00 00 00 00 ~ | (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ opcodecc is defined here via the label transform; this is its entry header. b8 b2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 70 63 6f 64 65 63 63 00 00 00 00 00 00 ~ (alignment padding) ~ label opcodecc at offset 0x000000000004b308 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) d8 69 04 08 00 00 00 00 ~ | (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ modrm is defined here via the label transform; this is its entry header. f0 b2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 64 72 6d 00 ~ (alignment padding) ~ label modrm at offset 0x000000000004b338 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) d8 69 04 08 00 00 00 00 ~ | (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) d8 69 04 08 00 00 00 00 ~ | (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sib is defined here via the label transform; this is its entry header. 28 b3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 69 62 00 00 00 ~ (alignment padding) ~ label sib at offset 0x000000000004b3b0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) d8 69 04 08 00 00 00 00 ~ | (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) d8 69 04 08 00 00 00 00 ~ | (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-reg64 is defined here via the label transform; this is its entry header. a0 b3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-reg64 at offset 0x000000000004b438 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 38 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-reg8 is defined here via the label transform; this is its entry header. 18 b4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 72 65 67 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-reg8 at offset 0x000000000004b490 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) d0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 38 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-indirect-reg64 is defined here via the label transform; this is its entry header. 70 b4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label addressing-indirect-reg64 at offset 0x000000000004b4f0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) d0 00 00 00 00 00 00 00 ~ 0xd0 (branch offset) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 38 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 58 6a 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) b0 b3 04 08 00 00 00 00 ~ sib (codeword pointer) 18 65 04 08 00 00 00 00 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "R/M parameter to addressing-indirect-reg64 is :rbp." (string literal with null) 52 2f 4d 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 7f 04 08 00 00 00 00 ~ sys-exit (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-disp8-reg64 is defined here via the label transform; this is its entry header. c8 b4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-disp8-reg64 at offset 0x000000000004b690 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 38 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 58 6a 04 08 00 00 00 00 ~ swap (codeword pointer) ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) b0 b3 04 08 00 00 00 00 ~ sib (codeword pointer) 40 65 04 08 00 00 00 00 a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-disp32-reg64 is defined here via the label transform; this is its entry header. 68 b6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-disp32-reg64 at offset 0x000000000004b7c0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) b0 67 04 08 00 00 00 00 ~ = (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 38 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 40 00 00 00 00 00 00 00 ~ 0x40 (branch offset) 58 6a 04 08 00 00 00 00 ~ swap (codeword pointer) ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 38 8c 04 08 00 00 00 00 ~ :rsp (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) b0 b3 04 08 00 00 00 00 ~ sib (codeword pointer) 40 65 04 08 00 00 00 00 e8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-indexed-reg64 is defined here via the label transform; this is its entry header. 98 b7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-indexed-reg64 at offset 0x000000000004b8f0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (branch offset) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 38 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 48 a6 04 08 00 00 00 00 ~ scalefield (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) b0 b3 04 08 00 00 00 00 ~ sib (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "Base parameter to addressing-indexed-reg64 is :rbp." (string literal with null) 42 61 73 65 20 70 61 72 61 6d 65 74 65 72 20 74 6f 20 61 64 64 72 65 73 73 69 6e 67 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 20 69 73 20 3a 72 62 70 2e 00 00 00 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 10 7f 04 08 00 00 00 00 ~ sys-exit (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ addressing-disp8-indexed-reg64 is defined here via the label transform; this is its entry header. c8 b8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 72 65 73 73 69 6e 67 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label addressing-disp8-indexed-reg64 at offset 0x000000000004ba80 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 38 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 48 a6 04 08 00 00 00 00 ~ scalefield (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) b0 b3 04 08 00 00 00 00 ~ sib (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cld is defined here via the label transform; this is its entry header. 50 ba 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6c 64 00 00 00 ~ (alignment padding) ~ label cld at offset 0x000000000004bb70 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) fc 00 00 00 00 00 00 00 ~ 0xfc (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ std is defined here via the label transform; this is its entry header. 60 bb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 64 00 00 00 ~ (alignment padding) ~ label std at offset 0x000000000004bba8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) fd 00 00 00 00 00 00 00 ~ 0xfd (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ syscall is defined here via the label transform; this is its entry header. 98 bb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 79 73 63 61 6c 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label syscall at offset 0x000000000004bbe8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ hlt is defined here via the label transform; this is its entry header. d0 bb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 68 6c 74 00 00 00 ~ (alignment padding) ~ label hlt at offset 0x000000000004bc38 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f4 00 00 00 00 00 00 00 ~ 0xf4 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ push-reg64 is defined here via the label transform; this is its entry header. 28 bc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 75 73 68 2d 72 65 67 36 34 00 00 00 00 ~ (alignment padding) ~ label push-reg64 at offset 0x000000000004bc78 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) d0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ push-extrareg64 is defined here via the label transform; this is its entry header. 60 bc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 75 73 68 2d 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label push-extrareg64 at offset 0x000000000004bcc8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 af 04 08 00 00 00 00 ~ rex-b (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 98 04 08 00 00 00 00 ~ extrareg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 50 00 00 00 00 00 00 00 ~ 0x50 (integer literal) d0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pop-reg64 is defined here via the label transform; this is its entry header. a8 bc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 6f 70 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label pop-reg64 at offset 0x000000000004bd28 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) d0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pop-extrareg64 is defined here via the label transform; this is its entry header. 10 bd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 6f 70 2d 65 78 74 72 61 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pop-extrareg64 at offset 0x000000000004bd78 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 af 04 08 00 00 00 00 ~ rex-b (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 98 04 08 00 00 00 00 ~ extrareg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (integer literal) d0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ push-imm32-extended64 is defined here via the label transform; this is its entry header. 58 bd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 75 73 68 2d 69 6d 6d 33 32 2d 65 78 74 65 6e 64 65 64 36 34 00 ~ (alignment padding) ~ label push-imm32-extended64 at offset 0x000000000004bde0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 68 00 00 00 00 00 00 00 ~ 0x68 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-disp8-reg64 is defined here via the label transform; this is its entry header. c0 bd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label lea-reg64-disp8-reg64 at offset 0x000000000004be40 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-disp32-reg64 is defined here via the label transform; this is its entry header. 20 be 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lea-reg64-disp32-reg64 at offset 0x000000000004bee0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) c0 b7 04 08 00 00 00 00 ~ addressing-disp32-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-indexed-reg64 is defined here via the label transform; this is its entry header. b8 be 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lea-reg64-indexed-reg64 at offset 0x000000000004bf80 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b8 04 08 00 00 00 00 ~ addressing-indexed-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lea-reg64-disp8-indexed-reg64 is defined here via the label transform; this is its entry header. 58 bf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 65 61 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label lea-reg64-disp8-indexed-reg64 at offset 0x000000000004c040 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8d 00 00 00 00 00 00 00 ~ 0x8d (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 80 ba 04 08 00 00 00 00 ~ addressing-disp8-indexed-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-imm32 is defined here via the label transform; this is its entry header. 18 c0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 33 32 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-imm32 at offset 0x000000000004c130 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c7 00 00 00 00 00 00 00 ~ 0xc7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-imm64 is defined here via the label transform; this is its entry header. 10 c1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6d 6d 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-imm64 at offset 0x000000000004c1c0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) d0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-extrareg64-imm64 is defined here via the label transform; this is its entry header. a0 c1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 65 78 74 72 61 72 65 67 36 34 2d 69 6d 6d 36 34 00 00 ~ (alignment padding) ~ label mov-extrareg64-imm64 at offset 0x000000000004c238 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 90 b0 04 08 00 00 00 00 ~ rex-wb (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 98 04 08 00 00 00 00 ~ extrareg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) b8 00 00 00 00 00 00 00 ~ 0xb8 (integer literal) d0 b2 04 08 00 00 00 00 ~ opcodereg (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-reg64 is defined here via the label transform; this is its entry header. 18 c2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-reg64 at offset 0x000000000004c2b0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg64 is defined here via the label transform; this is its entry header. 90 c2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg64 at offset 0x000000000004c338 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg64 is defined here via the label transform; this is its entry header. 10 c3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg64 at offset 0x000000000004c3b8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-indirect-reg64 is defined here via the label transform; this is its entry header. 98 c3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-indirect-reg64 at offset 0x000000000004c460 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-disp8-reg64 is defined here via the label transform; this is its entry header. 38 c4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-reg64-disp8-reg64 at offset 0x000000000004c4d8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-disp32-reg64 is defined here via the label transform; this is its entry header. b8 c4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 64 69 73 70 33 32 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-disp32-reg64 at offset 0x000000000004c578 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) c0 b7 04 08 00 00 00 00 ~ addressing-disp32-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg64-indexed-reg64 is defined here via the label transform; this is its entry header. 50 c5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 36 34 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg64-indexed-reg64 at offset 0x000000000004c628 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b8 04 08 00 00 00 00 ~ addressing-indexed-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indexed-reg64-reg64 is defined here via the label transform; this is its entry header. 00 c6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 65 78 65 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indexed-reg64-reg64 at offset 0x000000000004c6e8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b8 04 08 00 00 00 00 ~ addressing-indexed-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg32 is defined here via the label transform; this is its entry header. c0 c6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 33 32 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg32 at offset 0x000000000004c7c0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 9b 04 08 00 00 00 00 ~ reg32 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg32 is defined here via the label transform; this is its entry header. 98 c7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 33 32 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg32 at offset 0x000000000004c838 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) f0 9b 04 08 00 00 00 00 ~ reg32 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg32-indirect-reg64 is defined here via the label transform; this is its entry header. 18 c8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 33 32 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg32-indirect-reg64 at offset 0x000000000004c8d8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) f0 9b 04 08 00 00 00 00 ~ reg32 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg32-disp8-reg64 is defined here via the label transform; this is its entry header. b0 c8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 33 32 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-reg32-disp8-reg64 at offset 0x000000000004c948 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) f0 9b 04 08 00 00 00 00 ~ reg32 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg16 is defined here via the label transform; this is its entry header. 28 c9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 31 36 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg16 at offset 0x000000000004c9e0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 9f 04 08 00 00 00 00 ~ reg16 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg16 is defined here via the label transform; this is its entry header. b8 c9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 31 36 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg16 at offset 0x000000000004ca70 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 89 00 00 00 00 00 00 00 ~ 0x89 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 60 9f 04 08 00 00 00 00 ~ reg16 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg16-indirect-reg64 is defined here via the label transform; this is its entry header. 50 ca 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 31 36 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg16-indirect-reg64 at offset 0x000000000004cb28 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 9f 04 08 00 00 00 00 ~ reg16 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg16-disp8-reg64 is defined here via the label transform; this is its entry header. 00 cb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 31 36 2d 64 69 73 70 38 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label mov-reg16-disp8-reg64 at offset 0x000000000004cbb0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8b 00 00 00 00 00 00 00 ~ 0x8b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 60 9f 04 08 00 00 00 00 ~ reg16 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-indirect-reg64-reg8 is defined here via the label transform; this is its entry header. 90 cb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-indirect-reg64-reg8 at offset 0x000000000004cc60 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-disp8-reg64-reg8 is defined here via the label transform; this is its entry header. 38 cc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 64 69 73 70 38 2d 72 65 67 36 34 2d 72 65 67 38 00 00 ~ (alignment padding) ~ label mov-disp8-reg64-reg8 at offset 0x000000000004ccd8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) d0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg8-indirect-reg64 is defined here via the label transform; this is its entry header. b8 cc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 38 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label mov-reg8-indirect-reg64 at offset 0x000000000004cd78 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) d0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg8-disp8-reg64 is defined here via the label transform; this is its entry header. 50 cd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 38 2d 64 69 73 70 38 2d 72 65 67 36 34 00 00 ~ (alignment padding) ~ label mov-reg8-disp8-reg64 at offset 0x000000000004cde8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 8a 00 00 00 00 00 00 00 ~ 0x8a (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) d0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 90 b6 04 08 00 00 00 00 ~ addressing-disp8-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mov-reg8-reg8 is defined here via the label transform; this is its entry header. c8 cd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 2d 72 65 67 38 2d 72 65 67 38 00 ~ (alignment padding) ~ label mov-reg8-reg8 at offset 0x000000000004ce70 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 88 00 00 00 00 00 00 00 ~ 0x88 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 90 b4 04 08 00 00 00 00 ~ addressing-reg8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs8 is defined here via the label transform; this is its entry header. 58 ce 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 38 00 ~ (alignment padding) ~ label movs8 at offset 0x000000000004ced8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs16 is defined here via the label transform; this is its entry header. c8 ce 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label movs16 at offset 0x000000000004cf18 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs32 is defined here via the label transform; this is its entry header. 00 cf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label movs32 at offset 0x000000000004cf70 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ movs64 is defined here via the label transform; this is its entry header. 58 cf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 6f 76 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label movs64 at offset 0x000000000004cfb0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs8 is defined here via the label transform; this is its entry header. 98 cf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 38 00 00 00 00 00 ~ (alignment padding) ~ label rep-movs8 at offset 0x000000000004cff8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a4 00 00 00 00 00 00 00 ~ 0xa4 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs16 is defined here via the label transform; this is its entry header. e0 cf 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 31 36 00 00 00 00 ~ (alignment padding) ~ label rep-movs16 at offset 0x000000000004d050 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs32 is defined here via the label transform; this is its entry header. 38 d0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 33 32 00 00 00 00 ~ (alignment padding) ~ label rep-movs32 at offset 0x000000000004d0c0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-movs64 is defined here via the label transform; this is its entry header. a8 d0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6d 6f 76 73 36 34 00 00 00 00 ~ (alignment padding) ~ label rep-movs64 at offset 0x000000000004d118 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a5 00 00 00 00 00 00 00 ~ 0xa5 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods8 is defined here via the label transform; this is its entry header. 00 d1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 38 00 ~ (alignment padding) ~ label lods8 at offset 0x000000000004d170 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods16 is defined here via the label transform; this is its entry header. 60 d1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lods16 at offset 0x000000000004d1b0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods32 is defined here via the label transform; this is its entry header. 98 d1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lods32 at offset 0x000000000004d208 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ lods64 is defined here via the label transform; this is its entry header. f0 d1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 64 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label lods64 at offset 0x000000000004d248 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods8 is defined here via the label transform; this is its entry header. 30 d2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 38 00 00 00 00 00 ~ (alignment padding) ~ label rep-lods8 at offset 0x000000000004d290 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ac 00 00 00 00 00 00 00 ~ 0xac (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods16 is defined here via the label transform; this is its entry header. 78 d2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 31 36 00 00 00 00 ~ (alignment padding) ~ label rep-lods16 at offset 0x000000000004d2e8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods32 is defined here via the label transform; this is its entry header. d0 d2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 33 32 00 00 00 00 ~ (alignment padding) ~ label rep-lods32 at offset 0x000000000004d358 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-lods64 is defined here via the label transform; this is its entry header. 40 d3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 6c 6f 64 73 36 34 00 00 00 00 ~ (alignment padding) ~ label rep-lods64 at offset 0x000000000004d3b0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ad 00 00 00 00 00 00 00 ~ 0xad (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos8 is defined here via the label transform; this is its entry header. 98 d3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 38 00 ~ (alignment padding) ~ label stos8 at offset 0x000000000004d408 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos16 is defined here via the label transform; this is its entry header. f8 d3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label stos16 at offset 0x000000000004d448 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos32 is defined here via the label transform; this is its entry header. 30 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label stos32 at offset 0x000000000004d4a0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ stos64 is defined here via the label transform; this is its entry header. 88 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 74 6f 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label stos64 at offset 0x000000000004d4e0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos8 is defined here via the label transform; this is its entry header. c8 d4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 38 00 00 00 00 00 ~ (alignment padding) ~ label rep-stos8 at offset 0x000000000004d528 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) aa 00 00 00 00 00 00 00 ~ 0xaa (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos16 is defined here via the label transform; this is its entry header. 10 d5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 31 36 00 00 00 00 ~ (alignment padding) ~ label rep-stos16 at offset 0x000000000004d580 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos32 is defined here via the label transform; this is its entry header. 68 d5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 33 32 00 00 00 00 ~ (alignment padding) ~ label rep-stos32 at offset 0x000000000004d5f0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rep-stos64 is defined here via the label transform; this is its entry header. d8 d5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 2d 73 74 6f 73 36 34 00 00 00 00 ~ (alignment padding) ~ label rep-stos64 at offset 0x000000000004d648 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ab 00 00 00 00 00 00 00 ~ 0xab (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps8 is defined here via the label transform; this is its entry header. 30 d6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 38 00 ~ (alignment padding) ~ label cmps8 at offset 0x000000000004d6a0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps16 is defined here via the label transform; this is its entry header. 90 d6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmps16 at offset 0x000000000004d6e0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps32 is defined here via the label transform; this is its entry header. c8 d6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmps32 at offset 0x000000000004d738 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmps64 is defined here via the label transform; this is its entry header. 20 d7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmps64 at offset 0x000000000004d778 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps8 is defined here via the label transform; this is its entry header. 60 d7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 38 00 00 00 00 ~ (alignment padding) ~ label repz-cmps8 at offset 0x000000000004d7c0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps16 is defined here via the label transform; this is its entry header. a8 d7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 31 36 00 00 00 ~ (alignment padding) ~ label repz-cmps16 at offset 0x000000000004d818 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps32 is defined here via the label transform; this is its entry header. 00 d8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 33 32 00 00 00 ~ (alignment padding) ~ label repz-cmps32 at offset 0x000000000004d888 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-cmps64 is defined here via the label transform; this is its entry header. 70 d8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 63 6d 70 73 36 34 00 00 00 ~ (alignment padding) ~ label repz-cmps64 at offset 0x000000000004d8e0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps8 is defined here via the label transform; this is its entry header. c8 d8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 38 00 00 00 ~ (alignment padding) ~ label repnz-cmps8 at offset 0x000000000004d940 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a6 00 00 00 00 00 00 00 ~ 0xa6 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps16 is defined here via the label transform; this is its entry header. 28 d9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 31 36 00 00 ~ (alignment padding) ~ label repnz-cmps16 at offset 0x000000000004d998 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps32 is defined here via the label transform; this is its entry header. 80 d9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 33 32 00 00 ~ (alignment padding) ~ label repnz-cmps32 at offset 0x000000000004da08 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-cmps64 is defined here via the label transform; this is its entry header. f0 d9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 63 6d 70 73 36 34 00 00 ~ (alignment padding) ~ label repnz-cmps64 at offset 0x000000000004da60 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a7 00 00 00 00 00 00 00 ~ 0xa7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas8 is defined here via the label transform; this is its entry header. 48 da 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 38 00 ~ (alignment padding) ~ label scas8 at offset 0x000000000004dab8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) a8 00 00 00 00 00 00 00 ~ 0xa8 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas16 is defined here via the label transform; this is its entry header. a8 da 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 31 36 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label scas16 at offset 0x000000000004daf8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas32 is defined here via the label transform; this is its entry header. e0 da 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label scas32 at offset 0x000000000004db50 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ scas64 is defined here via the label transform; this is its entry header. 38 db 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 63 61 73 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label scas64 at offset 0x000000000004db90 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas8 is defined here via the label transform; this is its entry header. 78 db 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 38 00 00 00 00 ~ (alignment padding) ~ label repz-scas8 at offset 0x000000000004dbd8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas16 is defined here via the label transform; this is its entry header. c0 db 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 31 36 00 00 00 ~ (alignment padding) ~ label repz-scas16 at offset 0x000000000004dc30 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas32 is defined here via the label transform; this is its entry header. 18 dc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 33 32 00 00 00 ~ (alignment padding) ~ label repz-scas32 at offset 0x000000000004dca0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repz-scas64 is defined here via the label transform; this is its entry header. 88 dc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 7a 2d 73 63 61 73 36 34 00 00 00 ~ (alignment padding) ~ label repz-scas64 at offset 0x000000000004dcf8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f3 00 00 00 00 00 00 00 ~ 0xf3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas8 is defined here via the label transform; this is its entry header. e0 dc 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 38 00 00 00 ~ (alignment padding) ~ label repnz-scas8 at offset 0x000000000004dd58 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ae 00 00 00 00 00 00 00 ~ 0xae (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas16 is defined here via the label transform; this is its entry header. 40 dd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 31 36 00 00 ~ (alignment padding) ~ label repnz-scas16 at offset 0x000000000004ddb0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 66 00 00 00 00 00 00 00 ~ 0x66 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas32 is defined here via the label transform; this is its entry header. 98 dd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 33 32 00 00 ~ (alignment padding) ~ label repnz-scas32 at offset 0x000000000004de20 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ repnz-scas64 is defined here via the label transform; this is its entry header. 08 de 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 70 6e 7a 2d 73 63 61 73 36 34 00 00 ~ (alignment padding) ~ label repnz-scas64 at offset 0x000000000004de78 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f2 00 00 00 00 00 00 00 ~ 0xf2 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) af 00 00 00 00 00 00 00 ~ 0xaf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-reg64-reg64 is defined here via the label transform; this is its entry header. 60 de 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label add-reg64-reg64 at offset 0x000000000004dee0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-indirect-reg64-reg64 is defined here via the label transform; this is its entry header. c0 de 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label add-indirect-reg64-reg64 at offset 0x000000000004df68 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-reg64-indirect-reg64 is defined here via the label transform; this is its entry header. 40 df 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 72 65 67 36 34 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label add-reg64-indirect-reg64 at offset 0x000000000004dff0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ add-reg64-imm8 is defined here via the label transform; this is its entry header. c8 df 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 64 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label add-reg64-imm8 at offset 0x000000000004e068 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sub-reg64-reg64 is defined here via the label transform; this is its entry header. 48 e0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 75 62 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label sub-reg64-reg64 at offset 0x000000000004e0f8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sub-indirect-reg64-reg64 is defined here via the label transform; this is its entry header. d8 e0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 75 62 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label sub-indirect-reg64-reg64 at offset 0x000000000004e178 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 2b 00 00 00 00 00 00 00 ~ 0x2b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sub-reg64-imm8 is defined here via the label transform; this is its entry header. 50 e1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 75 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label sub-reg64-imm8 at offset 0x000000000004e1f8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ sbb-reg64-imm8 is defined here via the label transform; this is its entry header. d8 e1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 62 62 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label sbb-reg64-imm8 at offset 0x000000000004e288 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ mul-reg64 is defined here via the label transform; this is its entry header. 68 e2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6d 75 6c 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label mul-reg64 at offset 0x000000000004e310 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ divmod-reg64 is defined here via the label transform; this is its entry header. f8 e2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 00 ~ (alignment padding) ~ label divmod-reg64 at offset 0x000000000004e388 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ idivmod-reg64 is defined here via the label transform; this is its entry header. 70 e3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 69 64 69 76 6d 6f 64 2d 72 65 67 36 34 00 ~ (alignment padding) ~ label idivmod-reg64 at offset 0x000000000004e400 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ inc-reg64 is defined here via the label transform; this is its entry header. e8 e3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 69 6e 63 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label inc-reg64 at offset 0x000000000004e478 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ dec-reg64 is defined here via the label transform; this is its entry header. 60 e4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 64 65 63 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label dec-reg64 at offset 0x000000000004e4f0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ and-reg64-reg64 is defined here via the label transform; this is its entry header. d8 e4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6e 64 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label and-reg64-reg64 at offset 0x000000000004e570 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 23 00 00 00 00 00 00 00 ~ 0x23 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ and-reg64-imm8 is defined here via the label transform; this is its entry header. 50 e5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 61 6e 64 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label and-reg64-imm8 at offset 0x000000000004e5e8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ or-reg64-reg64 is defined here via the label transform; this is its entry header. c8 e5 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label or-reg64-reg64 at offset 0x000000000004e678 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0b 00 00 00 00 00 00 00 ~ 0xb (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ or-reg64-imm8 is defined here via the label transform; this is its entry header. 58 e6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 ~ (alignment padding) ~ label or-reg64-imm8 at offset 0x000000000004e6e8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ xor-reg64-reg64 is defined here via the label transform; this is its entry header. d0 e6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 78 6f 72 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label xor-reg64-reg64 at offset 0x000000000004e778 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 33 00 00 00 00 00 00 00 ~ 0x33 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ not-reg64 is defined here via the label transform; this is its entry header. 58 e7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6e 6f 74 2d 72 65 67 36 34 00 00 00 00 00 ~ (alignment padding) ~ label not-reg64 at offset 0x000000000004e7e8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f7 00 00 00 00 00 00 00 ~ 0xf7 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rol-reg64-imm8 is defined here via the label transform; this is its entry header. d0 e7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 6c 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label rol-reg64-imm8 at offset 0x000000000004e868 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ rol-reg8-imm8 is defined here via the label transform; this is its entry header. 48 e8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 6c 2d 72 65 67 38 2d 69 6d 6d 38 00 ~ (alignment padding) ~ label rol-reg8-imm8 at offset 0x000000000004e8f0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 90 b4 04 08 00 00 00 00 ~ addressing-reg8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ror-reg64-imm8 is defined here via the label transform; this is its entry header. d8 e8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 72 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label ror-reg64-imm8 at offset 0x000000000004e978 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c1 00 00 00 00 00 00 00 ~ 0xc1 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ror-reg8-imm8 is defined here via the label transform; this is its entry header. 58 e9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 6f 72 2d 72 65 67 38 2d 69 6d 6d 38 00 ~ (alignment padding) ~ label ror-reg8-imm8 at offset 0x000000000004ea00 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c0 00 00 00 00 00 00 00 ~ 0xc0 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmp-reg64-reg64 is defined here via the label transform; this is its entry header. e8 e9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmp-reg64-reg64 at offset 0x000000000004ea88 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 3b 00 00 00 00 00 00 00 ~ 0x3b (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ cmp-reg64-imm8 is defined here via the label transform; this is its entry header. 68 ea 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 6d 70 2d 72 65 67 36 34 2d 69 6d 6d 38 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label cmp-reg64-imm8 at offset 0x000000000004eb00 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 83 00 00 00 00 00 00 00 ~ 0x83 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ test-reg64-reg64 is defined here via the label transform; this is its entry header. e0 ea 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 74 65 73 74 2d 72 65 67 36 34 2d 72 65 67 36 34 00 00 00 00 00 00 ~ (alignment padding) ~ label test-reg64-reg64 at offset 0x000000000004eb90 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 28 af 04 08 00 00 00 00 ~ rex-w (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 85 00 00 00 00 00 00 00 ~ 0x85 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 00 95 04 08 00 00 00 00 ~ reg64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 38 b4 04 08 00 00 00 00 ~ addressing-reg64 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ set-reg8-cc is defined here via the label transform; this is its entry header. 70 eb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 73 65 74 2d 72 65 67 38 2d 63 63 00 00 00 ~ (alignment padding) ~ label set-reg8-cc at offset 0x000000000004ec08 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 70 a8 04 08 00 00 00 00 ~ condition-code (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 90 00 00 00 00 00 00 00 ~ 0x90 (integer literal) 08 b3 04 08 00 00 00 00 ~ opcodecc (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) d0 a2 04 08 00 00 00 00 ~ reg8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 38 b3 04 08 00 00 00 00 ~ modrm (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-cc-rel-imm8 is defined here via the label transform; this is its entry header. f0 eb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 38 00 00 00 00 00 00 00 ~ (alignment padding) ~ label jmp-cc-rel-imm8 at offset 0x000000000004ecc0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 a8 04 08 00 00 00 00 ~ condition-code (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) 08 b3 04 08 00 00 00 00 ~ opcodecc (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-cc-rel-imm32 is defined here via the label transform; this is its entry header. a0 ec 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 63 63 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 00 00 00 ~ (alignment padding) ~ label jmp-cc-rel-imm32 at offset 0x000000000004ed30 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0f 00 00 00 00 00 00 00 ~ 0xf (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 70 a8 04 08 00 00 00 00 ~ condition-code (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 70 00 00 00 00 00 00 00 ~ 0x70 (integer literal) 08 b3 04 08 00 00 00 00 ~ opcodecc (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-abs-indirect-reg64 is defined here via the label transform; this is its entry header. 10 ed 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 61 62 73 2d 69 6e 64 69 72 65 63 74 2d 72 65 67 36 34 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label jmp-abs-indirect-reg64 at offset 0x000000000004edc0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff 00 00 00 00 00 00 00 ~ 0xff (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) f0 b4 04 08 00 00 00 00 ~ addressing-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-rel-imm8 is defined here via the label transform; this is its entry header. 98 ed 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 38 00 00 ~ (alignment padding) ~ label jmp-rel-imm8 at offset 0x000000000004ee30 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) eb 00 00 00 00 00 00 00 ~ 0xeb (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ jmp-rel-imm32 is defined here via the label transform; this is its entry header. 18 ee 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6a 6d 70 2d 72 65 6c 2d 69 6d 6d 33 32 00 ~ (alignment padding) ~ label jmp-rel-imm32 at offset 0x000000000004ee88 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) e9 00 00 00 00 00 00 00 ~ 0xe9 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ call-rel-imm32 is defined here via the label transform; this is its entry header. 70 ee 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 63 61 6c 6c 2d 72 65 6c 2d 69 6d 6d 33 32 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label call-rel-imm32 at offset 0x000000000004eee8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) e8 00 00 00 00 00 00 00 ~ 0xe8 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 71 04 08 00 00 00 00 ~ pack32 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ ret is defined here via the label transform; this is its entry header. c8 ee 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 72 65 74 00 00 00 ~ (alignment padding) ~ label ret at offset 0x000000000004ef38 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) c3 00 00 00 00 00 00 00 ~ 0xc3 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-next is defined here via the label transform; this is its entry header. 28 ef 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 6e 65 78 74 00 00 00 00 00 ~ (alignment padding) ~ label pack-next at offset 0x000000000004ef78 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 48 d2 04 08 00 00 00 00 ~ lods64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) c0 ed 04 08 00 00 00 00 ~ jmp-abs-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-beforenext is defined here via the label transform; this is its entry header. 60 ef 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 62 65 66 6f 72 65 6e 65 78 74 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-beforenext at offset 0x000000000004efc0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) c0 c1 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) c0 ed 04 08 00 00 00 00 ~ jmp-abs-indirect-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-pushcontrol is defined here via the label transform; this is its entry header. a0 ef 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 70 75 73 68 63 6f 6e 74 72 6f 6c 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-pushcontrol at offset 0x000000000004f010 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) f8 ff ff ff ff ff ff ff ~ 0xfffffffffffffff8 (integer literal) 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 40 be 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) b8 c3 04 08 00 00 00 00 ~ mov-disp8-reg64-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ pack-popcontrol is defined here via the label transform; this is its entry header. f0 ef 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 70 61 63 6b 2d 70 6f 70 63 6f 6e 74 72 6f 6c 00 00 00 00 00 00 00 ~ (alignment padding) ~ label pack-popcontrol at offset 0x000000000004f098 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) d8 c4 04 08 00 00 00 00 ~ mov-reg64-disp8-reg64 ~ (codeword pointer) 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 60 8c 04 08 00 00 00 00 ~ :rbp (codeword pointer) 40 be 04 08 00 00 00 00 ~ lea-reg64-disp8-reg64 ~ (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-offset is defined here via the label transform; this is its entry header. 78 f0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6f 66 66 73 65 74 00 00 00 00 ~ (alignment padding) ~ label log-offset at offset 0x000000000004f110 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 01 00 00 00 00 00 ~ 0x10000 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-log is defined here via the label transform; this is its entry header. f8 f0 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6c 6f 67 00 00 ~ (alignment padding) ~ label log-load-log at offset 0x000000000004f148 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 f1 04 08 00 00 00 00 ~ log-offset (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-s0 is defined here via the label transform; this is its entry header. 30 f1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 73 30 00 00 00 ~ (alignment padding) ~ label log-load-s0 at offset 0x000000000004f188 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 f1 04 08 00 00 00 00 ~ log-offset (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-r0 is defined here via the label transform; this is its entry header. 70 f1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 72 30 00 00 00 ~ (alignment padding) ~ label log-load-r0 at offset 0x000000000004f1e0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 f1 04 08 00 00 00 00 ~ log-offset (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-latest is defined here via the label transform; this is its entry header. c8 f1 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6c 61 74 65 73 74 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-latest at offset 0x000000000004f258 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 f1 04 08 00 00 00 00 ~ log-offset (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-here is defined here via the label transform; this is its entry header. 38 f2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 68 65 72 65 00 ~ (alignment padding) ~ label log-load-here at offset 0x000000000004f2c8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 10 f1 04 08 00 00 00 00 ~ log-offset (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-find is defined here via the label transform; this is its entry header. b0 f2 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 00 ~ (alignment padding) ~ label log-load-find at offset 0x000000000004f338 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 f2 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 18 7c 04 08 00 00 00 00 ~ find-in (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-find-execution-token is defined here via the label transform; this is its entry header. 20 f3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 66 69 6e 64 2d 65 78 65 63 75 74 69 6f 6e 2d 74 6f 6b 65 6e 00 ~ (alignment padding) ~ label log-load-find-execution-token at offset 0x000000000004f3a8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) e0 67 04 08 00 00 00 00 ~ != (codeword pointer) b0 6e 04 08 00 00 00 00 ~ 0branch (codeword pointer) 30 00 00 00 00 00 00 00 ~ 0x30 (branch offset) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 88 6e 04 08 00 00 00 00 ~ branch (codeword pointer) 58 00 00 00 00 00 00 00 ~ 0x58 (branch offset) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "No such word: " (string literal with null) 4e 6f 20 73 75 63 68 20 77 6f 72 64 3a 20 00 00 ~ (alignment padding) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 58 80 04 08 00 00 00 00 ~ emitstring (codeword pointer) 00 81 04 08 00 00 00 00 ~ newline (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-create is defined here via the label transform; this is its entry header. 80 f3 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 63 72 65 61 74 65 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-create at offset 0x000000000004f498 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 60 6d 04 08 00 00 00 00 ~ stringlen (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 01 00 00 00 00 00 00 00 ~ 0x1 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 78 04 08 00 00 00 00 ~ pick (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 0a 00 00 00 00 00 00 00 ~ 0xa (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 10 6d 04 08 00 00 00 00 ~ memmove (codeword pointer) 38 78 04 08 00 00 00 00 ~ over (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 70 78 04 08 00 00 00 00 ~ pick (codeword pointer) 58 f2 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 88 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) a0 72 04 08 00 00 00 00 ~ pack8 (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 60 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 38 78 04 08 00 00 00 00 ~ over (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 02 00 00 00 00 00 00 00 ~ 0x2 (integer literal) 70 78 04 08 00 00 00 00 ~ pick (codeword pointer) 58 f2 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 38 78 04 08 00 00 00 00 ~ over (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-self-codeword is defined here via the label transform; this is its entry header. 78 f4 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6c 66 2d 63 6f 64 65 77 6f 72 64 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-self-codeword at offset 0x000000000004f6a8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 88 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-comma is defined here via the label transform; this is its entry header. 80 f6 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-comma at offset 0x000000000004f728 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 88 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-semicolon-assembly is defined here via the label transform; this is its entry header. 08 f7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 73 65 6d 69 63 6f 6c 6f 6e 2d 61 73 73 65 6d 62 6c 79 00 00 00 ~ (alignment padding) ~ label log-load-semicolon-assembly at offset 0x000000000004f7c0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 78 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 60 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 58 f2 04 08 00 00 00 00 ~ log-load-latest (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-variable is defined here via the label transform; this is its entry header. 98 f7 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 76 61 72 69 61 62 6c 65 00 00 00 00 00 ~ (alignment padding) ~ label log-load-variable at offset 0x000000000004f890 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 88 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) c0 c1 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 78 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 60 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-keyword is defined here via the label transform; this is its entry header. 70 f8 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6b 65 79 77 6f 72 64 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-keyword at offset 0x000000000004f980 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 98 f4 04 08 00 00 00 00 ~ log-load-create (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 88 71 04 08 00 00 00 00 ~ pack64 (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) c0 c1 04 08 00 00 00 00 ~ mov-reg64-imm64 (codeword pointer) 98 8b 04 08 00 00 00 00 ~ :rax (codeword pointer) 78 bc 04 08 00 00 00 00 ~ push-reg64 (codeword pointer) 78 ef 04 08 00 00 00 00 ~ pack-next (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 60 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-comma-string is defined here via the label transform; this is its entry header. 60 f9 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 63 6f 6d 6d 61 2d 73 74 72 69 6e 67 00 ~ (alignment padding) ~ label log-load-comma-string at offset 0x000000000004fa68 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 00 73 04 08 00 00 00 00 ~ packstring (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 60 74 04 08 00 00 00 00 ~ packalign (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-left-curly-brace is defined here via the label transform; this is its entry header. 48 fa 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 6c 65 66 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 00 ~ (alignment padding) ~ label log-load-left-curly-brace at offset 0x000000000004fb08 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-right-curly-brace is defined here via the label transform; this is its entry header. e0 fa 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 72 69 67 68 74 2d 63 75 72 6c 79 2d 62 72 61 63 65 00 00 00 00 ~ (alignment padding) ~ label log-load-right-curly-brace at offset 0x000000000004fb58 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) e8 66 04 08 00 00 00 00 ~ - (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-if is defined here via the label transform; this is its entry header. 30 fb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 69 66 00 00 00 ~ (alignment padding) ~ label log-load-if at offset 0x000000000004fbd0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 6d 04 08 00 00 00 00 ~ memmove (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-unless is defined here via the label transform; this is its entry header. b8 fb 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 75 6e 6c 65 73 73 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-unless at offset 0x000000000004fdf0 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 6d 04 08 00 00 00 00 ~ memmove (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "=" (string literal with null) 3d 00 00 00 00 00 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-if-else is defined here via the label transform; this is its entry header. d0 fd 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 69 66 2d 65 6c 73 65 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-if-else at offset 0x0000000000050010 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 6d 04 08 00 00 00 00 ~ memmove (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 70 78 04 08 00 00 00 00 ~ pick (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) 70 78 04 08 00 00 00 00 ~ pick (codeword pointer) 10 6d 04 08 00 00 00 00 ~ memmove (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 07 00 00 00 00 00 00 00 ~ 0x7 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-forever is defined here via the label transform; this is its entry header. f0 ff 04 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 66 6f 72 65 76 65 72 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-forever at offset 0x0000000000050410 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ log-load-while is defined here via the label transform; this is its entry header. f0 03 05 08 00 00 00 00 ~ (previous entry pointer) 00 ~ (entry flags) ~ bidirectional-null-terminated entry name 00 6c 6f 67 2d 6c 6f 61 64 2d 77 68 69 6c 65 00 00 00 00 00 00 00 00 ~ (alignment padding) ~ label log-load-while at offset 0x00000000000504b8 is here. c8 64 04 08 00 00 00 00 ~ (docol codeword) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 98 66 04 08 00 00 00 00 ~ 2dup (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 20 66 04 08 00 00 00 00 ~ 3roll (codeword pointer) 10 6d 04 08 00 00 00 00 ~ memmove (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) e0 6a 04 08 00 00 00 00 ~ @ (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 04 00 00 00 00 00 00 00 ~ 0x4 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "lit" (string literal with null) 6c 69 74 00 00 00 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 00 00 00 00 00 00 00 00 ~ 0x0 (integer literal) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "!=" (string literal with null) 21 3d 00 00 00 00 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "0branch" (string literal with null) 30 62 72 61 6e 63 68 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 78 66 04 08 00 00 00 00 ~ dup (codeword pointer) 50 66 04 08 00 00 00 00 ~ 3unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 03 00 00 00 00 00 00 00 ~ 0x3 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) c8 f2 04 08 00 00 00 00 ~ log-load-here (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) a0 65 04 08 00 00 00 00 ~ roll (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) b8 6a 04 08 00 00 00 00 ~ ! (codeword pointer) 80 6a 04 08 00 00 00 00 ~ litstring (codeword pointer) ~ "branch" (string literal with null) 62 72 61 6e 63 68 00 00 ~ (alignment padding) 38 f3 04 08 00 00 00 00 ~ log-load-find (codeword pointer) 18 6f 04 08 00 00 00 00 ~ entry-to-execution-token ~ (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 05 00 00 00 00 00 00 00 ~ 0x5 (integer literal) e0 65 04 08 00 00 00 00 ~ unroll (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 06 00 00 00 00 00 00 00 ~ 0x6 (integer literal) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) 08 00 00 00 00 00 00 00 ~ 0x8 (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) c0 66 04 08 00 00 00 00 ~ + (codeword pointer) 40 65 04 08 00 00 00 00 ~ swap (codeword pointer) 60 65 04 08 00 00 00 00 ~ drop (codeword pointer) 58 6a 04 08 00 00 00 00 ~ lit (codeword pointer) ff ff ff ff ff ff ff ff ~ 0xffffffffffffffff (integer literal) 10 67 04 08 00 00 00 00 ~ * (codeword pointer) 28 f7 04 08 00 00 00 00 ~ log-load-comma (codeword pointer) 18 65 04 08 00 00 00 00 ~ exit (codeword pointer) ~ label total-size at offset 0x00000000000507c0 is here. ~ This is the end of the hex dump. Thanks for reading!