// https://syzkaller.appspot.com/bug?id=d30e0944e156e2c50663c9ce7fee299d5c23ddd7 // autogenerated by syzkaller (https://github.com/google/syzkaller) #define _GNU_SOURCE #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include static void sleep_ms(uint64_t ms) { usleep(ms * 1000); } static uint64_t current_time_ms(void) { struct timespec ts; if (clock_gettime(CLOCK_MONOTONIC, &ts)) exit(1); return (uint64_t)ts.tv_sec * 1000 + (uint64_t)ts.tv_nsec / 1000000; } #define BITMASK(bf_off, bf_len) (((1ull << (bf_len)) - 1) << (bf_off)) #define STORE_BY_BITMASK(type, htobe, addr, val, bf_off, bf_len) \ *(type*)(addr) = \ htobe((htobe(*(type*)(addr)) & ~BITMASK((bf_off), (bf_len))) | \ (((type)(val) << (bf_off)) & BITMASK((bf_off), (bf_len)))) static bool write_file(const char* file, const char* what, ...) { char buf[1024]; va_list args; va_start(args, what); vsnprintf(buf, sizeof(buf), what, args); va_end(args); buf[sizeof(buf) - 1] = 0; int len = strlen(buf); int fd = open(file, O_WRONLY | O_CLOEXEC); if (fd == -1) return false; if (write(fd, buf, len) != len) { int err = errno; close(fd); errno = err; return false; } close(fd); return true; } #define MAX_FDS 30 static void setup_common() { if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) { } } static void loop(); static void sandbox_common() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setsid(); struct rlimit rlim; rlim.rlim_cur = rlim.rlim_max = (200 << 20); setrlimit(RLIMIT_AS, &rlim); rlim.rlim_cur = rlim.rlim_max = 32 << 20; setrlimit(RLIMIT_MEMLOCK, &rlim); rlim.rlim_cur = rlim.rlim_max = 136 << 20; setrlimit(RLIMIT_FSIZE, &rlim); rlim.rlim_cur = rlim.rlim_max = 1 << 20; setrlimit(RLIMIT_STACK, &rlim); rlim.rlim_cur = rlim.rlim_max = 0; setrlimit(RLIMIT_CORE, &rlim); rlim.rlim_cur = rlim.rlim_max = 256; setrlimit(RLIMIT_NOFILE, &rlim); if (unshare(CLONE_NEWNS)) { } if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) { } if (unshare(CLONE_NEWIPC)) { } if (unshare(0x02000000)) { } if (unshare(CLONE_NEWUTS)) { } if (unshare(CLONE_SYSVSEM)) { } typedef struct { const char* name; const char* value; } sysctl_t; static const sysctl_t sysctls[] = { {"/proc/sys/kernel/shmmax", "16777216"}, {"/proc/sys/kernel/shmall", "536870912"}, {"/proc/sys/kernel/shmmni", "1024"}, {"/proc/sys/kernel/msgmax", "8192"}, {"/proc/sys/kernel/msgmni", "1024"}, {"/proc/sys/kernel/msgmnb", "1024"}, {"/proc/sys/kernel/sem", "1024 1048576 500 1024"}, }; unsigned i; for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++) write_file(sysctls[i].name, sysctls[i].value); } static int wait_for_loop(int pid) { if (pid < 0) exit(1); int status = 0; while (waitpid(-1, &status, __WALL) != pid) { } return WEXITSTATUS(status); } static void drop_caps(void) { struct __user_cap_header_struct cap_hdr = {}; struct __user_cap_data_struct cap_data[2] = {}; cap_hdr.version = _LINUX_CAPABILITY_VERSION_3; cap_hdr.pid = getpid(); if (syscall(SYS_capget, &cap_hdr, &cap_data)) exit(1); const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE); cap_data[0].effective &= ~drop; cap_data[0].permitted &= ~drop; cap_data[0].inheritable &= ~drop; if (syscall(SYS_capset, &cap_hdr, &cap_data)) exit(1); } static int do_sandbox_none(void) { if (unshare(CLONE_NEWPID)) { } int pid = fork(); if (pid != 0) return wait_for_loop(pid); setup_common(); sandbox_common(); drop_caps(); if (unshare(CLONE_NEWNET)) { } loop(); exit(1); } static void kill_and_wait(int pid, int* status) { kill(-pid, SIGKILL); kill(pid, SIGKILL); for (int i = 0; i < 100; i++) { if (waitpid(-1, status, WNOHANG | __WALL) == pid) return; usleep(1000); } DIR* dir = opendir("/sys/fs/fuse/connections"); if (dir) { for (;;) { struct dirent* ent = readdir(dir); if (!ent) break; if (strcmp(ent->d_name, ".") == 0 || strcmp(ent->d_name, "..") == 0) continue; char abort[300]; snprintf(abort, sizeof(abort), "/sys/fs/fuse/connections/%s/abort", ent->d_name); int fd = open(abort, O_WRONLY); if (fd == -1) { continue; } if (write(fd, abort, 1) < 0) { } close(fd); } closedir(dir); } else { } while (waitpid(-1, status, __WALL) != pid) { } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void close_fds() { for (int fd = 3; fd < MAX_FDS; fd++) close(fd); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); close_fds(); exit(0); } int status = 0; uint64_t start = current_time_ms(); for (;;) { if (waitpid(-1, &status, WNOHANG | WAIT_FLAGS) == pid) break; sleep_ms(1); if (current_time_ms() - start < 5 * 1000) continue; kill_and_wait(pid, &status); break; } } } uint64_t r[3] = {0xffffffffffffffff, 0xffffffffffffffff, 0x0}; void execute_one(void) { intptr_t res = 0; res = syscall(__NR_socket, 0x1000000010ul, 0x80002ul, 0); if (res != -1) r[0] = res; *(uint64_t*)0x20000280 = 0; *(uint32_t*)0x20000288 = 0; *(uint64_t*)0x20000290 = 0x20000180; *(uint64_t*)0x20000180 = 0; *(uint64_t*)0x20000188 = 0; *(uint64_t*)0x20000298 = 1; *(uint64_t*)0x200002a0 = 0; *(uint64_t*)0x200002a8 = 0; *(uint32_t*)0x200002b0 = 0; syscall(__NR_sendmsg, -1, 0x20000280ul, 0ul); res = syscall(__NR_socket, 0x10ul, 0x803ul, 0); if (res != -1) r[1] = res; *(uint64_t*)0x200001c0 = 0; *(uint32_t*)0x200001c8 = 0x42; *(uint64_t*)0x200001d0 = 0x20000180; *(uint64_t*)0x20000180 = 0; *(uint64_t*)0x20000188 = 0; *(uint64_t*)0x200001d8 = 1; *(uint64_t*)0x200001e0 = 0; *(uint64_t*)0x200001e8 = 0; *(uint32_t*)0x200001f0 = 0; syscall(__NR_sendmsg, r[1], 0x200001c0ul, 0ul); *(uint32_t*)0x20000200 = 0x14; res = syscall(__NR_getsockname, r[1], 0x20000100ul, 0x20000200ul); if (res != -1) r[2] = *(uint32_t*)0x20000104; *(uint64_t*)0x20000240 = 0; *(uint32_t*)0x20000248 = 0; *(uint64_t*)0x20000250 = 0x20000140; *(uint64_t*)0x20000140 = 0x200003c0; memcpy((void*)0x200003c0, "\x38\x00\x00\x00\x24\x00\x07\x05\x00\x00\x00\x40" "\x07\xa2\xa3\x00\x05\x00\x00\x00", 20); *(uint32_t*)0x200003d4 = r[2]; memcpy((void*)0x200003d8, "\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00" "\x09\x00\x01\x00\x68\x66\x73\x63\x00\x00\x00\x00" "\x08\x00\x02", 27); *(uint64_t*)0x20000148 = 0x38; *(uint64_t*)0x20000258 = 1; *(uint64_t*)0x20000260 = 0; *(uint64_t*)0x20000268 = 0; *(uint32_t*)0x20000270 = 0; syscall(__NR_sendmsg, -1, 0x20000240ul, 0ul); *(uint64_t*)0x200001c0 = 0; *(uint32_t*)0x200001c8 = 0; *(uint64_t*)0x200001d0 = 0x20000180; *(uint64_t*)0x20000180 = 0x20000680; *(uint32_t*)0x20000680 = 0x4d68; *(uint16_t*)0x20000684 = 0x2c; *(uint16_t*)0x20000686 = 0xd27; *(uint32_t*)0x20000688 = 0; *(uint32_t*)0x2000068c = 0; *(uint8_t*)0x20000690 = 0; *(uint8_t*)0x20000691 = 0; *(uint16_t*)0x20000692 = 0; *(uint32_t*)0x20000694 = r[2]; *(uint16_t*)0x20000698 = 0; *(uint16_t*)0x2000069a = 0; *(uint16_t*)0x2000069c = 0; *(uint16_t*)0x2000069e = 0; *(uint16_t*)0x200006a0 = 0xfff2; *(uint16_t*)0x200006a2 = 0; *(uint16_t*)0x200006a4 = 0xc; *(uint16_t*)0x200006a6 = 1; memcpy((void*)0x200006a8, "tcindex\000", 8); *(uint16_t*)0x200006b0 = 0x4d38; *(uint16_t*)0x200006b2 = 2; *(uint16_t*)0x200006b4 = 0x1aa0; *(uint16_t*)0x200006b6 = 7; *(uint16_t*)0x200006b8 = 0x19f8; STORE_BY_BITMASK(uint16_t, , 0x200006ba, 5, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200006bb, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200006bb, 0, 7, 1); *(uint16_t*)0x200006bc = 0xb; *(uint16_t*)0x200006be = 1; memcpy((void*)0x200006c0, "police\000", 7); *(uint16_t*)0x200006c8 = 0x19cc; STORE_BY_BITMASK(uint16_t, , 0x200006ca, 2, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200006cb, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200006cb, 1, 7, 1); *(uint16_t*)0x200006cc = 0x3c; *(uint16_t*)0x200006ce = 1; *(uint32_t*)0x200006d0 = 0xeb3; *(uint32_t*)0x200006d4 = 0x20000000; *(uint32_t*)0x200006d8 = 0; *(uint32_t*)0x200006dc = -1; *(uint32_t*)0x200006e0 = 7; *(uint8_t*)0x200006e4 = 0x1d; *(uint8_t*)0x200006e5 = 0; *(uint16_t*)0x200006e6 = 3; *(uint16_t*)0x200006e8 = 0x3f; *(uint16_t*)0x200006ea = 0x15; *(uint32_t*)0x200006ec = 0; *(uint8_t*)0x200006f0 = 0xf9; *(uint8_t*)0x200006f1 = 1; *(uint16_t*)0x200006f2 = 6; *(uint16_t*)0x200006f4 = 0x80; *(uint16_t*)0x200006f6 = 0x30; *(uint32_t*)0x200006f8 = 0x80000000; *(uint32_t*)0x200006fc = 8; *(uint32_t*)0x20000700 = 0xcd7; *(uint32_t*)0x20000704 = 0xffff; *(uint16_t*)0x20000708 = 0x3c; *(uint16_t*)0x2000070a = 1; *(uint32_t*)0x2000070c = 0; *(uint32_t*)0x20000710 = 8; *(uint32_t*)0x20000714 = 0xffff; *(uint32_t*)0x20000718 = 0; *(uint32_t*)0x2000071c = 0x101; *(uint8_t*)0x20000720 = 7; *(uint8_t*)0x20000721 = 0; *(uint16_t*)0x20000722 = 7; *(uint16_t*)0x20000724 = 2; *(uint16_t*)0x20000726 = 0x100; *(uint32_t*)0x20000728 = 4; *(uint8_t*)0x2000072c = 0x1f; *(uint8_t*)0x2000072d = 0; *(uint16_t*)0x2000072e = 2; *(uint16_t*)0x20000730 = 5; *(uint16_t*)0x20000732 = 5; *(uint32_t*)0x20000734 = 8; *(uint32_t*)0x20000738 = 0xffffa6fc; *(uint32_t*)0x2000073c = 9; *(uint32_t*)0x20000740 = 0xffff; *(uint16_t*)0x20000744 = 8; *(uint16_t*)0x20000746 = 4; *(uint32_t*)0x20000748 = 6; *(uint16_t*)0x2000074c = 8; *(uint16_t*)0x2000074e = 4; *(uint32_t*)0x20000750 = 0xffffff1d; *(uint16_t*)0x20000754 = 0x3c; *(uint16_t*)0x20000756 = 1; *(uint32_t*)0x20000758 = 8; *(uint32_t*)0x2000075c = 0x20000000; *(uint32_t*)0x20000760 = 4; *(uint32_t*)0x20000764 = 1; *(uint32_t*)0x20000768 = 0x30eb; *(uint8_t*)0x2000076c = 3; *(uint8_t*)0x2000076d = 2; *(uint16_t*)0x2000076e = 8; *(uint16_t*)0x20000770 = 0; *(uint16_t*)0x20000772 = 0xfff; *(uint32_t*)0x20000774 = 5; *(uint8_t*)0x20000778 = 3; *(uint8_t*)0x20000779 = 1; *(uint16_t*)0x2000077a = 0x400; *(uint16_t*)0x2000077c = 0x40; *(uint16_t*)0x2000077e = 0x8000; *(uint32_t*)0x20000780 = 5; *(uint32_t*)0x20000784 = 2; *(uint32_t*)0x20000788 = 0x40; *(uint32_t*)0x2000078c = 9; *(uint16_t*)0x20000790 = 0xc; *(uint16_t*)0x20000792 = 8; *(uint64_t*)0x20000794 = 5; *(uint16_t*)0x2000079c = 0x404; *(uint16_t*)0x2000079e = 2; *(uint32_t*)0x200007a0 = 2; *(uint32_t*)0x200007a4 = 0x800; *(uint32_t*)0x200007a8 = 6; *(uint32_t*)0x200007ac = 0x7f; *(uint32_t*)0x200007b0 = 8; *(uint32_t*)0x200007b4 = 5; *(uint32_t*)0x200007b8 = 0xc4; *(uint32_t*)0x200007bc = 4; *(uint32_t*)0x200007c0 = 2; *(uint32_t*)0x200007c4 = 0xa2a6; *(uint32_t*)0x200007c8 = 7; *(uint32_t*)0x200007cc = 0xfffffffc; *(uint32_t*)0x200007d0 = 0xfff; *(uint32_t*)0x200007d4 = 0x88; *(uint32_t*)0x200007d8 = 5; *(uint32_t*)0x200007dc = 2; *(uint32_t*)0x200007e0 = 4; *(uint32_t*)0x200007e4 = 8; *(uint32_t*)0x200007e8 = 1; *(uint32_t*)0x200007ec = 7; *(uint32_t*)0x200007f0 = 1; *(uint32_t*)0x200007f4 = 0xea0; *(uint32_t*)0x200007f8 = 0xfff; *(uint32_t*)0x200007fc = 0xc6e; *(uint32_t*)0x20000800 = 0; *(uint32_t*)0x20000804 = 7; *(uint32_t*)0x20000808 = 9; *(uint32_t*)0x2000080c = 3; *(uint32_t*)0x20000810 = 0xf0000000; *(uint32_t*)0x20000814 = 0x10000; *(uint32_t*)0x20000818 = 7; *(uint32_t*)0x2000081c = 8; *(uint32_t*)0x20000820 = 0x80000001; *(uint32_t*)0x20000824 = 3; *(uint32_t*)0x20000828 = 1; *(uint32_t*)0x2000082c = 0x20; *(uint32_t*)0x20000830 = 6; *(uint32_t*)0x20000834 = 0xfffffe1d; *(uint32_t*)0x20000838 = 8; *(uint32_t*)0x2000083c = 0; *(uint32_t*)0x20000840 = 0x1b31; *(uint32_t*)0x20000844 = 5; *(uint32_t*)0x20000848 = 0xc36; *(uint32_t*)0x2000084c = 0x1000; *(uint32_t*)0x20000850 = 0xffff; *(uint32_t*)0x20000854 = 6; *(uint32_t*)0x20000858 = 0x10001; *(uint32_t*)0x2000085c = 8; *(uint32_t*)0x20000860 = 2; *(uint32_t*)0x20000864 = 3; *(uint32_t*)0x20000868 = 0xfffffff4; *(uint32_t*)0x2000086c = 9; *(uint32_t*)0x20000870 = 0; *(uint32_t*)0x20000874 = 0xa; *(uint32_t*)0x20000878 = 1; *(uint32_t*)0x2000087c = 4; *(uint32_t*)0x20000880 = 0x80000000; *(uint32_t*)0x20000884 = 6; *(uint32_t*)0x20000888 = 4; *(uint32_t*)0x2000088c = 4; *(uint32_t*)0x20000890 = 5; *(uint32_t*)0x20000894 = 1; *(uint32_t*)0x20000898 = 0x64; *(uint32_t*)0x2000089c = 7; *(uint32_t*)0x200008a0 = 5; *(uint32_t*)0x200008a4 = 4; *(uint32_t*)0x200008a8 = 0x80000001; *(uint32_t*)0x200008ac = 0x2400; *(uint32_t*)0x200008b0 = 0; *(uint32_t*)0x200008b4 = 0x7ff; *(uint32_t*)0x200008b8 = 0x401; *(uint32_t*)0x200008bc = 0x20; *(uint32_t*)0x200008c0 = -1; *(uint32_t*)0x200008c4 = 0x3ff; *(uint32_t*)0x200008c8 = 4; *(uint32_t*)0x200008cc = 5; *(uint32_t*)0x200008d0 = 0x8001; *(uint32_t*)0x200008d4 = 0x10001; *(uint32_t*)0x200008d8 = 0xfffffffc; *(uint32_t*)0x200008dc = 0; *(uint32_t*)0x200008e0 = 8; *(uint32_t*)0x200008e4 = 8; *(uint32_t*)0x200008e8 = 1; *(uint32_t*)0x200008ec = 8; *(uint32_t*)0x200008f0 = 2; *(uint32_t*)0x200008f4 = 8; *(uint32_t*)0x200008f8 = 0; *(uint32_t*)0x200008fc = 0x10000; *(uint32_t*)0x20000900 = 9; *(uint32_t*)0x20000904 = 0xfffffff7; *(uint32_t*)0x20000908 = 0x81; *(uint32_t*)0x2000090c = 0x80000001; *(uint32_t*)0x20000910 = 0x3f; *(uint32_t*)0x20000914 = 0xfffffeff; *(uint32_t*)0x20000918 = 2; *(uint32_t*)0x2000091c = 0xaa6f; *(uint32_t*)0x20000920 = 9; *(uint32_t*)0x20000924 = 3; *(uint32_t*)0x20000928 = 0x100; *(uint32_t*)0x2000092c = 0x401; *(uint32_t*)0x20000930 = 8; *(uint32_t*)0x20000934 = 3; *(uint32_t*)0x20000938 = 3; *(uint32_t*)0x2000093c = 0x2000000; *(uint32_t*)0x20000940 = 1; *(uint32_t*)0x20000944 = 0x7fff; *(uint32_t*)0x20000948 = 2; *(uint32_t*)0x2000094c = 0x7fffffff; *(uint32_t*)0x20000950 = 0; *(uint32_t*)0x20000954 = 1; *(uint32_t*)0x20000958 = 2; *(uint32_t*)0x2000095c = 0x60271568; *(uint32_t*)0x20000960 = 6; *(uint32_t*)0x20000964 = 0x80; *(uint32_t*)0x20000968 = 0x80000001; *(uint32_t*)0x2000096c = 4; *(uint32_t*)0x20000970 = 7; *(uint32_t*)0x20000974 = 0x1f8000; *(uint32_t*)0x20000978 = 0x3ff; *(uint32_t*)0x2000097c = 1; *(uint32_t*)0x20000980 = 0x80000000; *(uint32_t*)0x20000984 = 0x3ff; *(uint32_t*)0x20000988 = 8; *(uint32_t*)0x2000098c = 3; *(uint32_t*)0x20000990 = 7; *(uint32_t*)0x20000994 = 0x7f; *(uint32_t*)0x20000998 = 2; *(uint32_t*)0x2000099c = 0x20; *(uint32_t*)0x200009a0 = 0x491; *(uint32_t*)0x200009a4 = 1; *(uint32_t*)0x200009a8 = 5; *(uint32_t*)0x200009ac = 0xaa7c; *(uint32_t*)0x200009b0 = 7; *(uint32_t*)0x200009b4 = 0xfffff000; *(uint32_t*)0x200009b8 = 5; *(uint32_t*)0x200009bc = 0x7fffffff; *(uint32_t*)0x200009c0 = 0x81; *(uint32_t*)0x200009c4 = 2; *(uint32_t*)0x200009c8 = 4; *(uint32_t*)0x200009cc = 0; *(uint32_t*)0x200009d0 = 0; *(uint32_t*)0x200009d4 = 0; *(uint32_t*)0x200009d8 = 0x10; *(uint32_t*)0x200009dc = 0x80000000; *(uint32_t*)0x200009e0 = 1; *(uint32_t*)0x200009e4 = 0; *(uint32_t*)0x200009e8 = 0xffff; *(uint32_t*)0x200009ec = 3; *(uint32_t*)0x200009f0 = 0xfa; *(uint32_t*)0x200009f4 = 0x101; *(uint32_t*)0x200009f8 = 1; *(uint32_t*)0x200009fc = 0; *(uint32_t*)0x20000a00 = 9; *(uint32_t*)0x20000a04 = 0; *(uint32_t*)0x20000a08 = 7; *(uint32_t*)0x20000a0c = 0xfff; *(uint32_t*)0x20000a10 = 0xffff; *(uint32_t*)0x20000a14 = 4; *(uint32_t*)0x20000a18 = 0x401; *(uint32_t*)0x20000a1c = 0; *(uint32_t*)0x20000a20 = 0x81; *(uint32_t*)0x20000a24 = 2; *(uint32_t*)0x20000a28 = 0x7f; *(uint32_t*)0x20000a2c = 9; *(uint32_t*)0x20000a30 = 1; *(uint32_t*)0x20000a34 = 6; *(uint32_t*)0x20000a38 = 0xd74; *(uint32_t*)0x20000a3c = 0x401; *(uint32_t*)0x20000a40 = 7; *(uint32_t*)0x20000a44 = 6; *(uint32_t*)0x20000a48 = 3; *(uint32_t*)0x20000a4c = 8; *(uint32_t*)0x20000a50 = 8; *(uint32_t*)0x20000a54 = 0xff; *(uint32_t*)0x20000a58 = 8; *(uint32_t*)0x20000a5c = 9; *(uint32_t*)0x20000a60 = 1; *(uint32_t*)0x20000a64 = 0xffff09ca; *(uint32_t*)0x20000a68 = 0xc6; *(uint32_t*)0x20000a6c = 5; *(uint32_t*)0x20000a70 = 7; *(uint32_t*)0x20000a74 = 0x1c0000; *(uint32_t*)0x20000a78 = 9; *(uint32_t*)0x20000a7c = 0xfff; *(uint32_t*)0x20000a80 = 0; *(uint32_t*)0x20000a84 = 6; *(uint32_t*)0x20000a88 = 2; *(uint32_t*)0x20000a8c = 3; *(uint32_t*)0x20000a90 = 0; *(uint32_t*)0x20000a94 = 1; *(uint32_t*)0x20000a98 = 0xff; *(uint32_t*)0x20000a9c = 0x6ea; *(uint32_t*)0x20000aa0 = 0x101; *(uint32_t*)0x20000aa4 = 0x400; *(uint32_t*)0x20000aa8 = 0x9f2a; *(uint32_t*)0x20000aac = 9; *(uint32_t*)0x20000ab0 = 5; *(uint32_t*)0x20000ab4 = 5; *(uint32_t*)0x20000ab8 = 0xfff; *(uint32_t*)0x20000abc = 0xa1db; *(uint32_t*)0x20000ac0 = 0x3ff; *(uint32_t*)0x20000ac4 = 2; *(uint32_t*)0x20000ac8 = 9; *(uint32_t*)0x20000acc = 8; *(uint32_t*)0x20000ad0 = 7; *(uint32_t*)0x20000ad4 = 1; *(uint32_t*)0x20000ad8 = 7; *(uint32_t*)0x20000adc = 2; *(uint32_t*)0x20000ae0 = 0x400; *(uint32_t*)0x20000ae4 = 0xe; *(uint32_t*)0x20000ae8 = 2; *(uint32_t*)0x20000aec = 0; *(uint32_t*)0x20000af0 = 0x8001; *(uint32_t*)0x20000af4 = 0x101; *(uint32_t*)0x20000af8 = 0x143e; *(uint32_t*)0x20000afc = 0x400; *(uint32_t*)0x20000b00 = 0xfffffffc; *(uint32_t*)0x20000b04 = 4; *(uint32_t*)0x20000b08 = 0x40400000; *(uint32_t*)0x20000b0c = 0x800; *(uint32_t*)0x20000b10 = 0x763; *(uint32_t*)0x20000b14 = 3; *(uint32_t*)0x20000b18 = 9; *(uint32_t*)0x20000b1c = 0; *(uint32_t*)0x20000b20 = 8; *(uint32_t*)0x20000b24 = 1; *(uint32_t*)0x20000b28 = 0x1ff; *(uint32_t*)0x20000b2c = 2; *(uint32_t*)0x20000b30 = 2; *(uint32_t*)0x20000b34 = 2; *(uint32_t*)0x20000b38 = 6; *(uint32_t*)0x20000b3c = 0x3d; *(uint32_t*)0x20000b40 = 5; *(uint32_t*)0x20000b44 = 6; *(uint32_t*)0x20000b48 = 0xfffffff8; *(uint32_t*)0x20000b4c = 7; *(uint32_t*)0x20000b50 = 0xeb; *(uint32_t*)0x20000b54 = 1; *(uint32_t*)0x20000b58 = 1; *(uint32_t*)0x20000b5c = 6; *(uint32_t*)0x20000b60 = 3; *(uint32_t*)0x20000b64 = 1; *(uint32_t*)0x20000b68 = 0xfffffff8; *(uint32_t*)0x20000b6c = 7; *(uint32_t*)0x20000b70 = 0x400; *(uint32_t*)0x20000b74 = 0x101; *(uint32_t*)0x20000b78 = 8; *(uint32_t*)0x20000b7c = 1; *(uint32_t*)0x20000b80 = 0x14e9; *(uint32_t*)0x20000b84 = 1; *(uint32_t*)0x20000b88 = 0xcd8; *(uint32_t*)0x20000b8c = 0; *(uint32_t*)0x20000b90 = 0x7ff; *(uint32_t*)0x20000b94 = 0x1852; *(uint32_t*)0x20000b98 = 0x7f; *(uint32_t*)0x20000b9c = 0xd8; *(uint16_t*)0x20000ba0 = 8; *(uint16_t*)0x20000ba2 = 5; *(uint32_t*)0x20000ba4 = 0; *(uint16_t*)0x20000ba8 = 0xc; *(uint16_t*)0x20000baa = 9; *(uint64_t*)0x20000bac = 3; *(uint16_t*)0x20000bb4 = 0xc; *(uint16_t*)0x20000bb6 = 8; *(uint64_t*)0x20000bb8 = 0xffffffff; *(uint16_t*)0x20000bc0 = 0x3c; *(uint16_t*)0x20000bc2 = 1; *(uint32_t*)0x20000bc4 = 4; *(uint32_t*)0x20000bc8 = 0; *(uint32_t*)0x20000bcc = 1; *(uint32_t*)0x20000bd0 = 0x400; *(uint32_t*)0x20000bd4 = 2; *(uint8_t*)0x20000bd8 = 0; *(uint8_t*)0x20000bd9 = 0; *(uint16_t*)0x20000bda = 0x7f; *(uint16_t*)0x20000bdc = 7; *(uint16_t*)0x20000bde = 0xfff; *(uint32_t*)0x20000be0 = 7; *(uint8_t*)0x20000be4 = 1; *(uint8_t*)0x20000be5 = 1; *(uint16_t*)0x20000be6 = 0; *(uint16_t*)0x20000be8 = 0xfeff; *(uint16_t*)0x20000bea = 8; *(uint32_t*)0x20000bec = 8; *(uint32_t*)0x20000bf0 = 1; *(uint32_t*)0x20000bf4 = 0x10001; *(uint32_t*)0x20000bf8 = 9; *(uint16_t*)0x20000bfc = 0xc; *(uint16_t*)0x20000bfe = 8; *(uint64_t*)0x20000c00 = 1; *(uint16_t*)0x20000c08 = 0x3c; *(uint16_t*)0x20000c0a = 1; *(uint32_t*)0x20000c0c = 0xfffffff8; *(uint32_t*)0x20000c10 = 4; *(uint32_t*)0x20000c14 = 0x12e29be9; *(uint32_t*)0x20000c18 = 7; *(uint32_t*)0x20000c1c = 0x401; *(uint8_t*)0x20000c20 = 0x51; *(uint8_t*)0x20000c21 = 1; *(uint16_t*)0x20000c22 = 0xbc7e; *(uint16_t*)0x20000c24 = 1; *(uint16_t*)0x20000c26 = 5; *(uint32_t*)0x20000c28 = 0xfd; *(uint8_t*)0x20000c2c = 0x3e; *(uint8_t*)0x20000c2d = 1; *(uint16_t*)0x20000c2e = 3; *(uint16_t*)0x20000c30 = 0; *(uint16_t*)0x20000c32 = 2; *(uint32_t*)0x20000c34 = 0x10001; *(uint32_t*)0x20000c38 = 0x20; *(uint32_t*)0x20000c3c = 0xfab; *(uint32_t*)0x20000c40 = 9; *(uint16_t*)0x20000c44 = 0xc; *(uint16_t*)0x20000c46 = 8; *(uint64_t*)0x20000c48 = 0; *(uint16_t*)0x20000c50 = 0x404; *(uint16_t*)0x20000c52 = 3; *(uint32_t*)0x20000c54 = 1; *(uint32_t*)0x20000c58 = 3; *(uint32_t*)0x20000c5c = 3; *(uint32_t*)0x20000c60 = 0; *(uint32_t*)0x20000c64 = 0xf40ca0a; *(uint32_t*)0x20000c68 = 6; *(uint32_t*)0x20000c6c = 0; *(uint32_t*)0x20000c70 = 9; *(uint32_t*)0x20000c74 = 1; *(uint32_t*)0x20000c78 = 7; *(uint32_t*)0x20000c7c = 9; *(uint32_t*)0x20000c80 = 0x20; *(uint32_t*)0x20000c84 = 0x800; *(uint32_t*)0x20000c88 = 5; *(uint32_t*)0x20000c8c = 0xfffffffe; *(uint32_t*)0x20000c90 = 0xfffffffb; *(uint32_t*)0x20000c94 = 1; *(uint32_t*)0x20000c98 = 2; *(uint32_t*)0x20000c9c = 0x7bc; *(uint32_t*)0x20000ca0 = 0x962; *(uint32_t*)0x20000ca4 = 5; *(uint32_t*)0x20000ca8 = 3; *(uint32_t*)0x20000cac = 6; *(uint32_t*)0x20000cb0 = 0x80000000; *(uint32_t*)0x20000cb4 = 1; *(uint32_t*)0x20000cb8 = 0; *(uint32_t*)0x20000cbc = 0x3e0; *(uint32_t*)0x20000cc0 = 0xc; *(uint32_t*)0x20000cc4 = 6; *(uint32_t*)0x20000cc8 = 0x101; *(uint32_t*)0x20000ccc = 0xff; *(uint32_t*)0x20000cd0 = 1; *(uint32_t*)0x20000cd4 = 9; *(uint32_t*)0x20000cd8 = 3; *(uint32_t*)0x20000cdc = 0xfff; *(uint32_t*)0x20000ce0 = 0x646d; *(uint32_t*)0x20000ce4 = 2; *(uint32_t*)0x20000ce8 = 0xcfcc; *(uint32_t*)0x20000cec = 0xff; *(uint32_t*)0x20000cf0 = 0x40; *(uint32_t*)0x20000cf4 = 0x407a2e2c; *(uint32_t*)0x20000cf8 = 4; *(uint32_t*)0x20000cfc = 9; *(uint32_t*)0x20000d00 = 0; *(uint32_t*)0x20000d04 = 6; *(uint32_t*)0x20000d08 = 9; *(uint32_t*)0x20000d0c = 9; *(uint32_t*)0x20000d10 = 9; *(uint32_t*)0x20000d14 = 6; *(uint32_t*)0x20000d18 = 3; *(uint32_t*)0x20000d1c = 1; *(uint32_t*)0x20000d20 = 0x70; *(uint32_t*)0x20000d24 = 0xc7fc; *(uint32_t*)0x20000d28 = 0; *(uint32_t*)0x20000d2c = 8; *(uint32_t*)0x20000d30 = 0xbdf5; *(uint32_t*)0x20000d34 = 0xe7; *(uint32_t*)0x20000d38 = 9; *(uint32_t*)0x20000d3c = 5; *(uint32_t*)0x20000d40 = 0x10000; *(uint32_t*)0x20000d44 = 0xee; *(uint32_t*)0x20000d48 = 1; *(uint32_t*)0x20000d4c = 0x5212d24; *(uint32_t*)0x20000d50 = 0x3d3; *(uint32_t*)0x20000d54 = 0x1081; *(uint32_t*)0x20000d58 = 0xfffffff8; *(uint32_t*)0x20000d5c = 0x7fffffff; *(uint32_t*)0x20000d60 = 0xac88; *(uint32_t*)0x20000d64 = 1; *(uint32_t*)0x20000d68 = 0x1000; *(uint32_t*)0x20000d6c = 0x401; *(uint32_t*)0x20000d70 = 0x40; *(uint32_t*)0x20000d74 = 7; *(uint32_t*)0x20000d78 = 0xfffffc00; *(uint32_t*)0x20000d7c = 0x401; *(uint32_t*)0x20000d80 = 3; *(uint32_t*)0x20000d84 = 0x80000001; *(uint32_t*)0x20000d88 = 7; *(uint32_t*)0x20000d8c = 0x7ff; *(uint32_t*)0x20000d90 = 0x1ea; *(uint32_t*)0x20000d94 = 0; *(uint32_t*)0x20000d98 = 7; *(uint32_t*)0x20000d9c = 0x1ff; *(uint32_t*)0x20000da0 = 0x80; *(uint32_t*)0x20000da4 = 0xab; *(uint32_t*)0x20000da8 = 9; *(uint32_t*)0x20000dac = 4; *(uint32_t*)0x20000db0 = 1; *(uint32_t*)0x20000db4 = 3; *(uint32_t*)0x20000db8 = 5; *(uint32_t*)0x20000dbc = 2; *(uint32_t*)0x20000dc0 = -1; *(uint32_t*)0x20000dc4 = 0x80000001; *(uint32_t*)0x20000dc8 = 1; *(uint32_t*)0x20000dcc = 0x98; *(uint32_t*)0x20000dd0 = 7; *(uint32_t*)0x20000dd4 = 0x80000000; *(uint32_t*)0x20000dd8 = 0x3f; *(uint32_t*)0x20000ddc = 0xfffffbf3; *(uint32_t*)0x20000de0 = 0x10000; *(uint32_t*)0x20000de4 = 5; *(uint32_t*)0x20000de8 = 0xcc; *(uint32_t*)0x20000dec = 7; *(uint32_t*)0x20000df0 = 6; *(uint32_t*)0x20000df4 = 0xffff7fff; *(uint32_t*)0x20000df8 = 3; *(uint32_t*)0x20000dfc = 0x10001; *(uint32_t*)0x20000e00 = 0x80000000; *(uint32_t*)0x20000e04 = 9; *(uint32_t*)0x20000e08 = 0x7fff; *(uint32_t*)0x20000e0c = 6; *(uint32_t*)0x20000e10 = 0x1000; *(uint32_t*)0x20000e14 = 2; *(uint32_t*)0x20000e18 = 6; *(uint32_t*)0x20000e1c = 6; *(uint32_t*)0x20000e20 = 9; *(uint32_t*)0x20000e24 = 9; *(uint32_t*)0x20000e28 = 3; *(uint32_t*)0x20000e2c = 3; *(uint32_t*)0x20000e30 = 0xc719; *(uint32_t*)0x20000e34 = 0x800; *(uint32_t*)0x20000e38 = 4; *(uint32_t*)0x20000e3c = 0x7f; *(uint32_t*)0x20000e40 = 0xc; *(uint32_t*)0x20000e44 = 0; *(uint32_t*)0x20000e48 = 9; *(uint32_t*)0x20000e4c = 2; *(uint32_t*)0x20000e50 = 5; *(uint32_t*)0x20000e54 = 5; *(uint32_t*)0x20000e58 = 0x81; *(uint32_t*)0x20000e5c = 8; *(uint32_t*)0x20000e60 = 2; *(uint32_t*)0x20000e64 = 0xc0; *(uint32_t*)0x20000e68 = 9; *(uint32_t*)0x20000e6c = 8; *(uint32_t*)0x20000e70 = 1; *(uint32_t*)0x20000e74 = 3; *(uint32_t*)0x20000e78 = 0; *(uint32_t*)0x20000e7c = 9; *(uint32_t*)0x20000e80 = 8; *(uint32_t*)0x20000e84 = 3; *(uint32_t*)0x20000e88 = 0x80000001; *(uint32_t*)0x20000e8c = 7; *(uint32_t*)0x20000e90 = 0x80; *(uint32_t*)0x20000e94 = 0; *(uint32_t*)0x20000e98 = 1; *(uint32_t*)0x20000e9c = 0xed; *(uint32_t*)0x20000ea0 = 2; *(uint32_t*)0x20000ea4 = 8; *(uint32_t*)0x20000ea8 = 0x7f; *(uint32_t*)0x20000eac = 0x4219; *(uint32_t*)0x20000eb0 = 0x2a; *(uint32_t*)0x20000eb4 = 0x80000000; *(uint32_t*)0x20000eb8 = 5; *(uint32_t*)0x20000ebc = 1; *(uint32_t*)0x20000ec0 = 0x5d; *(uint32_t*)0x20000ec4 = 1; *(uint32_t*)0x20000ec8 = 2; *(uint32_t*)0x20000ecc = 0x10001; *(uint32_t*)0x20000ed0 = 8; *(uint32_t*)0x20000ed4 = 0x3ff; *(uint32_t*)0x20000ed8 = 0; *(uint32_t*)0x20000edc = 8; *(uint32_t*)0x20000ee0 = 0x400; *(uint32_t*)0x20000ee4 = 5; *(uint32_t*)0x20000ee8 = 5; *(uint32_t*)0x20000eec = 2; *(uint32_t*)0x20000ef0 = 0xc15d; *(uint32_t*)0x20000ef4 = 0x66; *(uint32_t*)0x20000ef8 = 0xff; *(uint32_t*)0x20000efc = 0x462b; *(uint32_t*)0x20000f00 = -1; *(uint32_t*)0x20000f04 = 0; *(uint32_t*)0x20000f08 = 0x7d5; *(uint32_t*)0x20000f0c = 7; *(uint32_t*)0x20000f10 = 0x100; *(uint32_t*)0x20000f14 = 4; *(uint32_t*)0x20000f18 = 0xd6; *(uint32_t*)0x20000f1c = 0xf48; *(uint32_t*)0x20000f20 = 0x7fff; *(uint32_t*)0x20000f24 = 0xfffffffe; *(uint32_t*)0x20000f28 = 0x8000; *(uint32_t*)0x20000f2c = 0x802; *(uint32_t*)0x20000f30 = 9; *(uint32_t*)0x20000f34 = 2; *(uint32_t*)0x20000f38 = 2; *(uint32_t*)0x20000f3c = 8; *(uint32_t*)0x20000f40 = -1; *(uint32_t*)0x20000f44 = 0x10000; *(uint32_t*)0x20000f48 = 0x3c5; *(uint32_t*)0x20000f4c = 2; *(uint32_t*)0x20000f50 = 0x7fffffff; *(uint32_t*)0x20000f54 = 4; *(uint32_t*)0x20000f58 = 2; *(uint32_t*)0x20000f5c = 4; *(uint32_t*)0x20000f60 = 2; *(uint32_t*)0x20000f64 = 0xe8; *(uint32_t*)0x20000f68 = 1; *(uint32_t*)0x20000f6c = 5; *(uint32_t*)0x20000f70 = 0x393b; *(uint32_t*)0x20000f74 = 3; *(uint32_t*)0x20000f78 = 6; *(uint32_t*)0x20000f7c = 3; *(uint32_t*)0x20000f80 = 0xffffff00; *(uint32_t*)0x20000f84 = 0; *(uint32_t*)0x20000f88 = 1; *(uint32_t*)0x20000f8c = 4; *(uint32_t*)0x20000f90 = 2; *(uint32_t*)0x20000f94 = 4; *(uint32_t*)0x20000f98 = 0x8001; *(uint32_t*)0x20000f9c = 7; *(uint32_t*)0x20000fa0 = 4; *(uint32_t*)0x20000fa4 = 0xfffffffa; *(uint32_t*)0x20000fa8 = 0x2bc; *(uint32_t*)0x20000fac = 5; *(uint32_t*)0x20000fb0 = 2; *(uint32_t*)0x20000fb4 = 0x1d; *(uint32_t*)0x20000fb8 = 0xfffffffa; *(uint32_t*)0x20000fbc = 0xc400; *(uint32_t*)0x20000fc0 = 0x27ed; *(uint32_t*)0x20000fc4 = 0x72; *(uint32_t*)0x20000fc8 = 0x20000000; *(uint32_t*)0x20000fcc = 0x7fffffff; *(uint32_t*)0x20000fd0 = 0x3f; *(uint32_t*)0x20000fd4 = 1; *(uint32_t*)0x20000fd8 = 8; *(uint32_t*)0x20000fdc = 0x3f; *(uint32_t*)0x20000fe0 = 0x7ff; *(uint32_t*)0x20000fe4 = 3; *(uint32_t*)0x20000fe8 = 0; *(uint32_t*)0x20000fec = 0x7f; *(uint32_t*)0x20000ff0 = 0x69ae; *(uint32_t*)0x20000ff4 = 0x3800000; *(uint32_t*)0x20000ff8 = 8; *(uint32_t*)0x20000ffc = 0x401; *(uint32_t*)0x20001000 = -1; *(uint32_t*)0x20001004 = 0x7ff; *(uint32_t*)0x20001008 = 6; *(uint32_t*)0x2000100c = 1; *(uint32_t*)0x20001010 = 3; *(uint32_t*)0x20001014 = 8; *(uint32_t*)0x20001018 = 0x10000; *(uint32_t*)0x2000101c = 1; *(uint32_t*)0x20001020 = 0xffff; *(uint32_t*)0x20001024 = 2; *(uint32_t*)0x20001028 = 8; *(uint32_t*)0x2000102c = 0; *(uint32_t*)0x20001030 = 0x13a; *(uint32_t*)0x20001034 = 0x88f; *(uint32_t*)0x20001038 = 7; *(uint32_t*)0x2000103c = 5; *(uint32_t*)0x20001040 = 0x7fff; *(uint32_t*)0x20001044 = 0xbf; *(uint32_t*)0x20001048 = 8; *(uint32_t*)0x2000104c = 3; *(uint32_t*)0x20001050 = 0xffffffe0; *(uint16_t*)0x20001054 = 0xc; *(uint16_t*)0x20001056 = 8; *(uint64_t*)0x20001058 = 0xfffffffffffffffe; *(uint16_t*)0x20001060 = 0xc; *(uint16_t*)0x20001062 = 9; *(uint64_t*)0x20001064 = 0x3ff; *(uint16_t*)0x2000106c = 0x404; *(uint16_t*)0x2000106e = 3; *(uint32_t*)0x20001070 = 6; *(uint32_t*)0x20001074 = -1; *(uint32_t*)0x20001078 = 0; *(uint32_t*)0x2000107c = 4; *(uint32_t*)0x20001080 = 0x1d7; *(uint32_t*)0x20001084 = 0x7be; *(uint32_t*)0x20001088 = 0xe9; *(uint32_t*)0x2000108c = 0x6c5; *(uint32_t*)0x20001090 = 0; *(uint32_t*)0x20001094 = 3; *(uint32_t*)0x20001098 = 0xf39; *(uint32_t*)0x2000109c = 0x401; *(uint32_t*)0x200010a0 = 8; *(uint32_t*)0x200010a4 = 2; *(uint32_t*)0x200010a8 = 9; *(uint32_t*)0x200010ac = 1; *(uint32_t*)0x200010b0 = 0x7fffffff; *(uint32_t*)0x200010b4 = 4; *(uint32_t*)0x200010b8 = 7; *(uint32_t*)0x200010bc = 9; *(uint32_t*)0x200010c0 = 0x1ff; *(uint32_t*)0x200010c4 = 8; *(uint32_t*)0x200010c8 = 0x20; *(uint32_t*)0x200010cc = 0xffffff80; *(uint32_t*)0x200010d0 = 0xfffffffd; *(uint32_t*)0x200010d4 = 3; *(uint32_t*)0x200010d8 = 8; *(uint32_t*)0x200010dc = 5; *(uint32_t*)0x200010e0 = 0x200; *(uint32_t*)0x200010e4 = 0xf; *(uint32_t*)0x200010e8 = 0; *(uint32_t*)0x200010ec = 0x7ff; *(uint32_t*)0x200010f0 = 0x762c8ad1; *(uint32_t*)0x200010f4 = 0xffff0000; *(uint32_t*)0x200010f8 = 7; *(uint32_t*)0x200010fc = 0x5421; *(uint32_t*)0x20001100 = 6; *(uint32_t*)0x20001104 = 8; *(uint32_t*)0x20001108 = 5; *(uint32_t*)0x2000110c = 0x51d; *(uint32_t*)0x20001110 = 0x8000; *(uint32_t*)0x20001114 = 0x151; *(uint32_t*)0x20001118 = 1; *(uint32_t*)0x2000111c = 6; *(uint32_t*)0x20001120 = 0xfffffff8; *(uint32_t*)0x20001124 = 0; *(uint32_t*)0x20001128 = 0x23; *(uint32_t*)0x2000112c = 7; *(uint32_t*)0x20001130 = 1; *(uint32_t*)0x20001134 = 8; *(uint32_t*)0x20001138 = 0x10001; *(uint32_t*)0x2000113c = 0x365; *(uint32_t*)0x20001140 = 0x10000; *(uint32_t*)0x20001144 = 0x1ff; *(uint32_t*)0x20001148 = 0; *(uint32_t*)0x2000114c = 1; *(uint32_t*)0x20001150 = 0x20; *(uint32_t*)0x20001154 = 5; *(uint32_t*)0x20001158 = 0x8000; *(uint32_t*)0x2000115c = 7; *(uint32_t*)0x20001160 = 0x34; *(uint32_t*)0x20001164 = 0xe58; *(uint32_t*)0x20001168 = 6; *(uint32_t*)0x2000116c = 7; *(uint32_t*)0x20001170 = 0x500; *(uint32_t*)0x20001174 = 2; *(uint32_t*)0x20001178 = 0xfffffffd; *(uint32_t*)0x2000117c = 1; *(uint32_t*)0x20001180 = 0x80000001; *(uint32_t*)0x20001184 = 0x7f; *(uint32_t*)0x20001188 = 6; *(uint32_t*)0x2000118c = 0x8000; *(uint32_t*)0x20001190 = 2; *(uint32_t*)0x20001194 = 9; *(uint32_t*)0x20001198 = 1; *(uint32_t*)0x2000119c = 0x8000; *(uint32_t*)0x200011a0 = 0x10000; *(uint32_t*)0x200011a4 = 0x8000; *(uint32_t*)0x200011a8 = 0x3f; *(uint32_t*)0x200011ac = 0x80000001; *(uint32_t*)0x200011b0 = 0x1000; *(uint32_t*)0x200011b4 = 0x8000; *(uint32_t*)0x200011b8 = 9; *(uint32_t*)0x200011bc = 0x64; *(uint32_t*)0x200011c0 = 0xffffff46; *(uint32_t*)0x200011c4 = 3; *(uint32_t*)0x200011c8 = 0x1c; *(uint32_t*)0x200011cc = 0x80; *(uint32_t*)0x200011d0 = 2; *(uint32_t*)0x200011d4 = 0x400; *(uint32_t*)0x200011d8 = 1; *(uint32_t*)0x200011dc = 0xe6; *(uint32_t*)0x200011e0 = 8; *(uint32_t*)0x200011e4 = 2; *(uint32_t*)0x200011e8 = 0x32; *(uint32_t*)0x200011ec = 0; *(uint32_t*)0x200011f0 = 2; *(uint32_t*)0x200011f4 = 0x8001; *(uint32_t*)0x200011f8 = 0x7fff; *(uint32_t*)0x200011fc = 0x5e1; *(uint32_t*)0x20001200 = 0xffff; *(uint32_t*)0x20001204 = 1; *(uint32_t*)0x20001208 = 0xf4; *(uint32_t*)0x2000120c = 0x473; *(uint32_t*)0x20001210 = 0xffffffd8; *(uint32_t*)0x20001214 = 0; *(uint32_t*)0x20001218 = 0xb10; *(uint32_t*)0x2000121c = 4; *(uint32_t*)0x20001220 = 9; *(uint32_t*)0x20001224 = 0xa61; *(uint32_t*)0x20001228 = 1; *(uint32_t*)0x2000122c = 9; *(uint32_t*)0x20001230 = 1; *(uint32_t*)0x20001234 = 3; *(uint32_t*)0x20001238 = 0x7ff; *(uint32_t*)0x2000123c = 0; *(uint32_t*)0x20001240 = 0xfffffffc; *(uint32_t*)0x20001244 = 1; *(uint32_t*)0x20001248 = 7; *(uint32_t*)0x2000124c = 6; *(uint32_t*)0x20001250 = 9; *(uint32_t*)0x20001254 = 1; *(uint32_t*)0x20001258 = 1; *(uint32_t*)0x2000125c = 0x80000000; *(uint32_t*)0x20001260 = 0xa16; *(uint32_t*)0x20001264 = 7; *(uint32_t*)0x20001268 = 8; *(uint32_t*)0x2000126c = 0x80; *(uint32_t*)0x20001270 = 2; *(uint32_t*)0x20001274 = 7; *(uint32_t*)0x20001278 = 2; *(uint32_t*)0x2000127c = 4; *(uint32_t*)0x20001280 = 7; *(uint32_t*)0x20001284 = 2; *(uint32_t*)0x20001288 = 1; *(uint32_t*)0x2000128c = 0; *(uint32_t*)0x20001290 = 0x100; *(uint32_t*)0x20001294 = 0x10001; *(uint32_t*)0x20001298 = 2; *(uint32_t*)0x2000129c = 9; *(uint32_t*)0x200012a0 = 3; *(uint32_t*)0x200012a4 = 3; *(uint32_t*)0x200012a8 = 7; *(uint32_t*)0x200012ac = 0xb3; *(uint32_t*)0x200012b0 = 0xfff; *(uint32_t*)0x200012b4 = 1; *(uint32_t*)0x200012b8 = 1; *(uint32_t*)0x200012bc = 9; *(uint32_t*)0x200012c0 = 0x7fe0; *(uint32_t*)0x200012c4 = 6; *(uint32_t*)0x200012c8 = 0x101; *(uint32_t*)0x200012cc = 8; *(uint32_t*)0x200012d0 = 5; *(uint32_t*)0x200012d4 = 4; *(uint32_t*)0x200012d8 = 2; *(uint32_t*)0x200012dc = 0x7ff; *(uint32_t*)0x200012e0 = 3; *(uint32_t*)0x200012e4 = 5; *(uint32_t*)0x200012e8 = 0; *(uint32_t*)0x200012ec = 7; *(uint32_t*)0x200012f0 = 0x7ff; *(uint32_t*)0x200012f4 = 0x401; *(uint32_t*)0x200012f8 = 0; *(uint32_t*)0x200012fc = 0xfff; *(uint32_t*)0x20001300 = 9; *(uint32_t*)0x20001304 = 0x1000; *(uint32_t*)0x20001308 = 0x800; *(uint32_t*)0x2000130c = 0x3ff; *(uint32_t*)0x20001310 = 0x516b; *(uint32_t*)0x20001314 = 0xa4; *(uint32_t*)0x20001318 = 0x20; *(uint32_t*)0x2000131c = 3; *(uint32_t*)0x20001320 = 0xf8b8; *(uint32_t*)0x20001324 = 0x270b; *(uint32_t*)0x20001328 = 0x10001; *(uint32_t*)0x2000132c = 6; *(uint32_t*)0x20001330 = 4; *(uint32_t*)0x20001334 = 9; *(uint32_t*)0x20001338 = 2; *(uint32_t*)0x2000133c = 0; *(uint32_t*)0x20001340 = 0xfffffff7; *(uint32_t*)0x20001344 = 9; *(uint32_t*)0x20001348 = 9; *(uint32_t*)0x2000134c = 0x400; *(uint32_t*)0x20001350 = 0xffffffe3; *(uint32_t*)0x20001354 = 5; *(uint32_t*)0x20001358 = 5; *(uint32_t*)0x2000135c = 7; *(uint32_t*)0x20001360 = 0x80000001; *(uint32_t*)0x20001364 = 0x101; *(uint32_t*)0x20001368 = -1; *(uint32_t*)0x2000136c = 0x3ff; *(uint32_t*)0x20001370 = 0xfffffff9; *(uint32_t*)0x20001374 = 7; *(uint32_t*)0x20001378 = 0xfffffff8; *(uint32_t*)0x2000137c = 7; *(uint32_t*)0x20001380 = 2; *(uint32_t*)0x20001384 = 0x80; *(uint32_t*)0x20001388 = 8; *(uint32_t*)0x2000138c = 1; *(uint32_t*)0x20001390 = 0x3f; *(uint32_t*)0x20001394 = 9; *(uint32_t*)0x20001398 = 6; *(uint32_t*)0x2000139c = 0x40; *(uint32_t*)0x200013a0 = 8; *(uint32_t*)0x200013a4 = 4; *(uint32_t*)0x200013a8 = 0x81da; *(uint32_t*)0x200013ac = 0x101; *(uint32_t*)0x200013b0 = 0x1eb63892; *(uint32_t*)0x200013b4 = 1; *(uint32_t*)0x200013b8 = 0; *(uint32_t*)0x200013bc = -1; *(uint32_t*)0x200013c0 = 4; *(uint32_t*)0x200013c4 = 0x1f; *(uint32_t*)0x200013c8 = 9; *(uint32_t*)0x200013cc = 0x3ff; *(uint32_t*)0x200013d0 = 6; *(uint32_t*)0x200013d4 = 0x4f; *(uint32_t*)0x200013d8 = 0x50000000; *(uint32_t*)0x200013dc = 9; *(uint32_t*)0x200013e0 = 1; *(uint32_t*)0x200013e4 = 4; *(uint32_t*)0x200013e8 = 4; *(uint32_t*)0x200013ec = 1; *(uint32_t*)0x200013f0 = 9; *(uint32_t*)0x200013f4 = 6; *(uint32_t*)0x200013f8 = 0x7974b896; *(uint32_t*)0x200013fc = 0xfffffffd; *(uint32_t*)0x20001400 = 0; *(uint32_t*)0x20001404 = 0x101; *(uint32_t*)0x20001408 = 0x8000; *(uint32_t*)0x2000140c = 0x3f; *(uint32_t*)0x20001410 = 0x40; *(uint32_t*)0x20001414 = 5; *(uint32_t*)0x20001418 = 0x8001; *(uint32_t*)0x2000141c = 1; *(uint32_t*)0x20001420 = 0x21a4cfcf; *(uint32_t*)0x20001424 = 7; *(uint32_t*)0x20001428 = 0; *(uint32_t*)0x2000142c = 0x3f; *(uint32_t*)0x20001430 = 0xb023; *(uint32_t*)0x20001434 = 0x80000000; *(uint32_t*)0x20001438 = 0x6a; *(uint32_t*)0x2000143c = 0xff; *(uint32_t*)0x20001440 = 0x81; *(uint32_t*)0x20001444 = 0x8000; *(uint32_t*)0x20001448 = 8; *(uint32_t*)0x2000144c = 3; *(uint32_t*)0x20001450 = 0x36; *(uint32_t*)0x20001454 = 0xffff0001; *(uint32_t*)0x20001458 = 5; *(uint32_t*)0x2000145c = 2; *(uint32_t*)0x20001460 = 6; *(uint32_t*)0x20001464 = 3; *(uint32_t*)0x20001468 = 5; *(uint32_t*)0x2000146c = 0x10001; *(uint16_t*)0x20001470 = 0x404; *(uint16_t*)0x20001472 = 2; *(uint32_t*)0x20001474 = 3; *(uint32_t*)0x20001478 = 0x200; *(uint32_t*)0x2000147c = 0x6e; *(uint32_t*)0x20001480 = 0x6542; *(uint32_t*)0x20001484 = 0x3b; *(uint32_t*)0x20001488 = 0x20; *(uint32_t*)0x2000148c = 8; *(uint32_t*)0x20001490 = 8; *(uint32_t*)0x20001494 = 7; *(uint32_t*)0x20001498 = 1; *(uint32_t*)0x2000149c = 0x7ff; *(uint32_t*)0x200014a0 = 5; *(uint32_t*)0x200014a4 = 3; *(uint32_t*)0x200014a8 = 7; *(uint32_t*)0x200014ac = 0x1ff; *(uint32_t*)0x200014b0 = 6; *(uint32_t*)0x200014b4 = 8; *(uint32_t*)0x200014b8 = 2; *(uint32_t*)0x200014bc = 0xfffffff8; *(uint32_t*)0x200014c0 = 0; *(uint32_t*)0x200014c4 = 9; *(uint32_t*)0x200014c8 = 0x330; *(uint32_t*)0x200014cc = 6; *(uint32_t*)0x200014d0 = 2; *(uint32_t*)0x200014d4 = 0; *(uint32_t*)0x200014d8 = 0xfffffff7; *(uint32_t*)0x200014dc = 1; *(uint32_t*)0x200014e0 = 6; *(uint32_t*)0x200014e4 = 6; *(uint32_t*)0x200014e8 = 0; *(uint32_t*)0x200014ec = 0; *(uint32_t*)0x200014f0 = 0xff; *(uint32_t*)0x200014f4 = 7; *(uint32_t*)0x200014f8 = 0xe84; *(uint32_t*)0x200014fc = 5; *(uint32_t*)0x20001500 = 3; *(uint32_t*)0x20001504 = 0x3ff; *(uint32_t*)0x20001508 = 3; *(uint32_t*)0x2000150c = 0x8000; *(uint32_t*)0x20001510 = 3; *(uint32_t*)0x20001514 = 0x36a; *(uint32_t*)0x20001518 = 0xad; *(uint32_t*)0x2000151c = 0x1000; *(uint32_t*)0x20001520 = 0xfffffffc; *(uint32_t*)0x20001524 = 1; *(uint32_t*)0x20001528 = -1; *(uint32_t*)0x2000152c = 0x81; *(uint32_t*)0x20001530 = 5; *(uint32_t*)0x20001534 = 8; *(uint32_t*)0x20001538 = 0; *(uint32_t*)0x2000153c = 0x7fff; *(uint32_t*)0x20001540 = 0; *(uint32_t*)0x20001544 = 7; *(uint32_t*)0x20001548 = 4; *(uint32_t*)0x2000154c = 0x7fff; *(uint32_t*)0x20001550 = 0x10001; *(uint32_t*)0x20001554 = 0xb49; *(uint32_t*)0x20001558 = 4; *(uint32_t*)0x2000155c = 0x80000000; *(uint32_t*)0x20001560 = 0x100000; *(uint32_t*)0x20001564 = 0x7fff; *(uint32_t*)0x20001568 = 0xff; *(uint32_t*)0x2000156c = 5; *(uint32_t*)0x20001570 = 0x81; *(uint32_t*)0x20001574 = 8; *(uint32_t*)0x20001578 = 6; *(uint32_t*)0x2000157c = 0x1d69; *(uint32_t*)0x20001580 = 0x1ff; *(uint32_t*)0x20001584 = 2; *(uint32_t*)0x20001588 = 0x80000001; *(uint32_t*)0x2000158c = 0; *(uint32_t*)0x20001590 = 0x3f; *(uint32_t*)0x20001594 = 0x7fffffff; *(uint32_t*)0x20001598 = 7; *(uint32_t*)0x2000159c = 2; *(uint32_t*)0x200015a0 = 3; *(uint32_t*)0x200015a4 = 0x400; *(uint32_t*)0x200015a8 = 0xffffff81; *(uint32_t*)0x200015ac = 0xba; *(uint32_t*)0x200015b0 = 0xb673; *(uint32_t*)0x200015b4 = 6; *(uint32_t*)0x200015b8 = 0x80; *(uint32_t*)0x200015bc = 0xf8; *(uint32_t*)0x200015c0 = 4; *(uint32_t*)0x200015c4 = 0x7ff; *(uint32_t*)0x200015c8 = 0x9d1; *(uint32_t*)0x200015cc = 8; *(uint32_t*)0x200015d0 = 0x7e4; *(uint32_t*)0x200015d4 = 2; *(uint32_t*)0x200015d8 = 0xff; *(uint32_t*)0x200015dc = 8; *(uint32_t*)0x200015e0 = 5; *(uint32_t*)0x200015e4 = 0; *(uint32_t*)0x200015e8 = 0x279; *(uint32_t*)0x200015ec = 2; *(uint32_t*)0x200015f0 = 0x7fffffff; *(uint32_t*)0x200015f4 = 0xe826; *(uint32_t*)0x200015f8 = 5; *(uint32_t*)0x200015fc = 0x96000000; *(uint32_t*)0x20001600 = 0x2b4d; *(uint32_t*)0x20001604 = 0x7e; *(uint32_t*)0x20001608 = 2; *(uint32_t*)0x2000160c = 7; *(uint32_t*)0x20001610 = 7; *(uint32_t*)0x20001614 = 0x20; *(uint32_t*)0x20001618 = 0xffffff56; *(uint32_t*)0x2000161c = 9; *(uint32_t*)0x20001620 = 0x83; *(uint32_t*)0x20001624 = 0xfffffff8; *(uint32_t*)0x20001628 = 0; *(uint32_t*)0x2000162c = 1; *(uint32_t*)0x20001630 = 7; *(uint32_t*)0x20001634 = 3; *(uint32_t*)0x20001638 = 2; *(uint32_t*)0x2000163c = 5; *(uint32_t*)0x20001640 = 0x76; *(uint32_t*)0x20001644 = 0x4e; *(uint32_t*)0x20001648 = 0x3e; *(uint32_t*)0x2000164c = 0x8001; *(uint32_t*)0x20001650 = 1; *(uint32_t*)0x20001654 = 0; *(uint32_t*)0x20001658 = 0x35a; *(uint32_t*)0x2000165c = 2; *(uint32_t*)0x20001660 = 0x321; *(uint32_t*)0x20001664 = 0x8000; *(uint32_t*)0x20001668 = 0; *(uint32_t*)0x2000166c = 0x98; *(uint32_t*)0x20001670 = 2; *(uint32_t*)0x20001674 = 0x200; *(uint32_t*)0x20001678 = 2; *(uint32_t*)0x2000167c = 0x101; *(uint32_t*)0x20001680 = 0xf74c; *(uint32_t*)0x20001684 = 0x4ad; *(uint32_t*)0x20001688 = 0x401; *(uint32_t*)0x2000168c = 0xbe; *(uint32_t*)0x20001690 = 1; *(uint32_t*)0x20001694 = 0x70a0; *(uint32_t*)0x20001698 = 8; *(uint32_t*)0x2000169c = 0x8001; *(uint32_t*)0x200016a0 = 3; *(uint32_t*)0x200016a4 = 0x401; *(uint32_t*)0x200016a8 = 9; *(uint32_t*)0x200016ac = 0x101; *(uint32_t*)0x200016b0 = 6; *(uint32_t*)0x200016b4 = 8; *(uint32_t*)0x200016b8 = 0x3ff; *(uint32_t*)0x200016bc = 3; *(uint32_t*)0x200016c0 = 0x101; *(uint32_t*)0x200016c4 = 2; *(uint32_t*)0x200016c8 = 5; *(uint32_t*)0x200016cc = 0x8d4; *(uint32_t*)0x200016d0 = 0x1b6a; *(uint32_t*)0x200016d4 = 9; *(uint32_t*)0x200016d8 = 0xe27; *(uint32_t*)0x200016dc = 0x10001; *(uint32_t*)0x200016e0 = 0x15; *(uint32_t*)0x200016e4 = 1; *(uint32_t*)0x200016e8 = 0x7fffffff; *(uint32_t*)0x200016ec = 9; *(uint32_t*)0x200016f0 = 4; *(uint32_t*)0x200016f4 = 6; *(uint32_t*)0x200016f8 = 0; *(uint32_t*)0x200016fc = 5; *(uint32_t*)0x20001700 = 1; *(uint32_t*)0x20001704 = 0x1c; *(uint32_t*)0x20001708 = 4; *(uint32_t*)0x2000170c = 1; *(uint32_t*)0x20001710 = 0x92; *(uint32_t*)0x20001714 = 0x52; *(uint32_t*)0x20001718 = 0x1000; *(uint32_t*)0x2000171c = 7; *(uint32_t*)0x20001720 = 0xfffffffc; *(uint32_t*)0x20001724 = 1; *(uint32_t*)0x20001728 = 6; *(uint32_t*)0x2000172c = 2; *(uint32_t*)0x20001730 = 2; *(uint32_t*)0x20001734 = 9; *(uint32_t*)0x20001738 = 2; *(uint32_t*)0x2000173c = 0xfb; *(uint32_t*)0x20001740 = 0xfffffffa; *(uint32_t*)0x20001744 = 0x36c; *(uint32_t*)0x20001748 = 6; *(uint32_t*)0x2000174c = 0; *(uint32_t*)0x20001750 = 6; *(uint32_t*)0x20001754 = 0x40; *(uint32_t*)0x20001758 = 0xc0; *(uint32_t*)0x2000175c = 0x4c; *(uint32_t*)0x20001760 = 0xfff; *(uint32_t*)0x20001764 = 5; *(uint32_t*)0x20001768 = 5; *(uint32_t*)0x2000176c = 0; *(uint32_t*)0x20001770 = 6; *(uint32_t*)0x20001774 = 9; *(uint32_t*)0x20001778 = 0x666d; *(uint32_t*)0x2000177c = 1; *(uint32_t*)0x20001780 = 7; *(uint32_t*)0x20001784 = -1; *(uint32_t*)0x20001788 = 8; *(uint32_t*)0x2000178c = 0x1f; *(uint32_t*)0x20001790 = 0xffff0000; *(uint32_t*)0x20001794 = 0x9871; *(uint32_t*)0x20001798 = 0xfffff310; *(uint32_t*)0x2000179c = 3; *(uint32_t*)0x200017a0 = 0x401; *(uint32_t*)0x200017a4 = 3; *(uint32_t*)0x200017a8 = 0x80000001; *(uint32_t*)0x200017ac = 0x100; *(uint32_t*)0x200017b0 = 4; *(uint32_t*)0x200017b4 = 1; *(uint32_t*)0x200017b8 = 0x1f; *(uint32_t*)0x200017bc = 9; *(uint32_t*)0x200017c0 = 7; *(uint32_t*)0x200017c4 = 0x100; *(uint32_t*)0x200017c8 = 5; *(uint32_t*)0x200017cc = 0; *(uint32_t*)0x200017d0 = 0x4a3; *(uint32_t*)0x200017d4 = 0x7dd3; *(uint32_t*)0x200017d8 = 0x200; *(uint32_t*)0x200017dc = 0; *(uint32_t*)0x200017e0 = 0xc67b; *(uint32_t*)0x200017e4 = 0xa6; *(uint32_t*)0x200017e8 = 4; *(uint32_t*)0x200017ec = 0xa7; *(uint32_t*)0x200017f0 = 0x1f; *(uint32_t*)0x200017f4 = 6; *(uint32_t*)0x200017f8 = -1; *(uint32_t*)0x200017fc = 0x354; *(uint32_t*)0x20001800 = 0x400; *(uint32_t*)0x20001804 = 5; *(uint32_t*)0x20001808 = 9; *(uint32_t*)0x2000180c = 5; *(uint32_t*)0x20001810 = 0x8000; *(uint32_t*)0x20001814 = 8; *(uint32_t*)0x20001818 = 0x80000001; *(uint32_t*)0x2000181c = 0x80; *(uint32_t*)0x20001820 = 6; *(uint32_t*)0x20001824 = 2; *(uint32_t*)0x20001828 = 2; *(uint32_t*)0x2000182c = 5; *(uint32_t*)0x20001830 = 0x101; *(uint32_t*)0x20001834 = 0x10000; *(uint32_t*)0x20001838 = 0; *(uint32_t*)0x2000183c = 0x5c00; *(uint32_t*)0x20001840 = 2; *(uint32_t*)0x20001844 = 3; *(uint32_t*)0x20001848 = 3; *(uint32_t*)0x2000184c = 1; *(uint32_t*)0x20001850 = 1; *(uint32_t*)0x20001854 = 0x80000001; *(uint32_t*)0x20001858 = 8; *(uint32_t*)0x2000185c = 9; *(uint32_t*)0x20001860 = 8; *(uint32_t*)0x20001864 = 0xbced; *(uint32_t*)0x20001868 = 9; *(uint32_t*)0x2000186c = 0x7f; *(uint32_t*)0x20001870 = 1; *(uint16_t*)0x20001874 = 8; *(uint16_t*)0x20001876 = 5; *(uint32_t*)0x20001878 = 6; *(uint16_t*)0x2000187c = 0x404; *(uint16_t*)0x2000187e = 3; *(uint32_t*)0x20001880 = 0xd7; *(uint32_t*)0x20001884 = 1; *(uint32_t*)0x20001888 = 1; *(uint32_t*)0x2000188c = 0x40; *(uint32_t*)0x20001890 = 0xff; *(uint32_t*)0x20001894 = 0; *(uint32_t*)0x20001898 = 0xff; *(uint32_t*)0x2000189c = 8; *(uint32_t*)0x200018a0 = 0x5a8; *(uint32_t*)0x200018a4 = 0x400; *(uint32_t*)0x200018a8 = 0x80000001; *(uint32_t*)0x200018ac = 1; *(uint32_t*)0x200018b0 = 0x8001; *(uint32_t*)0x200018b4 = 0x1f; *(uint32_t*)0x200018b8 = 4; *(uint32_t*)0x200018bc = 7; *(uint32_t*)0x200018c0 = 0x401; *(uint32_t*)0x200018c4 = 0xc4e0; *(uint32_t*)0x200018c8 = 5; *(uint32_t*)0x200018cc = 0xff; *(uint32_t*)0x200018d0 = 8; *(uint32_t*)0x200018d4 = 0; *(uint32_t*)0x200018d8 = 5; *(uint32_t*)0x200018dc = 0xa000; *(uint32_t*)0x200018e0 = 5; *(uint32_t*)0x200018e4 = 0; *(uint32_t*)0x200018e8 = 0x401; *(uint32_t*)0x200018ec = 1; *(uint32_t*)0x200018f0 = 0x7f; *(uint32_t*)0x200018f4 = 6; *(uint32_t*)0x200018f8 = 8; *(uint32_t*)0x200018fc = 2; *(uint32_t*)0x20001900 = 2; *(uint32_t*)0x20001904 = 0x80; *(uint32_t*)0x20001908 = 6; *(uint32_t*)0x2000190c = 0x400; *(uint32_t*)0x20001910 = 7; *(uint32_t*)0x20001914 = 0x7f; *(uint32_t*)0x20001918 = 0xfff; *(uint32_t*)0x2000191c = 0x7f; *(uint32_t*)0x20001920 = 4; *(uint32_t*)0x20001924 = 6; *(uint32_t*)0x20001928 = 0x8001; *(uint32_t*)0x2000192c = 8; *(uint32_t*)0x20001930 = 1; *(uint32_t*)0x20001934 = 0x874; *(uint32_t*)0x20001938 = 9; *(uint32_t*)0x2000193c = 4; *(uint32_t*)0x20001940 = 1; *(uint32_t*)0x20001944 = 0x1000; *(uint32_t*)0x20001948 = 0x7c; *(uint32_t*)0x2000194c = 4; *(uint32_t*)0x20001950 = 0xfffffffe; *(uint32_t*)0x20001954 = 8; *(uint32_t*)0x20001958 = 0x80000000; *(uint32_t*)0x2000195c = 0x77d7; *(uint32_t*)0x20001960 = 5; *(uint32_t*)0x20001964 = 0x10001; *(uint32_t*)0x20001968 = 6; *(uint32_t*)0x2000196c = 0xcf; *(uint32_t*)0x20001970 = 7; *(uint32_t*)0x20001974 = 0x7ff; *(uint32_t*)0x20001978 = 0xe8a3; *(uint32_t*)0x2000197c = 8; *(uint32_t*)0x20001980 = 2; *(uint32_t*)0x20001984 = 0x400; *(uint32_t*)0x20001988 = 0xfa83; *(uint32_t*)0x2000198c = 0x1c16; *(uint32_t*)0x20001990 = 2; *(uint32_t*)0x20001994 = 0x80; *(uint32_t*)0x20001998 = 5; *(uint32_t*)0x2000199c = 6; *(uint32_t*)0x200019a0 = 6; *(uint32_t*)0x200019a4 = 0xdd6e; *(uint32_t*)0x200019a8 = 0xfff; *(uint32_t*)0x200019ac = 1; *(uint32_t*)0x200019b0 = 0x3ff; *(uint32_t*)0x200019b4 = 0x7fffffff; *(uint32_t*)0x200019b8 = 0x8000; *(uint32_t*)0x200019bc = 9; *(uint32_t*)0x200019c0 = 0x20; *(uint32_t*)0x200019c4 = 9; *(uint32_t*)0x200019c8 = 2; *(uint32_t*)0x200019cc = 6; *(uint32_t*)0x200019d0 = 0x8001; *(uint32_t*)0x200019d4 = 3; *(uint32_t*)0x200019d8 = 0x40; *(uint32_t*)0x200019dc = 0xbcf; *(uint32_t*)0x200019e0 = 0xd34; *(uint32_t*)0x200019e4 = 0; *(uint32_t*)0x200019e8 = 0x80000000; *(uint32_t*)0x200019ec = 0x20; *(uint32_t*)0x200019f0 = 3; *(uint32_t*)0x200019f4 = 0x889; *(uint32_t*)0x200019f8 = 2; *(uint32_t*)0x200019fc = 9; *(uint32_t*)0x20001a00 = 6; *(uint32_t*)0x20001a04 = 0x1000; *(uint32_t*)0x20001a08 = 0xd9; *(uint32_t*)0x20001a0c = 0xf0000000; *(uint32_t*)0x20001a10 = 0xcd; *(uint32_t*)0x20001a14 = 0xc1; *(uint32_t*)0x20001a18 = 1; *(uint32_t*)0x20001a1c = 0; *(uint32_t*)0x20001a20 = 0x80000000; *(uint32_t*)0x20001a24 = 0; *(uint32_t*)0x20001a28 = 0x80000000; *(uint32_t*)0x20001a2c = 0xffff; *(uint32_t*)0x20001a30 = 0x200; *(uint32_t*)0x20001a34 = 5; *(uint32_t*)0x20001a38 = 0x59a; *(uint32_t*)0x20001a3c = 0x8000; *(uint32_t*)0x20001a40 = 3; *(uint32_t*)0x20001a44 = 0xfffffff7; *(uint32_t*)0x20001a48 = 0x80000001; *(uint32_t*)0x20001a4c = 0x40; *(uint32_t*)0x20001a50 = 0x81; *(uint32_t*)0x20001a54 = 8; *(uint32_t*)0x20001a58 = 7; *(uint32_t*)0x20001a5c = 6; *(uint32_t*)0x20001a60 = 7; *(uint32_t*)0x20001a64 = 4; *(uint32_t*)0x20001a68 = 0xce; *(uint32_t*)0x20001a6c = 9; *(uint32_t*)0x20001a70 = 0x7fffffff; *(uint32_t*)0x20001a74 = 9; *(uint32_t*)0x20001a78 = 0xffff; *(uint32_t*)0x20001a7c = 9; *(uint32_t*)0x20001a80 = 4; *(uint32_t*)0x20001a84 = 0; *(uint32_t*)0x20001a88 = 9; *(uint32_t*)0x20001a8c = 0x2cb; *(uint32_t*)0x20001a90 = 0xfffffff9; *(uint32_t*)0x20001a94 = 0x80000000; *(uint32_t*)0x20001a98 = 6; *(uint32_t*)0x20001a9c = 0x78; *(uint32_t*)0x20001aa0 = 0x8001; *(uint32_t*)0x20001aa4 = 3; *(uint32_t*)0x20001aa8 = 5; *(uint32_t*)0x20001aac = 1; *(uint32_t*)0x20001ab0 = 0x8a0; *(uint32_t*)0x20001ab4 = 0; *(uint32_t*)0x20001ab8 = 0x11; *(uint32_t*)0x20001abc = 0x7fff; *(uint32_t*)0x20001ac0 = 0; *(uint32_t*)0x20001ac4 = 0; *(uint32_t*)0x20001ac8 = 0x56; *(uint32_t*)0x20001acc = 0x80000000; *(uint32_t*)0x20001ad0 = 7; *(uint32_t*)0x20001ad4 = 5; *(uint32_t*)0x20001ad8 = 0xcf; *(uint32_t*)0x20001adc = 3; *(uint32_t*)0x20001ae0 = 9; *(uint32_t*)0x20001ae4 = 0x1ff; *(uint32_t*)0x20001ae8 = 7; *(uint32_t*)0x20001aec = 0xff; *(uint32_t*)0x20001af0 = 9; *(uint32_t*)0x20001af4 = 0x101; *(uint32_t*)0x20001af8 = 2; *(uint32_t*)0x20001afc = 0x9a; *(uint32_t*)0x20001b00 = 5; *(uint32_t*)0x20001b04 = 0xa35; *(uint32_t*)0x20001b08 = 0x80; *(uint32_t*)0x20001b0c = 0x258; *(uint32_t*)0x20001b10 = 8; *(uint32_t*)0x20001b14 = 0x29; *(uint32_t*)0x20001b18 = 0xb3; *(uint32_t*)0x20001b1c = 0xdd; *(uint32_t*)0x20001b20 = 0x3fa; *(uint32_t*)0x20001b24 = 0xac74; *(uint32_t*)0x20001b28 = 0x33dc5f7c; *(uint32_t*)0x20001b2c = 6; *(uint32_t*)0x20001b30 = 0xfffffff9; *(uint32_t*)0x20001b34 = 9; *(uint32_t*)0x20001b38 = 0xe8000000; *(uint32_t*)0x20001b3c = 3; *(uint32_t*)0x20001b40 = 4; *(uint32_t*)0x20001b44 = 0x7ff; *(uint32_t*)0x20001b48 = 0x3a; *(uint32_t*)0x20001b4c = 0x10000; *(uint32_t*)0x20001b50 = 0x1000; *(uint32_t*)0x20001b54 = 0x1000; *(uint32_t*)0x20001b58 = 2; *(uint32_t*)0x20001b5c = 2; *(uint32_t*)0x20001b60 = 6; *(uint32_t*)0x20001b64 = 4; *(uint32_t*)0x20001b68 = 1; *(uint32_t*)0x20001b6c = 1; *(uint32_t*)0x20001b70 = 2; *(uint32_t*)0x20001b74 = 2; *(uint32_t*)0x20001b78 = 0x1000; *(uint32_t*)0x20001b7c = 7; *(uint32_t*)0x20001b80 = 0xfffff266; *(uint32_t*)0x20001b84 = 9; *(uint32_t*)0x20001b88 = 4; *(uint32_t*)0x20001b8c = 0x10001; *(uint32_t*)0x20001b90 = 0xf1; *(uint32_t*)0x20001b94 = 0x200; *(uint32_t*)0x20001b98 = -1; *(uint32_t*)0x20001b9c = 0x8001; *(uint32_t*)0x20001ba0 = 0xb7; *(uint32_t*)0x20001ba4 = 0xfb2; *(uint32_t*)0x20001ba8 = 0xfffffff9; *(uint32_t*)0x20001bac = 9; *(uint32_t*)0x20001bb0 = 0x8001; *(uint32_t*)0x20001bb4 = 2; *(uint32_t*)0x20001bb8 = 0x3ff; *(uint32_t*)0x20001bbc = 9; *(uint32_t*)0x20001bc0 = 0xffff8001; *(uint32_t*)0x20001bc4 = 4; *(uint32_t*)0x20001bc8 = 2; *(uint32_t*)0x20001bcc = 0x10000; *(uint32_t*)0x20001bd0 = 8; *(uint32_t*)0x20001bd4 = 0x400; *(uint32_t*)0x20001bd8 = 1; *(uint32_t*)0x20001bdc = 8; *(uint32_t*)0x20001be0 = 1; *(uint32_t*)0x20001be4 = 0x17a; *(uint32_t*)0x20001be8 = 3; *(uint32_t*)0x20001bec = 0x401; *(uint32_t*)0x20001bf0 = 7; *(uint32_t*)0x20001bf4 = 0x7fff; *(uint32_t*)0x20001bf8 = 9; *(uint32_t*)0x20001bfc = 0x1ff; *(uint32_t*)0x20001c00 = 0x10000; *(uint32_t*)0x20001c04 = 9; *(uint32_t*)0x20001c08 = 0; *(uint32_t*)0x20001c0c = 0xfff; *(uint32_t*)0x20001c10 = 8; *(uint32_t*)0x20001c14 = 7; *(uint32_t*)0x20001c18 = 0xc00000; *(uint32_t*)0x20001c1c = 0x20; *(uint32_t*)0x20001c20 = 1; *(uint32_t*)0x20001c24 = 0xfffffff7; *(uint32_t*)0x20001c28 = 4; *(uint32_t*)0x20001c2c = 0x7fff; *(uint32_t*)0x20001c30 = 7; *(uint32_t*)0x20001c34 = 5; *(uint32_t*)0x20001c38 = 0x52; *(uint32_t*)0x20001c3c = 1; *(uint32_t*)0x20001c40 = 0x7f; *(uint32_t*)0x20001c44 = 0x80000000; *(uint32_t*)0x20001c48 = 0x7fff; *(uint32_t*)0x20001c4c = 0x40e; *(uint32_t*)0x20001c50 = 0xb7b; *(uint32_t*)0x20001c54 = 7; *(uint32_t*)0x20001c58 = 4; *(uint32_t*)0x20001c5c = 0x35; *(uint32_t*)0x20001c60 = 0x200; *(uint32_t*)0x20001c64 = 4; *(uint32_t*)0x20001c68 = 0xf01; *(uint32_t*)0x20001c6c = 0x101; *(uint32_t*)0x20001c70 = 7; *(uint32_t*)0x20001c74 = 0x8100; *(uint32_t*)0x20001c78 = 1; *(uint32_t*)0x20001c7c = 1; *(uint16_t*)0x20001c80 = 0x404; *(uint16_t*)0x20001c82 = 3; *(uint32_t*)0x20001c84 = 0; *(uint32_t*)0x20001c88 = 5; *(uint32_t*)0x20001c8c = 0x1000; *(uint32_t*)0x20001c90 = 2; *(uint32_t*)0x20001c94 = 6; *(uint32_t*)0x20001c98 = 0x200; *(uint32_t*)0x20001c9c = 9; *(uint32_t*)0x20001ca0 = 2; *(uint32_t*)0x20001ca4 = 0xa8b; *(uint32_t*)0x20001ca8 = 7; *(uint32_t*)0x20001cac = 5; *(uint32_t*)0x20001cb0 = 0x10000; *(uint32_t*)0x20001cb4 = 1; *(uint32_t*)0x20001cb8 = 7; *(uint32_t*)0x20001cbc = 0; *(uint32_t*)0x20001cc0 = 1; *(uint32_t*)0x20001cc4 = 0x1ff; *(uint32_t*)0x20001cc8 = 0xba; *(uint32_t*)0x20001ccc = 2; *(uint32_t*)0x20001cd0 = 0x20; *(uint32_t*)0x20001cd4 = 0x7f; *(uint32_t*)0x20001cd8 = 0x1f; *(uint32_t*)0x20001cdc = 0x4065; *(uint32_t*)0x20001ce0 = 7; *(uint32_t*)0x20001ce4 = 0; *(uint32_t*)0x20001ce8 = 0x10000; *(uint32_t*)0x20001cec = 0xfff; *(uint32_t*)0x20001cf0 = 0x58; *(uint32_t*)0x20001cf4 = 8; *(uint32_t*)0x20001cf8 = 6; *(uint32_t*)0x20001cfc = 0xb5; *(uint32_t*)0x20001d00 = 5; *(uint32_t*)0x20001d04 = 0x7fffffff; *(uint32_t*)0x20001d08 = 0x676; *(uint32_t*)0x20001d0c = 5; *(uint32_t*)0x20001d10 = 0x7b6f; *(uint32_t*)0x20001d14 = 8; *(uint32_t*)0x20001d18 = 6; *(uint32_t*)0x20001d1c = 0; *(uint32_t*)0x20001d20 = 0x4a23; *(uint32_t*)0x20001d24 = 7; *(uint32_t*)0x20001d28 = 0xaa; *(uint32_t*)0x20001d2c = 7; *(uint32_t*)0x20001d30 = 0xff; *(uint32_t*)0x20001d34 = 0x10001; *(uint32_t*)0x20001d38 = 8; *(uint32_t*)0x20001d3c = 0x3b28; *(uint32_t*)0x20001d40 = 0xbb; *(uint32_t*)0x20001d44 = 7; *(uint32_t*)0x20001d48 = 0xe; *(uint32_t*)0x20001d4c = 1; *(uint32_t*)0x20001d50 = 4; *(uint32_t*)0x20001d54 = 8; *(uint32_t*)0x20001d58 = 7; *(uint32_t*)0x20001d5c = 7; *(uint32_t*)0x20001d60 = 4; *(uint32_t*)0x20001d64 = 8; *(uint32_t*)0x20001d68 = 1; *(uint32_t*)0x20001d6c = 2; *(uint32_t*)0x20001d70 = 8; *(uint32_t*)0x20001d74 = 0x401; *(uint32_t*)0x20001d78 = 5; *(uint32_t*)0x20001d7c = 0x1f; *(uint32_t*)0x20001d80 = 0x401; *(uint32_t*)0x20001d84 = 0xe478; *(uint32_t*)0x20001d88 = 1; *(uint32_t*)0x20001d8c = 4; *(uint32_t*)0x20001d90 = 3; *(uint32_t*)0x20001d94 = 0xf6c9; *(uint32_t*)0x20001d98 = 0x7f; *(uint32_t*)0x20001d9c = 0x1d; *(uint32_t*)0x20001da0 = 0x8001; *(uint32_t*)0x20001da4 = 9; *(uint32_t*)0x20001da8 = 0x200; *(uint32_t*)0x20001dac = 6; *(uint32_t*)0x20001db0 = 0xfff; *(uint32_t*)0x20001db4 = 0x80000001; *(uint32_t*)0x20001db8 = 0xfff; *(uint32_t*)0x20001dbc = 0x3abee6a6; *(uint32_t*)0x20001dc0 = 0x40; *(uint32_t*)0x20001dc4 = 5; *(uint32_t*)0x20001dc8 = 2; *(uint32_t*)0x20001dcc = 0xfffff801; *(uint32_t*)0x20001dd0 = 0x80; *(uint32_t*)0x20001dd4 = 5; *(uint32_t*)0x20001dd8 = 0xfffffff8; *(uint32_t*)0x20001ddc = 7; *(uint32_t*)0x20001de0 = 4; *(uint32_t*)0x20001de4 = 0; *(uint32_t*)0x20001de8 = 0xf6d; *(uint32_t*)0x20001dec = 3; *(uint32_t*)0x20001df0 = 3; *(uint32_t*)0x20001df4 = 0x9f6; *(uint32_t*)0x20001df8 = 9; *(uint32_t*)0x20001dfc = 0x4ac1; *(uint32_t*)0x20001e00 = 1; *(uint32_t*)0x20001e04 = 0xfffffffe; *(uint32_t*)0x20001e08 = 0; *(uint32_t*)0x20001e0c = 0x80; *(uint32_t*)0x20001e10 = 0x836; *(uint32_t*)0x20001e14 = 1; *(uint32_t*)0x20001e18 = 0xe1df; *(uint32_t*)0x20001e1c = 0; *(uint32_t*)0x20001e20 = 8; *(uint32_t*)0x20001e24 = 7; *(uint32_t*)0x20001e28 = 0xb385; *(uint32_t*)0x20001e2c = 0x101; *(uint32_t*)0x20001e30 = 9; *(uint32_t*)0x20001e34 = 9; *(uint32_t*)0x20001e38 = 0x1000; *(uint32_t*)0x20001e3c = 0xec; *(uint32_t*)0x20001e40 = 0x40; *(uint32_t*)0x20001e44 = 0x40; *(uint32_t*)0x20001e48 = 3; *(uint32_t*)0x20001e4c = 0xb0; *(uint32_t*)0x20001e50 = 0x101; *(uint32_t*)0x20001e54 = 0x76; *(uint32_t*)0x20001e58 = 6; *(uint32_t*)0x20001e5c = 9; *(uint32_t*)0x20001e60 = 0x7f; *(uint32_t*)0x20001e64 = 0x245; *(uint32_t*)0x20001e68 = 0x746; *(uint32_t*)0x20001e6c = 2; *(uint32_t*)0x20001e70 = 0xfffffff9; *(uint32_t*)0x20001e74 = 6; *(uint32_t*)0x20001e78 = 9; *(uint32_t*)0x20001e7c = 7; *(uint32_t*)0x20001e80 = 5; *(uint32_t*)0x20001e84 = 3; *(uint32_t*)0x20001e88 = 3; *(uint32_t*)0x20001e8c = 0x285; *(uint32_t*)0x20001e90 = 1; *(uint32_t*)0x20001e94 = 0x12f; *(uint32_t*)0x20001e98 = 4; *(uint32_t*)0x20001e9c = 4; *(uint32_t*)0x20001ea0 = 6; *(uint32_t*)0x20001ea4 = 0x7f; *(uint32_t*)0x20001ea8 = 0x702; *(uint32_t*)0x20001eac = 0x7ff; *(uint32_t*)0x20001eb0 = 0xffffffca; *(uint32_t*)0x20001eb4 = 5; *(uint32_t*)0x20001eb8 = 8; *(uint32_t*)0x20001ebc = 5; *(uint32_t*)0x20001ec0 = 4; *(uint32_t*)0x20001ec4 = 9; *(uint32_t*)0x20001ec8 = 0x20; *(uint32_t*)0x20001ecc = 4; *(uint32_t*)0x20001ed0 = 0x81; *(uint32_t*)0x20001ed4 = 0x6a1; *(uint32_t*)0x20001ed8 = 0xff; *(uint32_t*)0x20001edc = 0x1f; *(uint32_t*)0x20001ee0 = 0xffff3350; *(uint32_t*)0x20001ee4 = 9; *(uint32_t*)0x20001ee8 = 7; *(uint32_t*)0x20001eec = 0x7ff; *(uint32_t*)0x20001ef0 = 0xef; *(uint32_t*)0x20001ef4 = 0xfffffff7; *(uint32_t*)0x20001ef8 = 0xc3800000; *(uint32_t*)0x20001efc = 8; *(uint32_t*)0x20001f00 = 0xc3c; *(uint32_t*)0x20001f04 = 9; *(uint32_t*)0x20001f08 = 1; *(uint32_t*)0x20001f0c = 1; *(uint32_t*)0x20001f10 = 6; *(uint32_t*)0x20001f14 = 0x400; *(uint32_t*)0x20001f18 = 3; *(uint32_t*)0x20001f1c = 0xa6; *(uint32_t*)0x20001f20 = 0xff; *(uint32_t*)0x20001f24 = 2; *(uint32_t*)0x20001f28 = 0x1dcd; *(uint32_t*)0x20001f2c = 0x400; *(uint32_t*)0x20001f30 = 0xfffffff7; *(uint32_t*)0x20001f34 = 0; *(uint32_t*)0x20001f38 = 6; *(uint32_t*)0x20001f3c = 0xf6a; *(uint32_t*)0x20001f40 = 1; *(uint32_t*)0x20001f44 = 2; *(uint32_t*)0x20001f48 = 5; *(uint32_t*)0x20001f4c = 0xf1; *(uint32_t*)0x20001f50 = 0x1ff; *(uint32_t*)0x20001f54 = 0x80000000; *(uint32_t*)0x20001f58 = 9; *(uint32_t*)0x20001f5c = 4; *(uint32_t*)0x20001f60 = 4; *(uint32_t*)0x20001f64 = 0x40; *(uint32_t*)0x20001f68 = 6; *(uint32_t*)0x20001f6c = 0xce; *(uint32_t*)0x20001f70 = 9; *(uint32_t*)0x20001f74 = 9; *(uint32_t*)0x20001f78 = 1; *(uint32_t*)0x20001f7c = 0x3f; *(uint32_t*)0x20001f80 = 7; *(uint32_t*)0x20001f84 = 0x2159; *(uint32_t*)0x20001f88 = 1; *(uint32_t*)0x20001f8c = 0x6d; *(uint32_t*)0x20001f90 = 2; *(uint32_t*)0x20001f94 = 4; *(uint32_t*)0x20001f98 = 0x75d; *(uint32_t*)0x20001f9c = 6; *(uint32_t*)0x20001fa0 = 0xfff; *(uint32_t*)0x20001fa4 = 0x37; *(uint32_t*)0x20001fa8 = 0x80000001; *(uint32_t*)0x20001fac = 0xffff7fff; *(uint32_t*)0x20001fb0 = 0x492; *(uint32_t*)0x20001fb4 = 0xfffffff8; *(uint32_t*)0x20001fb8 = 5; *(uint32_t*)0x20001fbc = 0x3bd0; *(uint32_t*)0x20001fc0 = 0x534; *(uint32_t*)0x20001fc4 = 9; *(uint32_t*)0x20001fc8 = 8; *(uint32_t*)0x20001fcc = 0x40; *(uint32_t*)0x20001fd0 = 0x10000; *(uint32_t*)0x20001fd4 = 2; *(uint32_t*)0x20001fd8 = 0x80000000; *(uint32_t*)0x20001fdc = 0x1ff; *(uint32_t*)0x20001fe0 = 0; *(uint32_t*)0x20001fe4 = 0xbe; *(uint32_t*)0x20001fe8 = 0x6d1; *(uint32_t*)0x20001fec = 0x631d8cd4; *(uint32_t*)0x20001ff0 = 1; *(uint32_t*)0x20001ff4 = 0x45a; *(uint32_t*)0x20001ff8 = 0x7f; *(uint32_t*)0x20001ffc = 4; *(uint32_t*)0x20002000 = 8; *(uint32_t*)0x20002004 = 0x7bd; *(uint32_t*)0x20002008 = 0x400; *(uint32_t*)0x2000200c = 0x9d1a; *(uint32_t*)0x20002010 = 0x76; *(uint32_t*)0x20002014 = 0xee; *(uint32_t*)0x20002018 = 0x200; *(uint32_t*)0x2000201c = 5; *(uint32_t*)0x20002020 = 8; *(uint32_t*)0x20002024 = 2; *(uint32_t*)0x20002028 = 0x400; *(uint32_t*)0x2000202c = 0x2a8; *(uint32_t*)0x20002030 = 0x3f; *(uint32_t*)0x20002034 = 0xa5; *(uint32_t*)0x20002038 = 7; *(uint32_t*)0x2000203c = 8; *(uint32_t*)0x20002040 = 3; *(uint32_t*)0x20002044 = 0x2e521d49; *(uint32_t*)0x20002048 = 1; *(uint32_t*)0x2000204c = 0xfffffff9; *(uint32_t*)0x20002050 = 0; *(uint32_t*)0x20002054 = 0; *(uint32_t*)0x20002058 = 3; *(uint32_t*)0x2000205c = 3; *(uint32_t*)0x20002060 = 0; *(uint32_t*)0x20002064 = 0xff; *(uint32_t*)0x20002068 = 6; *(uint32_t*)0x2000206c = 0x5d39; *(uint32_t*)0x20002070 = 9; *(uint32_t*)0x20002074 = 8; *(uint32_t*)0x20002078 = 2; *(uint32_t*)0x2000207c = 5; *(uint32_t*)0x20002080 = 9; *(uint16_t*)0x20002084 = 8; *(uint16_t*)0x20002086 = 5; *(uint32_t*)0x20002088 = 0x7ff; *(uint16_t*)0x2000208c = 8; *(uint16_t*)0x2000208e = 4; *(uint32_t*)0x20002090 = 0; *(uint16_t*)0x20002094 = 4; *(uint16_t*)0x20002096 = 6; *(uint16_t*)0x20002098 = 0xc; *(uint16_t*)0x2000209a = 7; *(uint32_t*)0x2000209c = 0; *(uint32_t*)0x200020a0 = 0; *(uint16_t*)0x200020a4 = 0xc; *(uint16_t*)0x200020a6 = 8; *(uint32_t*)0x200020a8 = 1; *(uint32_t*)0x200020ac = 2; *(uint16_t*)0x200020b0 = 0xa4; STORE_BY_BITMASK(uint16_t, , 0x200020b2, 5, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200020b3, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200020b3, 0, 7, 1); *(uint16_t*)0x200020b4 = 8; *(uint16_t*)0x200020b6 = 1; memcpy((void*)0x200020b8, "nat\000", 4); *(uint16_t*)0x200020bc = 0x7c; STORE_BY_BITMASK(uint16_t, , 0x200020be, 2, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200020bf, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200020bf, 1, 7, 1); *(uint16_t*)0x200020c0 = 0x28; *(uint16_t*)0x200020c2 = 1; *(uint32_t*)0x200020c4 = 9; *(uint32_t*)0x200020c8 = 0x8001; *(uint32_t*)0x200020cc = 5; *(uint32_t*)0x200020d0 = 8; *(uint32_t*)0x200020d4 = 0x200; *(uint32_t*)0x200020d8 = htobe32(0x64010102); *(uint8_t*)0x200020dc = 0xac; *(uint8_t*)0x200020dd = 0x14; *(uint8_t*)0x200020de = 0x14; *(uint8_t*)0x200020df = 0x2a; *(uint32_t*)0x200020e0 = htobe32(0xffffff00); *(uint32_t*)0x200020e4 = 1; *(uint16_t*)0x200020e8 = 0x28; *(uint16_t*)0x200020ea = 1; *(uint32_t*)0x200020ec = 9; *(uint32_t*)0x200020f0 = 9; *(uint32_t*)0x200020f4 = 0x20000000; *(uint32_t*)0x200020f8 = 4; *(uint32_t*)0x200020fc = 0x1000; *(uint32_t*)0x20002100 = htobe32(0xa010100); *(uint32_t*)0x20002104 = htobe32(0xe0000001); *(uint32_t*)0x20002108 = htobe32(0xff); *(uint32_t*)0x2000210c = 0; *(uint16_t*)0x20002110 = 0x28; *(uint16_t*)0x20002112 = 1; *(uint32_t*)0x20002114 = 0; *(uint32_t*)0x20002118 = 0x231; *(uint32_t*)0x2000211c = 0x10000000; *(uint32_t*)0x20002120 = 8; *(uint32_t*)0x20002124 = 8; *(uint32_t*)0x20002128 = htobe32(-1); *(uint8_t*)0x2000212c = 0xac; *(uint8_t*)0x2000212d = 0x14; *(uint8_t*)0x2000212e = 0x14; *(uint8_t*)0x2000212f = 0xbb; *(uint32_t*)0x20002130 = htobe32(0); *(uint32_t*)0x20002134 = 1; *(uint16_t*)0x20002138 = 4; *(uint16_t*)0x2000213a = 6; *(uint16_t*)0x2000213c = 0xc; *(uint16_t*)0x2000213e = 7; *(uint32_t*)0x20002140 = 1; *(uint32_t*)0x20002144 = 0; *(uint16_t*)0x20002148 = 0xc; *(uint16_t*)0x2000214a = 8; *(uint32_t*)0x2000214c = 3; *(uint32_t*)0x20002150 = 6; *(uint16_t*)0x20002154 = 0x2e18; *(uint16_t*)0x20002156 = 7; *(uint16_t*)0x20002158 = 0x3c; STORE_BY_BITMASK(uint16_t, , 0x2000215a, 0xa, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x2000215b, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x2000215b, 0, 7, 1); *(uint16_t*)0x2000215c = 0xb; *(uint16_t*)0x2000215e = 1; memcpy((void*)0x20002160, "skbmod\000", 7); *(uint16_t*)0x20002168 = 0x10; STORE_BY_BITMASK(uint16_t, , 0x2000216a, 2, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x2000216b, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x2000216b, 1, 7, 1); *(uint16_t*)0x2000216c = 0xa; *(uint16_t*)0x2000216e = 4; *(uint8_t*)0x20002170 = 0xaa; *(uint8_t*)0x20002171 = 0xaa; *(uint8_t*)0x20002172 = 0xaa; *(uint8_t*)0x20002173 = 0xaa; *(uint8_t*)0x20002174 = 0xaa; *(uint8_t*)0x20002175 = 0xaa; *(uint16_t*)0x20002178 = 4; *(uint16_t*)0x2000217a = 6; *(uint16_t*)0x2000217c = 0xc; *(uint16_t*)0x2000217e = 7; *(uint32_t*)0x20002180 = 0; *(uint32_t*)0x20002184 = 0; *(uint16_t*)0x20002188 = 0xc; *(uint16_t*)0x2000218a = 8; *(uint32_t*)0x2000218c = 0; *(uint32_t*)0x20002190 = 2; *(uint16_t*)0x20002194 = 0x118; STORE_BY_BITMASK(uint16_t, , 0x20002196, 6, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x20002197, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x20002197, 0, 7, 1); *(uint16_t*)0x20002198 = 7; *(uint16_t*)0x2000219a = 1; memcpy((void*)0x2000219c, "xt\000", 3); *(uint16_t*)0x200021a0 = 0xf0; STORE_BY_BITMASK(uint16_t, , 0x200021a2, 2, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200021a3, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200021a3, 1, 7, 1); *(uint16_t*)0x200021a4 = 8; *(uint16_t*)0x200021a6 = 3; *(uint32_t*)0x200021a8 = 0; *(uint16_t*)0x200021ac = 0x2a; *(uint16_t*)0x200021ae = 6; *(uint16_t*)0x200021b0 = 0xfffa; memcpy((void*)0x200021b2, "raw\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000", 32); *(uint8_t*)0x200021d2 = 7; *(uint16_t*)0x200021d4 = 2; *(uint16_t*)0x200021d8 = 8; *(uint16_t*)0x200021da = 3; *(uint32_t*)0x200021dc = 0xff; *(uint16_t*)0x200021e0 = 0x24; *(uint16_t*)0x200021e2 = 1; memcpy((void*)0x200021e4, "filter\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000", 32); *(uint16_t*)0x20002204 = 0x2a; *(uint16_t*)0x20002206 = 6; *(uint16_t*)0x20002208 = 2; memcpy((void*)0x2000220a, "mangle\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000", 32); *(uint8_t*)0x2000222a = 3; *(uint16_t*)0x2000222c = 0xa1; *(uint16_t*)0x20002230 = 8; *(uint16_t*)0x20002232 = 2; *(uint32_t*)0x20002234 = 2; *(uint16_t*)0x20002238 = 0x2a; *(uint16_t*)0x2000223a = 6; *(uint16_t*)0x2000223c = 4; memcpy((void*)0x2000223e, "nat\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000", 32); *(uint8_t*)0x2000225e = 3; *(uint16_t*)0x20002260 = 9; *(uint16_t*)0x20002264 = 0x2a; *(uint16_t*)0x20002266 = 6; *(uint16_t*)0x20002268 = 0x20; memcpy((void*)0x2000226a, "nat\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000", 32); *(uint8_t*)0x2000228a = 5; *(uint16_t*)0x2000228c = 0x401; *(uint16_t*)0x20002290 = 4; *(uint16_t*)0x20002292 = 6; *(uint16_t*)0x20002294 = 0xc; *(uint16_t*)0x20002296 = 7; *(uint32_t*)0x20002298 = 1; *(uint32_t*)0x2000229c = 1; *(uint16_t*)0x200022a0 = 0xc; *(uint16_t*)0x200022a2 = 8; *(uint32_t*)0x200022a4 = 1; *(uint32_t*)0x200022a8 = 2; *(uint16_t*)0x200022ac = 0x2c50; STORE_BY_BITMASK(uint16_t, , 0x200022ae, 7, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200022af, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200022af, 0, 7, 1); *(uint16_t*)0x200022b0 = 0xa; *(uint16_t*)0x200022b2 = 1; memcpy((void*)0x200022b4, "pedit\000", 6); *(uint16_t*)0x200022bc = 0x2c24; STORE_BY_BITMASK(uint16_t, , 0x200022be, 2, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200022bf, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200022bf, 1, 7, 1); *(uint16_t*)0x200022c0 = 0x88; STORE_BY_BITMASK(uint16_t, , 0x200022c2, 5, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200022c3, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200022c3, 1, 7, 1); *(uint16_t*)0x200022c4 = 0xc; STORE_BY_BITMASK(uint16_t, , 0x200022c6, 6, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200022c7, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200022c7, 1, 7, 1); *(uint16_t*)0x200022c8 = 6; *(uint16_t*)0x200022ca = 2; *(uint16_t*)0x200022cc = 1; *(uint16_t*)0x200022d0 = 0x2c; STORE_BY_BITMASK(uint16_t, , 0x200022d2, 6, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200022d3, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200022d3, 1, 7, 1); *(uint16_t*)0x200022d4 = 6; *(uint16_t*)0x200022d6 = 2; *(uint16_t*)0x200022d8 = 1; *(uint16_t*)0x200022dc = 6; *(uint16_t*)0x200022de = 1; *(uint16_t*)0x200022e0 = 1; *(uint16_t*)0x200022e4 = 6; *(uint16_t*)0x200022e6 = 2; *(uint16_t*)0x200022e8 = 1; *(uint16_t*)0x200022ec = 6; *(uint16_t*)0x200022ee = 1; *(uint16_t*)0x200022f0 = 4; *(uint16_t*)0x200022f4 = 6; *(uint16_t*)0x200022f6 = 2; *(uint16_t*)0x200022f8 = 1; *(uint16_t*)0x200022fc = 0xc; STORE_BY_BITMASK(uint16_t, , 0x200022fe, 6, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x200022ff, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x200022ff, 1, 7, 1); *(uint16_t*)0x20002300 = 6; *(uint16_t*)0x20002302 = 2; *(uint16_t*)0x20002304 = 1; *(uint16_t*)0x20002308 = 0xc; STORE_BY_BITMASK(uint16_t, , 0x2000230a, 6, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x2000230b, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x2000230b, 1, 7, 1); *(uint16_t*)0x2000230c = 6; *(uint16_t*)0x2000230e = 1; *(uint16_t*)0x20002310 = 3; *(uint16_t*)0x20002314 = 0xc; STORE_BY_BITMASK(uint16_t, , 0x20002316, 6, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x20002317, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x20002317, 1, 7, 1); *(uint16_t*)0x20002318 = 6; *(uint16_t*)0x2000231a = 2; *(uint16_t*)0x2000231c = 0; *(uint16_t*)0x20002320 = 0xc; STORE_BY_BITMASK(uint16_t, , 0x20002322, 6, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x20002323, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x20002323, 1, 7, 1); *(uint16_t*)0x20002324 = 6; *(uint16_t*)0x20002326 = 2; *(uint16_t*)0x20002328 = 0; *(uint16_t*)0x2000232c = 0x1c; STORE_BY_BITMASK(uint16_t, , 0x2000232e, 6, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x2000232f, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x2000232f, 1, 7, 1); *(uint16_t*)0x20002330 = 6; *(uint16_t*)0x20002332 = 2; *(uint16_t*)0x20002334 = 0; *(uint16_t*)0x20002338 = 6; *(uint16_t*)0x2000233a = 2; *(uint16_t*)0x2000233c = 1; *(uint16_t*)0x20002340 = 6; *(uint16_t*)0x20002342 = 1; *(uint16_t*)0x20002344 = 4; *(uint16_t*)0x20002348 = 0xeb0; *(uint16_t*)0x2000234a = 2; *(uint32_t*)0x2000234c = 0x1f; *(uint32_t*)0x20002350 = 0x81; *(uint32_t*)0x20002354 = 4; *(uint32_t*)0x20002358 = 1; *(uint32_t*)0x2000235c = 9; *(uint8_t*)0x20002360 = 0x7f; *(uint8_t*)0x20002361 = 0x6e; *(uint32_t*)0x20002364 = 0x1ff; *(uint32_t*)0x20002368 = 0x100; *(uint32_t*)0x2000236c = 0xc55; *(uint32_t*)0x20002370 = 0x7f; *(uint32_t*)0x20002374 = 1; *(uint32_t*)0x20002378 = 0x913; *(uint32_t*)0x2000237c = 0x2000000; *(uint32_t*)0x20002380 = 8; *(uint32_t*)0x20002384 = 9; *(uint32_t*)0x20002388 = 3; *(uint32_t*)0x2000238c = 0; *(uint32_t*)0x20002390 = 8; *(uint32_t*)0x20002394 = 4; *(uint32_t*)0x20002398 = 3; *(uint32_t*)0x2000239c = 0x10; *(uint32_t*)0x200023a0 = 6; *(uint32_t*)0x200023a4 = 0x401; *(uint32_t*)0x200023a8 = 0; *(uint32_t*)0x200023ac = 5; *(uint32_t*)0x200023b0 = 0xe3af; *(uint32_t*)0x200023b4 = 4; *(uint32_t*)0x200023b8 = 0x76; *(uint32_t*)0x200023bc = 0x22b6; *(uint32_t*)0x200023c0 = 2; *(uint32_t*)0x200023c4 = 1; *(uint32_t*)0x200023c8 = 2; *(uint32_t*)0x200023cc = 2; *(uint32_t*)0x200023d0 = 6; *(uint32_t*)0x200023d4 = 3; *(uint32_t*)0x200023d8 = 0x1283; *(uint32_t*)0x200023dc = 0x7f; *(uint32_t*)0x200023e0 = 9; *(uint32_t*)0x200023e4 = 1; *(uint32_t*)0x200023e8 = 0; *(uint32_t*)0x200023ec = -1; *(uint32_t*)0x200023f0 = 0x37dc; *(uint32_t*)0x200023f4 = 0x1f; *(uint32_t*)0x200023f8 = 1; *(uint32_t*)0x200023fc = 4; *(uint32_t*)0x20002400 = 1; *(uint32_t*)0x20002404 = 9; *(uint32_t*)0x20002408 = 1; *(uint32_t*)0x2000240c = 0x7a; *(uint32_t*)0x20002410 = 2; *(uint32_t*)0x20002414 = 7; *(uint32_t*)0x20002418 = 8; *(uint32_t*)0x2000241c = 3; *(uint32_t*)0x20002420 = 2; *(uint32_t*)0x20002424 = 0; *(uint32_t*)0x20002428 = 3; *(uint32_t*)0x2000242c = 8; *(uint32_t*)0x20002430 = 0x400; *(uint32_t*)0x20002434 = 0x8001; *(uint32_t*)0x20002438 = 0; *(uint32_t*)0x2000243c = 0x3f; *(uint32_t*)0x20002440 = 3; *(uint32_t*)0x20002444 = -1; *(uint32_t*)0x20002448 = 0; *(uint32_t*)0x2000244c = -1; *(uint32_t*)0x20002450 = 2; *(uint32_t*)0x20002454 = 7; *(uint32_t*)0x20002458 = 0xfff; *(uint32_t*)0x2000245c = 7; *(uint32_t*)0x20002460 = 0xe58; *(uint32_t*)0x20002464 = 0xfde; *(uint32_t*)0x20002468 = 1; *(uint32_t*)0x2000246c = 0; *(uint32_t*)0x20002470 = 0xb5e; *(uint32_t*)0x20002474 = 0x985; *(uint32_t*)0x20002478 = 0x78; *(uint32_t*)0x2000247c = 0x55f13d02; *(uint32_t*)0x20002480 = 0x31; *(uint32_t*)0x20002484 = 0; *(uint32_t*)0x20002488 = 0x35; *(uint32_t*)0x2000248c = 0xffffff75; *(uint32_t*)0x20002490 = 3; *(uint32_t*)0x20002494 = 0xd3; *(uint32_t*)0x20002498 = 0x3f; *(uint32_t*)0x2000249c = 6; *(uint32_t*)0x200024a0 = 7; *(uint32_t*)0x200024a4 = 0x40; *(uint32_t*)0x200024a8 = 7; *(uint32_t*)0x200024ac = 0x3ff; *(uint32_t*)0x200024b0 = 0xfffffff9; *(uint32_t*)0x200024b4 = 7; *(uint32_t*)0x200024b8 = 0x1a8; *(uint32_t*)0x200024bc = 0; *(uint32_t*)0x200024c0 = 0x10000; *(uint32_t*)0x200024c4 = 4; *(uint32_t*)0x200024c8 = 0; *(uint32_t*)0x200024cc = 6; *(uint32_t*)0x200024d0 = 3; *(uint32_t*)0x200024d4 = 9; *(uint32_t*)0x200024d8 = 2; *(uint32_t*)0x200024dc = 6; *(uint32_t*)0x200024e0 = 0xdf48; *(uint32_t*)0x200024e4 = 1; *(uint32_t*)0x200024e8 = 2; *(uint32_t*)0x200024ec = 4; *(uint32_t*)0x200024f0 = 5; *(uint32_t*)0x200024f4 = 0; *(uint32_t*)0x200024f8 = 0xd5; *(uint32_t*)0x200024fc = 2; *(uint32_t*)0x20002500 = 0x17; *(uint32_t*)0x20002504 = 6; *(uint32_t*)0x20002508 = 0xaa7; *(uint32_t*)0x2000250c = 0x1000; *(uint32_t*)0x20002510 = 0x80; *(uint32_t*)0x20002514 = 3; *(uint32_t*)0x20002518 = 0x7ff; *(uint32_t*)0x2000251c = 1; *(uint32_t*)0x20002520 = 0x1ff; *(uint32_t*)0x20002524 = 0x3fe; *(uint32_t*)0x20002528 = 6; *(uint32_t*)0x2000252c = 0x3ff; *(uint32_t*)0x20002530 = 0x80; *(uint32_t*)0x20002534 = 3; *(uint32_t*)0x20002538 = 4; *(uint32_t*)0x2000253c = 0x81; *(uint32_t*)0x20002540 = 0xfffffff9; *(uint32_t*)0x20002544 = 1; *(uint32_t*)0x20002548 = 7; *(uint32_t*)0x2000254c = 8; *(uint32_t*)0x20002550 = 0; *(uint32_t*)0x20002554 = 1; *(uint32_t*)0x20002558 = 0x20; *(uint32_t*)0x2000255c = 0; *(uint32_t*)0x20002560 = 0x101; *(uint32_t*)0x20002564 = 0x100; *(uint32_t*)0x20002568 = 5; *(uint32_t*)0x2000256c = 0x1ce7; *(uint32_t*)0x20002570 = 0x80000001; *(uint32_t*)0x20002574 = 4; *(uint32_t*)0x20002578 = 1; *(uint32_t*)0x2000257c = 3; *(uint32_t*)0x20002580 = 0x8000; *(uint32_t*)0x20002584 = 0xf6c; *(uint32_t*)0x20002588 = 0x6b4d; *(uint32_t*)0x2000258c = 1; *(uint32_t*)0x20002590 = 0x10000; *(uint32_t*)0x20002594 = 6; *(uint32_t*)0x20002598 = 0x80000001; *(uint32_t*)0x2000259c = 7; *(uint32_t*)0x200025a0 = 8; *(uint32_t*)0x200025a4 = 0xfffffff8; *(uint32_t*)0x200025a8 = 0x38; *(uint32_t*)0x200025ac = 0x10; *(uint32_t*)0x200025b0 = 0; *(uint32_t*)0x200025b4 = 0xffff; *(uint32_t*)0x200025b8 = 0x81; *(uint32_t*)0x200025bc = 0xfc16; *(uint32_t*)0x200025c0 = 6; *(uint32_t*)0x200025c4 = 4; *(uint32_t*)0x200025c8 = 0xffff; *(uint32_t*)0x200025cc = 0x7e3d; *(uint32_t*)0x200025d0 = 0xfffeffff; *(uint32_t*)0x200025d4 = 0x80; *(uint32_t*)0x200025d8 = 8; *(uint32_t*)0x200025dc = 4; *(uint32_t*)0x200025e0 = 2; *(uint32_t*)0x200025e4 = 0xe409; *(uint32_t*)0x200025e8 = 1; *(uint32_t*)0x200025ec = 0; *(uint32_t*)0x200025f0 = 3; *(uint32_t*)0x200025f4 = 0xe1; *(uint32_t*)0x200025f8 = 0x1f; *(uint32_t*)0x200025fc = 0x2000000; *(uint32_t*)0x20002600 = 0x501c7216; *(uint32_t*)0x20002604 = 0xb2; *(uint32_t*)0x20002608 = 0xffffff0e; *(uint32_t*)0x2000260c = 0x400; *(uint32_t*)0x20002610 = 0x3f; *(uint32_t*)0x20002614 = 0x80; *(uint32_t*)0x20002618 = 0; *(uint32_t*)0x2000261c = 0x10001; *(uint32_t*)0x20002620 = 0x21c9beb5; *(uint32_t*)0x20002624 = 5; *(uint32_t*)0x20002628 = 1; *(uint32_t*)0x2000262c = 0x800; *(uint32_t*)0x20002630 = 0x80000000; *(uint32_t*)0x20002634 = 8; *(uint32_t*)0x20002638 = 0x10001; *(uint32_t*)0x2000263c = 7; *(uint32_t*)0x20002640 = 0x7de6; *(uint32_t*)0x20002644 = 3; *(uint32_t*)0x20002648 = 0xd6df; *(uint32_t*)0x2000264c = 0x7ff; *(uint32_t*)0x20002650 = 0x8001; *(uint32_t*)0x20002654 = 7; *(uint32_t*)0x20002658 = 1; *(uint32_t*)0x2000265c = 0x1f; *(uint32_t*)0x20002660 = 0xcfd; *(uint32_t*)0x20002664 = 1; *(uint32_t*)0x20002668 = 0x8973; *(uint32_t*)0x2000266c = 1; *(uint32_t*)0x20002670 = 0; *(uint32_t*)0x20002674 = 9; *(uint32_t*)0x20002678 = 7; *(uint32_t*)0x2000267c = 7; *(uint32_t*)0x20002680 = 0xffff; *(uint32_t*)0x20002684 = 8; *(uint32_t*)0x20002688 = 0; *(uint32_t*)0x2000268c = 0xc6; *(uint32_t*)0x20002690 = 0x216; *(uint32_t*)0x20002694 = 0x80000001; *(uint32_t*)0x20002698 = 7; *(uint32_t*)0x2000269c = 0; *(uint32_t*)0x200026a0 = 9; *(uint32_t*)0x200026a4 = 5; *(uint32_t*)0x200026a8 = -1; *(uint32_t*)0x200026ac = 4; *(uint32_t*)0x200026b0 = 0x200; *(uint32_t*)0x200026b4 = 5; *(uint32_t*)0x200026b8 = 3; *(uint32_t*)0x200026bc = 8; *(uint32_t*)0x200026c0 = 0x400a; *(uint32_t*)0x200026c4 = 0x80000000; *(uint32_t*)0x200026c8 = 0x3f; *(uint32_t*)0x200026cc = 0x1f; *(uint32_t*)0x200026d0 = 5; *(uint32_t*)0x200026d4 = -1; *(uint32_t*)0x200026d8 = 5; *(uint32_t*)0x200026dc = 0x450; *(uint32_t*)0x200026e0 = 0; *(uint32_t*)0x200026e4 = 9; *(uint32_t*)0x200026e8 = 0x37; *(uint32_t*)0x200026ec = 0; *(uint32_t*)0x200026f0 = 4; *(uint32_t*)0x200026f4 = 4; *(uint32_t*)0x200026f8 = 0xb32d; *(uint32_t*)0x200026fc = 0x100; *(uint32_t*)0x20002700 = 0x7ff; *(uint32_t*)0x20002704 = 5; *(uint32_t*)0x20002708 = 5; *(uint32_t*)0x2000270c = 0; *(uint32_t*)0x20002710 = 7; *(uint32_t*)0x20002714 = 0x7ff; *(uint32_t*)0x20002718 = 8; *(uint32_t*)0x2000271c = 0; *(uint32_t*)0x20002720 = -1; *(uint32_t*)0x20002724 = 9; *(uint32_t*)0x20002728 = 4; *(uint32_t*)0x2000272c = 5; *(uint32_t*)0x20002730 = 3; *(uint32_t*)0x20002734 = 0xb5; *(uint32_t*)0x20002738 = 0x20; *(uint32_t*)0x2000273c = 0x80000000; *(uint32_t*)0x20002740 = 0x43; *(uint32_t*)0x20002744 = 0x200; *(uint32_t*)0x20002748 = 0x845c; *(uint32_t*)0x2000274c = 0x5b0; *(uint32_t*)0x20002750 = 1; *(uint32_t*)0x20002754 = 6; *(uint32_t*)0x20002758 = 0x10000; *(uint32_t*)0x2000275c = 2; *(uint32_t*)0x20002760 = 0x7fffffff; *(uint32_t*)0x20002764 = 0; *(uint32_t*)0x20002768 = 9; *(uint32_t*)0x2000276c = 0xc8c; *(uint32_t*)0x20002770 = 4; *(uint32_t*)0x20002774 = 0x34; *(uint32_t*)0x20002778 = 0x33; *(uint32_t*)0x2000277c = 0x2ac3; *(uint32_t*)0x20002780 = 0x80000000; *(uint32_t*)0x20002784 = 9; *(uint32_t*)0x20002788 = 1; *(uint32_t*)0x2000278c = 7; *(uint32_t*)0x20002790 = 6; *(uint32_t*)0x20002794 = 0x200; *(uint32_t*)0x20002798 = 8; *(uint32_t*)0x2000279c = 7; *(uint32_t*)0x200027a0 = 0; *(uint32_t*)0x200027a4 = 0x80; *(uint32_t*)0x200027a8 = 2; *(uint32_t*)0x200027ac = 4; *(uint32_t*)0x200027b0 = 1; *(uint32_t*)0x200027b4 = 2; *(uint32_t*)0x200027b8 = 0x7fffffff; *(uint32_t*)0x200027bc = 0x429; *(uint32_t*)0x200027c0 = 0x1f; *(uint32_t*)0x200027c4 = 0; *(uint32_t*)0x200027c8 = 0x32e; *(uint32_t*)0x200027cc = 5; *(uint32_t*)0x200027d0 = 5; *(uint32_t*)0x200027d4 = 0xd508; *(uint32_t*)0x200027d8 = 0x17; *(uint32_t*)0x200027dc = 0xae25; *(uint32_t*)0x200027e0 = 0x10001; *(uint32_t*)0x200027e4 = 1; *(uint32_t*)0x200027e8 = 1; *(uint32_t*)0x200027ec = 7; *(uint32_t*)0x200027f0 = 0xc1; *(uint32_t*)0x200027f4 = 0; *(uint32_t*)0x200027f8 = 0x46; *(uint32_t*)0x200027fc = 0; *(uint32_t*)0x20002800 = 0x400; *(uint32_t*)0x20002804 = 0x8001; *(uint32_t*)0x20002808 = 0x80000000; *(uint32_t*)0x2000280c = 0x40100000; *(uint32_t*)0x20002810 = 0x81; *(uint32_t*)0x20002814 = 3; *(uint32_t*)0x20002818 = 0x8001; *(uint32_t*)0x2000281c = 7; *(uint32_t*)0x20002820 = 0xd0; *(uint32_t*)0x20002824 = 0x1000; *(uint32_t*)0x20002828 = 7; *(uint32_t*)0x2000282c = 0x40; *(uint32_t*)0x20002830 = 6; *(uint32_t*)0x20002834 = 0x8001; *(uint32_t*)0x20002838 = 0x49; *(uint32_t*)0x2000283c = 1; *(uint32_t*)0x20002840 = 6; *(uint32_t*)0x20002844 = 0x3ff; *(uint32_t*)0x20002848 = 6; *(uint32_t*)0x2000284c = 2; *(uint32_t*)0x20002850 = 0x71; *(uint32_t*)0x20002854 = 0x40; *(uint32_t*)0x20002858 = 0xc43; *(uint32_t*)0x2000285c = 0x40; *(uint32_t*)0x20002860 = 4; *(uint32_t*)0x20002864 = 1; *(uint32_t*)0x20002868 = 0; *(uint32_t*)0x2000286c = 0; *(uint32_t*)0x20002870 = 0; *(uint32_t*)0x20002874 = 9; *(uint32_t*)0x20002878 = 2; *(uint32_t*)0x2000287c = 6; *(uint32_t*)0x20002880 = 0x20; *(uint32_t*)0x20002884 = 0xfffffffa; *(uint32_t*)0x20002888 = 6; *(uint32_t*)0x2000288c = 0xfffffffb; *(uint32_t*)0x20002890 = 0x80000000; *(uint32_t*)0x20002894 = 0x9000; *(uint32_t*)0x20002898 = 6; *(uint32_t*)0x2000289c = 0x1ff; *(uint32_t*)0x200028a0 = 2; *(uint32_t*)0x200028a4 = 7; *(uint32_t*)0x200028a8 = 6; *(uint32_t*)0x200028ac = 3; *(uint32_t*)0x200028b0 = 0xfffffffc; *(uint32_t*)0x200028b4 = 0; *(uint32_t*)0x200028b8 = 0x1f; *(uint32_t*)0x200028bc = 1; *(uint32_t*)0x200028c0 = 6; *(uint32_t*)0x200028c4 = 0xb6eacf0; *(uint32_t*)0x200028c8 = 0xfffffff9; *(uint32_t*)0x200028cc = 6; *(uint32_t*)0x200028d0 = 9; *(uint32_t*)0x200028d4 = 0x62; *(uint32_t*)0x200028d8 = 1; *(uint32_t*)0x200028dc = 0x20; *(uint32_t*)0x200028e0 = 0x100; *(uint32_t*)0x200028e4 = 0x5e5; *(uint32_t*)0x200028e8 = 6; *(uint32_t*)0x200028ec = 6; *(uint32_t*)0x200028f0 = 0xfffffffd; *(uint32_t*)0x200028f4 = 0; *(uint32_t*)0x200028f8 = 4; *(uint32_t*)0x200028fc = 7; *(uint32_t*)0x20002900 = 0; *(uint32_t*)0x20002904 = 0xff; *(uint32_t*)0x20002908 = 1; *(uint32_t*)0x2000290c = 0; *(uint32_t*)0x20002910 = 0x80000000; *(uint32_t*)0x20002914 = 5; *(uint32_t*)0x20002918 = 7; *(uint32_t*)0x2000291c = 9; *(uint32_t*)0x20002920 = 0x200; *(uint32_t*)0x20002924 = 7; *(uint32_t*)0x20002928 = 0x2000000; *(uint32_t*)0x2000292c = 0xfffffffa; *(uint32_t*)0x20002930 = 0x80000000; *(uint32_t*)0x20002934 = 8; *(uint32_t*)0x20002938 = 8; *(uint32_t*)0x2000293c = 8; *(uint32_t*)0x20002940 = 6; *(uint32_t*)0x20002944 = 0xff; *(uint32_t*)0x20002948 = 4; *(uint32_t*)0x2000294c = 0x3803401b; *(uint32_t*)0x20002950 = 0; *(uint32_t*)0x20002954 = 0xba6c; *(uint32_t*)0x20002958 = 2; *(uint32_t*)0x2000295c = 3; *(uint32_t*)0x20002960 = 0x7f; *(uint32_t*)0x20002964 = 0xfffff001; *(uint32_t*)0x20002968 = 1; *(uint32_t*)0x2000296c = 1; *(uint32_t*)0x20002970 = 2; *(uint32_t*)0x20002974 = 0x588b; *(uint32_t*)0x20002978 = 5; *(uint32_t*)0x2000297c = 3; *(uint32_t*)0x20002980 = 0; *(uint32_t*)0x20002984 = 2; *(uint32_t*)0x20002988 = 2; *(uint32_t*)0x2000298c = 5; *(uint32_t*)0x20002990 = 0; *(uint32_t*)0x20002994 = 0x80000001; *(uint32_t*)0x20002998 = 8; *(uint32_t*)0x2000299c = 5; *(uint32_t*)0x200029a0 = 0x11; *(uint32_t*)0x200029a4 = 0xfffff4a9; *(uint32_t*)0x200029a8 = 2; *(uint32_t*)0x200029ac = 2; *(uint32_t*)0x200029b0 = 5; *(uint32_t*)0x200029b4 = 2; *(uint32_t*)0x200029b8 = 0xffff; *(uint32_t*)0x200029bc = 0x7ff; *(uint32_t*)0x200029c0 = 0x2400; *(uint32_t*)0x200029c4 = 1; *(uint32_t*)0x200029c8 = 6; *(uint32_t*)0x200029cc = 7; *(uint32_t*)0x200029d0 = 9; *(uint32_t*)0x200029d4 = 5; *(uint32_t*)0x200029d8 = 1; *(uint32_t*)0x200029dc = 0; *(uint32_t*)0x200029e0 = 1; *(uint32_t*)0x200029e4 = 0x60000000; *(uint32_t*)0x200029e8 = 9; *(uint32_t*)0x200029ec = 0; *(uint32_t*)0x200029f0 = 6; *(uint32_t*)0x200029f4 = 0xdf50; *(uint32_t*)0x200029f8 = 7; *(uint32_t*)0x200029fc = 5; *(uint32_t*)0x20002a00 = 0x6d; *(uint32_t*)0x20002a04 = 0xfffffffe; *(uint32_t*)0x20002a08 = 0x7ff; *(uint32_t*)0x20002a0c = 6; *(uint32_t*)0x20002a10 = 0x8001; *(uint32_t*)0x20002a14 = 0x8000; *(uint32_t*)0x20002a18 = 1; *(uint32_t*)0x20002a1c = 0x8949; *(uint32_t*)0x20002a20 = 2; *(uint32_t*)0x20002a24 = 0x8001; *(uint32_t*)0x20002a28 = 0x10000; *(uint32_t*)0x20002a2c = 0x1f; *(uint32_t*)0x20002a30 = 8; *(uint32_t*)0x20002a34 = 1; *(uint32_t*)0x20002a38 = 5; *(uint32_t*)0x20002a3c = 0x40; *(uint32_t*)0x20002a40 = 0xff; *(uint32_t*)0x20002a44 = 4; *(uint32_t*)0x20002a48 = 0xc3; *(uint32_t*)0x20002a4c = 3; *(uint32_t*)0x20002a50 = 0x8001; *(uint32_t*)0x20002a54 = 6; *(uint32_t*)0x20002a58 = 0xfffffffd; *(uint32_t*)0x20002a5c = 0xf10; *(uint32_t*)0x20002a60 = 0x1ff; *(uint32_t*)0x20002a64 = 0x3177; *(uint32_t*)0x20002a68 = 0x10000; *(uint32_t*)0x20002a6c = 4; *(uint32_t*)0x20002a70 = 3; *(uint32_t*)0x20002a74 = 0x8000; *(uint32_t*)0x20002a78 = 0x7fffffff; *(uint32_t*)0x20002a7c = 0; *(uint32_t*)0x20002a80 = 5; *(uint32_t*)0x20002a84 = 0x1ff; *(uint32_t*)0x20002a88 = 0; *(uint32_t*)0x20002a8c = 0xfb; *(uint32_t*)0x20002a90 = 1; *(uint32_t*)0x20002a94 = 5; *(uint32_t*)0x20002a98 = 0xc3e; *(uint32_t*)0x20002a9c = 0x268000; *(uint32_t*)0x20002aa0 = 0x81; *(uint32_t*)0x20002aa4 = 0x1f; *(uint32_t*)0x20002aa8 = 5; *(uint32_t*)0x20002aac = 0; *(uint32_t*)0x20002ab0 = 0x9dd; *(uint32_t*)0x20002ab4 = 1; *(uint32_t*)0x20002ab8 = 0xffffffc1; *(uint32_t*)0x20002abc = 6; *(uint32_t*)0x20002ac0 = 0x9c; *(uint32_t*)0x20002ac4 = 0x8d4a; *(uint32_t*)0x20002ac8 = 7; *(uint32_t*)0x20002acc = 5; *(uint32_t*)0x20002ad0 = 0x63; *(uint32_t*)0x20002ad4 = 8; *(uint32_t*)0x20002ad8 = 0x14; *(uint32_t*)0x20002adc = 0x7f; *(uint32_t*)0x20002ae0 = 0xcc; *(uint32_t*)0x20002ae4 = 2; *(uint32_t*)0x20002ae8 = 2; *(uint32_t*)0x20002aec = 0xf3; *(uint32_t*)0x20002af0 = 0x1000; *(uint32_t*)0x20002af4 = 0xfffffe01; *(uint32_t*)0x20002af8 = 0xf9; *(uint32_t*)0x20002afc = 0; *(uint32_t*)0x20002b00 = 0xaa9; *(uint32_t*)0x20002b04 = 5; *(uint32_t*)0x20002b08 = 0x80000000; *(uint32_t*)0x20002b0c = 0x1000; *(uint32_t*)0x20002b10 = 4; *(uint32_t*)0x20002b14 = 0x150; *(uint32_t*)0x20002b18 = 0x80000000; *(uint32_t*)0x20002b1c = 7; *(uint32_t*)0x20002b20 = 9; *(uint32_t*)0x20002b24 = 0x3f; *(uint32_t*)0x20002b28 = 7; *(uint32_t*)0x20002b2c = 4; *(uint32_t*)0x20002b30 = 0xe0; *(uint32_t*)0x20002b34 = 0xfffffff9; *(uint32_t*)0x20002b38 = -1; *(uint32_t*)0x20002b3c = 8; *(uint32_t*)0x20002b40 = 1; *(uint32_t*)0x20002b44 = 0xfff; *(uint32_t*)0x20002b48 = 6; *(uint32_t*)0x20002b4c = 0x1000; *(uint32_t*)0x20002b50 = 1; *(uint32_t*)0x20002b54 = 2; *(uint32_t*)0x20002b58 = 0x400; *(uint32_t*)0x20002b5c = 5; *(uint32_t*)0x20002b60 = 0x8000; *(uint32_t*)0x20002b64 = 6; *(uint32_t*)0x20002b68 = 6; *(uint32_t*)0x20002b6c = 0xc70b; *(uint32_t*)0x20002b70 = 0x7fffffff; *(uint32_t*)0x20002b74 = 3; *(uint32_t*)0x20002b78 = 5; *(uint32_t*)0x20002b7c = 4; *(uint32_t*)0x20002b80 = 0; *(uint32_t*)0x20002b84 = 7; *(uint32_t*)0x20002b88 = 0x40; *(uint32_t*)0x20002b8c = 0x101; *(uint32_t*)0x20002b90 = 8; *(uint32_t*)0x20002b94 = 1; *(uint32_t*)0x20002b98 = 0; *(uint32_t*)0x20002b9c = 0x80000001; *(uint32_t*)0x20002ba0 = -1; *(uint32_t*)0x20002ba4 = 3; *(uint32_t*)0x20002ba8 = 0; *(uint32_t*)0x20002bac = 4; *(uint32_t*)0x20002bb0 = 1; *(uint32_t*)0x20002bb4 = 0; *(uint32_t*)0x20002bb8 = 5; *(uint32_t*)0x20002bbc = 0x81; *(uint32_t*)0x20002bc0 = 6; *(uint32_t*)0x20002bc4 = 3; *(uint32_t*)0x20002bc8 = 1; *(uint32_t*)0x20002bcc = 9; *(uint32_t*)0x20002bd0 = 8; *(uint32_t*)0x20002bd4 = 0x1f; *(uint32_t*)0x20002bd8 = 0xffffb978; *(uint32_t*)0x20002bdc = 5; *(uint32_t*)0x20002be0 = 5; *(uint32_t*)0x20002be4 = 0xfffffff8; *(uint32_t*)0x20002be8 = 1; *(uint32_t*)0x20002bec = 0; *(uint32_t*)0x20002bf0 = 3; *(uint32_t*)0x20002bf4 = 6; *(uint32_t*)0x20002bf8 = 0; *(uint32_t*)0x20002bfc = 4; *(uint32_t*)0x20002c00 = 0x985; *(uint32_t*)0x20002c04 = 1; *(uint32_t*)0x20002c08 = 7; *(uint32_t*)0x20002c0c = 9; *(uint32_t*)0x20002c10 = 0x80000000; *(uint32_t*)0x20002c14 = 0x3f; *(uint32_t*)0x20002c18 = 8; *(uint32_t*)0x20002c1c = 9; *(uint32_t*)0x20002c20 = 0x40; *(uint32_t*)0x20002c24 = 0; *(uint32_t*)0x20002c28 = 0x5c8039c5; *(uint32_t*)0x20002c2c = 7; *(uint32_t*)0x20002c30 = 0x40; *(uint32_t*)0x20002c34 = 0x3f17; *(uint32_t*)0x20002c38 = 9; *(uint32_t*)0x20002c3c = 0xee; *(uint32_t*)0x20002c40 = 0x7fffffff; *(uint32_t*)0x20002c44 = 0x401; *(uint32_t*)0x20002c48 = 0xaf77; *(uint32_t*)0x20002c4c = 1; *(uint32_t*)0x20002c50 = 0xfffffffb; *(uint32_t*)0x20002c54 = 0x1d00; *(uint32_t*)0x20002c58 = 3; *(uint32_t*)0x20002c5c = 0x100; *(uint32_t*)0x20002c60 = 0x8000; *(uint32_t*)0x20002c64 = 0x477c; *(uint32_t*)0x20002c68 = 0x4737d241; *(uint32_t*)0x20002c6c = 5; *(uint32_t*)0x20002c70 = 0xff; *(uint32_t*)0x20002c74 = 6; *(uint32_t*)0x20002c78 = 0x8001; *(uint32_t*)0x20002c7c = 0x20; *(uint32_t*)0x20002c80 = 8; *(uint32_t*)0x20002c84 = 0x1ff; *(uint32_t*)0x20002c88 = 0xa037; *(uint32_t*)0x20002c8c = 0x7f; *(uint32_t*)0x20002c90 = 0x5a0; *(uint32_t*)0x20002c94 = 0x101; *(uint32_t*)0x20002c98 = 0x400; *(uint32_t*)0x20002c9c = 0xb8a; *(uint32_t*)0x20002ca0 = 4; *(uint32_t*)0x20002ca4 = 8; *(uint32_t*)0x20002ca8 = 9; *(uint32_t*)0x20002cac = 0xfffff0af; *(uint32_t*)0x20002cb0 = 0x8001; *(uint32_t*)0x20002cb4 = 0x1a1; *(uint32_t*)0x20002cb8 = 7; *(uint32_t*)0x20002cbc = 0x6cfe; *(uint32_t*)0x20002cc0 = -1; *(uint32_t*)0x20002cc4 = 0x76; *(uint32_t*)0x20002cc8 = 0xfff; *(uint32_t*)0x20002ccc = 5; *(uint32_t*)0x20002cd0 = 0x800; *(uint32_t*)0x20002cd4 = 0x54d; *(uint32_t*)0x20002cd8 = 0xc663; *(uint32_t*)0x20002cdc = 4; *(uint32_t*)0x20002ce0 = 6; *(uint32_t*)0x20002ce4 = 0x13; *(uint32_t*)0x20002ce8 = 3; *(uint32_t*)0x20002cec = 0xfff; *(uint32_t*)0x20002cf0 = 0xfffffffa; *(uint32_t*)0x20002cf4 = 0x400; *(uint32_t*)0x20002cf8 = 0xfffeffff; *(uint32_t*)0x20002cfc = 4; *(uint32_t*)0x20002d00 = 8; *(uint32_t*)0x20002d04 = 9; *(uint32_t*)0x20002d08 = 8; *(uint32_t*)0x20002d0c = 0xfffffff9; *(uint32_t*)0x20002d10 = 9; *(uint32_t*)0x20002d14 = 0x459a; *(uint32_t*)0x20002d18 = 6; *(uint32_t*)0x20002d1c = 8; *(uint32_t*)0x20002d20 = 0x10001; *(uint32_t*)0x20002d24 = 8; *(uint32_t*)0x20002d28 = 6; *(uint32_t*)0x20002d2c = 0xfffffffa; *(uint32_t*)0x20002d30 = 8; *(uint32_t*)0x20002d34 = 5; *(uint32_t*)0x20002d38 = 0xd7; *(uint32_t*)0x20002d3c = 0x8000; *(uint32_t*)0x20002d40 = 0x7fff; *(uint32_t*)0x20002d44 = 5; *(uint32_t*)0x20002d48 = 4; *(uint32_t*)0x20002d4c = 9; *(uint32_t*)0x20002d50 = 1; *(uint32_t*)0x20002d54 = 7; *(uint32_t*)0x20002d58 = 0; *(uint32_t*)0x20002d5c = 0x7fffffff; *(uint32_t*)0x20002d60 = 0x800; *(uint32_t*)0x20002d64 = 8; *(uint32_t*)0x20002d68 = 7; *(uint32_t*)0x20002d6c = 0xbf; *(uint32_t*)0x20002d70 = 3; *(uint32_t*)0x20002d74 = 4; *(uint32_t*)0x20002d78 = 3; *(uint32_t*)0x20002d7c = 5; *(uint32_t*)0x20002d80 = 5; *(uint32_t*)0x20002d84 = 0x1ff; *(uint32_t*)0x20002d88 = 0x101; *(uint32_t*)0x20002d8c = 0x99b1; *(uint32_t*)0x20002d90 = 0x401; *(uint32_t*)0x20002d94 = 0xfffffff9; *(uint32_t*)0x20002d98 = 7; *(uint32_t*)0x20002d9c = 4; *(uint32_t*)0x20002da0 = 0xa7bd; *(uint32_t*)0x20002da4 = 1; *(uint32_t*)0x20002da8 = 2; *(uint32_t*)0x20002dac = 2; *(uint32_t*)0x20002db0 = 0; *(uint32_t*)0x20002db4 = 7; *(uint32_t*)0x20002db8 = 9; *(uint32_t*)0x20002dbc = 0x40; *(uint32_t*)0x20002dc0 = 0x80000001; *(uint32_t*)0x20002dc4 = 0xffff; *(uint32_t*)0x20002dc8 = 2; *(uint32_t*)0x20002dcc = 1; *(uint32_t*)0x20002dd0 = 5; *(uint32_t*)0x20002dd4 = 6; *(uint32_t*)0x20002dd8 = 5; *(uint32_t*)0x20002ddc = 0; *(uint32_t*)0x20002de0 = 1; *(uint32_t*)0x20002de4 = 0x50; *(uint32_t*)0x20002de8 = 0x100; *(uint32_t*)0x20002dec = 1; *(uint32_t*)0x20002df0 = 9; *(uint32_t*)0x20002df4 = 0xe2; *(uint32_t*)0x20002df8 = 8; *(uint32_t*)0x20002dfc = 0; *(uint32_t*)0x20002e00 = 5; *(uint32_t*)0x20002e04 = 0x50; *(uint32_t*)0x20002e08 = 8; *(uint32_t*)0x20002e0c = 8; *(uint32_t*)0x20002e10 = 9; *(uint32_t*)0x20002e14 = 6; *(uint32_t*)0x20002e18 = 0; *(uint32_t*)0x20002e1c = 0x774; *(uint32_t*)0x20002e20 = 6; *(uint32_t*)0x20002e24 = 2; *(uint32_t*)0x20002e28 = 4; *(uint32_t*)0x20002e2c = 3; *(uint32_t*)0x20002e30 = 7; *(uint32_t*)0x20002e34 = 0x7ff; *(uint32_t*)0x20002e38 = 0x1fffe0; *(uint32_t*)0x20002e3c = 1; *(uint32_t*)0x20002e40 = 0xb56; *(uint32_t*)0x20002e44 = 1; *(uint32_t*)0x20002e48 = 0x10001; *(uint32_t*)0x20002e4c = 0xffffe2e3; *(uint32_t*)0x20002e50 = 9; *(uint32_t*)0x20002e54 = 2; *(uint32_t*)0x20002e58 = 1; *(uint32_t*)0x20002e5c = 0xfa7; *(uint32_t*)0x20002e60 = 0; *(uint32_t*)0x20002e64 = 8; *(uint32_t*)0x20002e68 = 4; *(uint32_t*)0x20002e6c = 1; *(uint32_t*)0x20002e70 = 6; *(uint32_t*)0x20002e74 = 6; *(uint32_t*)0x20002e78 = 0x1ff; *(uint32_t*)0x20002e7c = 1; *(uint32_t*)0x20002e80 = 0xe235; *(uint32_t*)0x20002e84 = 9; *(uint32_t*)0x20002e88 = 9; *(uint32_t*)0x20002e8c = 2; *(uint32_t*)0x20002e90 = 0xfff; *(uint32_t*)0x20002e94 = 3; *(uint32_t*)0x20002e98 = 0; *(uint32_t*)0x20002e9c = 0x100; *(uint32_t*)0x20002ea0 = 5; *(uint32_t*)0x20002ea4 = 0x101; *(uint32_t*)0x20002ea8 = 2; *(uint32_t*)0x20002eac = 9; *(uint32_t*)0x20002eb0 = 9; *(uint32_t*)0x20002eb4 = 0; *(uint32_t*)0x20002eb8 = 0x7ff; *(uint32_t*)0x20002ebc = 0x20; *(uint32_t*)0x20002ec0 = 0; *(uint32_t*)0x20002ec4 = 0x7f; *(uint32_t*)0x20002ec8 = 0xff; *(uint32_t*)0x20002ecc = 0; *(uint32_t*)0x20002ed0 = 3; *(uint32_t*)0x20002ed4 = 0x6a766620; *(uint32_t*)0x20002ed8 = 0; *(uint32_t*)0x20002edc = 0x20; *(uint32_t*)0x20002ee0 = 1; *(uint32_t*)0x20002ee4 = 0; *(uint32_t*)0x20002ee8 = 6; *(uint32_t*)0x20002eec = 0; *(uint32_t*)0x20002ef0 = 9; *(uint32_t*)0x20002ef4 = 0xda; *(uint32_t*)0x20002ef8 = 4; *(uint32_t*)0x20002efc = -1; *(uint32_t*)0x20002f00 = 0x10001; *(uint32_t*)0x20002f04 = 0x101; *(uint32_t*)0x20002f08 = 0; *(uint32_t*)0x20002f0c = 8; *(uint32_t*)0x20002f10 = 7; *(uint32_t*)0x20002f14 = 0x7f; *(uint32_t*)0x20002f18 = 8; *(uint32_t*)0x20002f1c = 2; *(uint32_t*)0x20002f20 = 0x78; *(uint32_t*)0x20002f24 = 4; *(uint32_t*)0x20002f28 = 9; *(uint32_t*)0x20002f2c = 1; *(uint32_t*)0x20002f30 = 2; *(uint32_t*)0x20002f34 = 0x2a8; *(uint32_t*)0x20002f38 = 9; *(uint32_t*)0x20002f3c = 0x81; *(uint32_t*)0x20002f40 = 0x7ff8000; *(uint32_t*)0x20002f44 = 4; *(uint32_t*)0x20002f48 = 5; *(uint32_t*)0x20002f4c = 4; *(uint32_t*)0x20002f50 = 0x1f; *(uint32_t*)0x20002f54 = 5; *(uint32_t*)0x20002f58 = 0; *(uint32_t*)0x20002f5c = 3; *(uint32_t*)0x20002f60 = 0x84; *(uint32_t*)0x20002f64 = 0x1000; *(uint32_t*)0x20002f68 = 2; *(uint32_t*)0x20002f6c = 1; *(uint32_t*)0x20002f70 = 0; *(uint32_t*)0x20002f74 = 6; *(uint32_t*)0x20002f78 = 0xfffffff7; *(uint32_t*)0x20002f7c = 1; *(uint32_t*)0x20002f80 = 6; *(uint32_t*)0x20002f84 = 7; *(uint32_t*)0x20002f88 = 0x6432; *(uint32_t*)0x20002f8c = 9; *(uint32_t*)0x20002f90 = 6; *(uint32_t*)0x20002f94 = 0xa; *(uint32_t*)0x20002f98 = 0x7f; *(uint32_t*)0x20002f9c = 7; *(uint32_t*)0x20002fa0 = 0x6336cb8b; *(uint32_t*)0x20002fa4 = 3; *(uint32_t*)0x20002fa8 = 0xf0f; *(uint32_t*)0x20002fac = 9; *(uint32_t*)0x20002fb0 = 0xff; *(uint32_t*)0x20002fb4 = 0x17b0; *(uint32_t*)0x20002fb8 = 7; *(uint32_t*)0x20002fbc = 0xbb; *(uint32_t*)0x20002fc0 = 0x8000; *(uint32_t*)0x20002fc4 = 0x582d; *(uint32_t*)0x20002fc8 = 0x80000000; *(uint32_t*)0x20002fcc = 0xfffffff7; *(uint32_t*)0x20002fd0 = 8; *(uint32_t*)0x20002fd4 = 0; *(uint32_t*)0x20002fd8 = 0x600; *(uint32_t*)0x20002fdc = 0; *(uint32_t*)0x20002fe0 = 7; *(uint32_t*)0x20002fe4 = 0x29e; *(uint32_t*)0x20002fe8 = 1; *(uint32_t*)0x20002fec = 0xfffffff7; *(uint32_t*)0x20002ff0 = 5; *(uint16_t*)0x20002ff4 = 5; *(uint16_t*)0x20002ff6 = 0; *(uint16_t*)0x20002ff8 = 2; *(uint16_t*)0x20002ffa = 1; *(uint16_t*)0x20002ffc = 0; *(uint16_t*)0x20002ffe = 1; *(uint16_t*)0x20003000 = 5; *(uint16_t*)0x20003002 = 1; *(uint16_t*)0x20003004 = 1; *(uint16_t*)0x20003006 = 1; *(uint16_t*)0x20003008 = 2; *(uint16_t*)0x2000300a = 1; *(uint16_t*)0x2000300c = 4; *(uint16_t*)0x2000300e = 0; *(uint16_t*)0x20003010 = 5; *(uint16_t*)0x20003012 = 1; *(uint16_t*)0x20003014 = 3; *(uint16_t*)0x20003016 = 1; *(uint16_t*)0x20003018 = 4; *(uint16_t*)0x2000301a = 1; *(uint16_t*)0x2000301c = 0; *(uint16_t*)0x2000301e = 0; *(uint16_t*)0x20003020 = 3; *(uint16_t*)0x20003022 = 1; *(uint16_t*)0x20003024 = 4; *(uint16_t*)0x20003026 = 0; *(uint16_t*)0x20003028 = 1; *(uint16_t*)0x2000302a = 0; *(uint16_t*)0x2000302c = 2; *(uint16_t*)0x2000302e = 1; *(uint16_t*)0x20003030 = 5; *(uint16_t*)0x20003032 = 1; *(uint16_t*)0x20003034 = 1; *(uint16_t*)0x20003036 = 3; *(uint16_t*)0x20003038 = 1; *(uint16_t*)0x2000303a = 1; *(uint16_t*)0x2000303c = 3; *(uint16_t*)0x2000303e = 0; *(uint16_t*)0x20003040 = 1; *(uint16_t*)0x20003042 = 0; *(uint16_t*)0x20003044 = 4; *(uint16_t*)0x20003046 = 1; *(uint16_t*)0x20003048 = 5; *(uint16_t*)0x2000304a = 0; *(uint16_t*)0x2000304c = 1; *(uint16_t*)0x2000304e = 0; *(uint16_t*)0x20003050 = 1; *(uint16_t*)0x20003052 = 0; *(uint16_t*)0x20003054 = 3; *(uint16_t*)0x20003056 = 1; *(uint16_t*)0x20003058 = 2; *(uint16_t*)0x2000305a = 1; *(uint16_t*)0x2000305c = 5; *(uint16_t*)0x2000305e = 0; *(uint16_t*)0x20003060 = 1; *(uint16_t*)0x20003062 = 1; *(uint16_t*)0x20003064 = 4; *(uint16_t*)0x20003066 = 1; *(uint16_t*)0x20003068 = 3; *(uint16_t*)0x2000306a = 1; *(uint16_t*)0x2000306c = 2; *(uint16_t*)0x2000306e = 0; *(uint16_t*)0x20003070 = 0; *(uint16_t*)0x20003072 = 0; *(uint16_t*)0x20003074 = 3; *(uint16_t*)0x20003076 = 0; *(uint16_t*)0x20003078 = 4; *(uint16_t*)0x2000307a = 1; *(uint16_t*)0x2000307c = 0; *(uint16_t*)0x2000307e = 1; *(uint16_t*)0x20003080 = 0; *(uint16_t*)0x20003082 = 0; *(uint16_t*)0x20003084 = 0; *(uint16_t*)0x20003086 = 1; *(uint16_t*)0x20003088 = 0x3dee; *(uint16_t*)0x2000308a = 1; *(uint16_t*)0x2000308c = 4; *(uint16_t*)0x2000308e = 1; *(uint16_t*)0x20003090 = 4; *(uint16_t*)0x20003092 = 1; *(uint16_t*)0x20003094 = 2; *(uint16_t*)0x20003096 = 0; *(uint16_t*)0x20003098 = 4; *(uint16_t*)0x2000309a = 0; *(uint16_t*)0x2000309c = 0; *(uint16_t*)0x2000309e = 0; *(uint16_t*)0x200030a0 = 4; *(uint16_t*)0x200030a2 = 1; *(uint16_t*)0x200030a4 = 5; *(uint16_t*)0x200030a6 = 1; *(uint16_t*)0x200030a8 = 2; *(uint16_t*)0x200030aa = 0; *(uint16_t*)0x200030ac = 0; *(uint16_t*)0x200030ae = 0; *(uint16_t*)0x200030b0 = 5; *(uint16_t*)0x200030b2 = 1; *(uint16_t*)0x200030b4 = 1; *(uint16_t*)0x200030b6 = 0xb307; *(uint16_t*)0x200030b8 = 2; *(uint16_t*)0x200030ba = 0; *(uint16_t*)0x200030bc = 3; *(uint16_t*)0x200030be = 0; *(uint16_t*)0x200030c0 = 0; *(uint16_t*)0x200030c2 = 1; *(uint16_t*)0x200030c4 = 1; *(uint16_t*)0x200030c6 = 1; *(uint16_t*)0x200030c8 = 1; *(uint16_t*)0x200030ca = 1; *(uint16_t*)0x200030cc = 1; *(uint16_t*)0x200030ce = 0; *(uint16_t*)0x200030d0 = 0; *(uint16_t*)0x200030d2 = 1; *(uint16_t*)0x200030d4 = 0; *(uint16_t*)0x200030d6 = 0; *(uint16_t*)0x200030d8 = 2; *(uint16_t*)0x200030da = 0; *(uint16_t*)0x200030dc = 2; *(uint16_t*)0x200030de = 0; *(uint16_t*)0x200030e0 = 4; *(uint16_t*)0x200030e2 = 1; *(uint16_t*)0x200030e4 = 2; *(uint16_t*)0x200030e6 = 0; *(uint16_t*)0x200030e8 = 2; *(uint16_t*)0x200030ea = 0; *(uint16_t*)0x200030ec = 6; *(uint16_t*)0x200030ee = 1; *(uint16_t*)0x200030f0 = 1; *(uint16_t*)0x200030f2 = 1; *(uint16_t*)0x200030f4 = 0; *(uint16_t*)0x200030f6 = 1; *(uint16_t*)0x200030f8 = 5; *(uint16_t*)0x200030fa = 0; *(uint16_t*)0x200030fc = 5; *(uint16_t*)0x200030fe = 1; *(uint16_t*)0x20003100 = 1; *(uint16_t*)0x20003102 = 1; *(uint16_t*)0x20003104 = 0; *(uint16_t*)0x20003106 = 1; *(uint16_t*)0x20003108 = 2; *(uint16_t*)0x2000310a = 1; *(uint16_t*)0x2000310c = 0; *(uint16_t*)0x2000310e = 1; *(uint16_t*)0x20003110 = 1; *(uint16_t*)0x20003112 = 1; *(uint16_t*)0x20003114 = 2; *(uint16_t*)0x20003116 = 1; *(uint16_t*)0x20003118 = 2; *(uint16_t*)0x2000311a = 1; *(uint16_t*)0x2000311c = 2; *(uint16_t*)0x2000311e = 1; *(uint16_t*)0x20003120 = 2; *(uint16_t*)0x20003122 = 1; *(uint16_t*)0x20003124 = 0; *(uint16_t*)0x20003126 = 1; *(uint16_t*)0x20003128 = 5; *(uint16_t*)0x2000312a = 0; *(uint16_t*)0x2000312c = 1; *(uint16_t*)0x2000312e = 1; *(uint16_t*)0x20003130 = 1; *(uint16_t*)0x20003132 = 0; *(uint16_t*)0x20003134 = 4; *(uint16_t*)0x20003136 = 0; *(uint16_t*)0x20003138 = 4; *(uint16_t*)0x2000313a = 0; *(uint16_t*)0x2000313c = 4; *(uint16_t*)0x2000313e = 0; *(uint16_t*)0x20003140 = 7; *(uint16_t*)0x20003142 = 0; *(uint16_t*)0x20003144 = 4; *(uint16_t*)0x20003146 = 0; *(uint16_t*)0x20003148 = 4; *(uint16_t*)0x2000314a = 0; *(uint16_t*)0x2000314c = 3; *(uint16_t*)0x2000314e = 1; *(uint16_t*)0x20003150 = 0; *(uint16_t*)0x20003152 = 1; *(uint16_t*)0x20003154 = 7; *(uint16_t*)0x20003156 = 0; *(uint16_t*)0x20003158 = 4; *(uint16_t*)0x2000315a = 1; *(uint16_t*)0x2000315c = 4; *(uint16_t*)0x2000315e = 0; *(uint16_t*)0x20003160 = 0x3f8c; *(uint16_t*)0x20003162 = 1; *(uint16_t*)0x20003164 = 0; *(uint16_t*)0x20003166 = 1; *(uint16_t*)0x20003168 = 0; *(uint16_t*)0x2000316a = 1; *(uint16_t*)0x2000316c = 3; *(uint16_t*)0x2000316e = 0; *(uint16_t*)0x20003170 = 3; *(uint16_t*)0x20003172 = 1; *(uint16_t*)0x20003174 = 3; *(uint16_t*)0x20003176 = 0; *(uint16_t*)0x20003178 = 5; *(uint16_t*)0x2000317a = 0; *(uint16_t*)0x2000317c = 3; *(uint16_t*)0x2000317e = 1; *(uint16_t*)0x20003180 = 5; *(uint16_t*)0x20003182 = 1; *(uint16_t*)0x20003184 = 2; *(uint16_t*)0x20003186 = 0; *(uint16_t*)0x20003188 = 0; *(uint16_t*)0x2000318a = 0; *(uint16_t*)0x2000318c = 1; *(uint16_t*)0x2000318e = 0; *(uint16_t*)0x20003190 = 0; *(uint16_t*)0x20003192 = 0; *(uint16_t*)0x20003194 = 4; *(uint16_t*)0x20003196 = 0; *(uint16_t*)0x20003198 = 3; *(uint16_t*)0x2000319a = 1; *(uint16_t*)0x2000319c = 4; *(uint16_t*)0x2000319e = 1; *(uint16_t*)0x200031a0 = 1; *(uint16_t*)0x200031a2 = 0; *(uint16_t*)0x200031a4 = 1; *(uint16_t*)0x200031a6 = 0; *(uint16_t*)0x200031a8 = 4; *(uint16_t*)0x200031aa = 1; *(uint16_t*)0x200031ac = 0; *(uint16_t*)0x200031ae = 0; *(uint16_t*)0x200031b0 = 1; *(uint16_t*)0x200031b2 = 0; *(uint16_t*)0x200031b4 = 4; *(uint16_t*)0x200031b6 = 0; *(uint16_t*)0x200031b8 = 1; *(uint16_t*)0x200031ba = 1; *(uint16_t*)0x200031bc = 5; *(uint16_t*)0x200031be = 1; *(uint16_t*)0x200031c0 = 2; *(uint16_t*)0x200031c2 = 0; *(uint16_t*)0x200031c4 = 4; *(uint16_t*)0x200031c6 = 1; *(uint16_t*)0x200031c8 = 1; *(uint16_t*)0x200031ca = 1; *(uint16_t*)0x200031cc = 3; *(uint16_t*)0x200031ce = 1; *(uint16_t*)0x200031d0 = 4; *(uint16_t*)0x200031d2 = 1; *(uint16_t*)0x200031d4 = 4; *(uint16_t*)0x200031d6 = 1; *(uint16_t*)0x200031d8 = 1; *(uint16_t*)0x200031da = 1; *(uint16_t*)0x200031dc = 5; *(uint16_t*)0x200031de = 1; *(uint16_t*)0x200031e0 = 5; *(uint16_t*)0x200031e2 = 1; *(uint16_t*)0x200031e4 = 5; *(uint16_t*)0x200031e6 = 1; *(uint16_t*)0x200031e8 = 2; *(uint16_t*)0x200031ea = 0; *(uint16_t*)0x200031ec = 4; *(uint16_t*)0x200031ee = 1; *(uint16_t*)0x200031f0 = 4; *(uint16_t*)0x200031f2 = 1; *(uint8_t*)0x200031f4 = 1; *(uint16_t*)0x200031f8 = 0xe80; *(uint16_t*)0x200031fa = 4; *(uint32_t*)0x200031fc = 6; *(uint32_t*)0x20003200 = 1; *(uint32_t*)0x20003204 = 7; *(uint32_t*)0x20003208 = 1; *(uint32_t*)0x2000320c = 0xc6c; *(uint8_t*)0x20003210 = 1; *(uint8_t*)0x20003211 = 7; *(uint32_t*)0x20003214 = 0x800; *(uint32_t*)0x20003218 = 9; *(uint32_t*)0x2000321c = 1; *(uint32_t*)0x20003220 = 0xcb; *(uint32_t*)0x20003224 = 1; *(uint32_t*)0x20003228 = 7; *(uint32_t*)0x2000322c = 0x9f; *(uint32_t*)0x20003230 = 1; *(uint32_t*)0x20003234 = 0x7ff; *(uint32_t*)0x20003238 = 0x101; *(uint32_t*)0x2000323c = 0x10001; *(uint32_t*)0x20003240 = 2; *(uint32_t*)0x20003244 = 6; *(uint32_t*)0x20003248 = 0x8001; *(uint32_t*)0x2000324c = 7; *(uint32_t*)0x20003250 = 5; *(uint32_t*)0x20003254 = 7; *(uint32_t*)0x20003258 = 0x800; *(uint32_t*)0x2000325c = 0x20; *(uint32_t*)0x20003260 = 9; *(uint32_t*)0x20003264 = 8; *(uint32_t*)0x20003268 = 8; *(uint32_t*)0x2000326c = 0xfffffff8; *(uint32_t*)0x20003270 = 0; *(uint32_t*)0x20003274 = 9; *(uint32_t*)0x20003278 = 8; *(uint32_t*)0x2000327c = 0x10001; *(uint32_t*)0x20003280 = 8; *(uint32_t*)0x20003284 = 0x4d8fb1c8; *(uint32_t*)0x20003288 = 0x52b4; *(uint32_t*)0x2000328c = 3; *(uint32_t*)0x20003290 = 0x3f; *(uint32_t*)0x20003294 = 0xdb; *(uint32_t*)0x20003298 = 0xc65; *(uint32_t*)0x2000329c = 0x20; *(uint32_t*)0x200032a0 = 6; *(uint32_t*)0x200032a4 = 6; *(uint32_t*)0x200032a8 = 3; *(uint32_t*)0x200032ac = 6; *(uint32_t*)0x200032b0 = 0x26; *(uint32_t*)0x200032b4 = 7; *(uint32_t*)0x200032b8 = 0x89d; *(uint32_t*)0x200032bc = 0x36; *(uint32_t*)0x200032c0 = 4; *(uint32_t*)0x200032c4 = 6; *(uint32_t*)0x200032c8 = 0x100; *(uint32_t*)0x200032cc = 3; *(uint32_t*)0x200032d0 = 4; *(uint32_t*)0x200032d4 = 6; *(uint32_t*)0x200032d8 = 8; *(uint32_t*)0x200032dc = 4; *(uint32_t*)0x200032e0 = 1; *(uint32_t*)0x200032e4 = 9; *(uint32_t*)0x200032e8 = 3; *(uint32_t*)0x200032ec = 0xf0; *(uint32_t*)0x200032f0 = 4; *(uint32_t*)0x200032f4 = 6; *(uint32_t*)0x200032f8 = 3; *(uint32_t*)0x200032fc = 2; *(uint32_t*)0x20003300 = 0x13; *(uint32_t*)0x20003304 = 0; *(uint32_t*)0x20003308 = 2; *(uint32_t*)0x2000330c = 1; *(uint32_t*)0x20003310 = 0x7ff; *(uint32_t*)0x20003314 = 9; *(uint32_t*)0x20003318 = 0x200; *(uint32_t*)0x2000331c = 8; *(uint32_t*)0x20003320 = 8; *(uint32_t*)0x20003324 = 1; *(uint32_t*)0x20003328 = 0xd81; *(uint32_t*)0x2000332c = 0x80000000; *(uint32_t*)0x20003330 = 8; *(uint32_t*)0x20003334 = 0; *(uint32_t*)0x20003338 = 0xa0; *(uint32_t*)0x2000333c = 0x8d; *(uint32_t*)0x20003340 = 5; *(uint32_t*)0x20003344 = 7; *(uint32_t*)0x20003348 = 0x7fff; *(uint32_t*)0x2000334c = 8; *(uint32_t*)0x20003350 = 0x36; *(uint32_t*)0x20003354 = 0x9526; *(uint32_t*)0x20003358 = 0; *(uint32_t*)0x2000335c = 0xaa80; *(uint32_t*)0x20003360 = 7; *(uint32_t*)0x20003364 = 0x86ee; *(uint32_t*)0x20003368 = 9; *(uint32_t*)0x2000336c = 0xfffff137; *(uint32_t*)0x20003370 = 0; *(uint32_t*)0x20003374 = 0x6393; *(uint32_t*)0x20003378 = 0x9b; *(uint32_t*)0x2000337c = 0xd38b; *(uint32_t*)0x20003380 = 3; *(uint32_t*)0x20003384 = 8; *(uint32_t*)0x20003388 = 0xfffff796; *(uint32_t*)0x2000338c = 0xfffffffb; *(uint32_t*)0x20003390 = 1; *(uint32_t*)0x20003394 = 6; *(uint32_t*)0x20003398 = 2; *(uint32_t*)0x2000339c = 0x200; *(uint32_t*)0x200033a0 = 2; *(uint32_t*)0x200033a4 = 6; *(uint32_t*)0x200033a8 = 0xfffffffb; *(uint32_t*)0x200033ac = 0x7ff; *(uint32_t*)0x200033b0 = 5; *(uint32_t*)0x200033b4 = 0xde86; *(uint32_t*)0x200033b8 = 0; *(uint32_t*)0x200033bc = 0xe77f; *(uint32_t*)0x200033c0 = 0x82db; *(uint32_t*)0x200033c4 = 9; *(uint32_t*)0x200033c8 = 9; *(uint32_t*)0x200033cc = 0x3f; *(uint32_t*)0x200033d0 = 0x1dd0; *(uint32_t*)0x200033d4 = 0x38; *(uint32_t*)0x200033d8 = 0x13; *(uint32_t*)0x200033dc = 7; *(uint32_t*)0x200033e0 = 2; *(uint32_t*)0x200033e4 = 0x70a5; *(uint32_t*)0x200033e8 = 0; *(uint32_t*)0x200033ec = 6; *(uint32_t*)0x200033f0 = 6; *(uint32_t*)0x200033f4 = 0; *(uint32_t*)0x200033f8 = 0xe34; *(uint32_t*)0x200033fc = 0x1dc; *(uint32_t*)0x20003400 = 0x7ff; *(uint32_t*)0x20003404 = -1; *(uint32_t*)0x20003408 = 0xc05; *(uint32_t*)0x2000340c = 0x80000000; *(uint32_t*)0x20003410 = 2; *(uint32_t*)0x20003414 = -1; *(uint32_t*)0x20003418 = 4; *(uint32_t*)0x2000341c = 0x10000; *(uint32_t*)0x20003420 = 5; *(uint32_t*)0x20003424 = 2; *(uint32_t*)0x20003428 = 0; *(uint32_t*)0x2000342c = 6; *(uint32_t*)0x20003430 = -1; *(uint32_t*)0x20003434 = 0; *(uint32_t*)0x20003438 = 0x7fff; *(uint32_t*)0x2000343c = 9; *(uint32_t*)0x20003440 = 1; *(uint32_t*)0x20003444 = 0xffff; *(uint32_t*)0x20003448 = 0x400; *(uint32_t*)0x2000344c = 0x1000; *(uint32_t*)0x20003450 = 0x80; *(uint32_t*)0x20003454 = 0x3e61; *(uint32_t*)0x20003458 = 0x10000; *(uint32_t*)0x2000345c = 0x3ff; *(uint32_t*)0x20003460 = 2; *(uint32_t*)0x20003464 = 0x7fff; *(uint32_t*)0x20003468 = 0xd49; *(uint32_t*)0x2000346c = 0x101; *(uint32_t*)0x20003470 = 0x8000; *(uint32_t*)0x20003474 = 0x1000; *(uint32_t*)0x20003478 = 0; *(uint32_t*)0x2000347c = 0xffff; *(uint32_t*)0x20003480 = 8; *(uint32_t*)0x20003484 = 0x11; *(uint32_t*)0x20003488 = 3; *(uint32_t*)0x2000348c = 6; *(uint32_t*)0x20003490 = 7; *(uint32_t*)0x20003494 = 0xa0; *(uint32_t*)0x20003498 = 6; *(uint32_t*)0x2000349c = 1; *(uint32_t*)0x200034a0 = 0xff; *(uint32_t*)0x200034a4 = 0x55; *(uint32_t*)0x200034a8 = 9; *(uint32_t*)0x200034ac = 7; *(uint32_t*)0x200034b0 = 0x80000000; *(uint32_t*)0x200034b4 = 5; *(uint32_t*)0x200034b8 = 0x3ff; *(uint32_t*)0x200034bc = 7; *(uint32_t*)0x200034c0 = 0x16; *(uint32_t*)0x200034c4 = 5; *(uint32_t*)0x200034c8 = 0xfff; *(uint32_t*)0x200034cc = 0; *(uint32_t*)0x200034d0 = 0xd8b; *(uint32_t*)0x200034d4 = 6; *(uint32_t*)0x200034d8 = 2; *(uint32_t*)0x200034dc = 3; *(uint32_t*)0x200034e0 = 0x80000000; *(uint32_t*)0x200034e4 = 1; *(uint32_t*)0x200034e8 = 0; *(uint32_t*)0x200034ec = 7; *(uint32_t*)0x200034f0 = 3; *(uint32_t*)0x200034f4 = 0x75c; *(uint32_t*)0x200034f8 = 3; *(uint32_t*)0x200034fc = 7; *(uint32_t*)0x20003500 = 9; *(uint32_t*)0x20003504 = 0xffff8001; *(uint32_t*)0x20003508 = 0x9dc0; *(uint32_t*)0x2000350c = 0xfff; *(uint32_t*)0x20003510 = 9; *(uint32_t*)0x20003514 = 0xc0000000; *(uint32_t*)0x20003518 = 0x101; *(uint32_t*)0x2000351c = 0x40; *(uint32_t*)0x20003520 = 7; *(uint32_t*)0x20003524 = 0x1f; *(uint32_t*)0x20003528 = 0; *(uint32_t*)0x2000352c = 1; *(uint32_t*)0x20003530 = 9; *(uint32_t*)0x20003534 = 0xc0000000; *(uint32_t*)0x20003538 = 2; *(uint32_t*)0x2000353c = 0xa00; *(uint32_t*)0x20003540 = 7; *(uint32_t*)0x20003544 = 0x80; *(uint32_t*)0x20003548 = 0x10001; *(uint32_t*)0x2000354c = 0xf6b; *(uint32_t*)0x20003550 = 1; *(uint32_t*)0x20003554 = 4; *(uint32_t*)0x20003558 = 0; *(uint32_t*)0x2000355c = 9; *(uint32_t*)0x20003560 = 0x1f; *(uint32_t*)0x20003564 = 2; *(uint32_t*)0x20003568 = 0x200; *(uint32_t*)0x2000356c = 0x5515; *(uint32_t*)0x20003570 = 4; *(uint32_t*)0x20003574 = 1; *(uint32_t*)0x20003578 = 0x3f; *(uint32_t*)0x2000357c = 4; *(uint32_t*)0x20003580 = 0; *(uint32_t*)0x20003584 = 5; *(uint32_t*)0x20003588 = 4; *(uint32_t*)0x2000358c = 1; *(uint32_t*)0x20003590 = 7; *(uint32_t*)0x20003594 = 0x7fffffff; *(uint32_t*)0x20003598 = 0xb114; *(uint32_t*)0x2000359c = 0xa3a8; *(uint32_t*)0x200035a0 = 0x8000; *(uint32_t*)0x200035a4 = 8; *(uint32_t*)0x200035a8 = 0; *(uint32_t*)0x200035ac = 1; *(uint32_t*)0x200035b0 = 7; *(uint32_t*)0x200035b4 = 0x8000; *(uint32_t*)0x200035b8 = 8; *(uint32_t*)0x200035bc = 2; *(uint32_t*)0x200035c0 = 0; *(uint32_t*)0x200035c4 = 0; *(uint32_t*)0x200035c8 = 8; *(uint32_t*)0x200035cc = 1; *(uint32_t*)0x200035d0 = 0x80000001; *(uint32_t*)0x200035d4 = 0xcfd; *(uint32_t*)0x200035d8 = 6; *(uint32_t*)0x200035dc = 0x40; *(uint32_t*)0x200035e0 = 0x7f; *(uint32_t*)0x200035e4 = 4; *(uint32_t*)0x200035e8 = 1; *(uint32_t*)0x200035ec = 0x96; *(uint32_t*)0x200035f0 = 0x95; *(uint32_t*)0x200035f4 = 0x7ff; *(uint32_t*)0x200035f8 = 0xeea4; *(uint32_t*)0x200035fc = 8; *(uint32_t*)0x20003600 = 3; *(uint32_t*)0x20003604 = 0x95; *(uint32_t*)0x20003608 = 5; *(uint32_t*)0x2000360c = 1; *(uint32_t*)0x20003610 = -1; *(uint32_t*)0x20003614 = 0x5263; *(uint32_t*)0x20003618 = 3; *(uint32_t*)0x2000361c = 6; *(uint32_t*)0x20003620 = 0x200; *(uint32_t*)0x20003624 = 0xfffffffa; *(uint32_t*)0x20003628 = 0x401; *(uint32_t*)0x2000362c = 3; *(uint32_t*)0x20003630 = 9; *(uint32_t*)0x20003634 = 2; *(uint32_t*)0x20003638 = 0x3e; *(uint32_t*)0x2000363c = 0xfffff157; *(uint32_t*)0x20003640 = 0xffffffe0; *(uint32_t*)0x20003644 = 7; *(uint32_t*)0x20003648 = 9; *(uint32_t*)0x2000364c = 0x1000; *(uint32_t*)0x20003650 = 1; *(uint32_t*)0x20003654 = 0x8000; *(uint32_t*)0x20003658 = 8; *(uint32_t*)0x2000365c = 0; *(uint32_t*)0x20003660 = 9; *(uint32_t*)0x20003664 = 7; *(uint32_t*)0x20003668 = 0; *(uint32_t*)0x2000366c = 3; *(uint32_t*)0x20003670 = 2; *(uint32_t*)0x20003674 = 0xd20; *(uint32_t*)0x20003678 = 0x7fff; *(uint32_t*)0x2000367c = 4; *(uint32_t*)0x20003680 = 0; *(uint32_t*)0x20003684 = 0x80000000; *(uint32_t*)0x20003688 = 0x5b; *(uint32_t*)0x2000368c = 7; *(uint32_t*)0x20003690 = 4; *(uint32_t*)0x20003694 = 0x10001; *(uint32_t*)0x20003698 = 0x7fffffff; *(uint32_t*)0x2000369c = 0; *(uint32_t*)0x200036a0 = 4; *(uint32_t*)0x200036a4 = 5; *(uint32_t*)0x200036a8 = 0; *(uint32_t*)0x200036ac = 3; *(uint32_t*)0x200036b0 = 8; *(uint32_t*)0x200036b4 = 7; *(uint32_t*)0x200036b8 = 0x3b4; *(uint32_t*)0x200036bc = 6; *(uint32_t*)0x200036c0 = 2; *(uint32_t*)0x200036c4 = 1; *(uint32_t*)0x200036c8 = 0xfffeffff; *(uint32_t*)0x200036cc = 0x8db8; *(uint32_t*)0x200036d0 = 0x20; *(uint32_t*)0x200036d4 = 0x81; *(uint32_t*)0x200036d8 = 8; *(uint32_t*)0x200036dc = 0xfffffffc; *(uint32_t*)0x200036e0 = 1; *(uint32_t*)0x200036e4 = 7; *(uint32_t*)0x200036e8 = 1; *(uint32_t*)0x200036ec = 6; *(uint32_t*)0x200036f0 = 0xffff; *(uint32_t*)0x200036f4 = 7; *(uint32_t*)0x200036f8 = 4; *(uint32_t*)0x200036fc = 7; *(uint32_t*)0x20003700 = 4; *(uint32_t*)0x20003704 = 7; *(uint32_t*)0x20003708 = 0x482; *(uint32_t*)0x2000370c = 0x1f; *(uint32_t*)0x20003710 = 8; *(uint32_t*)0x20003714 = 8; *(uint32_t*)0x20003718 = 0x3d38; *(uint32_t*)0x2000371c = 5; *(uint32_t*)0x20003720 = 9; *(uint32_t*)0x20003724 = 7; *(uint32_t*)0x20003728 = 1; *(uint32_t*)0x2000372c = 0x8001; *(uint32_t*)0x20003730 = 5; *(uint32_t*)0x20003734 = 4; *(uint32_t*)0x20003738 = 5; *(uint32_t*)0x2000373c = 0x49d3fafa; *(uint32_t*)0x20003740 = 0; *(uint32_t*)0x20003744 = 0; *(uint32_t*)0x20003748 = 1; *(uint32_t*)0x2000374c = 4; *(uint32_t*)0x20003750 = 5; *(uint32_t*)0x20003754 = 0; *(uint32_t*)0x20003758 = 0x100; *(uint32_t*)0x2000375c = 0x1000; *(uint32_t*)0x20003760 = 8; *(uint32_t*)0x20003764 = 0x7fffffff; *(uint32_t*)0x20003768 = 4; *(uint32_t*)0x2000376c = 1; *(uint32_t*)0x20003770 = 0; *(uint32_t*)0x20003774 = 5; *(uint32_t*)0x20003778 = 0xffff7fff; *(uint32_t*)0x2000377c = 1; *(uint32_t*)0x20003780 = 2; *(uint32_t*)0x20003784 = 0xef2d; *(uint32_t*)0x20003788 = 0xba; *(uint32_t*)0x2000378c = 6; *(uint32_t*)0x20003790 = 7; *(uint32_t*)0x20003794 = 0x80000000; *(uint32_t*)0x20003798 = 8; *(uint32_t*)0x2000379c = 4; *(uint32_t*)0x200037a0 = 1; *(uint32_t*)0x200037a4 = 7; *(uint32_t*)0x200037a8 = 0x72dc; *(uint32_t*)0x200037ac = 5; *(uint32_t*)0x200037b0 = 0xf0; *(uint32_t*)0x200037b4 = 0x4009; *(uint32_t*)0x200037b8 = -1; *(uint32_t*)0x200037bc = 0x400; *(uint32_t*)0x200037c0 = 0x200; *(uint32_t*)0x200037c4 = 5; *(uint32_t*)0x200037c8 = 5; *(uint32_t*)0x200037cc = 0; *(uint32_t*)0x200037d0 = 7; *(uint32_t*)0x200037d4 = 0x696; *(uint32_t*)0x200037d8 = 8; *(uint32_t*)0x200037dc = 0; *(uint32_t*)0x200037e0 = 0xffff8000; *(uint32_t*)0x200037e4 = 0x7fffffff; *(uint32_t*)0x200037e8 = 2; *(uint32_t*)0x200037ec = 0x8001; *(uint32_t*)0x200037f0 = 0; *(uint32_t*)0x200037f4 = 0x20; *(uint32_t*)0x200037f8 = 3; *(uint32_t*)0x200037fc = 0x401; *(uint32_t*)0x20003800 = 0xfffffff9; *(uint32_t*)0x20003804 = 0; *(uint32_t*)0x20003808 = 3; *(uint32_t*)0x2000380c = 0x7fff; *(uint32_t*)0x20003810 = -1; *(uint32_t*)0x20003814 = 7; *(uint32_t*)0x20003818 = 2; *(uint32_t*)0x2000381c = 1; *(uint32_t*)0x20003820 = 0xf1; *(uint32_t*)0x20003824 = 0x1ff; *(uint32_t*)0x20003828 = 2; *(uint32_t*)0x2000382c = 1; *(uint32_t*)0x20003830 = 0x3f; *(uint32_t*)0x20003834 = 6; *(uint32_t*)0x20003838 = 0x80; *(uint32_t*)0x2000383c = 7; *(uint32_t*)0x20003840 = 4; *(uint32_t*)0x20003844 = 0x1f0; *(uint32_t*)0x20003848 = 0xbc; *(uint32_t*)0x2000384c = 0x7f; *(uint32_t*)0x20003850 = 0x200; *(uint32_t*)0x20003854 = 7; *(uint32_t*)0x20003858 = 0x3d; *(uint32_t*)0x2000385c = 0xfff; *(uint32_t*)0x20003860 = 0xdb86241; *(uint32_t*)0x20003864 = 5; *(uint32_t*)0x20003868 = 7; *(uint32_t*)0x2000386c = 4; *(uint32_t*)0x20003870 = 3; *(uint32_t*)0x20003874 = 4; *(uint32_t*)0x20003878 = 0xa5fb; *(uint32_t*)0x2000387c = 0x3ff; *(uint32_t*)0x20003880 = 0x18000000; *(uint32_t*)0x20003884 = 0; *(uint32_t*)0x20003888 = 4; *(uint32_t*)0x2000388c = 8; *(uint32_t*)0x20003890 = 9; *(uint32_t*)0x20003894 = 2; *(uint32_t*)0x20003898 = 0x2d0; *(uint32_t*)0x2000389c = 6; *(uint32_t*)0x200038a0 = 0xbf7; *(uint32_t*)0x200038a4 = 8; *(uint32_t*)0x200038a8 = 0x947b; *(uint32_t*)0x200038ac = 0x20; *(uint32_t*)0x200038b0 = 0xfff; *(uint32_t*)0x200038b4 = 0x97; *(uint32_t*)0x200038b8 = 0x87; *(uint32_t*)0x200038bc = 3; *(uint32_t*)0x200038c0 = 4; *(uint32_t*)0x200038c4 = 0x40; *(uint32_t*)0x200038c8 = 5; *(uint32_t*)0x200038cc = 3; *(uint32_t*)0x200038d0 = 0x3f; *(uint32_t*)0x200038d4 = 0xfffffffb; *(uint32_t*)0x200038d8 = 0x82d9; *(uint32_t*)0x200038dc = 9; *(uint32_t*)0x200038e0 = 7; *(uint32_t*)0x200038e4 = 0x2c; *(uint32_t*)0x200038e8 = 5; *(uint32_t*)0x200038ec = 1; *(uint32_t*)0x200038f0 = 0x80000000; *(uint32_t*)0x200038f4 = 6; *(uint32_t*)0x200038f8 = 0x185; *(uint32_t*)0x200038fc = 6; *(uint32_t*)0x20003900 = 0x8001; *(uint32_t*)0x20003904 = 5; *(uint32_t*)0x20003908 = 0x40; *(uint32_t*)0x2000390c = 5; *(uint32_t*)0x20003910 = 2; *(uint32_t*)0x20003914 = 0x81; *(uint32_t*)0x20003918 = 8; *(uint32_t*)0x2000391c = 4; *(uint32_t*)0x20003920 = 0xb8; *(uint32_t*)0x20003924 = 6; *(uint32_t*)0x20003928 = 0x1f; *(uint32_t*)0x2000392c = 1; *(uint32_t*)0x20003930 = 0x12; *(uint32_t*)0x20003934 = 0x84; *(uint32_t*)0x20003938 = 0x400; *(uint32_t*)0x2000393c = 4; *(uint32_t*)0x20003940 = 0xc; *(uint32_t*)0x20003944 = 0x61092fa3; *(uint32_t*)0x20003948 = 8; *(uint32_t*)0x2000394c = 8; *(uint32_t*)0x20003950 = 1; *(uint32_t*)0x20003954 = 0; *(uint32_t*)0x20003958 = 1; *(uint32_t*)0x2000395c = 3; *(uint32_t*)0x20003960 = 0xfffffffa; *(uint32_t*)0x20003964 = 9; *(uint32_t*)0x20003968 = 1; *(uint32_t*)0x2000396c = -1; *(uint32_t*)0x20003970 = 0x1fffc0; *(uint32_t*)0x20003974 = 5; *(uint32_t*)0x20003978 = 0xfffffffc; *(uint32_t*)0x2000397c = 9; *(uint32_t*)0x20003980 = 2; *(uint32_t*)0x20003984 = 8; *(uint32_t*)0x20003988 = 0x40; *(uint32_t*)0x2000398c = 0x7ff; *(uint32_t*)0x20003990 = 0x7fffffff; *(uint32_t*)0x20003994 = 7; *(uint32_t*)0x20003998 = 0x517d; *(uint32_t*)0x2000399c = 0x8000; *(uint32_t*)0x200039a0 = 5; *(uint32_t*)0x200039a4 = 0x200; *(uint32_t*)0x200039a8 = 0xfffffc01; *(uint32_t*)0x200039ac = 0xff; *(uint32_t*)0x200039b0 = 0x829; *(uint32_t*)0x200039b4 = 0x48; *(uint32_t*)0x200039b8 = 0xb9e; *(uint32_t*)0x200039bc = 0x379d; *(uint32_t*)0x200039c0 = 0x35d1; *(uint32_t*)0x200039c4 = 1; *(uint32_t*)0x200039c8 = 0xa35; *(uint32_t*)0x200039cc = 2; *(uint32_t*)0x200039d0 = 0xa0000; *(uint32_t*)0x200039d4 = 0x7fffffff; *(uint32_t*)0x200039d8 = 0x101; *(uint32_t*)0x200039dc = 0xe368; *(uint32_t*)0x200039e0 = 7; *(uint32_t*)0x200039e4 = 0x8000; *(uint32_t*)0x200039e8 = 1; *(uint32_t*)0x200039ec = 2; *(uint32_t*)0x200039f0 = 5; *(uint32_t*)0x200039f4 = 0xe97e; *(uint32_t*)0x200039f8 = 5; *(uint32_t*)0x200039fc = 0x15; *(uint32_t*)0x20003a00 = 6; *(uint32_t*)0x20003a04 = 7; *(uint32_t*)0x20003a08 = 8; *(uint32_t*)0x20003a0c = 0x42905157; *(uint32_t*)0x20003a10 = 0x59; *(uint32_t*)0x20003a14 = 5; *(uint32_t*)0x20003a18 = 0x40; *(uint32_t*)0x20003a1c = 7; *(uint32_t*)0x20003a20 = 1; *(uint32_t*)0x20003a24 = 0x100; *(uint32_t*)0x20003a28 = 5; *(uint32_t*)0x20003a2c = 0x80000001; *(uint32_t*)0x20003a30 = 6; *(uint32_t*)0x20003a34 = 0x800; *(uint32_t*)0x20003a38 = 7; *(uint32_t*)0x20003a3c = 0xfc1; *(uint32_t*)0x20003a40 = 0x10001; *(uint32_t*)0x20003a44 = 8; *(uint32_t*)0x20003a48 = 9; *(uint32_t*)0x20003a4c = 5; *(uint32_t*)0x20003a50 = 6; *(uint32_t*)0x20003a54 = 0xc1d; *(uint32_t*)0x20003a58 = 0x8001; *(uint32_t*)0x20003a5c = 0x43cf23f8; *(uint32_t*)0x20003a60 = 0xc55; *(uint32_t*)0x20003a64 = 0x40; *(uint32_t*)0x20003a68 = 7; *(uint32_t*)0x20003a6c = 0x79; *(uint32_t*)0x20003a70 = 0; *(uint32_t*)0x20003a74 = 5; *(uint32_t*)0x20003a78 = 0x401; *(uint32_t*)0x20003a7c = 2; *(uint32_t*)0x20003a80 = 0x1ff; *(uint32_t*)0x20003a84 = 0x80000001; *(uint32_t*)0x20003a88 = 3; *(uint32_t*)0x20003a8c = 0xff82; *(uint32_t*)0x20003a90 = 0x619; *(uint32_t*)0x20003a94 = -1; *(uint32_t*)0x20003a98 = 2; *(uint32_t*)0x20003a9c = 0x10000; *(uint32_t*)0x20003aa0 = 4; *(uint32_t*)0x20003aa4 = 7; *(uint32_t*)0x20003aa8 = 0xc2; *(uint32_t*)0x20003aac = 8; *(uint32_t*)0x20003ab0 = 6; *(uint32_t*)0x20003ab4 = 0xd801; *(uint32_t*)0x20003ab8 = 0; *(uint32_t*)0x20003abc = 9; *(uint32_t*)0x20003ac0 = 2; *(uint32_t*)0x20003ac4 = 0xffff; *(uint32_t*)0x20003ac8 = 0x3ff8; *(uint32_t*)0x20003acc = 6; *(uint32_t*)0x20003ad0 = 2; *(uint32_t*)0x20003ad4 = 3; *(uint32_t*)0x20003ad8 = 0xc4c6; *(uint32_t*)0x20003adc = 0x401; *(uint32_t*)0x20003ae0 = 0x40; *(uint32_t*)0x20003ae4 = 8; *(uint32_t*)0x20003ae8 = 0xfffffffe; *(uint32_t*)0x20003aec = 0x11f; *(uint32_t*)0x20003af0 = 0x145; *(uint32_t*)0x20003af4 = 0x3ff; *(uint32_t*)0x20003af8 = 3; *(uint32_t*)0x20003afc = 0x7fffffff; *(uint32_t*)0x20003b00 = 6; *(uint32_t*)0x20003b04 = 3; *(uint32_t*)0x20003b08 = 7; *(uint32_t*)0x20003b0c = 0xff; *(uint32_t*)0x20003b10 = 1; *(uint32_t*)0x20003b14 = 0x3f; *(uint32_t*)0x20003b18 = 7; *(uint32_t*)0x20003b1c = 0x80000001; *(uint32_t*)0x20003b20 = 0x100; *(uint32_t*)0x20003b24 = 0x400; *(uint32_t*)0x20003b28 = 1; *(uint32_t*)0x20003b2c = 7; *(uint32_t*)0x20003b30 = 8; *(uint32_t*)0x20003b34 = 8; *(uint32_t*)0x20003b38 = 0xffff; *(uint32_t*)0x20003b3c = 6; *(uint32_t*)0x20003b40 = 0x8a29; *(uint32_t*)0x20003b44 = 0x26; *(uint32_t*)0x20003b48 = 0x200000; *(uint32_t*)0x20003b4c = 4; *(uint32_t*)0x20003b50 = 6; *(uint32_t*)0x20003b54 = 9; *(uint32_t*)0x20003b58 = 1; *(uint32_t*)0x20003b5c = 1; *(uint32_t*)0x20003b60 = 0x15; *(uint32_t*)0x20003b64 = 0x2a7; *(uint32_t*)0x20003b68 = 4; *(uint32_t*)0x20003b6c = 0x56; *(uint32_t*)0x20003b70 = 5; *(uint32_t*)0x20003b74 = 1; *(uint32_t*)0x20003b78 = 2; *(uint32_t*)0x20003b7c = 1; *(uint32_t*)0x20003b80 = 0x8000; *(uint32_t*)0x20003b84 = 2; *(uint32_t*)0x20003b88 = 0x2816; *(uint32_t*)0x20003b8c = 0x8001; *(uint32_t*)0x20003b90 = 0x7f; *(uint32_t*)0x20003b94 = 0; *(uint32_t*)0x20003b98 = 0x1000; *(uint32_t*)0x20003b9c = 0xdfa; *(uint32_t*)0x20003ba0 = 0x1b65; *(uint32_t*)0x20003ba4 = 0x7fffffff; *(uint32_t*)0x20003ba8 = 0; *(uint32_t*)0x20003bac = 0xfffffff8; *(uint32_t*)0x20003bb0 = 1; *(uint32_t*)0x20003bb4 = 0; *(uint32_t*)0x20003bb8 = 4; *(uint32_t*)0x20003bbc = 9; *(uint32_t*)0x20003bc0 = 0x1ebc; *(uint32_t*)0x20003bc4 = 0x401; *(uint32_t*)0x20003bc8 = 0x1000; *(uint32_t*)0x20003bcc = 0x400; *(uint32_t*)0x20003bd0 = 0x4161; *(uint32_t*)0x20003bd4 = 3; *(uint32_t*)0x20003bd8 = 0x3f; *(uint32_t*)0x20003bdc = 2; *(uint32_t*)0x20003be0 = 6; *(uint32_t*)0x20003be4 = 8; *(uint32_t*)0x20003be8 = 0x7f; *(uint32_t*)0x20003bec = 8; *(uint32_t*)0x20003bf0 = 0x1aae; *(uint32_t*)0x20003bf4 = 0x1ff; *(uint32_t*)0x20003bf8 = 0x80000001; *(uint32_t*)0x20003bfc = 0xfffffffa; *(uint32_t*)0x20003c00 = 0x400; *(uint32_t*)0x20003c04 = 2; *(uint32_t*)0x20003c08 = 6; *(uint32_t*)0x20003c0c = 1; *(uint32_t*)0x20003c10 = 0x10000; *(uint32_t*)0x20003c14 = 5; *(uint32_t*)0x20003c18 = 0x8dd4; *(uint32_t*)0x20003c1c = 0; *(uint32_t*)0x20003c20 = 0x41; *(uint32_t*)0x20003c24 = 5; *(uint32_t*)0x20003c28 = -1; *(uint32_t*)0x20003c2c = 2; *(uint32_t*)0x20003c30 = 0x357; *(uint32_t*)0x20003c34 = 8; *(uint32_t*)0x20003c38 = 0x40; *(uint32_t*)0x20003c3c = 0x51ba2ea; *(uint32_t*)0x20003c40 = 0; *(uint32_t*)0x20003c44 = 0x3f; *(uint32_t*)0x20003c48 = 0x8001; *(uint32_t*)0x20003c4c = 2; *(uint32_t*)0x20003c50 = 0x2aa0; *(uint32_t*)0x20003c54 = 9; *(uint32_t*)0x20003c58 = 5; *(uint32_t*)0x20003c5c = 0; *(uint32_t*)0x20003c60 = 0xe1a; *(uint32_t*)0x20003c64 = 0xeb98; *(uint32_t*)0x20003c68 = 0x1f; *(uint32_t*)0x20003c6c = 0x1000; *(uint32_t*)0x20003c70 = 0; *(uint32_t*)0x20003c74 = 7; *(uint32_t*)0x20003c78 = 4; *(uint32_t*)0x20003c7c = 3; *(uint32_t*)0x20003c80 = 5; *(uint32_t*)0x20003c84 = 6; *(uint32_t*)0x20003c88 = 0xcc; *(uint32_t*)0x20003c8c = 5; *(uint32_t*)0x20003c90 = 2; *(uint32_t*)0x20003c94 = 0; *(uint32_t*)0x20003c98 = 0x81; *(uint32_t*)0x20003c9c = 4; *(uint32_t*)0x20003ca0 = 3; *(uint32_t*)0x20003ca4 = 0xffffc443; *(uint32_t*)0x20003ca8 = 0x2b2; *(uint32_t*)0x20003cac = 7; *(uint32_t*)0x20003cb0 = 0x1f; *(uint32_t*)0x20003cb4 = 1; *(uint32_t*)0x20003cb8 = 5; *(uint32_t*)0x20003cbc = 0xffff0602; *(uint32_t*)0x20003cc0 = 0xffff; *(uint32_t*)0x20003cc4 = 7; *(uint32_t*)0x20003cc8 = 0x80000001; *(uint32_t*)0x20003ccc = 0; *(uint32_t*)0x20003cd0 = 0xfff; *(uint32_t*)0x20003cd4 = 4; *(uint32_t*)0x20003cd8 = 8; *(uint32_t*)0x20003cdc = 5; *(uint32_t*)0x20003ce0 = 0xffffff80; *(uint32_t*)0x20003ce4 = 0x401; *(uint32_t*)0x20003ce8 = 0xfffffffb; *(uint32_t*)0x20003cec = 7; *(uint32_t*)0x20003cf0 = 7; *(uint32_t*)0x20003cf4 = 4; *(uint32_t*)0x20003cf8 = 0xc0; *(uint32_t*)0x20003cfc = 0xd67; *(uint32_t*)0x20003d00 = 4; *(uint32_t*)0x20003d04 = 0xd84; *(uint32_t*)0x20003d08 = 0x101; *(uint32_t*)0x20003d0c = 0x8000; *(uint32_t*)0x20003d10 = 5; *(uint32_t*)0x20003d14 = 0; *(uint32_t*)0x20003d18 = 0x97e; *(uint32_t*)0x20003d1c = 7; *(uint32_t*)0x20003d20 = 0x40; *(uint32_t*)0x20003d24 = 0; *(uint32_t*)0x20003d28 = 7; *(uint32_t*)0x20003d2c = 2; *(uint32_t*)0x20003d30 = 0x3a9; *(uint32_t*)0x20003d34 = 1; *(uint32_t*)0x20003d38 = 1; *(uint32_t*)0x20003d3c = 0xbad; *(uint32_t*)0x20003d40 = 0; *(uint32_t*)0x20003d44 = 8; *(uint32_t*)0x20003d48 = 0x8aff; *(uint32_t*)0x20003d4c = 2; *(uint32_t*)0x20003d50 = 8; *(uint32_t*)0x20003d54 = 0x800; *(uint32_t*)0x20003d58 = 7; *(uint32_t*)0x20003d5c = 0x95; *(uint32_t*)0x20003d60 = 4; *(uint32_t*)0x20003d64 = 8; *(uint32_t*)0x20003d68 = 0x401; *(uint32_t*)0x20003d6c = 3; *(uint32_t*)0x20003d70 = -1; *(uint32_t*)0x20003d74 = 1; *(uint32_t*)0x20003d78 = 5; *(uint32_t*)0x20003d7c = 6; *(uint32_t*)0x20003d80 = 5; *(uint32_t*)0x20003d84 = 4; *(uint32_t*)0x20003d88 = 0x800; *(uint32_t*)0x20003d8c = 0xb6a; *(uint32_t*)0x20003d90 = 4; *(uint32_t*)0x20003d94 = 0; *(uint32_t*)0x20003d98 = 0x401; *(uint32_t*)0x20003d9c = 3; *(uint32_t*)0x20003da0 = 6; *(uint32_t*)0x20003da4 = 0x7665; *(uint32_t*)0x20003da8 = 8; *(uint32_t*)0x20003dac = 1; *(uint32_t*)0x20003db0 = 6; *(uint32_t*)0x20003db4 = 9; *(uint32_t*)0x20003db8 = 7; *(uint32_t*)0x20003dbc = 0x40; *(uint32_t*)0x20003dc0 = 6; *(uint32_t*)0x20003dc4 = 1; *(uint32_t*)0x20003dc8 = 0x100; *(uint32_t*)0x20003dcc = 0x10001; *(uint32_t*)0x20003dd0 = 1; *(uint32_t*)0x20003dd4 = 0x3ff; *(uint32_t*)0x20003dd8 = 8; *(uint32_t*)0x20003ddc = 4; *(uint32_t*)0x20003de0 = 9; *(uint32_t*)0x20003de4 = 8; *(uint32_t*)0x20003de8 = 0xa6d; *(uint32_t*)0x20003dec = 0xfff; *(uint32_t*)0x20003df0 = 4; *(uint32_t*)0x20003df4 = 0x80; *(uint32_t*)0x20003df8 = 0x989; *(uint32_t*)0x20003dfc = 6; *(uint32_t*)0x20003e00 = 0; *(uint32_t*)0x20003e04 = 6; *(uint32_t*)0x20003e08 = 9; *(uint32_t*)0x20003e0c = 0x4c51; *(uint32_t*)0x20003e10 = 8; *(uint32_t*)0x20003e14 = 0x1ff; *(uint32_t*)0x20003e18 = 0x8001; *(uint32_t*)0x20003e1c = 0x80000001; *(uint32_t*)0x20003e20 = 0x20; *(uint32_t*)0x20003e24 = 0x3e7f079b; *(uint32_t*)0x20003e28 = 0x80000001; *(uint32_t*)0x20003e2c = 7; *(uint32_t*)0x20003e30 = 0x101; *(uint32_t*)0x20003e34 = 7; *(uint32_t*)0x20003e38 = 0xfffffffb; *(uint32_t*)0x20003e3c = 0x30; *(uint32_t*)0x20003e40 = 8; *(uint32_t*)0x20003e44 = 0xf4; *(uint32_t*)0x20003e48 = 0x40; *(uint32_t*)0x20003e4c = 4; *(uint32_t*)0x20003e50 = 0x10000; *(uint32_t*)0x20003e54 = 0xa7; *(uint32_t*)0x20003e58 = 1; *(uint32_t*)0x20003e5c = 0x109a6c2e; *(uint32_t*)0x20003e60 = 4; *(uint32_t*)0x20003e64 = 0x66; *(uint32_t*)0x20003e68 = 5; *(uint32_t*)0x20003e6c = 6; *(uint32_t*)0x20003e70 = 3; *(uint16_t*)0x20003e74 = 1; *(uint16_t*)0x20003e76 = 1; *(uint16_t*)0x20003e78 = 2; *(uint16_t*)0x20003e7a = 1; *(uint16_t*)0x20003e7c = 1; *(uint16_t*)0x20003e7e = 0; *(uint16_t*)0x20003e80 = 3; *(uint16_t*)0x20003e82 = 0; *(uint16_t*)0x20003e84 = 3; *(uint16_t*)0x20003e86 = 1; *(uint16_t*)0x20003e88 = 3; *(uint16_t*)0x20003e8a = 1; *(uint16_t*)0x20003e8c = 2; *(uint16_t*)0x20003e8e = 0; *(uint16_t*)0x20003e90 = 0; *(uint16_t*)0x20003e92 = 1; *(uint16_t*)0x20003e94 = 0; *(uint16_t*)0x20003e96 = 1; *(uint16_t*)0x20003e98 = 2; *(uint16_t*)0x20003e9a = 1; *(uint16_t*)0x20003e9c = 5; *(uint16_t*)0x20003e9e = 1; *(uint16_t*)0x20003ea0 = 3; *(uint16_t*)0x20003ea2 = 0; *(uint16_t*)0x20003ea4 = 5; *(uint16_t*)0x20003ea6 = 0; *(uint16_t*)0x20003ea8 = 1; *(uint16_t*)0x20003eaa = 1; *(uint16_t*)0x20003eac = 0; *(uint16_t*)0x20003eae = 0; *(uint16_t*)0x20003eb0 = 4; *(uint16_t*)0x20003eb2 = 0; *(uint16_t*)0x20003eb4 = 0; *(uint16_t*)0x20003eb6 = 1; *(uint16_t*)0x20003eb8 = 3; *(uint16_t*)0x20003eba = 1; *(uint16_t*)0x20003ebc = 0; *(uint16_t*)0x20003ebe = 1; *(uint16_t*)0x20003ec0 = 2; *(uint16_t*)0x20003ec2 = 1; *(uint16_t*)0x20003ec4 = 1; *(uint16_t*)0x20003ec6 = 1; *(uint16_t*)0x20003ec8 = 0; *(uint16_t*)0x20003eca = 1; *(uint16_t*)0x20003ecc = 2; *(uint16_t*)0x20003ece = 0; *(uint16_t*)0x20003ed0 = 5; *(uint16_t*)0x20003ed2 = 0; *(uint16_t*)0x20003ed4 = 5; *(uint16_t*)0x20003ed6 = 0; *(uint16_t*)0x20003ed8 = 1; *(uint16_t*)0x20003eda = 1; *(uint16_t*)0x20003edc = 4; *(uint16_t*)0x20003ede = 2; *(uint16_t*)0x20003ee0 = 5; *(uint16_t*)0x20003ee2 = 0; *(uint16_t*)0x20003ee4 = 0; *(uint16_t*)0x20003ee6 = 1; *(uint16_t*)0x20003ee8 = 5; *(uint16_t*)0x20003eea = 0; *(uint16_t*)0x20003eec = 3; *(uint16_t*)0x20003eee = 1; *(uint16_t*)0x20003ef0 = 3; *(uint16_t*)0x20003ef2 = 0; *(uint16_t*)0x20003ef4 = 4; *(uint16_t*)0x20003ef6 = 1; *(uint16_t*)0x20003ef8 = 2; *(uint16_t*)0x20003efa = 0; *(uint16_t*)0x20003efc = 0; *(uint16_t*)0x20003efe = 1; *(uint16_t*)0x20003f00 = 2; *(uint16_t*)0x20003f02 = 0; *(uint16_t*)0x20003f04 = 1; *(uint16_t*)0x20003f06 = 0; *(uint16_t*)0x20003f08 = 4; *(uint16_t*)0x20003f0a = 1; *(uint16_t*)0x20003f0c = 2; *(uint16_t*)0x20003f0e = 0; *(uint16_t*)0x20003f10 = 2; *(uint16_t*)0x20003f12 = 1; *(uint16_t*)0x20003f14 = 0; *(uint16_t*)0x20003f16 = 1; *(uint16_t*)0x20003f18 = 1; *(uint16_t*)0x20003f1a = 0; *(uint16_t*)0x20003f1c = 5; *(uint16_t*)0x20003f1e = 1; *(uint16_t*)0x20003f20 = 1; *(uint16_t*)0x20003f22 = 1; *(uint16_t*)0x20003f24 = 2; *(uint16_t*)0x20003f26 = 1; *(uint16_t*)0x20003f28 = 5; *(uint16_t*)0x20003f2a = 0; *(uint16_t*)0x20003f2c = 5; *(uint16_t*)0x20003f2e = 1; *(uint16_t*)0x20003f30 = 4; *(uint16_t*)0x20003f32 = 1; *(uint16_t*)0x20003f34 = 0; *(uint16_t*)0x20003f36 = 0; *(uint16_t*)0x20003f38 = 3; *(uint16_t*)0x20003f3a = 0; *(uint16_t*)0x20003f3c = 1; *(uint16_t*)0x20003f3e = 0; *(uint16_t*)0x20003f40 = 2; *(uint16_t*)0x20003f42 = 1; *(uint16_t*)0x20003f44 = 3; *(uint16_t*)0x20003f46 = 1; *(uint16_t*)0x20003f48 = 0; *(uint16_t*)0x20003f4a = 1; *(uint16_t*)0x20003f4c = 3; *(uint16_t*)0x20003f4e = 1; *(uint16_t*)0x20003f50 = 3; *(uint16_t*)0x20003f52 = 1; *(uint16_t*)0x20003f54 = 1; *(uint16_t*)0x20003f56 = 1; *(uint16_t*)0x20003f58 = 3; *(uint16_t*)0x20003f5a = 1; *(uint16_t*)0x20003f5c = 1; *(uint16_t*)0x20003f5e = 1; *(uint16_t*)0x20003f60 = 4; *(uint16_t*)0x20003f62 = 0; *(uint16_t*)0x20003f64 = 4; *(uint16_t*)0x20003f66 = 1; *(uint16_t*)0x20003f68 = 1; *(uint16_t*)0x20003f6a = 0; *(uint16_t*)0x20003f6c = 4; *(uint16_t*)0x20003f6e = 1; *(uint16_t*)0x20003f70 = 0; *(uint16_t*)0x20003f72 = 0; *(uint16_t*)0x20003f74 = 2; *(uint16_t*)0x20003f76 = 1; *(uint16_t*)0x20003f78 = 2; *(uint16_t*)0x20003f7a = 0; *(uint16_t*)0x20003f7c = 0; *(uint16_t*)0x20003f7e = 1; *(uint16_t*)0x20003f80 = 5; *(uint16_t*)0x20003f82 = 0; *(uint16_t*)0x20003f84 = 1; *(uint16_t*)0x20003f86 = 1; *(uint16_t*)0x20003f88 = 0; *(uint16_t*)0x20003f8a = 1; *(uint16_t*)0x20003f8c = 1; *(uint16_t*)0x20003f8e = 1; *(uint16_t*)0x20003f90 = 4; *(uint16_t*)0x20003f92 = 0; *(uint16_t*)0x20003f94 = 1; *(uint16_t*)0x20003f96 = 1; *(uint16_t*)0x20003f98 = 5; *(uint16_t*)0x20003f9a = 0; *(uint16_t*)0x20003f9c = 5; *(uint16_t*)0x20003f9e = 1; *(uint16_t*)0x20003fa0 = 0; *(uint16_t*)0x20003fa2 = 0; *(uint16_t*)0x20003fa4 = 3; *(uint16_t*)0x20003fa6 = 0; *(uint16_t*)0x20003fa8 = 1; *(uint16_t*)0x20003faa = 1; *(uint16_t*)0x20003fac = 0; *(uint16_t*)0x20003fae = 0; *(uint16_t*)0x20003fb0 = 1; *(uint16_t*)0x20003fb2 = 0x9c8c; *(uint16_t*)0x20003fb4 = 3; *(uint16_t*)0x20003fb6 = 1; *(uint16_t*)0x20003fb8 = 0; *(uint16_t*)0x20003fba = 0; *(uint16_t*)0x20003fbc = 4; *(uint16_t*)0x20003fbe = 1; *(uint16_t*)0x20003fc0 = 1; *(uint16_t*)0x20003fc2 = 0; *(uint16_t*)0x20003fc4 = 5; *(uint16_t*)0x20003fc6 = 1; *(uint16_t*)0x20003fc8 = 2; *(uint16_t*)0x20003fca = 0; *(uint16_t*)0x20003fcc = 5; *(uint16_t*)0x20003fce = 1; *(uint16_t*)0x20003fd0 = 0x9967; *(uint16_t*)0x20003fd2 = 0; *(uint16_t*)0x20003fd4 = 0; *(uint16_t*)0x20003fd6 = 1; *(uint16_t*)0x20003fd8 = 1; *(uint16_t*)0x20003fda = 1; *(uint16_t*)0x20003fdc = 2; *(uint16_t*)0x20003fde = 0; *(uint16_t*)0x20003fe0 = 2; *(uint16_t*)0x20003fe2 = 1; *(uint16_t*)0x20003fe4 = 5; *(uint16_t*)0x20003fe6 = 0; *(uint16_t*)0x20003fe8 = 0x4ae8; *(uint16_t*)0x20003fea = 0; *(uint16_t*)0x20003fec = 5; *(uint16_t*)0x20003fee = 1; *(uint16_t*)0x20003ff0 = 3; *(uint16_t*)0x20003ff2 = 1; *(uint16_t*)0x20003ff4 = 1; *(uint16_t*)0x20003ff6 = 1; *(uint16_t*)0x20003ff8 = 4; *(uint16_t*)0x20003ffa = 0xf4f7; *(uint16_t*)0x20003ffc = 5; *(uint16_t*)0x20003ffe = 0; *(uint16_t*)0x20004000 = 0; *(uint16_t*)0x20004002 = 1; *(uint16_t*)0x20004004 = 5; *(uint16_t*)0x20004006 = 1; *(uint16_t*)0x20004008 = 2; *(uint16_t*)0x2000400a = 1; *(uint16_t*)0x2000400c = 4; *(uint16_t*)0x2000400e = 0xa368; *(uint16_t*)0x20004010 = 3; *(uint16_t*)0x20004012 = 0; *(uint16_t*)0x20004014 = 1; *(uint16_t*)0x20004016 = 0; *(uint16_t*)0x20004018 = 0; *(uint16_t*)0x2000401a = 1; *(uint16_t*)0x2000401c = 0; *(uint16_t*)0x2000401e = 1; *(uint16_t*)0x20004020 = 3; *(uint16_t*)0x20004022 = 1; *(uint16_t*)0x20004024 = 1; *(uint16_t*)0x20004026 = 1; *(uint16_t*)0x20004028 = 0; *(uint16_t*)0x2000402a = 1; *(uint16_t*)0x2000402c = 3; *(uint16_t*)0x2000402e = 0; *(uint16_t*)0x20004030 = 1; *(uint16_t*)0x20004032 = 1; *(uint16_t*)0x20004034 = 3; *(uint16_t*)0x20004036 = 0; *(uint16_t*)0x20004038 = 1; *(uint16_t*)0x2000403a = 1; *(uint16_t*)0x2000403c = 0; *(uint16_t*)0x2000403e = 0; *(uint16_t*)0x20004040 = 2; *(uint16_t*)0x20004042 = 0; *(uint16_t*)0x20004044 = 4; *(uint16_t*)0x20004046 = 1; *(uint16_t*)0x20004048 = 5; *(uint16_t*)0x2000404a = 0; *(uint16_t*)0x2000404c = 2; *(uint16_t*)0x2000404e = 0; *(uint16_t*)0x20004050 = 0; *(uint16_t*)0x20004052 = 0; *(uint16_t*)0x20004054 = 1; *(uint16_t*)0x20004056 = 0; *(uint16_t*)0x20004058 = 2; *(uint16_t*)0x2000405a = 0; *(uint16_t*)0x2000405c = 2; *(uint16_t*)0x2000405e = 0; *(uint16_t*)0x20004060 = 0; *(uint16_t*)0x20004062 = 1; *(uint16_t*)0x20004064 = 2; *(uint16_t*)0x20004066 = 1; *(uint16_t*)0x20004068 = 2; *(uint16_t*)0x2000406a = 0; *(uint16_t*)0x2000406c = 1; *(uint16_t*)0x2000406e = 0; *(uint16_t*)0x20004070 = 6; *(uint16_t*)0x20004072 = 1; *(uint8_t*)0x20004074 = 0; *(uint16_t*)0x20004078 = 0xe68; *(uint16_t*)0x2000407a = 4; *(uint32_t*)0x2000407c = 0; *(uint32_t*)0x20004080 = 0x80000000; *(uint32_t*)0x20004084 = 7; *(uint32_t*)0x20004088 = 0xa50; *(uint32_t*)0x2000408c = 0x8001; *(uint8_t*)0x20004090 = 0x6a; *(uint8_t*)0x20004091 = 2; *(uint32_t*)0x20004094 = 0xab9; *(uint32_t*)0x20004098 = 0x2b7; *(uint32_t*)0x2000409c = 4; *(uint32_t*)0x200040a0 = 0x1000; *(uint32_t*)0x200040a4 = 0x4cb; *(uint32_t*)0x200040a8 = 0x10001; *(uint32_t*)0x200040ac = 9; *(uint32_t*)0x200040b0 = 4; *(uint32_t*)0x200040b4 = 0x401; *(uint32_t*)0x200040b8 = 0xce9; *(uint32_t*)0x200040bc = 1; *(uint32_t*)0x200040c0 = 0x5cc; *(uint32_t*)0x200040c4 = 0x80000000; *(uint32_t*)0x200040c8 = 5; *(uint32_t*)0x200040cc = 0x800; *(uint32_t*)0x200040d0 = 0xf7a0a910; *(uint32_t*)0x200040d4 = 0x9a3; *(uint32_t*)0x200040d8 = 5; *(uint32_t*)0x200040dc = 0xa486; *(uint32_t*)0x200040e0 = 9; *(uint32_t*)0x200040e4 = 0x7fff; *(uint32_t*)0x200040e8 = 0x3ff; *(uint32_t*)0x200040ec = 3; *(uint32_t*)0x200040f0 = 7; *(uint32_t*)0x200040f4 = 7; *(uint32_t*)0x200040f8 = 9; *(uint32_t*)0x200040fc = 0; *(uint32_t*)0x20004100 = 1; *(uint32_t*)0x20004104 = 0x68b; *(uint32_t*)0x20004108 = 0x81; *(uint32_t*)0x2000410c = 0xd77; *(uint32_t*)0x20004110 = 5; *(uint32_t*)0x20004114 = 0x7fffffff; *(uint32_t*)0x20004118 = 0; *(uint32_t*)0x2000411c = 1; *(uint32_t*)0x20004120 = 9; *(uint32_t*)0x20004124 = 7; *(uint32_t*)0x20004128 = 2; *(uint32_t*)0x2000412c = 0x3f; *(uint32_t*)0x20004130 = 2; *(uint32_t*)0x20004134 = 0xfffffffc; *(uint32_t*)0x20004138 = 0xfffffffe; *(uint32_t*)0x2000413c = 3; *(uint32_t*)0x20004140 = 0x1f; *(uint32_t*)0x20004144 = 0x30e; *(uint32_t*)0x20004148 = 7; *(uint32_t*)0x2000414c = 0x81; *(uint32_t*)0x20004150 = 5; *(uint32_t*)0x20004154 = 8; *(uint32_t*)0x20004158 = 8; *(uint32_t*)0x2000415c = 7; *(uint32_t*)0x20004160 = 2; *(uint32_t*)0x20004164 = 0; *(uint32_t*)0x20004168 = 0x80000001; *(uint32_t*)0x2000416c = 4; *(uint32_t*)0x20004170 = 0x3ff; *(uint32_t*)0x20004174 = 0xdae; *(uint32_t*)0x20004178 = 0x401; *(uint32_t*)0x2000417c = 0x68; *(uint32_t*)0x20004180 = 0xe1; *(uint32_t*)0x20004184 = 3; *(uint32_t*)0x20004188 = 1; *(uint32_t*)0x2000418c = 0; *(uint32_t*)0x20004190 = 0x3ff; *(uint32_t*)0x20004194 = 0xed; *(uint32_t*)0x20004198 = 0; *(uint32_t*)0x2000419c = 0x10000; *(uint32_t*)0x200041a0 = 8; *(uint32_t*)0x200041a4 = 0; *(uint32_t*)0x200041a8 = 0x3c33c085; *(uint32_t*)0x200041ac = 7; *(uint32_t*)0x200041b0 = 7; *(uint32_t*)0x200041b4 = 7; *(uint32_t*)0x200041b8 = 0x40; *(uint32_t*)0x200041bc = 9; *(uint32_t*)0x200041c0 = 5; *(uint32_t*)0x200041c4 = 0xc60; *(uint32_t*)0x200041c8 = 0xfffffe00; *(uint32_t*)0x200041cc = 2; *(uint32_t*)0x200041d0 = 0xff; *(uint32_t*)0x200041d4 = 9; *(uint32_t*)0x200041d8 = 6; *(uint32_t*)0x200041dc = 6; *(uint32_t*)0x200041e0 = 1; *(uint32_t*)0x200041e4 = 0x3f; *(uint32_t*)0x200041e8 = 1; *(uint32_t*)0x200041ec = 7; *(uint32_t*)0x200041f0 = 5; *(uint32_t*)0x200041f4 = 8; *(uint32_t*)0x200041f8 = 6; *(uint32_t*)0x200041fc = 0x70d4; *(uint32_t*)0x20004200 = 0xfff; *(uint32_t*)0x20004204 = 0xfffffffb; *(uint32_t*)0x20004208 = 6; *(uint32_t*)0x2000420c = 8; *(uint32_t*)0x20004210 = 0xfffffc00; *(uint32_t*)0x20004214 = 0xfffffe00; *(uint32_t*)0x20004218 = 0x63259963; *(uint32_t*)0x2000421c = 2; *(uint32_t*)0x20004220 = 3; *(uint32_t*)0x20004224 = 0x7f; *(uint32_t*)0x20004228 = 0x200; *(uint32_t*)0x2000422c = 0x3ef8; *(uint32_t*)0x20004230 = 0x3f671375; *(uint32_t*)0x20004234 = 0x954f; *(uint32_t*)0x20004238 = 7; *(uint32_t*)0x2000423c = 0x101; *(uint32_t*)0x20004240 = 2; *(uint32_t*)0x20004244 = 1; *(uint32_t*)0x20004248 = 0x79e74d9a; *(uint32_t*)0x2000424c = 0xfff; *(uint32_t*)0x20004250 = 1; *(uint32_t*)0x20004254 = 3; *(uint32_t*)0x20004258 = 6; *(uint32_t*)0x2000425c = 0xd9bf; *(uint32_t*)0x20004260 = 8; *(uint32_t*)0x20004264 = 3; *(uint32_t*)0x20004268 = 0x8001; *(uint32_t*)0x2000426c = 0xffff; *(uint32_t*)0x20004270 = 0x98f; *(uint32_t*)0x20004274 = 0; *(uint32_t*)0x20004278 = 0x40; *(uint32_t*)0x2000427c = 4; *(uint32_t*)0x20004280 = 0xfffffff0; *(uint32_t*)0x20004284 = 0x7ff; *(uint32_t*)0x20004288 = 0x8000; *(uint32_t*)0x2000428c = 0; *(uint32_t*)0x20004290 = 7; *(uint32_t*)0x20004294 = 0x101; *(uint32_t*)0x20004298 = 6; *(uint32_t*)0x2000429c = 0xaa6; *(uint32_t*)0x200042a0 = 0xc683; *(uint32_t*)0x200042a4 = 4; *(uint32_t*)0x200042a8 = 0x1ff; *(uint32_t*)0x200042ac = 3; *(uint32_t*)0x200042b0 = 0x8001; *(uint32_t*)0x200042b4 = 2; *(uint32_t*)0x200042b8 = 1; *(uint32_t*)0x200042bc = 7; *(uint32_t*)0x200042c0 = 8; *(uint32_t*)0x200042c4 = 8; *(uint32_t*)0x200042c8 = 0x3f; *(uint32_t*)0x200042cc = 0x20; *(uint32_t*)0x200042d0 = 0x3ff; *(uint32_t*)0x200042d4 = 0x200; *(uint32_t*)0x200042d8 = 0x1f; *(uint32_t*)0x200042dc = 0xa000000; *(uint32_t*)0x200042e0 = 4; *(uint32_t*)0x200042e4 = 8; *(uint32_t*)0x200042e8 = 8; *(uint32_t*)0x200042ec = -1; *(uint32_t*)0x200042f0 = 0x100; *(uint32_t*)0x200042f4 = 3; *(uint32_t*)0x200042f8 = 1; *(uint32_t*)0x200042fc = 0x35b; *(uint32_t*)0x20004300 = 0xfff; *(uint32_t*)0x20004304 = 7; *(uint32_t*)0x20004308 = 1; *(uint32_t*)0x2000430c = 0x20; *(uint32_t*)0x20004310 = 0; *(uint32_t*)0x20004314 = 5; *(uint32_t*)0x20004318 = 0x25e; *(uint32_t*)0x2000431c = 9; *(uint32_t*)0x20004320 = 3; *(uint32_t*)0x20004324 = 0; *(uint32_t*)0x20004328 = 0x8001; *(uint32_t*)0x2000432c = 2; *(uint32_t*)0x20004330 = 0x9ead; *(uint32_t*)0x20004334 = 2; *(uint32_t*)0x20004338 = 0x10001; *(uint32_t*)0x2000433c = 0x30a; *(uint32_t*)0x20004340 = 0x1ff; *(uint32_t*)0x20004344 = 7; *(uint32_t*)0x20004348 = 4; *(uint32_t*)0x2000434c = 0x10001; *(uint32_t*)0x20004350 = 0x81; *(uint32_t*)0x20004354 = 9; *(uint32_t*)0x20004358 = 5; *(uint32_t*)0x2000435c = 0x81; *(uint32_t*)0x20004360 = 0xd59; *(uint32_t*)0x20004364 = 1; *(uint32_t*)0x20004368 = 0x1f; *(uint32_t*)0x2000436c = 7; *(uint32_t*)0x20004370 = 0; *(uint32_t*)0x20004374 = 7; *(uint32_t*)0x20004378 = 7; *(uint32_t*)0x2000437c = 0x101; *(uint32_t*)0x20004380 = 1; *(uint32_t*)0x20004384 = 8; *(uint32_t*)0x20004388 = 8; *(uint32_t*)0x2000438c = 0; *(uint32_t*)0x20004390 = 0x45; *(uint32_t*)0x20004394 = 0; *(uint32_t*)0x20004398 = 0x40; *(uint32_t*)0x2000439c = 5; *(uint32_t*)0x200043a0 = 5; *(uint32_t*)0x200043a4 = 6; *(uint32_t*)0x200043a8 = 1; *(uint32_t*)0x200043ac = 0x17ff; *(uint32_t*)0x200043b0 = 3; *(uint32_t*)0x200043b4 = 9; *(uint32_t*)0x200043b8 = 7; *(uint32_t*)0x200043bc = 0x20; *(uint32_t*)0x200043c0 = 0xba; *(uint32_t*)0x200043c4 = 0x1e61; *(uint32_t*)0x200043c8 = 0x200; *(uint32_t*)0x200043cc = 1; *(uint32_t*)0x200043d0 = 1; *(uint32_t*)0x200043d4 = 2; *(uint32_t*)0x200043d8 = 4; *(uint32_t*)0x200043dc = 9; *(uint32_t*)0x200043e0 = 0xff; *(uint32_t*)0x200043e4 = 2; *(uint32_t*)0x200043e8 = 0x1f; *(uint32_t*)0x200043ec = 9; *(uint32_t*)0x200043f0 = 8; *(uint32_t*)0x200043f4 = 0x800; *(uint32_t*)0x200043f8 = 6; *(uint32_t*)0x200043fc = 0xfffffffa; *(uint32_t*)0x20004400 = 9; *(uint32_t*)0x20004404 = 0xad8; *(uint32_t*)0x20004408 = 0x94b; *(uint32_t*)0x2000440c = 7; *(uint32_t*)0x20004410 = 0xffffff7f; *(uint32_t*)0x20004414 = 0x7e5; *(uint32_t*)0x20004418 = 0x1ff; *(uint32_t*)0x2000441c = 0xfffffff8; *(uint32_t*)0x20004420 = 7; *(uint32_t*)0x20004424 = 3; *(uint32_t*)0x20004428 = 7; *(uint32_t*)0x2000442c = 0x1f; *(uint32_t*)0x20004430 = 0xd8e4; *(uint32_t*)0x20004434 = 3; *(uint32_t*)0x20004438 = 1; *(uint32_t*)0x2000443c = 0xb8e6; *(uint32_t*)0x20004440 = 1; *(uint32_t*)0x20004444 = 7; *(uint32_t*)0x20004448 = 3; *(uint32_t*)0x2000444c = 0xe4bc; *(uint32_t*)0x20004450 = 0x1ff; *(uint32_t*)0x20004454 = 0x31; *(uint32_t*)0x20004458 = 8; *(uint32_t*)0x2000445c = 3; *(uint32_t*)0x20004460 = 6; *(uint32_t*)0x20004464 = 0x80000000; *(uint32_t*)0x20004468 = 2; *(uint32_t*)0x2000446c = 0; *(uint32_t*)0x20004470 = 6; *(uint32_t*)0x20004474 = 0x840; *(uint32_t*)0x20004478 = 0x400; *(uint32_t*)0x2000447c = 5; *(uint32_t*)0x20004480 = 7; *(uint32_t*)0x20004484 = 0x18000; *(uint32_t*)0x20004488 = 0x87; *(uint32_t*)0x2000448c = 0x19cb; *(uint32_t*)0x20004490 = 0x10001; *(uint32_t*)0x20004494 = 8; *(uint32_t*)0x20004498 = 0x7fffffff; *(uint32_t*)0x2000449c = 8; *(uint32_t*)0x200044a0 = 0x80000001; *(uint32_t*)0x200044a4 = 7; *(uint32_t*)0x200044a8 = 0x1f; *(uint32_t*)0x200044ac = 0x20; *(uint32_t*)0x200044b0 = 0; *(uint32_t*)0x200044b4 = 6; *(uint32_t*)0x200044b8 = 8; *(uint32_t*)0x200044bc = 3; *(uint32_t*)0x200044c0 = 0x7fff; *(uint32_t*)0x200044c4 = 0; *(uint32_t*)0x200044c8 = 0xfa21; *(uint32_t*)0x200044cc = 6; *(uint32_t*)0x200044d0 = 0x7ff; *(uint32_t*)0x200044d4 = 1; *(uint32_t*)0x200044d8 = 0x54; *(uint32_t*)0x200044dc = 9; *(uint32_t*)0x200044e0 = 0x20; *(uint32_t*)0x200044e4 = 3; *(uint32_t*)0x200044e8 = 1; *(uint32_t*)0x200044ec = 0x40; *(uint32_t*)0x200044f0 = 0x76; *(uint32_t*)0x200044f4 = 0x100000; *(uint32_t*)0x200044f8 = 1; *(uint32_t*)0x200044fc = 9; *(uint32_t*)0x20004500 = 4; *(uint32_t*)0x20004504 = 0xfffffff9; *(uint32_t*)0x20004508 = 0xfffffff9; *(uint32_t*)0x2000450c = 0x101; *(uint32_t*)0x20004510 = 8; *(uint32_t*)0x20004514 = 6; *(uint32_t*)0x20004518 = 9; *(uint32_t*)0x2000451c = 9; *(uint32_t*)0x20004520 = 0xd6d; *(uint32_t*)0x20004524 = 8; *(uint32_t*)0x20004528 = 0xca0b; *(uint32_t*)0x2000452c = 6; *(uint32_t*)0x20004530 = 0x10000; *(uint32_t*)0x20004534 = 0xff; *(uint32_t*)0x20004538 = 3; *(uint32_t*)0x2000453c = 0xfffffffe; *(uint32_t*)0x20004540 = 0; *(uint32_t*)0x20004544 = 2; *(uint32_t*)0x20004548 = 0x7fffffff; *(uint32_t*)0x2000454c = 7; *(uint32_t*)0x20004550 = 0x101; *(uint32_t*)0x20004554 = 8; *(uint32_t*)0x20004558 = 8; *(uint32_t*)0x2000455c = 9; *(uint32_t*)0x20004560 = 0x7fffffff; *(uint32_t*)0x20004564 = 0; *(uint32_t*)0x20004568 = 5; *(uint32_t*)0x2000456c = 0xeb7f; *(uint32_t*)0x20004570 = 0x401; *(uint32_t*)0x20004574 = 0x3ff; *(uint32_t*)0x20004578 = 0x1f0; *(uint32_t*)0x2000457c = 0; *(uint32_t*)0x20004580 = 6; *(uint32_t*)0x20004584 = 7; *(uint32_t*)0x20004588 = 0xb90d; *(uint32_t*)0x2000458c = 0x5dc; *(uint32_t*)0x20004590 = 0x28d; *(uint32_t*)0x20004594 = 0x7f; *(uint32_t*)0x20004598 = 2; *(uint32_t*)0x2000459c = 5; *(uint32_t*)0x200045a0 = 2; *(uint32_t*)0x200045a4 = 0x100; *(uint32_t*)0x200045a8 = 0; *(uint32_t*)0x200045ac = -1; *(uint32_t*)0x200045b0 = 0x100; *(uint32_t*)0x200045b4 = 5; *(uint32_t*)0x200045b8 = 5; *(uint32_t*)0x200045bc = 7; *(uint32_t*)0x200045c0 = 0x593f; *(uint32_t*)0x200045c4 = 8; *(uint32_t*)0x200045c8 = 0; *(uint32_t*)0x200045cc = 8; *(uint32_t*)0x200045d0 = 5; *(uint32_t*)0x200045d4 = 0x180; *(uint32_t*)0x200045d8 = 2; *(uint32_t*)0x200045dc = 2; *(uint32_t*)0x200045e0 = 0x5666e1a0; *(uint32_t*)0x200045e4 = 7; *(uint32_t*)0x200045e8 = 0x81; *(uint32_t*)0x200045ec = 4; *(uint32_t*)0x200045f0 = 6; *(uint32_t*)0x200045f4 = 0x7f; *(uint32_t*)0x200045f8 = 1; *(uint32_t*)0x200045fc = 4; *(uint32_t*)0x20004600 = 0x7fffffff; *(uint32_t*)0x20004604 = 0xfffffffd; *(uint32_t*)0x20004608 = 6; *(uint32_t*)0x2000460c = 0xffff; *(uint32_t*)0x20004610 = 0xcbc3; *(uint32_t*)0x20004614 = 0; *(uint32_t*)0x20004618 = 0xffffff2c; *(uint32_t*)0x2000461c = 0x88; *(uint32_t*)0x20004620 = 0x80000001; *(uint32_t*)0x20004624 = 0; *(uint32_t*)0x20004628 = 9; *(uint32_t*)0x2000462c = 2; *(uint32_t*)0x20004630 = 3; *(uint32_t*)0x20004634 = 0xff; *(uint32_t*)0x20004638 = 6; *(uint32_t*)0x2000463c = 0x100; *(uint32_t*)0x20004640 = 7; *(uint32_t*)0x20004644 = 1; *(uint32_t*)0x20004648 = 7; *(uint32_t*)0x2000464c = 2; *(uint32_t*)0x20004650 = 9; *(uint32_t*)0x20004654 = 0; *(uint32_t*)0x20004658 = 2; *(uint32_t*)0x2000465c = 3; *(uint32_t*)0x20004660 = 7; *(uint32_t*)0x20004664 = 5; *(uint32_t*)0x20004668 = 3; *(uint32_t*)0x2000466c = 7; *(uint32_t*)0x20004670 = 5; *(uint32_t*)0x20004674 = 0x25; *(uint32_t*)0x20004678 = 0x3ff; *(uint32_t*)0x2000467c = 9; *(uint32_t*)0x20004680 = 3; *(uint32_t*)0x20004684 = 0x7ff; *(uint32_t*)0x20004688 = 1; *(uint32_t*)0x2000468c = 0x7fffffff; *(uint32_t*)0x20004690 = 0x795c; *(uint32_t*)0x20004694 = 4; *(uint32_t*)0x20004698 = 0x400; *(uint32_t*)0x2000469c = 0x400; *(uint32_t*)0x200046a0 = 7; *(uint32_t*)0x200046a4 = 5; *(uint32_t*)0x200046a8 = 0x8001; *(uint32_t*)0x200046ac = 7; *(uint32_t*)0x200046b0 = 4; *(uint32_t*)0x200046b4 = 0xcbd; *(uint32_t*)0x200046b8 = 9; *(uint32_t*)0x200046bc = 2; *(uint32_t*)0x200046c0 = 0; *(uint32_t*)0x200046c4 = 0xf57; *(uint32_t*)0x200046c8 = 7; *(uint32_t*)0x200046cc = 3; *(uint32_t*)0x200046d0 = 8; *(uint32_t*)0x200046d4 = 8; *(uint32_t*)0x200046d8 = 0x8001; *(uint32_t*)0x200046dc = 0x8000; *(uint32_t*)0x200046e0 = 0x3f; *(uint32_t*)0x200046e4 = 0xafd; *(uint32_t*)0x200046e8 = 4; *(uint32_t*)0x200046ec = 0x7f; *(uint32_t*)0x200046f0 = 0xff; *(uint32_t*)0x200046f4 = 1; *(uint32_t*)0x200046f8 = 5; *(uint32_t*)0x200046fc = 4; *(uint32_t*)0x20004700 = 9; *(uint32_t*)0x20004704 = 0xff; *(uint32_t*)0x20004708 = 0x100; *(uint32_t*)0x2000470c = 0x10000; *(uint32_t*)0x20004710 = 0x7fff; *(uint32_t*)0x20004714 = 0x380; *(uint32_t*)0x20004718 = 6; *(uint32_t*)0x2000471c = 0xffff34b8; *(uint32_t*)0x20004720 = 0xfff; *(uint32_t*)0x20004724 = 0x7ff; *(uint32_t*)0x20004728 = 3; *(uint32_t*)0x2000472c = 5; *(uint32_t*)0x20004730 = 6; *(uint32_t*)0x20004734 = 9; *(uint32_t*)0x20004738 = 6; *(uint32_t*)0x2000473c = 7; *(uint32_t*)0x20004740 = 2; *(uint32_t*)0x20004744 = 6; *(uint32_t*)0x20004748 = 6; *(uint32_t*)0x2000474c = 0; *(uint32_t*)0x20004750 = 0x29f6444c; *(uint32_t*)0x20004754 = 6; *(uint32_t*)0x20004758 = 0xd19; *(uint32_t*)0x2000475c = 6; *(uint32_t*)0x20004760 = 0x18000000; *(uint32_t*)0x20004764 = 0x88; *(uint32_t*)0x20004768 = 0x523d; *(uint32_t*)0x2000476c = 0xfffffffa; *(uint32_t*)0x20004770 = 0x3a; *(uint32_t*)0x20004774 = 9; *(uint32_t*)0x20004778 = 1; *(uint32_t*)0x2000477c = 6; *(uint32_t*)0x20004780 = 6; *(uint32_t*)0x20004784 = 4; *(uint32_t*)0x20004788 = 0x80; *(uint32_t*)0x2000478c = 0xfff; *(uint32_t*)0x20004790 = 8; *(uint32_t*)0x20004794 = 0xf4; *(uint32_t*)0x20004798 = 2; *(uint32_t*)0x2000479c = 0xae5; *(uint32_t*)0x200047a0 = 0x7c4; *(uint32_t*)0x200047a4 = 0x3f; *(uint32_t*)0x200047a8 = 0x40; *(uint32_t*)0x200047ac = 7; *(uint32_t*)0x200047b0 = 7; *(uint32_t*)0x200047b4 = 0x6278; *(uint32_t*)0x200047b8 = 1; *(uint32_t*)0x200047bc = 0x7ff; *(uint32_t*)0x200047c0 = 0x7ff; *(uint32_t*)0x200047c4 = 0; *(uint32_t*)0x200047c8 = 1; *(uint32_t*)0x200047cc = 1; *(uint32_t*)0x200047d0 = 7; *(uint32_t*)0x200047d4 = 0x3aa; *(uint32_t*)0x200047d8 = 9; *(uint32_t*)0x200047dc = 2; *(uint32_t*)0x200047e0 = 1; *(uint32_t*)0x200047e4 = 6; *(uint32_t*)0x200047e8 = 0xfffff927; *(uint32_t*)0x200047ec = 3; *(uint32_t*)0x200047f0 = 2; *(uint32_t*)0x200047f4 = 0x3ac; *(uint32_t*)0x200047f8 = 0x7ff; *(uint32_t*)0x200047fc = 6; *(uint32_t*)0x20004800 = 5; *(uint32_t*)0x20004804 = 0; *(uint32_t*)0x20004808 = 8; *(uint32_t*)0x2000480c = 0; *(uint32_t*)0x20004810 = 0x800; *(uint32_t*)0x20004814 = 5; *(uint32_t*)0x20004818 = 1; *(uint32_t*)0x2000481c = 0x8000; *(uint32_t*)0x20004820 = 5; *(uint32_t*)0x20004824 = 0x200; *(uint32_t*)0x20004828 = 0xfffff801; *(uint32_t*)0x2000482c = 0; *(uint32_t*)0x20004830 = 0x81; *(uint32_t*)0x20004834 = -1; *(uint32_t*)0x20004838 = 0x10001; *(uint32_t*)0x2000483c = 0x101; *(uint32_t*)0x20004840 = 0; *(uint32_t*)0x20004844 = 5; *(uint32_t*)0x20004848 = 0x3b; *(uint32_t*)0x2000484c = 0x7f; *(uint32_t*)0x20004850 = 0xce; *(uint32_t*)0x20004854 = 0; *(uint32_t*)0x20004858 = 0x10000; *(uint32_t*)0x2000485c = 0; *(uint32_t*)0x20004860 = 3; *(uint32_t*)0x20004864 = 0; *(uint32_t*)0x20004868 = 0x20; *(uint32_t*)0x2000486c = 0x101; *(uint32_t*)0x20004870 = 0x7f; *(uint32_t*)0x20004874 = 0x322; *(uint32_t*)0x20004878 = 2; *(uint32_t*)0x2000487c = 0x69a3; *(uint32_t*)0x20004880 = 0; *(uint32_t*)0x20004884 = 0xffff9b30; *(uint32_t*)0x20004888 = 0xf7b; *(uint32_t*)0x2000488c = 3; *(uint32_t*)0x20004890 = 4; *(uint32_t*)0x20004894 = 0xa914; *(uint32_t*)0x20004898 = 2; *(uint32_t*)0x2000489c = 0x200; *(uint32_t*)0x200048a0 = 6; *(uint32_t*)0x200048a4 = 4; *(uint32_t*)0x200048a8 = 0x1936ab5c; *(uint32_t*)0x200048ac = 0x20; *(uint32_t*)0x200048b0 = 1; *(uint32_t*)0x200048b4 = 9; *(uint32_t*)0x200048b8 = 0; *(uint32_t*)0x200048bc = 8; *(uint32_t*)0x200048c0 = 0xce01; *(uint32_t*)0x200048c4 = 0x10610000; *(uint32_t*)0x200048c8 = 0xffff8000; *(uint32_t*)0x200048cc = 0x1f; *(uint32_t*)0x200048d0 = 0; *(uint32_t*)0x200048d4 = 5; *(uint32_t*)0x200048d8 = 1; *(uint32_t*)0x200048dc = 0x10b47e61; *(uint32_t*)0x200048e0 = 0x1000; *(uint32_t*)0x200048e4 = 9; *(uint32_t*)0x200048e8 = 1; *(uint32_t*)0x200048ec = 6; *(uint32_t*)0x200048f0 = 6; *(uint32_t*)0x200048f4 = 5; *(uint32_t*)0x200048f8 = 0xff; *(uint32_t*)0x200048fc = 8; *(uint32_t*)0x20004900 = 0x5b5; *(uint32_t*)0x20004904 = 8; *(uint32_t*)0x20004908 = 0xfff; *(uint32_t*)0x2000490c = 3; *(uint32_t*)0x20004910 = 2; *(uint32_t*)0x20004914 = 0x7fffffff; *(uint32_t*)0x20004918 = 9; *(uint32_t*)0x2000491c = 0; *(uint32_t*)0x20004920 = 0x457; *(uint32_t*)0x20004924 = 0x800; *(uint32_t*)0x20004928 = 0x56; *(uint32_t*)0x2000492c = 0x80000000; *(uint32_t*)0x20004930 = 0x400; *(uint32_t*)0x20004934 = 5; *(uint32_t*)0x20004938 = 4; *(uint32_t*)0x2000493c = 0x1000; *(uint32_t*)0x20004940 = 7; *(uint32_t*)0x20004944 = 2; *(uint32_t*)0x20004948 = 2; *(uint32_t*)0x2000494c = 5; *(uint32_t*)0x20004950 = 0x20; *(uint32_t*)0x20004954 = 0x2d; *(uint32_t*)0x20004958 = 0x8000; *(uint32_t*)0x2000495c = 6; *(uint32_t*)0x20004960 = 7; *(uint32_t*)0x20004964 = 0x42fcd0c6; *(uint32_t*)0x20004968 = 0; *(uint32_t*)0x2000496c = 0x80000001; *(uint32_t*)0x20004970 = 0x200; *(uint32_t*)0x20004974 = 0x7f; *(uint32_t*)0x20004978 = 4; *(uint32_t*)0x2000497c = 0x959b; *(uint32_t*)0x20004980 = 0x7fffffff; *(uint32_t*)0x20004984 = 3; *(uint32_t*)0x20004988 = 5; *(uint32_t*)0x2000498c = 0x8000; *(uint32_t*)0x20004990 = 9; *(uint32_t*)0x20004994 = 0; *(uint32_t*)0x20004998 = 5; *(uint32_t*)0x2000499c = 0xb3; *(uint32_t*)0x200049a0 = 3; *(uint32_t*)0x200049a4 = 0; *(uint32_t*)0x200049a8 = 0x400; *(uint32_t*)0x200049ac = 9; *(uint32_t*)0x200049b0 = 0; *(uint32_t*)0x200049b4 = 9; *(uint32_t*)0x200049b8 = 3; *(uint32_t*)0x200049bc = 0x1f; *(uint32_t*)0x200049c0 = 0; *(uint32_t*)0x200049c4 = 3; *(uint32_t*)0x200049c8 = 3; *(uint32_t*)0x200049cc = 3; *(uint32_t*)0x200049d0 = 0xff; *(uint32_t*)0x200049d4 = 7; *(uint32_t*)0x200049d8 = 9; *(uint32_t*)0x200049dc = 4; *(uint32_t*)0x200049e0 = 0xad; *(uint32_t*)0x200049e4 = 4; *(uint32_t*)0x200049e8 = 0x22f5; *(uint32_t*)0x200049ec = 7; *(uint32_t*)0x200049f0 = 0x8000; *(uint32_t*)0x200049f4 = 9; *(uint32_t*)0x200049f8 = 0xffffff25; *(uint32_t*)0x200049fc = 0x3f; *(uint32_t*)0x20004a00 = 0xd2c; *(uint32_t*)0x20004a04 = 9; *(uint32_t*)0x20004a08 = 1; *(uint32_t*)0x20004a0c = 0xc7; *(uint32_t*)0x20004a10 = 9; *(uint32_t*)0x20004a14 = 0x295e6fab; *(uint32_t*)0x20004a18 = 5; *(uint32_t*)0x20004a1c = 9; *(uint32_t*)0x20004a20 = 9; *(uint32_t*)0x20004a24 = 5; *(uint32_t*)0x20004a28 = 8; *(uint32_t*)0x20004a2c = 1; *(uint32_t*)0x20004a30 = 2; *(uint32_t*)0x20004a34 = 6; *(uint32_t*)0x20004a38 = 5; *(uint32_t*)0x20004a3c = 7; *(uint32_t*)0x20004a40 = 0xe08d; *(uint32_t*)0x20004a44 = 0xfffffffa; *(uint32_t*)0x20004a48 = 0xc2c; *(uint32_t*)0x20004a4c = 0x20; *(uint32_t*)0x20004a50 = 9; *(uint32_t*)0x20004a54 = 3; *(uint32_t*)0x20004a58 = 0xd4d; *(uint32_t*)0x20004a5c = 0x401; *(uint32_t*)0x20004a60 = 2; *(uint32_t*)0x20004a64 = 0x40; *(uint32_t*)0x20004a68 = 0x17cc; *(uint32_t*)0x20004a6c = 7; *(uint32_t*)0x20004a70 = 8; *(uint32_t*)0x20004a74 = 0x81; *(uint32_t*)0x20004a78 = 0x100; *(uint32_t*)0x20004a7c = 0x3ff; *(uint32_t*)0x20004a80 = 0x10001; *(uint32_t*)0x20004a84 = 0; *(uint32_t*)0x20004a88 = 7; *(uint32_t*)0x20004a8c = 3; *(uint32_t*)0x20004a90 = 0xe6a; *(uint32_t*)0x20004a94 = 0xffff8000; *(uint32_t*)0x20004a98 = 0xffff; *(uint32_t*)0x20004a9c = 0xfa; *(uint32_t*)0x20004aa0 = 1; *(uint32_t*)0x20004aa4 = 0xc57d; *(uint32_t*)0x20004aa8 = 0xa5; *(uint32_t*)0x20004aac = 6; *(uint32_t*)0x20004ab0 = 5; *(uint32_t*)0x20004ab4 = 8; *(uint32_t*)0x20004ab8 = 9; *(uint32_t*)0x20004abc = 0x6a9f; *(uint32_t*)0x20004ac0 = 5; *(uint32_t*)0x20004ac4 = 2; *(uint32_t*)0x20004ac8 = 0; *(uint32_t*)0x20004acc = 0x3d; *(uint32_t*)0x20004ad0 = 0x20; *(uint32_t*)0x20004ad4 = 0x7f85accc; *(uint32_t*)0x20004ad8 = 6; *(uint32_t*)0x20004adc = 8; *(uint32_t*)0x20004ae0 = 0x10001; *(uint32_t*)0x20004ae4 = 8; *(uint32_t*)0x20004ae8 = 0xcd1c; *(uint32_t*)0x20004aec = 2; *(uint32_t*)0x20004af0 = 9; *(uint32_t*)0x20004af4 = 3; *(uint32_t*)0x20004af8 = 6; *(uint32_t*)0x20004afc = 0xc6; *(uint32_t*)0x20004b00 = 0x1000; *(uint32_t*)0x20004b04 = 0xf; *(uint32_t*)0x20004b08 = 4; *(uint32_t*)0x20004b0c = 0xbe3d; *(uint32_t*)0x20004b10 = 4; *(uint32_t*)0x20004b14 = 0x81; *(uint32_t*)0x20004b18 = 7; *(uint32_t*)0x20004b1c = 2; *(uint32_t*)0x20004b20 = 8; *(uint32_t*)0x20004b24 = 7; *(uint32_t*)0x20004b28 = 0x1000; *(uint32_t*)0x20004b2c = 0x400; *(uint32_t*)0x20004b30 = 8; *(uint32_t*)0x20004b34 = 0xfff; *(uint32_t*)0x20004b38 = 3; *(uint32_t*)0x20004b3c = 3; *(uint32_t*)0x20004b40 = 0xfffffffd; *(uint32_t*)0x20004b44 = 0x40; *(uint32_t*)0x20004b48 = 9; *(uint32_t*)0x20004b4c = 0x400000; *(uint32_t*)0x20004b50 = 0xff; *(uint32_t*)0x20004b54 = 0x1f; *(uint32_t*)0x20004b58 = 0xff; *(uint32_t*)0x20004b5c = 1; *(uint32_t*)0x20004b60 = 0x54d; *(uint32_t*)0x20004b64 = 0x9f; *(uint32_t*)0x20004b68 = 0x6d; *(uint32_t*)0x20004b6c = 4; *(uint32_t*)0x20004b70 = 0x18; *(uint32_t*)0x20004b74 = 0x7ff; *(uint32_t*)0x20004b78 = 3; *(uint32_t*)0x20004b7c = 6; *(uint32_t*)0x20004b80 = 0x400; *(uint32_t*)0x20004b84 = 0; *(uint32_t*)0x20004b88 = 0x423748f7; *(uint32_t*)0x20004b8c = 0xadb9; *(uint32_t*)0x20004b90 = 0x6e1d; *(uint32_t*)0x20004b94 = 0x20; *(uint32_t*)0x20004b98 = 1; *(uint32_t*)0x20004b9c = 2; *(uint32_t*)0x20004ba0 = 7; *(uint32_t*)0x20004ba4 = 0x4c3; *(uint32_t*)0x20004ba8 = 0x100; *(uint32_t*)0x20004bac = 0x94; *(uint32_t*)0x20004bb0 = 3; *(uint32_t*)0x20004bb4 = 0x1400; *(uint32_t*)0x20004bb8 = 5; *(uint32_t*)0x20004bbc = 0x1f; *(uint32_t*)0x20004bc0 = 2; *(uint32_t*)0x20004bc4 = 0x100; *(uint32_t*)0x20004bc8 = 3; *(uint32_t*)0x20004bcc = 0xffff; *(uint32_t*)0x20004bd0 = 0xfff; *(uint32_t*)0x20004bd4 = 0x3ff; *(uint32_t*)0x20004bd8 = 0x6ed; *(uint32_t*)0x20004bdc = 0xa3b20000; *(uint32_t*)0x20004be0 = 1; *(uint32_t*)0x20004be4 = 1; *(uint32_t*)0x20004be8 = 0x800; *(uint32_t*)0x20004bec = 0x8be9; *(uint32_t*)0x20004bf0 = 0x2997; *(uint32_t*)0x20004bf4 = 0x302ad4d7; *(uint32_t*)0x20004bf8 = 6; *(uint32_t*)0x20004bfc = 7; *(uint32_t*)0x20004c00 = 5; *(uint32_t*)0x20004c04 = 6; *(uint32_t*)0x20004c08 = 0x3ecf; *(uint32_t*)0x20004c0c = 0x100; *(uint32_t*)0x20004c10 = 9; *(uint32_t*)0x20004c14 = 7; *(uint32_t*)0x20004c18 = 9; *(uint32_t*)0x20004c1c = 0xfffffffe; *(uint32_t*)0x20004c20 = 8; *(uint32_t*)0x20004c24 = 6; *(uint32_t*)0x20004c28 = 0x3ff; *(uint32_t*)0x20004c2c = 0x401; *(uint32_t*)0x20004c30 = 0x40; *(uint32_t*)0x20004c34 = 9; *(uint32_t*)0x20004c38 = 2; *(uint32_t*)0x20004c3c = 3; *(uint32_t*)0x20004c40 = 8; *(uint32_t*)0x20004c44 = 0x10000; *(uint32_t*)0x20004c48 = 6; *(uint32_t*)0x20004c4c = 3; *(uint32_t*)0x20004c50 = 0xa4ef; *(uint32_t*)0x20004c54 = 0xca2f; *(uint32_t*)0x20004c58 = 0x10001; *(uint32_t*)0x20004c5c = 1; *(uint32_t*)0x20004c60 = 6; *(uint32_t*)0x20004c64 = 0xff; *(uint32_t*)0x20004c68 = 8; *(uint32_t*)0x20004c6c = 4; *(uint32_t*)0x20004c70 = 0x101; *(uint32_t*)0x20004c74 = 1; *(uint32_t*)0x20004c78 = 7; *(uint32_t*)0x20004c7c = 2; *(uint32_t*)0x20004c80 = 0x10001; *(uint32_t*)0x20004c84 = 9; *(uint32_t*)0x20004c88 = 0x401; *(uint32_t*)0x20004c8c = -1; *(uint32_t*)0x20004c90 = 3; *(uint32_t*)0x20004c94 = 6; *(uint32_t*)0x20004c98 = 0x40; *(uint32_t*)0x20004c9c = 0xfff; *(uint32_t*)0x20004ca0 = 0xc6; *(uint32_t*)0x20004ca4 = 0xb6f2; *(uint32_t*)0x20004ca8 = 0x480000; *(uint32_t*)0x20004cac = 6; *(uint32_t*)0x20004cb0 = 3; *(uint32_t*)0x20004cb4 = 3; *(uint32_t*)0x20004cb8 = 0x673; *(uint32_t*)0x20004cbc = 0x81; *(uint32_t*)0x20004cc0 = 0x1ff; *(uint32_t*)0x20004cc4 = 3; *(uint32_t*)0x20004cc8 = 9; *(uint32_t*)0x20004ccc = 1; *(uint32_t*)0x20004cd0 = 0xb1; *(uint32_t*)0x20004cd4 = 3; *(uint32_t*)0x20004cd8 = 0xb79; *(uint16_t*)0x20004cdc = 2; *(uint16_t*)0x20004cde = 0; *(uint16_t*)0x20004ce0 = 3; *(uint16_t*)0x20004ce2 = 1; *(uint16_t*)0x20004ce4 = 2; *(uint16_t*)0x20004ce6 = 0; *(uint16_t*)0x20004ce8 = 2; *(uint16_t*)0x20004cea = 0; *(uint16_t*)0x20004cec = 1; *(uint16_t*)0x20004cee = 0; *(uint16_t*)0x20004cf0 = 0; *(uint16_t*)0x20004cf2 = 0; *(uint16_t*)0x20004cf4 = 4; *(uint16_t*)0x20004cf6 = 1; *(uint16_t*)0x20004cf8 = 3; *(uint16_t*)0x20004cfa = 1; *(uint16_t*)0x20004cfc = 0; *(uint16_t*)0x20004cfe = 1; *(uint16_t*)0x20004d00 = 2; *(uint16_t*)0x20004d02 = 1; *(uint16_t*)0x20004d04 = 1; *(uint16_t*)0x20004d06 = 1; *(uint16_t*)0x20004d08 = 0; *(uint16_t*)0x20004d0a = 0; *(uint16_t*)0x20004d0c = 1; *(uint16_t*)0x20004d0e = 1; *(uint16_t*)0x20004d10 = 3; *(uint16_t*)0x20004d12 = 0; *(uint16_t*)0x20004d14 = 5; *(uint16_t*)0x20004d16 = 1; *(uint16_t*)0x20004d18 = 3; *(uint16_t*)0x20004d1a = 1; *(uint16_t*)0x20004d1c = 4; *(uint16_t*)0x20004d1e = 1; *(uint16_t*)0x20004d20 = 2; *(uint16_t*)0x20004d22 = 0; *(uint16_t*)0x20004d24 = 2; *(uint16_t*)0x20004d26 = 1; *(uint16_t*)0x20004d28 = 4; *(uint16_t*)0x20004d2a = 0; *(uint16_t*)0x20004d2c = 3; *(uint16_t*)0x20004d2e = 1; *(uint16_t*)0x20004d30 = 0; *(uint16_t*)0x20004d32 = 0; *(uint16_t*)0x20004d34 = 4; *(uint16_t*)0x20004d36 = 0; *(uint16_t*)0x20004d38 = 1; *(uint16_t*)0x20004d3a = 1; *(uint16_t*)0x20004d3c = 2; *(uint16_t*)0x20004d3e = 1; *(uint16_t*)0x20004d40 = 5; *(uint16_t*)0x20004d42 = 1; *(uint16_t*)0x20004d44 = 4; *(uint16_t*)0x20004d46 = 1; *(uint16_t*)0x20004d48 = 1; *(uint16_t*)0x20004d4a = 0; *(uint16_t*)0x20004d4c = 0; *(uint16_t*)0x20004d4e = 0; *(uint16_t*)0x20004d50 = 2; *(uint16_t*)0x20004d52 = 0; *(uint16_t*)0x20004d54 = 5; *(uint16_t*)0x20004d56 = 1; *(uint16_t*)0x20004d58 = 0; *(uint16_t*)0x20004d5a = 1; *(uint16_t*)0x20004d5c = 3; *(uint16_t*)0x20004d5e = 1; *(uint16_t*)0x20004d60 = 5; *(uint16_t*)0x20004d62 = 0; *(uint16_t*)0x20004d64 = 4; *(uint16_t*)0x20004d66 = 0; *(uint16_t*)0x20004d68 = 1; *(uint16_t*)0x20004d6a = 1; *(uint16_t*)0x20004d6c = 4; *(uint16_t*)0x20004d6e = 1; *(uint16_t*)0x20004d70 = 2; *(uint16_t*)0x20004d72 = 0; *(uint16_t*)0x20004d74 = 5; *(uint16_t*)0x20004d76 = 0; *(uint16_t*)0x20004d78 = 3; *(uint16_t*)0x20004d7a = 1; *(uint16_t*)0x20004d7c = 4; *(uint16_t*)0x20004d7e = 1; *(uint16_t*)0x20004d80 = 3; *(uint16_t*)0x20004d82 = 1; *(uint16_t*)0x20004d84 = 5; *(uint16_t*)0x20004d86 = 1; *(uint16_t*)0x20004d88 = 3; *(uint16_t*)0x20004d8a = 1; *(uint16_t*)0x20004d8c = 2; *(uint16_t*)0x20004d8e = 1; *(uint16_t*)0x20004d90 = 1; *(uint16_t*)0x20004d92 = 1; *(uint16_t*)0x20004d94 = 0; *(uint16_t*)0x20004d96 = 0x1256; *(uint16_t*)0x20004d98 = 3; *(uint16_t*)0x20004d9a = 0; *(uint16_t*)0x20004d9c = 1; *(uint16_t*)0x20004d9e = 1; *(uint16_t*)0x20004da0 = 3; *(uint16_t*)0x20004da2 = 1; *(uint16_t*)0x20004da4 = 2; *(uint16_t*)0x20004da6 = 0; *(uint16_t*)0x20004da8 = 5; *(uint16_t*)0x20004daa = 0; *(uint16_t*)0x20004dac = 0; *(uint16_t*)0x20004dae = 1; *(uint16_t*)0x20004db0 = 4; *(uint16_t*)0x20004db2 = 1; *(uint16_t*)0x20004db4 = 0; *(uint16_t*)0x20004db6 = 0; *(uint16_t*)0x20004db8 = 0; *(uint16_t*)0x20004dba = 1; *(uint16_t*)0x20004dbc = 4; *(uint16_t*)0x20004dbe = 0; *(uint16_t*)0x20004dc0 = 0; *(uint16_t*)0x20004dc2 = 0; *(uint16_t*)0x20004dc4 = 3; *(uint16_t*)0x20004dc6 = 1; *(uint16_t*)0x20004dc8 = 2; *(uint16_t*)0x20004dca = 0; *(uint16_t*)0x20004dcc = 4; *(uint16_t*)0x20004dce = 0; *(uint16_t*)0x20004dd0 = 6; *(uint16_t*)0x20004dd2 = 1; *(uint16_t*)0x20004dd4 = 3; *(uint16_t*)0x20004dd6 = 1; *(uint16_t*)0x20004dd8 = 1; *(uint16_t*)0x20004dda = 0; *(uint16_t*)0x20004ddc = 0; *(uint16_t*)0x20004dde = 0; *(uint16_t*)0x20004de0 = 5; *(uint16_t*)0x20004de2 = 1; *(uint16_t*)0x20004de4 = 4; *(uint16_t*)0x20004de6 = 1; *(uint16_t*)0x20004de8 = 4; *(uint16_t*)0x20004dea = 1; *(uint16_t*)0x20004dec = 5; *(uint16_t*)0x20004dee = 1; *(uint16_t*)0x20004df0 = 4; *(uint16_t*)0x20004df2 = 1; *(uint16_t*)0x20004df4 = 3; *(uint16_t*)0x20004df6 = 0; *(uint16_t*)0x20004df8 = 1; *(uint16_t*)0x20004dfa = 0; *(uint16_t*)0x20004dfc = 3; *(uint16_t*)0x20004dfe = 1; *(uint16_t*)0x20004e00 = 4; *(uint16_t*)0x20004e02 = 0; *(uint16_t*)0x20004e04 = 4; *(uint16_t*)0x20004e06 = 1; *(uint16_t*)0x20004e08 = 0; *(uint16_t*)0x20004e0a = 1; *(uint16_t*)0x20004e0c = 0; *(uint16_t*)0x20004e0e = 0; *(uint16_t*)0x20004e10 = 0; *(uint16_t*)0x20004e12 = 1; *(uint16_t*)0x20004e14 = 5; *(uint16_t*)0x20004e16 = 0; *(uint16_t*)0x20004e18 = 5; *(uint16_t*)0x20004e1a = 1; *(uint16_t*)0x20004e1c = 2; *(uint16_t*)0x20004e1e = 0; *(uint16_t*)0x20004e20 = 3; *(uint16_t*)0x20004e22 = 1; *(uint16_t*)0x20004e24 = 0; *(uint16_t*)0x20004e26 = 0; *(uint16_t*)0x20004e28 = 1; *(uint16_t*)0x20004e2a = 0; *(uint16_t*)0x20004e2c = 3; *(uint16_t*)0x20004e2e = 0; *(uint16_t*)0x20004e30 = 4; *(uint16_t*)0x20004e32 = 0; *(uint16_t*)0x20004e34 = 5; *(uint16_t*)0x20004e36 = 0; *(uint16_t*)0x20004e38 = 1; *(uint16_t*)0x20004e3a = 0; *(uint16_t*)0x20004e3c = 3; *(uint16_t*)0x20004e3e = 0; *(uint16_t*)0x20004e40 = 1; *(uint16_t*)0x20004e42 = 0; *(uint16_t*)0x20004e44 = 5; *(uint16_t*)0x20004e46 = 1; *(uint16_t*)0x20004e48 = 1; *(uint16_t*)0x20004e4a = 0; *(uint16_t*)0x20004e4c = 2; *(uint16_t*)0x20004e4e = 0; *(uint16_t*)0x20004e50 = 0; *(uint16_t*)0x20004e52 = 1; *(uint16_t*)0x20004e54 = 4; *(uint16_t*)0x20004e56 = 0; *(uint16_t*)0x20004e58 = 3; *(uint16_t*)0x20004e5a = 1; *(uint16_t*)0x20004e5c = 0; *(uint16_t*)0x20004e5e = 1; *(uint16_t*)0x20004e60 = 4; *(uint16_t*)0x20004e62 = 1; *(uint16_t*)0x20004e64 = 1; *(uint16_t*)0x20004e66 = 0; *(uint16_t*)0x20004e68 = 5; *(uint16_t*)0x20004e6a = 0; *(uint16_t*)0x20004e6c = 4; *(uint16_t*)0x20004e6e = 1; *(uint16_t*)0x20004e70 = 2; *(uint16_t*)0x20004e72 = 0; *(uint16_t*)0x20004e74 = 2; *(uint16_t*)0x20004e76 = 1; *(uint16_t*)0x20004e78 = 0; *(uint16_t*)0x20004e7a = 1; *(uint16_t*)0x20004e7c = 5; *(uint16_t*)0x20004e7e = 1; *(uint16_t*)0x20004e80 = 3; *(uint16_t*)0x20004e82 = 0; *(uint16_t*)0x20004e84 = 0; *(uint16_t*)0x20004e86 = 0; *(uint16_t*)0x20004e88 = 4; *(uint16_t*)0x20004e8a = 1; *(uint16_t*)0x20004e8c = 5; *(uint16_t*)0x20004e8e = 0; *(uint16_t*)0x20004e90 = 0; *(uint16_t*)0x20004e92 = 0; *(uint16_t*)0x20004e94 = 3; *(uint16_t*)0x20004e96 = 1; *(uint16_t*)0x20004e98 = 3; *(uint16_t*)0x20004e9a = 1; *(uint16_t*)0x20004e9c = 5; *(uint16_t*)0x20004e9e = 1; *(uint16_t*)0x20004ea0 = 4; *(uint16_t*)0x20004ea2 = 0; *(uint16_t*)0x20004ea4 = 2; *(uint16_t*)0x20004ea6 = 0; *(uint16_t*)0x20004ea8 = 2; *(uint16_t*)0x20004eaa = 1; *(uint16_t*)0x20004eac = 5; *(uint16_t*)0x20004eae = 1; *(uint16_t*)0x20004eb0 = 5; *(uint16_t*)0x20004eb2 = 0; *(uint16_t*)0x20004eb4 = 2; *(uint16_t*)0x20004eb6 = 0; *(uint16_t*)0x20004eb8 = 4; *(uint16_t*)0x20004eba = 0; *(uint16_t*)0x20004ebc = 1; *(uint16_t*)0x20004ebe = 0; *(uint16_t*)0x20004ec0 = 2; *(uint16_t*)0x20004ec2 = 0; *(uint16_t*)0x20004ec4 = 0; *(uint16_t*)0x20004ec6 = 1; *(uint16_t*)0x20004ec8 = 3; *(uint16_t*)0x20004eca = 1; *(uint16_t*)0x20004ecc = 5; *(uint16_t*)0x20004ece = 0; *(uint16_t*)0x20004ed0 = 1; *(uint16_t*)0x20004ed2 = 1; *(uint16_t*)0x20004ed4 = 3; *(uint16_t*)0x20004ed6 = 1; *(uint16_t*)0x20004ed8 = 5; *(uint16_t*)0x20004eda = 1; *(uint8_t*)0x20004edc = 0; *(uint16_t*)0x20004ee0 = 4; *(uint16_t*)0x20004ee2 = 6; *(uint16_t*)0x20004ee4 = 0xc; *(uint16_t*)0x20004ee6 = 7; *(uint32_t*)0x20004ee8 = 1; *(uint32_t*)0x20004eec = 1; *(uint16_t*)0x20004ef0 = 0xc; *(uint16_t*)0x20004ef2 = 8; *(uint32_t*)0x20004ef4 = 1; *(uint32_t*)0x20004ef8 = 3; *(uint16_t*)0x20004efc = 0x70; STORE_BY_BITMASK(uint16_t, , 0x20004efe, 2, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x20004eff, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x20004eff, 0, 7, 1); *(uint16_t*)0x20004f00 = 7; *(uint16_t*)0x20004f02 = 1; memcpy((void*)0x20004f04, "xt\000", 3); *(uint16_t*)0x20004f08 = 0x48; STORE_BY_BITMASK(uint16_t, , 0x20004f0a, 2, 0, 14); STORE_BY_BITMASK(uint16_t, , 0x20004f0b, 0, 6, 1); STORE_BY_BITMASK(uint16_t, , 0x20004f0b, 1, 7, 1); *(uint16_t*)0x20004f0c = 8; *(uint16_t*)0x20004f0e = 3; *(uint32_t*)0x20004f10 = 0x92eb; *(uint16_t*)0x20004f14 = 8; *(uint16_t*)0x20004f16 = 2; *(uint32_t*)0x20004f18 = 0; *(uint16_t*)0x20004f1c = 0x24; *(uint16_t*)0x20004f1e = 1; memcpy((void*)0x20004f20, "filter\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000", 32); *(uint16_t*)0x20004f40 = 8; *(uint16_t*)0x20004f42 = 2; *(uint32_t*)0x20004f44 = 1; *(uint16_t*)0x20004f48 = 8; *(uint16_t*)0x20004f4a = 3; *(uint32_t*)0x20004f4c = 8; *(uint16_t*)0x20004f50 = 4; *(uint16_t*)0x20004f52 = 6; *(uint16_t*)0x20004f54 = 0xc; *(uint16_t*)0x20004f56 = 7; *(uint32_t*)0x20004f58 = 0; *(uint32_t*)0x20004f5c = 1; *(uint16_t*)0x20004f60 = 0xc; *(uint16_t*)0x20004f62 = 8; *(uint32_t*)0x20004f64 = 1; *(uint32_t*)0x20004f68 = 2; *(uint16_t*)0x20004f6c = 0x47c; *(uint16_t*)0x20004f6e = 6; *(uint16_t*)0x20004f70 = 0x3c; *(uint16_t*)0x20004f72 = 1; *(uint32_t*)0x20004f74 = 0x80000001; *(uint32_t*)0x20004f78 = 0; *(uint32_t*)0x20004f7c = 0x10001; *(uint32_t*)0x20004f80 = 1; *(uint32_t*)0x20004f84 = 7; *(uint8_t*)0x20004f88 = 0x65; *(uint8_t*)0x20004f89 = 2; *(uint16_t*)0x20004f8a = 0xd86; *(uint16_t*)0x20004f8c = 5; *(uint16_t*)0x20004f8e = 6; *(uint32_t*)0x20004f90 = 7; *(uint8_t*)0x20004f94 = 3; *(uint8_t*)0x20004f95 = 3; *(uint16_t*)0x20004f96 = 0; *(uint16_t*)0x20004f98 = 0; *(uint16_t*)0x20004f9a = 6; *(uint32_t*)0x20004f9c = 0; *(uint32_t*)0x20004fa0 = 0x1000; *(uint32_t*)0x20004fa4 = 6; *(uint32_t*)0x20004fa8 = 0xc19d932; *(uint16_t*)0x20004fac = 0xc; *(uint16_t*)0x20004fae = 8; *(uint64_t*)0x20004fb0 = 0x2fc9; *(uint16_t*)0x20004fb8 = 0x404; *(uint16_t*)0x20004fba = 2; *(uint32_t*)0x20004fbc = 3; *(uint32_t*)0x20004fc0 = 0x80; *(uint32_t*)0x20004fc4 = 0; *(uint32_t*)0x20004fc8 = 5; *(uint32_t*)0x20004fcc = 1; *(uint32_t*)0x20004fd0 = 8; *(uint32_t*)0x20004fd4 = 2; *(uint32_t*)0x20004fd8 = 2; *(uint32_t*)0x20004fdc = 0x38; *(uint32_t*)0x20004fe0 = 0x40; *(uint32_t*)0x20004fe4 = 0x80; *(uint32_t*)0x20004fe8 = 1; *(uint32_t*)0x20004fec = 0x101; *(uint32_t*)0x20004ff0 = 0x6141; *(uint32_t*)0x20004ff4 = 0; *(uint32_t*)0x20004ff8 = 0x200; *(uint32_t*)0x20004ffc = 4; *(uint32_t*)0x20005000 = 5; *(uint32_t*)0x20005004 = 1; *(uint32_t*)0x20005008 = 0x502; *(uint32_t*)0x2000500c = 0x42; *(uint32_t*)0x20005010 = 8; *(uint32_t*)0x20005014 = 0x100; *(uint32_t*)0x20005018 = 0xfffffff7; *(uint32_t*)0x2000501c = -1; *(uint32_t*)0x20005020 = 7; *(uint32_t*)0x20005024 = 0x80000000; *(uint32_t*)0x20005028 = 9; *(uint32_t*)0x2000502c = 0x40; *(uint32_t*)0x20005030 = 7; *(uint32_t*)0x20005034 = 0xe0; *(uint32_t*)0x20005038 = 7; *(uint32_t*)0x2000503c = 3; *(uint32_t*)0x20005040 = 0x4aa3; *(uint32_t*)0x20005044 = 7; *(uint32_t*)0x20005048 = 0xeb; *(uint32_t*)0x2000504c = 3; *(uint32_t*)0x20005050 = 6; *(uint32_t*)0x20005054 = 0; *(uint32_t*)0x20005058 = 0x80; *(uint32_t*)0x2000505c = 0xc493; *(uint32_t*)0x20005060 = 9; *(uint32_t*)0x20005064 = 0; *(uint32_t*)0x20005068 = 0x58; *(uint32_t*)0x2000506c = 9; *(uint32_t*)0x20005070 = 0x81; *(uint32_t*)0x20005074 = 6; *(uint32_t*)0x20005078 = 0x10000; *(uint32_t*)0x2000507c = 0x7ff; *(uint32_t*)0x20005080 = 0xa266; *(uint32_t*)0x20005084 = 0x20; *(uint32_t*)0x20005088 = 2; *(uint32_t*)0x2000508c = 7; *(uint32_t*)0x20005090 = 0xfffffff7; *(uint32_t*)0x20005094 = 7; *(uint32_t*)0x20005098 = 9; *(uint32_t*)0x2000509c = 7; *(uint32_t*)0x200050a0 = -1; *(uint32_t*)0x200050a4 = 5; *(uint32_t*)0x200050a8 = 1; *(uint32_t*)0x200050ac = 6; *(uint32_t*)0x200050b0 = 4; *(uint32_t*)0x200050b4 = 6; *(uint32_t*)0x200050b8 = 2; *(uint32_t*)0x200050bc = 2; *(uint32_t*)0x200050c0 = 2; *(uint32_t*)0x200050c4 = 0xff; *(uint32_t*)0x200050c8 = 0; *(uint32_t*)0x200050cc = 0xca; *(uint32_t*)0x200050d0 = 0x8000; *(uint32_t*)0x200050d4 = 9; *(uint32_t*)0x200050d8 = 0; *(uint32_t*)0x200050dc = 0x3ff; *(uint32_t*)0x200050e0 = 0x10001; *(uint32_t*)0x200050e4 = 0x7fffffff; *(uint32_t*)0x200050e8 = 0x7696921f; *(uint32_t*)0x200050ec = 0x80; *(uint32_t*)0x200050f0 = 1; *(uint32_t*)0x200050f4 = 4; *(uint32_t*)0x200050f8 = 0x100; *(uint32_t*)0x200050fc = 6; *(uint32_t*)0x20005100 = 0; *(uint32_t*)0x20005104 = 5; *(uint32_t*)0x20005108 = 7; *(uint32_t*)0x2000510c = 0xffff; *(uint32_t*)0x20005110 = 0; *(uint32_t*)0x20005114 = 0xca3; *(uint32_t*)0x20005118 = 0x1000; *(uint32_t*)0x2000511c = 0; *(uint32_t*)0x20005120 = 0; *(uint32_t*)0x20005124 = 0x594; *(uint32_t*)0x20005128 = 4; *(uint32_t*)0x2000512c = 0x80000000; *(uint32_t*)0x20005130 = 0x101; *(uint32_t*)0x20005134 = 4; *(uint32_t*)0x20005138 = 9; *(uint32_t*)0x2000513c = 7; *(uint32_t*)0x20005140 = 0x478f7641; *(uint32_t*)0x20005144 = 0xf076; *(uint32_t*)0x20005148 = 0x400; *(uint32_t*)0x2000514c = 1; *(uint32_t*)0x20005150 = 1; *(uint32_t*)0x20005154 = 1; *(uint32_t*)0x20005158 = 2; *(uint32_t*)0x2000515c = 0; *(uint32_t*)0x20005160 = -1; *(uint32_t*)0x20005164 = 0x694; *(uint32_t*)0x20005168 = 0xff; *(uint32_t*)0x2000516c = 3; *(uint32_t*)0x20005170 = 4; *(uint32_t*)0x20005174 = 0x7fff; *(uint32_t*)0x20005178 = 8; *(uint32_t*)0x2000517c = 0x1c2586b4; *(uint32_t*)0x20005180 = 0xfffffffc; *(uint32_t*)0x20005184 = 0x62bf; *(uint32_t*)0x20005188 = 0xfffffffb; *(uint32_t*)0x2000518c = 2; *(uint32_t*)0x20005190 = 8; *(uint32_t*)0x20005194 = 5; *(uint32_t*)0x20005198 = 6; *(uint32_t*)0x2000519c = 7; *(uint32_t*)0x200051a0 = 0x200; *(uint32_t*)0x200051a4 = 3; *(uint32_t*)0x200051a8 = 0x40; *(uint32_t*)0x200051ac = 0x6b0; *(uint32_t*)0x200051b0 = 7; *(uint32_t*)0x200051b4 = 0x40; *(uint32_t*)0x200051b8 = 7; *(uint32_t*)0x200051bc = 6; *(uint32_t*)0x200051c0 = 8; *(uint32_t*)0x200051c4 = -1; *(uint32_t*)0x200051c8 = 0x21874e02; *(uint32_t*)0x200051cc = 2; *(uint32_t*)0x200051d0 = 3; *(uint32_t*)0x200051d4 = 0; *(uint32_t*)0x200051d8 = 1; *(uint32_t*)0x200051dc = 5; *(uint32_t*)0x200051e0 = 0x5a; *(uint32_t*)0x200051e4 = 5; *(uint32_t*)0x200051e8 = 9; *(uint32_t*)0x200051ec = 9; *(uint32_t*)0x200051f0 = 0xbb62; *(uint32_t*)0x200051f4 = 6; *(uint32_t*)0x200051f8 = 0x5bc51343; *(uint32_t*)0x200051fc = 4; *(uint32_t*)0x20005200 = 4; *(uint32_t*)0x20005204 = 2; *(uint32_t*)0x20005208 = 2; *(uint32_t*)0x2000520c = 0x1d8; *(uint32_t*)0x20005210 = 1; *(uint32_t*)0x20005214 = 0x989; *(uint32_t*)0x20005218 = 9; *(uint32_t*)0x2000521c = 0x2683; *(uint32_t*)0x20005220 = 0xffff3d85; *(uint32_t*)0x20005224 = 0x3ff; *(uint32_t*)0x20005228 = 0xfff; *(uint32_t*)0x2000522c = 7; *(uint32_t*)0x20005230 = 0xf9a; *(uint32_t*)0x20005234 = 0x294a; *(uint32_t*)0x20005238 = 0x44579a8e; *(uint32_t*)0x2000523c = 7; *(uint32_t*)0x20005240 = 0xfa41; *(uint32_t*)0x20005244 = 0x86; *(uint32_t*)0x20005248 = 0x7ff; *(uint32_t*)0x2000524c = 6; *(uint32_t*)0x20005250 = 0x800; *(uint32_t*)0x20005254 = 0xcf1d; *(uint32_t*)0x20005258 = 0xfccb; *(uint32_t*)0x2000525c = 0x8001; *(uint32_t*)0x20005260 = 5; *(uint32_t*)0x20005264 = 0x101; *(uint32_t*)0x20005268 = 0x7f; *(uint32_t*)0x2000526c = 0x7fffffff; *(uint32_t*)0x20005270 = 0xf54; *(uint32_t*)0x20005274 = 9; *(uint32_t*)0x20005278 = 0x65; *(uint32_t*)0x2000527c = 8; *(uint32_t*)0x20005280 = 7; *(uint32_t*)0x20005284 = 0xb72a; *(uint32_t*)0x20005288 = 0x1ff; *(uint32_t*)0x2000528c = 0x101; *(uint32_t*)0x20005290 = 0x1000; *(uint32_t*)0x20005294 = 0xfffffff8; *(uint32_t*)0x20005298 = 6; *(uint32_t*)0x2000529c = 0x20; *(uint32_t*)0x200052a0 = 3; *(uint32_t*)0x200052a4 = 0; *(uint32_t*)0x200052a8 = 0; *(uint32_t*)0x200052ac = 0xb3be; *(uint32_t*)0x200052b0 = 0xffffff9c; *(uint32_t*)0x200052b4 = 1; *(uint32_t*)0x200052b8 = 6; *(uint32_t*)0x200052bc = 0x800; *(uint32_t*)0x200052c0 = 0x1f; *(uint32_t*)0x200052c4 = 0; *(uint32_t*)0x200052c8 = 2; *(uint32_t*)0x200052cc = 0x100; *(uint32_t*)0x200052d0 = 4; *(uint32_t*)0x200052d4 = 0x7fffffff; *(uint32_t*)0x200052d8 = 3; *(uint32_t*)0x200052dc = 0x100; *(uint32_t*)0x200052e0 = 0x32e; *(uint32_t*)0x200052e4 = 3; *(uint32_t*)0x200052e8 = 3; *(uint32_t*)0x200052ec = 4; *(uint32_t*)0x200052f0 = 0x7f; *(uint32_t*)0x200052f4 = 0x7ff; *(uint32_t*)0x200052f8 = 4; *(uint32_t*)0x200052fc = 0x1000; *(uint32_t*)0x20005300 = 0x3ff; *(uint32_t*)0x20005304 = 5; *(uint32_t*)0x20005308 = 0xff; *(uint32_t*)0x2000530c = 0xfffffffa; *(uint32_t*)0x20005310 = 4; *(uint32_t*)0x20005314 = 3; *(uint32_t*)0x20005318 = 5; *(uint32_t*)0x2000531c = 1; *(uint32_t*)0x20005320 = 3; *(uint32_t*)0x20005324 = 5; *(uint32_t*)0x20005328 = 0x100; *(uint32_t*)0x2000532c = 4; *(uint32_t*)0x20005330 = 0x80000001; *(uint32_t*)0x20005334 = 0x80; *(uint32_t*)0x20005338 = 4; *(uint32_t*)0x2000533c = 0x650; *(uint32_t*)0x20005340 = 0x81; *(uint32_t*)0x20005344 = 9; *(uint32_t*)0x20005348 = 2; *(uint32_t*)0x2000534c = -1; *(uint32_t*)0x20005350 = 1; *(uint32_t*)0x20005354 = 0x401; *(uint32_t*)0x20005358 = 0; *(uint32_t*)0x2000535c = 9; *(uint32_t*)0x20005360 = 0xbcd5; *(uint32_t*)0x20005364 = 0x80; *(uint32_t*)0x20005368 = 0xd6; *(uint32_t*)0x2000536c = 0x7fffffff; *(uint32_t*)0x20005370 = -1; *(uint32_t*)0x20005374 = 7; *(uint32_t*)0x20005378 = 4; *(uint32_t*)0x2000537c = 0x81; *(uint32_t*)0x20005380 = 0x200; *(uint32_t*)0x20005384 = 0x20000000; *(uint32_t*)0x20005388 = 0xff; *(uint32_t*)0x2000538c = 1; *(uint32_t*)0x20005390 = 0x1000; *(uint32_t*)0x20005394 = 4; *(uint32_t*)0x20005398 = 0xc0000000; *(uint32_t*)0x2000539c = 0x3f; *(uint32_t*)0x200053a0 = 0x683; *(uint32_t*)0x200053a4 = 8; *(uint32_t*)0x200053a8 = 7; *(uint32_t*)0x200053ac = -1; *(uint32_t*)0x200053b0 = 5; *(uint32_t*)0x200053b4 = 0xf33; *(uint32_t*)0x200053b8 = 9; *(uint16_t*)0x200053bc = 8; *(uint16_t*)0x200053be = 5; *(uint32_t*)0x200053c0 = 7; *(uint16_t*)0x200053c4 = 0xc; *(uint16_t*)0x200053c6 = 8; *(uint64_t*)0x200053c8 = 1; *(uint16_t*)0x200053d0 = 0xc; *(uint16_t*)0x200053d2 = 9; *(uint64_t*)0x200053d4 = 0x200040000; *(uint16_t*)0x200053dc = 0xc; *(uint16_t*)0x200053de = 8; *(uint64_t*)0x200053e0 = 6; *(uint64_t*)0x20000188 = 0x4d68; *(uint64_t*)0x200001d8 = 1; *(uint64_t*)0x200001e0 = 0; *(uint64_t*)0x200001e8 = 0; *(uint32_t*)0x200001f0 = 0; syscall(__NR_sendmsg, -1, 0x200001c0ul, 0ul); syscall(__NR_sendmmsg, r[0], 0x20000200ul, 0x10efe10675dec16ul, 0ul); } int main(void) { syscall(__NR_mmap, 0x1ffff000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x20000000ul, 0x1000000ul, 7ul, 0x32ul, -1, 0ul); syscall(__NR_mmap, 0x21000000ul, 0x1000ul, 0ul, 0x32ul, -1, 0ul); do_sandbox_none(); return 0; }