// https://syzkaller.appspot.com/bug?id=48b901470c6047df68df7ff565f630b0e1d98679 // 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 #ifndef __NR_memfd_create #define __NR_memfd_create 319 #endif static unsigned long long procid; 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; } 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; } struct fs_image_segment { void* data; uintptr_t size; uintptr_t offset; }; #define IMAGE_MAX_SEGMENTS 4096 #define IMAGE_MAX_SIZE (129 << 20) static unsigned long fs_image_segment_check(unsigned long size, unsigned long nsegs, struct fs_image_segment* segs) { if (nsegs > IMAGE_MAX_SEGMENTS) nsegs = IMAGE_MAX_SEGMENTS; for (size_t i = 0; i < nsegs; i++) { if (segs[i].size > IMAGE_MAX_SIZE) segs[i].size = IMAGE_MAX_SIZE; segs[i].offset %= IMAGE_MAX_SIZE; if (segs[i].offset > IMAGE_MAX_SIZE - segs[i].size) segs[i].offset = IMAGE_MAX_SIZE - segs[i].size; if (size < segs[i].offset + segs[i].offset) size = segs[i].offset + segs[i].offset; } if (size > IMAGE_MAX_SIZE) size = IMAGE_MAX_SIZE; return size; } static int setup_loop_device(long unsigned size, long unsigned nsegs, struct fs_image_segment* segs, const char* loopname, int* memfd_p, int* loopfd_p) { int err = 0, loopfd = -1; size = fs_image_segment_check(size, nsegs, segs); int memfd = syscall(__NR_memfd_create, "syzkaller", 0); if (memfd == -1) { err = errno; goto error; } if (ftruncate(memfd, size)) { err = errno; goto error_close_memfd; } for (size_t i = 0; i < nsegs; i++) { if (pwrite(memfd, segs[i].data, segs[i].size, segs[i].offset) < 0) { } } loopfd = open(loopname, O_RDWR); if (loopfd == -1) { err = errno; goto error_close_memfd; } if (ioctl(loopfd, LOOP_SET_FD, memfd)) { if (errno != EBUSY) { err = errno; goto error_close_loop; } ioctl(loopfd, LOOP_CLR_FD, 0); usleep(1000); if (ioctl(loopfd, LOOP_SET_FD, memfd)) { err = errno; goto error_close_loop; } } *memfd_p = memfd; *loopfd_p = loopfd; return 0; error_close_loop: close(loopfd); error_close_memfd: close(memfd); error: errno = err; return -1; } static long syz_mount_image(volatile long fsarg, volatile long dir, volatile unsigned long size, volatile unsigned long nsegs, volatile long segments, volatile long flags, volatile long optsarg) { struct fs_image_segment* segs = (struct fs_image_segment*)segments; int res = -1, err = 0, loopfd = -1, memfd = -1, need_loop_device = !!segs; char* mount_opts = (char*)optsarg; char* target = (char*)dir; char* fs = (char*)fsarg; char* source = NULL; char loopname[64]; if (need_loop_device) { memset(loopname, 0, sizeof(loopname)); snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid); if (setup_loop_device(size, nsegs, segs, loopname, &memfd, &loopfd) == -1) return -1; source = loopname; } mkdir(target, 0777); char opts[256]; memset(opts, 0, sizeof(opts)); if (strlen(mount_opts) > (sizeof(opts) - 32)) { } strncpy(opts, mount_opts, sizeof(opts) - 32); if (strcmp(fs, "iso9660") == 0) { flags |= MS_RDONLY; } else if (strncmp(fs, "ext", 3) == 0) { if (strstr(opts, "errors=panic") || strstr(opts, "errors=remount-ro") == 0) strcat(opts, ",errors=continue"); } else if (strcmp(fs, "xfs") == 0) { strcat(opts, ",nouuid"); } res = mount(source, target, fs, flags, opts); if (res == -1) { err = errno; goto error_clear_loop; } res = open(target, O_RDONLY | O_DIRECTORY); if (res == -1) { err = errno; } error_clear_loop: if (need_loop_device) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); close(memfd); } errno = err; return res; } 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 reset_loop() { char buf[64]; snprintf(buf, sizeof(buf), "/dev/loop%llu", procid); int loopfd = open(buf, O_RDWR); if (loopfd != -1) { ioctl(loopfd, LOOP_CLR_FD, 0); close(loopfd); } } static void setup_test() { prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0); setpgrp(); write_file("/proc/self/oom_score_adj", "1000"); } static void execute_one(void); #define WAIT_FLAGS __WALL static void loop(void) { int iter = 0; for (;; iter++) { reset_loop(); int pid = fork(); if (pid < 0) exit(1); if (pid == 0) { setup_test(); execute_one(); 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 < 5000) continue; kill_and_wait(pid, &status); break; } } } void execute_one(void) { memcpy((void*)0x20000000, "jfs\000", 4); memcpy((void*)0x20000100, "./file0\000", 8); *(uint64_t*)0x20000200 = 0x20010000; memcpy( (void*)0x20010000, "\x4a\x46\x53\x31\x01\x00\x00\x00\x60\x76\x00\x00\x00\x00\x00\x00\x00\x10" "\x00\x00\x0c\x00\x03\x00\x00\x02\x00\x00\x09\x00\x00\x00\x00\x20\x00\x00" "\x00\x09\x20\x10\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x18\x00" "\x00\x00\x02\x00\x00\x00\x16\x00\x00\x00\x33\x07\x00\x00\x01\x00\x00\x00" "\x00\x01\x00\x00\x00\x0f\x00\x00\x34\x00\x00\x00\xcc\x0e\x00\x00\x10\xc4" "\x64\x5f\x00\x00\x00\x00\x32\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x7a\x47\x2e\xe6\xbf\x9b\x47\x92" "\xbb\xbd\x3e\xd3\x46\x77\xed\x43\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa0\x9d\x45\xfe" "\xfe\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 192); *(uint64_t*)0x20000208 = 0xc0; *(uint64_t*)0x20000210 = 0x8000; *(uint64_t*)0x20000218 = 0; *(uint64_t*)0x20000220 = 0; *(uint64_t*)0x20000228 = 0x9000; *(uint64_t*)0x20000230 = 0; *(uint64_t*)0x20000238 = 0; *(uint64_t*)0x20000240 = 0x9800; *(uint64_t*)0x20000248 = 0; *(uint64_t*)0x20000250 = 0; *(uint64_t*)0x20000258 = 0xa800; *(uint64_t*)0x20000260 = 0; *(uint64_t*)0x20000268 = 0; *(uint64_t*)0x20000270 = 0xaa00; *(uint64_t*)0x20000278 = 0; *(uint64_t*)0x20000280 = 0; *(uint64_t*)0x20000288 = 0xac00; *(uint64_t*)0x20000290 = 0; *(uint64_t*)0x20000298 = 0; *(uint64_t*)0x200002a0 = 0xb020; *(uint64_t*)0x200002a8 = 0x20010f00; memcpy( (void*)0x20010f00, "\x10\xc4\x64\x5f\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x04\x00" "\x00\x00\x0b\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x200002b0 = 0xa0; *(uint64_t*)0x200002b8 = 0xb200; *(uint64_t*)0x200002c0 = 0x20011000; memcpy((void*)0x20011000, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83" "\x00\x03\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x200002c8 = 0x40; *(uint64_t*)0x200002d0 = 0xb2e0; *(uint64_t*)0x200002d8 = 0x20011100; memcpy((void*)0x20011100, "\x10\xc4\x64\x5f\x01\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04" "\x00\x00\x00\x0b\x00\x00\x00\x00\x60\x00\x00\x00\x00\x00\x00\x06\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x80\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x02\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x200002e0 = 0x80; *(uint64_t*)0x200002e8 = 0xb400; *(uint64_t*)0x200002f0 = 0x20011200; memcpy((void*)0x20011200, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83" "\x00\x03\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x200002f8 = 0x40; *(uint64_t*)0x20000300 = 0xb4e0; *(uint64_t*)0x20000308 = 0; *(uint64_t*)0x20000310 = 0; *(uint64_t*)0x20000318 = 0xb600; *(uint64_t*)0x20000320 = 0; *(uint64_t*)0x20000328 = 0; *(uint64_t*)0x20000330 = 0xb6e0; *(uint64_t*)0x20000338 = 0; *(uint64_t*)0x20000340 = 0; *(uint64_t*)0x20000348 = 0xb800; *(uint64_t*)0x20000350 = 0; *(uint64_t*)0x20000358 = 0; *(uint64_t*)0x20000360 = 0xb8e0; *(uint64_t*)0x20000368 = 0x20011700; memcpy( (void*)0x20011700, "\x10\xc4\x64\x5f\x01\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x04\x00" "\x00\x00\x0b\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x20000370 = 0xa0; *(uint64_t*)0x20000378 = 0xd000; *(uint64_t*)0x20000380 = 0x20011800; memcpy((void*)0x20011800, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83" "\x00\x03\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000388 = 0x40; *(uint64_t*)0x20000390 = 0xd0e0; *(uint64_t*)0x20000398 = 0; *(uint64_t*)0x200003a0 = 0; *(uint64_t*)0x200003a8 = 0xf000; *(uint64_t*)0x200003b0 = 0; *(uint64_t*)0x200003b8 = 0; *(uint64_t*)0x200003c0 = 0x10000; *(uint64_t*)0x200003c8 = 0; *(uint64_t*)0x200003d0 = 0; *(uint64_t*)0x200003d8 = 0x10420; *(uint64_t*)0x200003e0 = 0; *(uint64_t*)0x200003e8 = 0; *(uint64_t*)0x200003f0 = 0x13000; *(uint64_t*)0x200003f8 = 0; *(uint64_t*)0x20000400 = 0; *(uint64_t*)0x20000408 = 0x14000; *(uint64_t*)0x20000410 = 0; *(uint64_t*)0x20000418 = 0; *(uint64_t*)0x20000420 = 0x14800; *(uint64_t*)0x20000428 = 0; *(uint64_t*)0x20000430 = 0; *(uint64_t*)0x20000438 = 0x149c0; *(uint64_t*)0x20000440 = 0; *(uint64_t*)0x20000448 = 0; *(uint64_t*)0x20000450 = 0x14dc0; *(uint64_t*)0x20000458 = 0; *(uint64_t*)0x20000460 = 0; *(uint64_t*)0x20000468 = 0x16000; *(uint64_t*)0x20000470 = 0; *(uint64_t*)0x20000478 = 0; *(uint64_t*)0x20000480 = 0x16800; *(uint64_t*)0x20000488 = 0; *(uint64_t*)0x20000490 = 0; *(uint64_t*)0x20000498 = 0x17800; *(uint64_t*)0x200004a0 = 0; *(uint64_t*)0x200004a8 = 0; *(uint64_t*)0x200004b0 = 0x17a00; *(uint64_t*)0x200004b8 = 0; *(uint64_t*)0x200004c0 = 0; *(uint64_t*)0x200004c8 = 0x17c00; *(uint64_t*)0x200004d0 = 0; *(uint64_t*)0x200004d8 = 0; *(uint64_t*)0x200004e0 = 0x18020; *(uint64_t*)0x200004e8 = 0x20013900; memcpy( (void*)0x20013900, "\x10\xc4\x64\x5f\x01\x00\x00\x00\x01\x00\x00\x00\x01\x00\x00\x00\x04\x00" "\x00\x00\x18\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80" "\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 160); *(uint64_t*)0x200004f0 = 0xa0; *(uint64_t*)0x200004f8 = 0x18200; *(uint64_t*)0x20000500 = 0x20013a00; memcpy((void*)0x20013a00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83" "\x00\x03\x00\x12\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x16\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000508 = 0x40; *(uint64_t*)0x20000510 = 0x182e0; *(uint64_t*)0x20000518 = 0; *(uint64_t*)0x20000520 = 0; *(uint64_t*)0x20000528 = 0x18400; *(uint64_t*)0x20000530 = 0x20013c00; *(uint64_t*)0x20000538 = 0; *(uint64_t*)0x20000540 = 0x184e0; *(uint64_t*)0x20000548 = 0; *(uint64_t*)0x20000550 = 0; *(uint64_t*)0x20000558 = 0x18600; *(uint64_t*)0x20000560 = 0; *(uint64_t*)0x20000568 = 0; *(uint64_t*)0x20000570 = 0x186e0; *(uint64_t*)0x20000578 = 0; *(uint64_t*)0x20000580 = 0; *(uint64_t*)0x20000588 = 0x18800; *(uint64_t*)0x20000590 = 0; *(uint64_t*)0x20000598 = 0; *(uint64_t*)0x200005a0 = 0x188e0; *(uint64_t*)0x200005a8 = 0; *(uint64_t*)0x200005b0 = 0; *(uint64_t*)0x200005b8 = 0x1a000; *(uint64_t*)0x200005c0 = 0; *(uint64_t*)0x200005c8 = 0; *(uint64_t*)0x200005d0 = 0x1a0e0; *(uint64_t*)0x200005d8 = 0; *(uint64_t*)0x200005e0 = 0; *(uint64_t*)0x200005e8 = 0x1c000; *(uint64_t*)0x200005f0 = 0; *(uint64_t*)0x200005f8 = 0; *(uint64_t*)0x20000600 = 0x1c0e0; *(uint64_t*)0x20000608 = 0; *(uint64_t*)0x20000610 = 0; *(uint64_t*)0x20000618 = 0x1c200; *(uint64_t*)0x20000620 = 0; *(uint64_t*)0x20000628 = 0; *(uint64_t*)0x20000630 = 0x1c2e0; *(uint64_t*)0x20000638 = 0; *(uint64_t*)0x20000640 = 0; *(uint64_t*)0x20000648 = 0x1c400; *(uint64_t*)0x20000650 = 0; *(uint64_t*)0x20000658 = 0; *(uint64_t*)0x20000660 = 0x1c4e0; *(uint64_t*)0x20000668 = 0; *(uint64_t*)0x20000670 = 0; *(uint64_t*)0x20000678 = 0x1c6e0; *(uint64_t*)0x20000680 = 0; *(uint64_t*)0x20000688 = 0; *(uint64_t*)0x20000690 = 0x1c801; *(uint64_t*)0x20000698 = 0; *(uint64_t*)0x200006a0 = 0; *(uint64_t*)0x200006a8 = 0x1c8e0; *(uint64_t*)0x200006b0 = 0; *(uint64_t*)0x200006b8 = 0; *(uint64_t*)0x200006c0 = 0x1c980; *(uint64_t*)0x200006c8 = 0; *(uint64_t*)0x200006d0 = 0; *(uint64_t*)0x200006d8 = 0x1ca00; *(uint64_t*)0x200006e0 = 0; *(uint64_t*)0x200006e8 = 0; *(uint64_t*)0x200006f0 = 0x1cae0; *(uint64_t*)0x200006f8 = 0; *(uint64_t*)0x20000700 = 0; *(uint64_t*)0x20000708 = 0x1cc00; *(uint64_t*)0x20000710 = 0; *(uint64_t*)0x20000718 = 0; *(uint64_t*)0x20000720 = 0x1cce0; *(uint64_t*)0x20000728 = 0; *(uint64_t*)0x20000730 = 0; *(uint64_t*)0x20000738 = 0x20000; *(uint64_t*)0x20000740 = 0; *(uint64_t*)0x20000748 = 0; *(uint64_t*)0x20000750 = 0x20800; *(uint64_t*)0x20000758 = 0; *(uint64_t*)0x20000760 = 0; *(uint64_t*)0x20000768 = 0x21800; *(uint64_t*)0x20000770 = 0; *(uint64_t*)0x20000778 = 0; *(uint64_t*)0x20000780 = 0x400000000021a00; *(uint64_t*)0x20000788 = 0x20015e00; *(uint64_t*)0x20000790 = 0; *(uint64_t*)0x20000798 = 0x21c00; *(uint64_t*)0x200007a0 = 0; *(uint64_t*)0x200007a8 = 0; *(uint64_t*)0x200007b0 = 0x22000; *(uint64_t*)0x200007b8 = 0; *(uint64_t*)0x200007c0 = 0; *(uint64_t*)0x200007c8 = 0x24000; *(uint64_t*)0x200007d0 = 0x20016100; *(uint64_t*)0x200007d8 = 0; *(uint64_t*)0x200007e0 = 0x240e0; *(uint64_t*)0x200007e8 = 0; *(uint64_t*)0x200007f0 = 0; *(uint64_t*)0x200007f8 = 0x242e0; *(uint64_t*)0x20000800 = 0; *(uint64_t*)0x20000808 = 0; *(uint64_t*)0x20000810 = 0x24400; *(uint64_t*)0x20000818 = 0x20016500; *(uint64_t*)0x20000820 = 0; *(uint64_t*)0x20000828 = 0x244e0; *(uint64_t*)0x20000830 = 0; *(uint64_t*)0x20000838 = 0; *(uint64_t*)0x20000840 = 0x24600; *(uint64_t*)0x20000848 = 0x20016700; *(uint64_t*)0x20000850 = 0; *(uint64_t*)0x20000858 = 0x24800; *(uint64_t*)0x20000860 = 0x20016800; *(uint64_t*)0x20000868 = 0; *(uint64_t*)0x20000870 = 0x24a00; *(uint64_t*)0x20000878 = 0x20016900; *(uint64_t*)0x20000880 = 0; *(uint64_t*)0x20000888 = 0x24c00; *(uint64_t*)0x20000890 = 0; *(uint64_t*)0x20000898 = 0; *(uint64_t*)0x200008a0 = 0x24e00; *(uint64_t*)0x200008a8 = 0; *(uint64_t*)0x200008b0 = 0; *(uint64_t*)0x200008b8 = 0x25000; *(uint64_t*)0x200008c0 = 0; *(uint64_t*)0x200008c8 = 0; *(uint64_t*)0x200008d0 = 0x25200; *(uint64_t*)0x200008d8 = 0; *(uint64_t*)0x200008e0 = 0; *(uint64_t*)0x200008e8 = 0x25400; *(uint64_t*)0x200008f0 = 0; *(uint64_t*)0x200008f8 = 0; *(uint64_t*)0x20000900 = 0x25600; *(uint64_t*)0x20000908 = 0; *(uint64_t*)0x20000910 = 0; *(uint64_t*)0x20000918 = 0x25800; *(uint64_t*)0x20000920 = 0; *(uint64_t*)0x20000928 = 0; *(uint64_t*)0x20000930 = 0x25a00; *(uint64_t*)0x20000938 = 0; *(uint64_t*)0x20000940 = 0; *(uint64_t*)0x20000948 = 0x25c00; *(uint64_t*)0x20000950 = 0; *(uint64_t*)0x20000958 = 0; *(uint64_t*)0x20000960 = 0x25e00; *(uint64_t*)0x20000968 = 0; *(uint64_t*)0x20000970 = 0; *(uint64_t*)0x20000978 = 0x26000; *(uint64_t*)0x20000980 = 0x20017400; *(uint64_t*)0x20000988 = 0; *(uint64_t*)0x20000990 = 0x26200; *(uint64_t*)0x20000998 = 0; *(uint64_t*)0x200009a0 = 0; *(uint64_t*)0x200009a8 = 0x26400; *(uint64_t*)0x200009b0 = 0; *(uint64_t*)0x200009b8 = 0; *(uint64_t*)0x200009c0 = 0x26600; *(uint64_t*)0x200009c8 = 0; *(uint64_t*)0x200009d0 = 0; *(uint64_t*)0x200009d8 = 0x26800; *(uint64_t*)0x200009e0 = 0; *(uint64_t*)0x200009e8 = 0; *(uint64_t*)0x200009f0 = 0x26a00; *(uint64_t*)0x200009f8 = 0; *(uint64_t*)0x20000a00 = 0; *(uint64_t*)0x20000a08 = 0x26c00; *(uint64_t*)0x20000a10 = 0; *(uint64_t*)0x20000a18 = 0; *(uint64_t*)0x20000a20 = 0x26e00; *(uint64_t*)0x20000a28 = 0; *(uint64_t*)0x20000a30 = 0; *(uint64_t*)0x20000a38 = 0x27000; *(uint64_t*)0x20000a40 = 0x20017c00; *(uint64_t*)0x20000a48 = 0; *(uint64_t*)0x20000a50 = 0x27200; *(uint64_t*)0x20000a58 = 0; *(uint64_t*)0x20000a60 = 0; *(uint64_t*)0x20000a68 = 0x27400; *(uint64_t*)0x20000a70 = 0; *(uint64_t*)0x20000a78 = 0; *(uint64_t*)0x20000a80 = 0x27600; *(uint64_t*)0x20000a88 = 0; *(uint64_t*)0x20000a90 = 0; *(uint64_t*)0x20000a98 = 0x27800; *(uint64_t*)0x20000aa0 = 0; *(uint64_t*)0x20000aa8 = 0; *(uint64_t*)0x20000ab0 = 0x27a00; *(uint64_t*)0x20000ab8 = 0; *(uint64_t*)0x20000ac0 = 0; *(uint64_t*)0x20000ac8 = 0x27c00; *(uint64_t*)0x20000ad0 = 0; *(uint64_t*)0x20000ad8 = 0; *(uint64_t*)0x20000ae0 = 0x27e00; *(uint64_t*)0x20000ae8 = 0; *(uint64_t*)0x20000af0 = 0; *(uint64_t*)0x20000af8 = 0x28000; *(uint64_t*)0x20000b00 = 0; *(uint64_t*)0x20000b08 = 0; *(uint64_t*)0x20000b10 = 0x2b000; *(uint64_t*)0x20000b18 = 0; *(uint64_t*)0x20000b20 = 0; *(uint64_t*)0x20000b28 = 0xf01000; *(uint64_t*)0x20000b30 = 0x20018a00; memcpy( (void*)0x20018a00, "\xfd\x00\x00\x00\x00\x00\xf0\x0f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40" "\x00\x00\xe5\x6a\x20\x98\x00\x00\x00\x00\x21\x7f\xc7\x97\xff\xff\xff\xff" "\x65\x4f\xc2\xc1\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x20" "\x00\x00\x33\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x60\xf8\x3d\xfe\x99\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x83\x00\x08\x01\x02\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x09\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x00\x08\x24\x01\x00\x00\x00\x00\x10\x00\x00\x00\x20\x00\x00\x00" "\x14\x00\x05\x00\x01\x00\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x01\x07\x02\x02\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x20\x00\x00\x00\xff\x05" "\x66\x00\x69\x00\x6c\x00\x65\x00\x30\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x01\x00\x01\x00\x00\x00\xbc\x21" "\x00\x00\x00\x08\x48\x00\x00\x00\x00\x00\x10\x00\x00\x00\x02\x00\x00\x00" "\x14\x00\x05\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x10\xc4\x64\x5f\x10\x00" "\x00\x00\x20\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x24\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00\x20\x10\xc4\x64\x5f" "\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7" "\xcc\x30\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x01\x00\x00\x00\x28\x22\x00\x00\x00\x08\x84\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x24\x00\x00\x00" "\x10\xc4\x64\x5f\x10\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\x00" "\x00\x00\x1c\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41" "\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x64\xf7\xcc\x30" "\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00" "\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00", 864); *(uint64_t*)0x20000b38 = 0x360; *(uint64_t*)0x20000b40 = 0xf02000; *(uint64_t*)0x20000b48 = 0x20018e00; memcpy( (void*)0x20018e00, "\x83\x01\x07\x02\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x08\x00" "\x02\x00\x01\x00\x00\x00\xd0\x22\x00\x00\x00\x08\x04\x01\x00\x00\x00\x00" "\x01\x00\x00\x00\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00" "\x00\x00\x01\x00\x00\x00\xf8\x23\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x83\x00\x02\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x02\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x08\x24\x00\x00\x00\x00\x00" "\x10\x00\x00\x00\x21\x00\x00\x00\x12\x00\x04\x00\x01\x00\x00\x00\x24\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x83\x01\x07\x02\x02\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x21\x00\x00\x00\xff\x05\x66\x00\x69\x00\x6c\x00\x65\x00\x30\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00" "\x01\x00\x02\x00\x00\x00\x64\x24\x00\x00\x00\x08\x48\x00\x00\x00\x00\x00" "\x10\x00\x00\x00\x20\x00\x00\x00\x14\x00\x05\x00\x01\x00\x00\x00\x24\x00" "\x00\x00\x10\xc4\x64\x5f\x10\x00\x00\x00\x21\x00\x00\x00\x02\x00\x00\x00" "\x04\x00\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xed\x81\x06\x00\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7" "\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x01\x00\x10\xc4\x64\x5f\x10\x00\x00\x00\x20\x00" "\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x24\x00\x00\x00\x08\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x20\x10\xc4\x64\x5f\x64\xf7\xcc\x30" "\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4" "\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00", 544); *(uint64_t*)0x20000b50 = 0x220; *(uint64_t*)0x20000b58 = 0xf023bd; *(uint64_t*)0x20000b60 = 0; *(uint64_t*)0x20000b68 = 0; *(uint64_t*)0x20000b70 = 0xf02640; *(uint64_t*)0x20000b78 = 0x20019300; memcpy( (void*)0x20019300, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x0a\x00\x02\x00\x10\xc4\x64\x5f\x10\x00\x00\x00\x22\x00\x00\x00" "\x03\x00\x00\x00\x04\x00\x00\x00\x24\x00\x00\x00\x26\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xff\xa1\x06\x00\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4" "\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x08\x00\x01\x00\x10\xc4\x64\x5f\x10\x00" "\x00\x00\x20\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00\x24\x00\x00\x00" "\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x00\x20\x10\xc4\x64\x5f" "\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7" "\xcc\x30\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x00\x00\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 320); *(uint64_t*)0x20000b80 = 0x140; *(uint64_t*)0x20000b88 = 0xf02840; *(uint64_t*)0x20000b90 = 0x20019500; memcpy( (void*)0x20019500, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x02\x06\x03\x02\x00" "\x00\x00\x01\x02\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x03\x00\x00\x00" "\x54\x27\x00\x00\x00\x08\x8c\x02\x00\x00\x00\x00\x01\x00\x00\x00\x10\x00" "\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x24\x00\x00\x00\x03\x00\x00\x00" "\x04\x2a\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x10\x00" "\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x24\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00\x02\x00\x0a\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x00\x08\x24\x00\x00\x00\x00\x00\x10\x00\x00\x00\x04\x00" "\x00\x00\x12\x00\x04\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x02\x06\x03\x02\x00" "\x00\x00\x01\x02\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x04\x00\x00\x00" "\xff\x05\x66\x00\x69\x00\x6c\x00\x65\x00\x31\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x02\x00\x01\x00\x04\x00\x00\x00" "\x70\x2a\x00\x00\x00\x08\x48\x00\x00\x00\x00\x00\x10\x00\x00\x00\x02\x00" "\x00\x00\x14\x00\x05\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x10\xc4\x64\x5f" "\x10\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x1c\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x81\x06\x00\x10\xc4" "\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f" "\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00" "\x01\x00\x10\xc4\x64\x5f\x10\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00" "\x04\x00\x00\x00\x1c\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xed\x41\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x64\xf7" "\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00", 576); *(uint64_t*)0x20000b98 = 0x240; *(uint64_t*)0x20000ba0 = 0xf029c0; *(uint64_t*)0x20000ba8 = 0x20019800; memcpy( (void*)0x20019800, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x02" "\x06\x03\x02\x00\x00\x00\x01\x02\x00\x00\x00\x00\x00\x00\x08\x00\x02\x00" "\x04\x00\x00\x00\xdc\x2a\x00\x00\x00\x08\x88\x01\x00\x00\x00\x00\x01\x00" "\x00\x00\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00" "\x04\x00\x00\x00\x88\x2c\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00" "\x03\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x22\x00\x00\x00\x02\x00" "\x01\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x08\x38\x00\x00\x00\x00\x00" "\x10\x00\x00\x00\x04\x00\x00\x00\x12\x00\x04\x00\x01\x00\x00\x00\x1c\x00" "\x00\x00\x1a\x00\x00\x00\x00\x0b\x06\x00\x75\x73\x65\x72\x2e\x78\x61\x74" "\x74\x72\x31\x00\x78\x61\x74\x74\x72\x31\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00", 256); *(uint64_t*)0x20000bb0 = 0x100; *(uint64_t*)0x20000bb8 = 0xf02c40; *(uint64_t*)0x20000bc0 = 0; *(uint64_t*)0x20000bc8 = 0; *(uint64_t*)0x20000bd0 = 0xf02d80; *(uint64_t*)0x20000bd8 = 0x20019b00; memcpy( (void*)0x20019b00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x13\x00\x01\x00\x10\xc4\x64\x5f\x10\x00\x00\x00" "\x04\x00\x00\x00\x04\x00\x00\x00\x04\x00\x00\x00\x1c\x00\x00\x00\x0a\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xed\x81\x02\x00\x10\xc4\x64\x5f\x64\xf7" "\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x30\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x01\x00\x06\x00" "\x00\x00\x00\x00\x00\x00\x00\x08\x08\x01\x00\x00\x00\x00\x01\x00\x00\x00" "\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x06\x00" "\x00\x00\x84\x2f\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00\x02\x00" "\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x07\x00" "\x00\x00\x00\x00\x00\x00\x00\x08\x24\x00\x00\x00\x00\x00\x10\x00\x00\x00" "\x05\x00\x00\x00\x12\x00\x04\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xfd\x00\x00\x00\x00\x00\xf0\x0f\xfe\x00\x00\x00" "\x01\x00\x24\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x83\x03\x05\x04\x02\x00" "\x00\x00\x01\x02\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x05\x00\x00\x00" "\xff\x05\x66\x00\x69\x00\x6c\x00\x65\x00\x32\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x04\x00\x00\x00\x03\x00\x01\x00\x07\x00\x00\x00" "\xf0\x2f\x00\x00\x00\x08\x48\x00\x00\x00\x00\x00\x10\x00\x00\x00\x02\x00" "\x00\x00\x14\x00\x05\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x10\xc4\x64\x5f" "\x10\x00\x00\x00\x05\x00\x00\x00\x05\x00\x00\x00\x04\x00\x00\x00\x1c\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x81\x06\x00\x10\xc4" "\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f" "\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x14\x00" "\x01\x00\x10\xc4\x64\x5f\x10\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00" "\x04\x00\x00\x00\x1c\x00\x00\x00\x18\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xed\x41\x01\x00\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x64\xf7" "\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00" "\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x01\x00\x00\x00" "\x00\x00\x00\x01\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 736); *(uint64_t*)0x20000be0 = 0x2e0; *(uint64_t*)0x20000be8 = 0xf02ec0; *(uint64_t*)0x20000bf0 = 0; *(uint64_t*)0x20000bf8 = 0; *(uint64_t*)0x20000c00 = 0xf031e0; *(uint64_t*)0x20000c08 = 0x2001a100; memcpy( (void*)0x2001a100, "\x00\x00\x00\x00\x00\x00\x00\x00\x83\x04\x04\x05\x02\x00\x00\x00\x01\x02" "\x03\x04\x00\x00\x00\x00\x08\x00\x02\x00\x08\x00\x00\x00\x14\x33\x00\x00" "\x00\x08\x88\x01\x00\x00\x00\x00\x01\x00\x00\x00\x10\x00\x00\x00\x01\x00" "\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x08\x00\x00\x00\xc0\x34\x00\x00" "\x00\x80\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x10\x00\x00\x00\x01\x00" "\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00\x02\x00\x0a\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x09\x00\x00\x00\x00\x00\x00\x00" "\x00\x08\x24\x00\x00\x00\x00\x00\x10\x00\x00\x00\x06\x00\x00\x00\x12\x00" "\x04\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x83\x05\x03\x06\x02\x00\x00\x00\x05\x01" "\x02\x03\x04\x00\x00\x00\x00\x00\x01\x00\x06\x00\x00\x00\xff\x09\x66\x00" "\x69\x00\x6c\x00\x65\x00\x2e\x00\x63\x00\x6f\x00\x6c\x00\x64\x00\x00\x00" "\x00\x00\x06\x00\x00\x00\x05\x00\x01\x00\x09\x00\x00\x00\x2c\x35\x00\x00" "\x00\x08\x48\x00\x00\x00\x00\x00\x10\x00\x00\x00\x02\x00\x00\x00\x14\x00" "\x05\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x10\xc4\x64\x5f\x10\x00\x00\x00" "\x06\x00\x00\x00\x06\x00\x00\x00\x04\x00\x00\x00\x1c\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xed\x81\x06\x00\x10\xc4\x64\x5f\x64\xf7" "\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x18\x00\x01\x00\x10\xc4" "\x64\x5f\x10\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x04\x00\x00\x00" "\x1c\x00\x00\x00\x28\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x41\x01\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4" "\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x00\x00\x00\x00\x00\x00\x00" "\x00\x01\x01\x00\x00\x00\x00\x00\x00\x01\x02\x00\x00\x00\x00\x00\x00\x01" "\x03\x00\x00\x00\x00\x00\x00\x01\x04\x00\x00\x00\x00\x00\x00\x01\x00" "\x00", 576); *(uint64_t*)0x20000c10 = 0x240; *(uint64_t*)0x20000c18 = 0xf03480; *(uint64_t*)0x20000c20 = 0x2001a400; memcpy( (void*)0x2001a400, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x05\x03\x06\x02\x00" "\x00\x00\x05\x01\x02\x03\x04\x00\x00\x00\x08\x00\x02\x00\x09\x00\x00\x00" "\x98\x35\x00\x00\x00\x08\x88\x01\x00\x00\x00\x00\x01\x00\x00\x00\x10\x00" "\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x09\x00\x00\x00" "\x44\x37\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x10\x00" "\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x83\x00\x03\x00\x0a\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x01\x00\x00\x00\x28\x00\x00\x00\x02\x00\x01\x00\x0a\x00" "\x00\x00\x00\x00\x00\x00\x00\x08\x38\x00\x00\x00\x00\x00\x10\x00\x00\x00" "\x21\x00\x00\x00\x12\x00\x04\x00\x01\x00\x00\x00\x24\x00\x00\x00\x10\xc4" "\x64\x5f\x10\x00\x00\x00\x21\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00" "\x24\x00\x00\x00\x1a\x04\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xed\x81\x06\x00" "\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4" "\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x04\x00\x01\x00\x0a\x00\x00\x00\xc4\x37\x00\x00\x00\x08\x84\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00" "\x24\x00\x00\x00\x0a\x00\x00\x00\x6c\x38\x00\x00\x00\x80\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x10\x00\x00\x00\x01\x00\x07\x00\x01\x00\x00\x00" "\x24\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x83\x00\x03\x00\x0a\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x02\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x2b\x00" "\x00\x00\x02\x00\x01\x00\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x08\x38\x00" "\x00\x00\x00\x00\x10\x00\x00\x00\x06\x00\x00\x00\x12\x00\x04\x00\x01\x00" "\x00\x00\x1c\x00\x00\x00\x10\xc4\x64\x5f\x10\x00\x00\x00\x06\x00\x00\x00" "\x06\x00\x00\x00\x04\x00\x00\x00\x1c\x00\x00\x00\x64\x00\x00\x00\x00\x00" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xed\x81\x06\x00\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4" "\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f\x64\xf7\xcc\x30\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x18\x00\x01\x00\x0b\x00\x00\x00\xec\x38" "\x00\x00\x00\x08\x84\x00\x00\x00\x00\x00\x01\x00\x00\x00\x10\x00\x00\x00" "\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x0b\x00\x00\x00\x94\x39" "\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x10\x00\x00\x00" "\x01\x00\x07\x00\x01\x00\x00\x00\x1c\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x60\xf8\x00\xd0\x22\x00\x00\xfe\xd9\xcd\x97" "\xff\xff\xff\xff\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\xb8\x39\x00\x00\x01\x00\x00\x00" "\x10\x00\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x40\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x80\x4f\xbf\x97\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00", 832); *(uint64_t*)0x20000c28 = 0x340; *(uint64_t*)0x20000c30 = 0xf03700; *(uint64_t*)0x20000c38 = 0x2001a800; memcpy((void*)0x2001a800, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\xfe\x00\x00\x00\x00\x00\x24\x0a\x01\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000c40 = 0x40; *(uint64_t*)0x20000c48 = 0xf03fe0; *(uint64_t*)0x20000c50 = 0; *(uint64_t*)0x20000c58 = 0; *(uint64_t*)0x20000c60 = 0xf04fe0; *(uint64_t*)0x20000c68 = 0x2001aa00; *(uint64_t*)0x20000c70 = 0; *(uint64_t*)0x20000c78 = 0xf05fe0; *(uint64_t*)0x20000c80 = 0x2001ab00; *(uint64_t*)0x20000c88 = 0; *(uint64_t*)0x20000c90 = 0xf06fe0; *(uint64_t*)0x20000c98 = 0x2001ac00; memcpy( (void*)0x2001ac00, "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x8b\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x05\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00" "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x30\x91\x45\xfe\xfe\x7f" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\x91\x45\xfe\xfe\x7f\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x13\x2e" "\x0c\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd2\x49\x1f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xe0\x8c\x45\xfe\xfe\x7f\x00\x00\xa0\x46\x22\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xd3\x25\xb4\x45\x7f\x00\x00\x88\x05" "\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4" "\x45\x7f\x00\x00\xd0\x8c\x45\xfe\xfe\x7f\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\xa0\x84\x22\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xff\xff\xff\xff\x45\x7f\x00\x00\x40\x00\x00\x00\x45\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\xff\xff\xff\xff\x60\xd7\x25\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x77\x4a\x1f\xb4\x45\x7f\x00\x00" "\xe1\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x11\x0c\xb4\x45\x7f\x00\x00\x60\x91" "\x45\xfe\xfe\x7f\x00\x00\x60\xd7\x25\xb4\x45\x7f\x00\x00\x30\xd4\x25\xb4" "\x45\x7f\x00\x00\x4c\xfe\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd7\xf6\x16\x02\x00\x00\x00\x00\x20\x00\x00\x00\x30\x00\x00\x00" "\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92\x45\xfe\xfe\x7f\x00\x00\x70\x05" "\x07\xb4\x45\x7f\x00\x00\x80\x8c\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x40\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x8c\x45\xfe\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\xef\xb5\xbd\x85\x00\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00\x4c\xfe" "\x07\xb4\x45\x7f\x00\x00\x28\x8d\x45\xfe\xfe\x7f\x00\x00\x80\x8c\x45\xfe" "\xfe\x7f\x00\x00\x90\x8c\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xff\xff\xff\xff" "\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f" "\x00\x00\xe8\x89\x28\xb4\x01\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x28\xd6\x25\xb4\x45\x7f\x00\x00\xe8\x89\x28\xb4\x45\x7f" "\x00\x00\x50\x91\x45\xfe\xfe\x7f\x00\x00\x40\x91\x45\xfe\xfe\x7f\x00\x00" "\x60\x80\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x8c" "\x45\xfe\xfe\x7f\x00\x00\xe0\x90\x45\xfe\xfe\x7f\x00\x00\xe0\x8c\x45\xfe" "\xfe\x7f\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x30\x00\x45\xfe\xfe\x7f" "\x00\x00\x0f\xb2\x45\xfe\xfe\x7f\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00" "\x08\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\xf3\xc5" "\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\x14\x0f\xb4\x45\x7f\x00\x00\x28\xd6\x25\xb4\x45\x7f" "\x00\x00\x20\x91\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00" "\xd0\x83\x22\xb4\x45\x7f\x00\x00\xe0\x7b\x22\xb4\x45\x7f\x00\x00\x40\xf1" "\x0e\xb4\x45\x7f\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x1b\x00\x00\x00" "\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xc4\xdf\x06\xb4\x45\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1f" "\x00\x00\xff\xff\x00\x00", 960); *(uint64_t*)0x20000ca0 = 0x3c0; *(uint64_t*)0x20000ca8 = 0xf07120; *(uint64_t*)0x20000cb0 = 0x2001b000; memcpy( (void*)0x2001b000, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00" "\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xff\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x73\x20\x76\x65\x72" "\x73\x69\x6f\x6e\x20\x25\x73\x2c\x20\x25\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", 224); *(uint64_t*)0x20000cb8 = 0xe0; *(uint64_t*)0x20000cc0 = 0xf07520; *(uint64_t*)0x20000cc8 = 0x2001b100; memcpy((void*)0x2001b100, "\x02\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20000cd0 = 0x60; *(uint64_t*)0x20000cd8 = 0xf07680; *(uint64_t*)0x20000ce0 = 0x2001b200; *(uint64_t*)0x20000ce8 = 0; *(uint64_t*)0x20000cf0 = 0xf07720; *(uint64_t*)0x20000cf8 = 0x2001b900; memcpy((void*)0x2001b900, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000d00 = 0x80; *(uint64_t*)0x20000d08 = 0xf07da0; *(uint64_t*)0x20000d10 = 0x2001ba00; memcpy( (void*)0x2001ba00, "\x2f\x00\x00\x00\x00\x00\x00\x00\xb5\xba\x0e\xb4\x45\x7f\x00\x00\x30\xad" "\x0e\xb4\x45\x7f\x00\x00\x00\xe7\x52\x63\x35\x07\x02\x68\x00\x00\x00\x00" "\x00\x00\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00\xb0\xa2\x7a\x23\xe8\x55" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc4\xa4\x7a\x23\xe8\x55\x00\x00\x2f\x00\x00\x00\x00\x00\x00\x00\xbf\xd3" "\x0d\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00" "\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00" "\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00" "\xda\x8b\x64\x5f\x00\x00\x00\x00\xf5\xab\x27\x0d\x00\x00\x00\x00\x69\x17" "\xe6\x5e\x00\x00\x00\x00\x7d\x45\xd8\x13\x00\x00\x00\x00\x69\x17\xe6\x5e" "\x00\x00\x00\x00\x7d\x45\xd8\x13\x00\x00\x00\x00\x73\xef\x3d\x22\xe8\x55" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\xfe\x00\x00\x00\x00\x00\x00\x7c\x0e\x82\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\xa4\x81\x00\x00\x5c\xf9\x01\x00\x53\x5f\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x10\xc4" "\x64\x5f\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00" "\x08\x00\x05\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 448); *(uint64_t*)0x20000d18 = 0x1c0; *(uint64_t*)0x20000d20 = 0xf07e60; *(uint64_t*)0x20000d28 = 0x2001bc00; memcpy((void*)0x2001bc00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x05\x00\x00\x00\x00\x00\x08\x00\x06\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000d30 = 0x40; *(uint64_t*)0x20000d38 = 0xf08fe0; *(uint64_t*)0x20000d40 = 0x2001bd00; *(uint64_t*)0x20000d48 = 0; *(uint64_t*)0x20000d50 = 0xf09fe0; *(uint64_t*)0x20000d58 = 0x2001be00; memcpy((void*)0x2001be00, "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\a\000\000\000\000\000\b\000\b\000\000" "\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x20000d60 = 0x40; *(uint64_t*)0x20000d68 = 0xf0afe0; *(uint64_t*)0x20000d70 = 0; *(uint64_t*)0x20000d78 = 0; *(uint64_t*)0x20000d80 = 0xf0b120; *(uint64_t*)0x20000d88 = 0x2001c300; *(uint64_t*)0x20000d90 = 0; *(uint64_t*)0x20000d98 = 0xf0b520; *(uint64_t*)0x20000da0 = 0x2001c400; *(uint64_t*)0x20000da8 = 0; *(uint64_t*)0x20000db0 = 0xf0b680; *(uint64_t*)0x20000db8 = 0; *(uint64_t*)0x20000dc0 = 0; *(uint64_t*)0x20000dc8 = 0xf0b720; *(uint64_t*)0x20000dd0 = 0x2001cc00; memcpy((void*)0x2001cc00, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000dd8 = 0x80; *(uint64_t*)0x20000de0 = 0xf0bda0; *(uint64_t*)0x20000de8 = 0; *(uint64_t*)0x20000df0 = 0; *(uint64_t*)0x20000df8 = 0xf0be60; *(uint64_t*)0x20000e00 = 0x2001cf00; memcpy((void*)0x2001cf00, "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\t\000\000\000\000\000\b\000\n\000\000" "\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x20000e08 = 0x40; *(uint64_t*)0x20000e10 = 0xf0cfe0; *(uint64_t*)0x20000e18 = 0; *(uint64_t*)0x20000e20 = 0; *(uint64_t*)0x20000e28 = 0xf0dfe0; *(uint64_t*)0x20000e30 = 0x2001d100; memcpy((void*)0x2001d100, "\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000\000" "\000\000\000\000\000\000\000\v\000\000\000\000\000\b\000\f\000\000" "\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x20000e38 = 0x40; *(uint64_t*)0x20000e40 = 0xf0efe0; *(uint64_t*)0x20000e48 = 0x2001d200; memcpy( (void*)0x2001d200, "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x8b\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x05\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00" "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x30\x91\x45\xfe\xfe\x7f" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\x91\x45\xfe\xfe\x7f\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x13\x2e" "\x0c\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd2\x49\x1f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xe0\x8c\x45\xfe\xfe\x7f\x00\x00\xa0\x46\x22\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xd3\x25\xb4\x45\x7f\x00\x00\x88\x05" "\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4" "\x45\x7f\x00\x00\xd0\x8c\x45\xfe\xfe\x7f\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\xa0\x84\x22\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xff\xff\xff\xff\x45\x7f\x00\x00\x40\x00\x00\x00\x45\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\xff\xff\xff\xff\x60\xd7\x25\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x77\x4a\x1f\xb4\x45\x7f\x00\x00" "\xe1\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x11\x0c\xb4\x45\x7f\x00\x00\x60\x91" "\x45\xfe\xfe\x7f\x00\x00\x60\xd7\x25\xb4\x45\x7f\x00\x00\x30\xd4\x25\xb4" "\x45\x7f\x00\x00\x4c\xfe\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd7\xf6\x16\x02\x00\x00\x00\x00\x20\x00\x00\x00\x30\x00\x00\x00" "\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92\x45\xfe\xfe\x7f\x00\x00\x70\x05" "\x07\xb4\x45\x7f\x00\x00\x80\x8c\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x40\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x8c\x45\xfe\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\xef\xb5\xbd\x85\x00\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00\x4c\xfe" "\x07\xb4\x45\x7f\x00\x00\x28\x8d\x45\xfe\xfe\x7f\x00\x00\x80\x8c\x45\xfe" "\xfe\x7f\x00\x00\x90\x8c\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xff\xff\xff\xff" "\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f" "\x00\x00\xe8\x89\x28\xb4\x01\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x28\xd6\x25\xb4\x45\x7f\x00\x00\xe8\x89\x28\xb4\x45\x7f" "\x00\x00\x50\x91\x45\xfe\xfe\x7f\x00\x00\x40\x91\x45\xfe\xfe\x7f\x00\x00" "\x60\x80\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x8c" "\x45\xfe\xfe\x7f\x00\x00\xe0\x90\x45\xfe\xfe\x7f\x00\x00\xe0\x8c\x45\xfe" "\xfe\x7f\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x30\x00\x45\xfe\xfe\x7f" "\x00\x00\x0f\xb2\x45\xfe\xfe\x7f\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00" "\x08\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\xf3\xc5" "\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\x14\x0f\xb4\x45\x7f\x00\x00\x28\xd6\x25\xb4\x45\x7f" "\x00\x00\x20\x91\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00" "\xd0\x83\x22\xb4\x45\x7f\x00\x00\xe0\x7b\x22\xb4\x45\x7f\x00\x00\x40\xf1" "\x0e\xb4\x45\x7f\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x1b\x00\x00\x00" "\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xc4\xdf\x06\xb4\x45\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1f" "\x00\x00\xff\xff\x00\x00", 960); *(uint64_t*)0x20000e50 = 0x3c0; *(uint64_t*)0x20000e58 = 0xf0f120; *(uint64_t*)0x20000e60 = 0x2001d600; *(uint64_t*)0x20000e68 = 0; *(uint64_t*)0x20000e70 = 0xf0f520; *(uint64_t*)0x20000e78 = 0x2001d700; *(uint64_t*)0x20000e80 = 0; *(uint64_t*)0x20000e88 = 0xf0f680; *(uint64_t*)0x20000e90 = 0x2001d800; memcpy( (void*)0x2001d800, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x4c\xdd\x15\xb4\x45\x7f\x00\x00\x80\x7b\x22\xb4" "\x45\x7f\x00\x00\x90\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x79\x4c\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x3e\x0a\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x90\x7a\x23\xe8\x55\x00\x00\xe0\x7b\x22\xb4" "\x45\x7f\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x90\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\x00\x00\x00" "\x00\x00\x00\x00\x60\xff\xff\xff\xff\xff\xff\xff\x10\x04\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00" "\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x27\x00\x00\x00\x00\x00\x00\x00\x10\x00" "\x00\x00\x00\x00\x00\x00\x41\x00\x00\x00\x40\x00\x00\x00\x6e\x00\x00\x00" "\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x4d\xa5\x7a\x23\xe8\x55\x00\x00\x00\xe7\x52\x63\x35\x07\x02\x68" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xa4\x7a\x23\xe8\x55\x00\x00\x70\x4a" "\x1f\xb4\x45\x7f\x00\x00\x4a\xa5\x7a\x23\xe8\x55\x00\x00\x90\xa4\x7a\x23" "\xe8\x55\x00\x00\x2f\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x6e\x14\x0c\xb4\x45\x7f\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00" "\x10\x00\x00\x00\x30\x00\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92" "\x45\xfe\xfe\x7f\x00\x00\x01\x80\xad\xfb\x00\x00\x00\x00\x9c\x6f\x26\xb4" "\x45\x7f\x00\x00\x52\x80\x88\x83\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x8c\xfc\x06\xb4\x45\x7f\x00\x00\x90\x93\x3d\x22\xe8\x55\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x32\x07" "\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4" "\x45\x7f\x00\x00\x48\x92\x45\xfe\xfe\x7f\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04" "\x07\xb4\x45\x7f\x00\x00\xaf\x9c\x3d\x22\xe8\x55\x00\x00\x52\x80\x88\x83" "\x00\x00\x00\x00\x01\x22\x0e\x02\x00\x00\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x68\x7a\x23\xb4\x45\x7f\x00\x00\x10\x93\x45\xfe\xfe\x7f\x00\x00" "\x90\x93\x3d\x22\xe8\x55\x00\x00\x9c\x6f\x26\xb4\x45\x7f\x00\x00\xbd\x8b" "\xa8\xaf\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xb4\xf8\x06\xb4" "\x45\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x3c\x06\x00\x00\x00\x00\x00\x00" "\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\x08\x93" "\x45\xfe\xfe\x7f\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4" "\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x45\x7f" "\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04\x07\xb4\x45\x7f\x00\x00" "\x85\x9c\x3d\x22\xe8\x55\x00\x00\xbd\x8b\xa8\xaf\x00\x00\x00\x00\x2e\xa2" "\xbe\x02\x00\x00\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\x68\x7a\x23\xb4" "\x45\x7f\x00\x00\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55" "\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x78\xfd\x06\xb4\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xbd\x8b\xa8\xaf" "\x00\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x85\x9c\x3d\x22\xe8\x55" "\x00\x00\x68\x94\x45\xfe\xfe\x7f\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00" "\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x3d\x76\xf4\x03\x00\x00\x00\x00" "\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x90\x94" "\x45\xfe\x01\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x5a\x36\x27\xb4\x45\x7f" "\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x68\x9a\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xe8\x94" "\x28\xb4\x45\x7f\x00\x00\xb9\x9c\x3d\x22\xe8\x55\x00\x00\x28\x95\x45\xfe" "\xfe\x7f\x00\x00\x80\x94\x45\xfe\xfe\x7f\x00\x00\x90\x94\x45\xfe\xfe\x7f" "\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x70\x81\x3e\x22\xe8\x55\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00\x88\xa5" "\x45\xfe\xfe\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe8\x94\x28\xb4\x45\x7f\x00\x00\x68\x9a\x07\xb4\x45\x7f\x00\x00\x50\x98" "\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x98\x45\xfe\xfe\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x60\x8f\x22\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x2f" "\x74\x65\x73\x74\x2f\x73\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" "\xff\xff\xff\xff\x65\x6d\x6f\x75\x6e\x74\x2d\x72\x80\x1f\x00\x00\xff\xff" "\x00\x00\xe0\x9a\x45\xfe\xfe\x7f\x00\x00\x88\xa5\x45\xfe\xfe\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff" "\xff\xff\x00\xb7\x07\xb4\x45\x7f\x00\x00\x00\x99\x45\xfe\xfe\x7f\x00\x00" "\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x82\x00\x00\x00\x00\x00\x00\x00\xa1\x26\x3e\x22" "\xe8\x55\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00" "\xff\xff\x73\x79\x73\x2f\x6c\x69\x6e\x75\x78\x2f\x74\x65\x73\x74\x2f\x73" "\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\xff\xff\xff\xff\x65\x6d" "\x6f\x75\x6e\x74\x2d\x72\x6f\x20\x30\x20\x30\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00", 1568); *(uint64_t*)0x20000e98 = 0x620; *(uint64_t*)0x20000ea0 = 0xf0f720; *(uint64_t*)0x20000ea8 = 0x2001df00; memcpy((void*)0x2001df00, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20000eb0 = 0x80; *(uint64_t*)0x20000eb8 = 0xf0fda0; *(uint64_t*)0x20000ec0 = 0x2001e000; *(uint64_t*)0x20000ec8 = 0; *(uint64_t*)0x20000ed0 = 0xf0fe60; *(uint64_t*)0x20000ed8 = 0x2001e200; *(uint64_t*)0x20000ee0 = 0; *(uint64_t*)0x20000ee8 = 0xf10fe0; *(uint64_t*)0x20000ef0 = 0x2001e300; memcpy((void*)0x2001e300, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x08\x00\x0f\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000ef8 = 0x40; *(uint64_t*)0x20000f00 = 0xf11fe0; *(uint64_t*)0x20000f08 = 0x2001e400; memcpy((void*)0x2001e400, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x0f\x00\x00\x00\x00\x00\x08\x00\x10\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20000f10 = 0x40; *(uint64_t*)0x20000f18 = 0xf12fe0; *(uint64_t*)0x20000f20 = 0x2001e500; memcpy( (void*)0x2001e500, "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x8b\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x05\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00" "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x30\x91\x45\xfe\xfe\x7f" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\x91\x45\xfe\xfe\x7f\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x13\x2e" "\x0c\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd2\x49\x1f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xe0\x8c\x45\xfe\xfe\x7f\x00\x00\xa0\x46\x22\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xd3\x25\xb4\x45\x7f\x00\x00\x88\x05" "\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4" "\x45\x7f\x00\x00\xd0\x8c\x45\xfe\xfe\x7f\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\xa0\x84\x22\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xff\xff\xff\xff\x45\x7f\x00\x00\x40\x00\x00\x00\x45\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\xff\xff\xff\xff\x60\xd7\x25\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x77\x4a\x1f\xb4\x45\x7f\x00\x00" "\xe1\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x11\x0c\xb4\x45\x7f\x00\x00\x60\x91" "\x45\xfe\xfe\x7f\x00\x00\x60\xd7\x25\xb4\x45\x7f\x00\x00\x30\xd4\x25\xb4" "\x45\x7f\x00\x00\x4c\xfe\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd7\xf6\x16\x02\x00\x00\x00\x00\x20\x00\x00\x00\x30\x00\x00\x00" "\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92\x45\xfe\xfe\x7f\x00\x00\x70\x05" "\x07\xb4\x45\x7f\x00\x00\x80\x8c\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x40\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x8c\x45\xfe\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\xef\xb5\xbd\x85\x00\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00\x4c\xfe" "\x07\xb4\x45\x7f\x00\x00\x28\x8d\x45\xfe\xfe\x7f\x00\x00\x80\x8c\x45\xfe" "\xfe\x7f\x00\x00\x90\x8c\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xff\xff\xff\xff" "\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f" "\x00\x00\xe8\x89\x28\xb4\x01\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x28\xd6\x25\xb4\x45\x7f\x00\x00\xe8\x89\x28\xb4\x45\x7f" "\x00\x00\x50\x91\x45\xfe\xfe\x7f\x00\x00\x40\x91\x45\xfe\xfe\x7f\x00\x00" "\x60\x80\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x8c" "\x45\xfe\xfe\x7f\x00\x00\xe0\x90\x45\xfe\xfe\x7f\x00\x00\xe0\x8c\x45\xfe" "\xfe\x7f\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x30\x00\x45\xfe\xfe\x7f" "\x00\x00\x0f\xb2\x45\xfe\xfe\x7f\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00" "\x08\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\xf3\xc5" "\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\x14\x0f\xb4\x45\x7f\x00\x00\x28\xd6\x25\xb4\x45\x7f" "\x00\x00\x20\x91\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00" "\xd0\x83\x22\xb4\x45\x7f\x00\x00\xe0\x7b\x22\xb4\x45\x7f\x00\x00\x40\xf1" "\x0e\xb4\x45\x7f\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x1b\x00\x00\x00" "\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xc4\xdf\x06\xb4\x45\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1f" "\x00\x00\xff\xff\x00\x00", 960); *(uint64_t*)0x20000f28 = 0x3c0; *(uint64_t*)0x20000f30 = 0xf13120; *(uint64_t*)0x20000f38 = 0x2001e900; memcpy( (void*)0x2001e900, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00" "\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xff\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x73\x20\x76\x65\x72" "\x73\x69\x6f\x6e\x20\x25\x73\x2c\x20\x25\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", 224); *(uint64_t*)0x20000f40 = 0xe0; *(uint64_t*)0x20000f48 = 0xf13520; *(uint64_t*)0x20000f50 = 0x2001ea00; *(uint64_t*)0x20000f58 = 0; *(uint64_t*)0x20000f60 = 0xf13680; *(uint64_t*)0x20000f68 = 0; *(uint64_t*)0x20000f70 = 0; *(uint64_t*)0x20000f78 = 0xf13720; *(uint64_t*)0x20000f80 = 0x2001f200; *(uint64_t*)0x20000f88 = 0; *(uint64_t*)0x20000f90 = 0xf13da0; *(uint64_t*)0x20000f98 = 0x2001f300; *(uint64_t*)0x20000fa0 = 0; *(uint64_t*)0x20000fa8 = 0xf13e60; *(uint64_t*)0x20000fb0 = 0; *(uint64_t*)0x20000fb8 = 0; *(uint64_t*)0x20000fc0 = 0xf14fe0; *(uint64_t*)0x20000fc8 = 0; *(uint64_t*)0x20000fd0 = 0; *(uint64_t*)0x20000fd8 = 0xf15fe0; *(uint64_t*)0x20000fe0 = 0x2001f700; *(uint64_t*)0x20000fe8 = 0; *(uint64_t*)0x20000ff0 = 0xf16fe0; *(uint64_t*)0x20000ff8 = 0x2001f800; memcpy( (void*)0x2001f800, "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x8b\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x05\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00" "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x30\x91\x45\xfe\xfe\x7f" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\x91\x45\xfe\xfe\x7f\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x13\x2e" "\x0c\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd2\x49\x1f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xe0\x8c\x45\xfe\xfe\x7f\x00\x00\xa0\x46\x22\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xd3\x25\xb4\x45\x7f\x00\x00\x88\x05" "\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4" "\x45\x7f\x00\x00\xd0\x8c\x45\xfe\xfe\x7f\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\xa0\x84\x22\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xff\xff\xff\xff\x45\x7f\x00\x00\x40\x00\x00\x00\x45\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\xff\xff\xff\xff\x60\xd7\x25\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x77\x4a\x1f\xb4\x45\x7f\x00\x00" "\xe1\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x11\x0c\xb4\x45\x7f\x00\x00\x60\x91" "\x45\xfe\xfe\x7f\x00\x00\x60\xd7\x25\xb4\x45\x7f\x00\x00\x30\xd4\x25\xb4" "\x45\x7f\x00\x00\x4c\xfe\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd7\xf6\x16\x02\x00\x00\x00\x00\x20\x00\x00\x00\x30\x00\x00\x00" "\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92\x45\xfe\xfe\x7f\x00\x00\x70\x05" "\x07\xb4\x45\x7f\x00\x00\x80\x8c\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x40\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x8c\x45\xfe\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\xef\xb5\xbd\x85\x00\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00\x4c\xfe" "\x07\xb4\x45\x7f\x00\x00\x28\x8d\x45\xfe\xfe\x7f\x00\x00\x80\x8c\x45\xfe" "\xfe\x7f\x00\x00\x90\x8c\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xff\xff\xff\xff" "\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f" "\x00\x00\xe8\x89\x28\xb4\x01\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x28\xd6\x25\xb4\x45\x7f\x00\x00\xe8\x89\x28\xb4\x45\x7f" "\x00\x00\x50\x91\x45\xfe\xfe\x7f\x00\x00\x40\x91\x45\xfe\xfe\x7f\x00\x00" "\x60\x80\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x8c" "\x45\xfe\xfe\x7f\x00\x00\xe0\x90\x45\xfe\xfe\x7f\x00\x00\xe0\x8c\x45\xfe" "\xfe\x7f\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x30\x00\x45\xfe\xfe\x7f" "\x00\x00\x0f\xb2\x45\xfe\xfe\x7f\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00" "\x08\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\xf3\xc5" "\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\x14\x0f\xb4\x45\x7f\x00\x00\x28\xd6\x25\xb4\x45\x7f" "\x00\x00\x20\x91\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00" "\xd0\x83\x22\xb4\x45\x7f\x00\x00\xe0\x7b\x22\xb4\x45\x7f\x00\x00\x40\xf1" "\x0e\xb4\x45\x7f\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x1b\x00\x00\x00" "\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xc4\xdf\x06\xb4\x45\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1f" "\x00\x00\xff\xff\x00\x00", 960); *(uint64_t*)0x20001000 = 0x3c0; *(uint64_t*)0x20001008 = 0xf17120; *(uint64_t*)0x20001010 = 0; *(uint64_t*)0x20001018 = 0; *(uint64_t*)0x20001020 = 0xf17520; *(uint64_t*)0x20001028 = 0; *(uint64_t*)0x20001030 = 0; *(uint64_t*)0x20001038 = 0xf17680; *(uint64_t*)0x20001040 = 0; *(uint64_t*)0x20001048 = 0; *(uint64_t*)0x20001050 = 0xf17720; *(uint64_t*)0x20001058 = 0x20020500; memcpy((void*)0x20020500, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20001060 = 0x80; *(uint64_t*)0x20001068 = 0xf17da0; *(uint64_t*)0x20001070 = 0; *(uint64_t*)0x20001078 = 0; *(uint64_t*)0x20001080 = 0xf17e60; *(uint64_t*)0x20001088 = 0x20020800; memcpy((void*)0x20020800, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x15\x00\x00\x00\x00\x00\x08\x00\x16\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20001090 = 0x40; *(uint64_t*)0x20001098 = 0xf18fe0; *(uint64_t*)0x200010a0 = 0x20020900; memcpy((void*)0x20020900, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x16\x00\x00\x00\x00\x00\x08\x00\x17\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x200010a8 = 0x40; *(uint64_t*)0x200010b0 = 0xf19fe0; *(uint64_t*)0x200010b8 = 0x20020a00; *(uint64_t*)0x200010c0 = 0; *(uint64_t*)0x200010c8 = 0xf1afe0; *(uint64_t*)0x200010d0 = 0x20020b00; memcpy( (void*)0x20020b00, "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x8b\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x05\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00" "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x30\x91\x45\xfe\xfe\x7f" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\x91\x45\xfe\xfe\x7f\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x13\x2e" "\x0c\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd2\x49\x1f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xe0\x8c\x45\xfe\xfe\x7f\x00\x00\xa0\x46\x22\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xd3\x25\xb4\x45\x7f\x00\x00\x88\x05" "\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4" "\x45\x7f\x00\x00\xd0\x8c\x45\xfe\xfe\x7f\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\xa0\x84\x22\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xff\xff\xff\xff\x45\x7f\x00\x00\x40\x00\x00\x00\x45\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\xff\xff\xff\xff\x60\xd7\x25\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x77\x4a\x1f\xb4\x45\x7f\x00\x00" "\xe1\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x11\x0c\xb4\x45\x7f\x00\x00\x60\x91" "\x45\xfe\xfe\x7f\x00\x00\x60\xd7\x25\xb4\x45\x7f\x00\x00\x30\xd4\x25\xb4" "\x45\x7f\x00\x00\x4c\xfe\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd7\xf6\x16\x02\x00\x00\x00\x00\x20\x00\x00\x00\x30\x00\x00\x00" "\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92\x45\xfe\xfe\x7f\x00\x00\x70\x05" "\x07\xb4\x45\x7f\x00\x00\x80\x8c\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x40\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x8c\x45\xfe\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\xef\xb5\xbd\x85\x00\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00\x4c\xfe" "\x07\xb4\x45\x7f\x00\x00\x28\x8d\x45\xfe\xfe\x7f\x00\x00\x80\x8c\x45\xfe" "\xfe\x7f\x00\x00\x90\x8c\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xff\xff\xff\xff" "\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f" "\x00\x00\xe8\x89\x28\xb4\x01\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x28\xd6\x25\xb4\x45\x7f\x00\x00\xe8\x89\x28\xb4\x45\x7f" "\x00\x00\x50\x91\x45\xfe\xfe\x7f\x00\x00\x40\x91\x45\xfe\xfe\x7f\x00\x00" "\x60\x80\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x8c" "\x45\xfe\xfe\x7f\x00\x00\xe0\x90\x45\xfe\xfe\x7f\x00\x00\xe0\x8c\x45\xfe" "\xfe\x7f\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x30\x00\x45\xfe\xfe\x7f" "\x00\x00\x0f\xb2\x45\xfe\xfe\x7f\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00" "\x08\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\xf3\xc5" "\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\x14\x0f\xb4\x45\x7f\x00\x00\x28\xd6\x25\xb4\x45\x7f" "\x00\x00\x20\x91\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00" "\xd0\x83\x22\xb4\x45\x7f\x00\x00\xe0\x7b\x22\xb4\x45\x7f\x00\x00\x40\xf1" "\x0e\xb4\x45\x7f\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x1b\x00\x00\x00" "\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xc4\xdf\x06\xb4\x45\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1f" "\x00\x00\xff\xff\x00\x00", 960); *(uint64_t*)0x200010d8 = 0x3c0; *(uint64_t*)0x200010e0 = 0xf1b120; *(uint64_t*)0x200010e8 = 0x20020f00; memcpy( (void*)0x20020f00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00" "\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xff\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x73\x20\x76\x65\x72" "\x73\x69\x6f\x6e\x20\x25\x73\x2c\x20\x25\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", 224); *(uint64_t*)0x200010f0 = 0xe0; *(uint64_t*)0x200010f8 = 0xf1b520; *(uint64_t*)0x20001100 = 0x20021000; *(uint64_t*)0x20001108 = 0; *(uint64_t*)0x20001110 = 0xf1b680; *(uint64_t*)0x20001118 = 0x20021100; memcpy( (void*)0x20021100, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x4c\xdd\x15\xb4\x45\x7f\x00\x00\x80\x7b\x22\xb4" "\x45\x7f\x00\x00\x90\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x79\x4c\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x3e\x0a\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x90\x7a\x23\xe8\x55\x00\x00\xe0\x7b\x22\xb4" "\x45\x7f\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x90\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\x00\x00\x00" "\x00\x00\x00\x00\x60\xff\xff\xff\xff\xff\xff\xff\x10\x04\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00" "\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x27\x00\x00\x00\x00\x00\x00\x00\x10\x00" "\x00\x00\x00\x00\x00\x00\x41\x00\x00\x00\x40\x00\x00\x00\x6e\x00\x00\x00" "\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x4d\xa5\x7a\x23\xe8\x55\x00\x00\x00\xe7\x52\x63\x35\x07\x02\x68" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xa4\x7a\x23\xe8\x55\x00\x00\x70\x4a" "\x1f\xb4\x45\x7f\x00\x00\x4a\xa5\x7a\x23\xe8\x55\x00\x00\x90\xa4\x7a\x23" "\xe8\x55\x00\x00\x2f\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x6e\x14\x0c\xb4\x45\x7f\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00" "\x10\x00\x00\x00\x30\x00\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92" "\x45\xfe\xfe\x7f\x00\x00\x01\x80\xad\xfb\x00\x00\x00\x00\x9c\x6f\x26\xb4" "\x45\x7f\x00\x00\x52\x80\x88\x83\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x8c\xfc\x06\xb4\x45\x7f\x00\x00\x90\x93\x3d\x22\xe8\x55\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x32\x07" "\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4" "\x45\x7f\x00\x00\x48\x92\x45\xfe\xfe\x7f\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04" "\x07\xb4\x45\x7f\x00\x00\xaf\x9c\x3d\x22\xe8\x55\x00\x00\x52\x80\x88\x83" "\x00\x00\x00\x00\x01\x22\x0e\x02\x00\x00\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x68\x7a\x23\xb4\x45\x7f\x00\x00\x10\x93\x45\xfe\xfe\x7f\x00\x00" "\x90\x93\x3d\x22\xe8\x55\x00\x00\x9c\x6f\x26\xb4\x45\x7f\x00\x00\xbd\x8b" "\xa8\xaf\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xb4\xf8\x06\xb4" "\x45\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x3c\x06\x00\x00\x00\x00\x00\x00" "\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\x08\x93" "\x45\xfe\xfe\x7f\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4" "\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x45\x7f" "\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04\x07\xb4\x45\x7f\x00\x00" "\x85\x9c\x3d\x22\xe8\x55\x00\x00\xbd\x8b\xa8\xaf\x00\x00\x00\x00\x2e\xa2" "\xbe\x02\x00\x00\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\x68\x7a\x23\xb4" "\x45\x7f\x00\x00\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55" "\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x78\xfd\x06\xb4\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xbd\x8b\xa8\xaf" "\x00\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x85\x9c\x3d\x22\xe8\x55" "\x00\x00\x68\x94\x45\xfe\xfe\x7f\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00" "\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x3d\x76\xf4\x03\x00\x00\x00\x00" "\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x90\x94" "\x45\xfe\x01\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x5a\x36\x27\xb4\x45\x7f" "\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x68\x9a\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xe8\x94" "\x28\xb4\x45\x7f\x00\x00\xb9\x9c\x3d\x22\xe8\x55\x00\x00\x28\x95\x45\xfe" "\xfe\x7f\x00\x00\x80\x94\x45\xfe\xfe\x7f\x00\x00\x90\x94\x45\xfe\xfe\x7f" "\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x70\x81\x3e\x22\xe8\x55\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00\x88\xa5" "\x45\xfe\xfe\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe8\x94\x28\xb4\x45\x7f\x00\x00\x68\x9a\x07\xb4\x45\x7f\x00\x00\x50\x98" "\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x98\x45\xfe\xfe\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x60\x8f\x22\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x2f" "\x74\x65\x73\x74\x2f\x73\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" "\xff\xff\xff\xff\x65\x6d\x6f\x75\x6e\x74\x2d\x72\x80\x1f\x00\x00\xff\xff" "\x00\x00\xe0\x9a\x45\xfe\xfe\x7f\x00\x00\x88\xa5\x45\xfe\xfe\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff" "\xff\xff\x00\xb7\x07\xb4\x45\x7f\x00\x00\x00\x99\x45\xfe\xfe\x7f\x00\x00" "\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x82\x00\x00\x00\x00\x00\x00\x00\xa1\x26\x3e\x22" "\xe8\x55\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00" "\xff\xff\x73\x79\x73\x2f\x6c\x69\x6e\x75\x78\x2f\x74\x65\x73\x74\x2f\x73" "\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\xff\xff\xff\xff\x65\x6d" "\x6f\x75\x6e\x74\x2d\x72\x6f\x20\x30\x20\x30\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00", 1568); *(uint64_t*)0x20001120 = 0x620; *(uint64_t*)0x20001128 = 0xf1b720; *(uint64_t*)0x20001130 = 0x20021800; memcpy((void*)0x20021800, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20001138 = 0x80; *(uint64_t*)0x20001140 = 0xf1bda0; *(uint64_t*)0x20001148 = 0x20021900; memcpy( (void*)0x20021900, "\x2f\x00\x00\x00\x00\x00\x00\x00\xb5\xba\x0e\xb4\x45\x7f\x00\x00\x30\xad" "\x0e\xb4\x45\x7f\x00\x00\x00\xe7\x52\x63\x35\x07\x02\x68\x00\x00\x00\x00" "\x00\x00\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00\xb0\xa2\x7a\x23\xe8\x55" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc4\xa4\x7a\x23\xe8\x55\x00\x00\x2f\x00\x00\x00\x00\x00\x00\x00\xbf\xd3" "\x0d\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00" "\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00" "\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00" "\xda\x8b\x64\x5f\x00\x00\x00\x00\xf5\xab\x27\x0d\x00\x00\x00\x00\x69\x17" "\xe6\x5e\x00\x00\x00\x00\x7d\x45\xd8\x13\x00\x00\x00\x00\x69\x17\xe6\x5e" "\x00\x00\x00\x00\x7d\x45\xd8\x13\x00\x00\x00\x00\x73\xef\x3d\x22\xe8\x55" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\xfe\x00\x00\x00\x00\x00\x00\x7c\x0e\x82\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\xa4\x81\x00\x00\x5c\xf9\x01\x00\x53\x5f\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x10\xc4" "\x64\x5f\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x18\x00\x00\x00\x00\x00" "\x08\x00\x19\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 448); *(uint64_t*)0x20001150 = 0x1c0; *(uint64_t*)0x20001158 = 0xf1be60; *(uint64_t*)0x20001160 = 0x20021b00; memcpy((void*)0x20021b00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x00\x00\x08\x00\x1a\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20001168 = 0x40; *(uint64_t*)0x20001170 = 0xf1cfe0; *(uint64_t*)0x20001178 = 0x20021c00; memcpy((void*)0x20021c00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x1a\x00\x00\x00\x00\x00\x08\x00\x1b\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20001180 = 0x40; *(uint64_t*)0x20001188 = 0xf1dfe0; *(uint64_t*)0x20001190 = 0x20021d00; memcpy((void*)0x20021d00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x1b\x00\x00\x00\x00\x00\x08\x00\x1c\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20001198 = 0x40; *(uint64_t*)0x200011a0 = 0xf1efe0; *(uint64_t*)0x200011a8 = 0x20021e00; memcpy( (void*)0x20021e00, "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x8b\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x05\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00" "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x30\x91\x45\xfe\xfe\x7f" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\x91\x45\xfe\xfe\x7f\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x13\x2e" "\x0c\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd2\x49\x1f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xe0\x8c\x45\xfe\xfe\x7f\x00\x00\xa0\x46\x22\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xd3\x25\xb4\x45\x7f\x00\x00\x88\x05" "\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4" "\x45\x7f\x00\x00\xd0\x8c\x45\xfe\xfe\x7f\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\xa0\x84\x22\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xff\xff\xff\xff\x45\x7f\x00\x00\x40\x00\x00\x00\x45\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\xff\xff\xff\xff\x60\xd7\x25\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x77\x4a\x1f\xb4\x45\x7f\x00\x00" "\xe1\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x11\x0c\xb4\x45\x7f\x00\x00\x60\x91" "\x45\xfe\xfe\x7f\x00\x00\x60\xd7\x25\xb4\x45\x7f\x00\x00\x30\xd4\x25\xb4" "\x45\x7f\x00\x00\x4c\xfe\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd7\xf6\x16\x02\x00\x00\x00\x00\x20\x00\x00\x00\x30\x00\x00\x00" "\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92\x45\xfe\xfe\x7f\x00\x00\x70\x05" "\x07\xb4\x45\x7f\x00\x00\x80\x8c\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x40\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x8c\x45\xfe\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\xef\xb5\xbd\x85\x00\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00\x4c\xfe" "\x07\xb4\x45\x7f\x00\x00\x28\x8d\x45\xfe\xfe\x7f\x00\x00\x80\x8c\x45\xfe" "\xfe\x7f\x00\x00\x90\x8c\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xff\xff\xff\xff" "\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f" "\x00\x00\xe8\x89\x28\xb4\x01\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x28\xd6\x25\xb4\x45\x7f\x00\x00\xe8\x89\x28\xb4\x45\x7f" "\x00\x00\x50\x91\x45\xfe\xfe\x7f\x00\x00\x40\x91\x45\xfe\xfe\x7f\x00\x00" "\x60\x80\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x8c" "\x45\xfe\xfe\x7f\x00\x00\xe0\x90\x45\xfe\xfe\x7f\x00\x00\xe0\x8c\x45\xfe" "\xfe\x7f\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x30\x00\x45\xfe\xfe\x7f" "\x00\x00\x0f\xb2\x45\xfe\xfe\x7f\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00" "\x08\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\xf3\xc5" "\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\x14\x0f\xb4\x45\x7f\x00\x00\x28\xd6\x25\xb4\x45\x7f" "\x00\x00\x20\x91\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00" "\xd0\x83\x22\xb4\x45\x7f\x00\x00\xe0\x7b\x22\xb4\x45\x7f\x00\x00\x40\xf1" "\x0e\xb4\x45\x7f\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x1b\x00\x00\x00" "\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xc4\xdf\x06\xb4\x45\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1f" "\x00\x00\xff\xff\x00\x00", 960); *(uint64_t*)0x200011b0 = 0x3c0; *(uint64_t*)0x200011b8 = 0xf1f120; *(uint64_t*)0x200011c0 = 0; *(uint64_t*)0x200011c8 = 0; *(uint64_t*)0x200011d0 = 0xf1f520; *(uint64_t*)0x200011d8 = 0; *(uint64_t*)0x200011e0 = 0; *(uint64_t*)0x200011e8 = 0xf1f680; *(uint64_t*)0x200011f0 = 0x20022400; memcpy( (void*)0x20022400, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x4c\xdd\x15\xb4\x45\x7f\x00\x00\x80\x7b\x22\xb4" "\x45\x7f\x00\x00\x90\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x79\x4c\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x3e\x0a\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x90\x7a\x23\xe8\x55\x00\x00\xe0\x7b\x22\xb4" "\x45\x7f\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x90\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\x00\x00\x00" "\x00\x00\x00\x00\x60\xff\xff\xff\xff\xff\xff\xff\x10\x04\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00" "\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x27\x00\x00\x00\x00\x00\x00\x00\x10\x00" "\x00\x00\x00\x00\x00\x00\x41\x00\x00\x00\x40\x00\x00\x00\x6e\x00\x00\x00" "\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x4d\xa5\x7a\x23\xe8\x55\x00\x00\x00\xe7\x52\x63\x35\x07\x02\x68" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xa4\x7a\x23\xe8\x55\x00\x00\x70\x4a" "\x1f\xb4\x45\x7f\x00\x00\x4a\xa5\x7a\x23\xe8\x55\x00\x00\x90\xa4\x7a\x23" "\xe8\x55\x00\x00\x2f\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x6e\x14\x0c\xb4\x45\x7f\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00" "\x10\x00\x00\x00\x30\x00\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92" "\x45\xfe\xfe\x7f\x00\x00\x01\x80\xad\xfb\x00\x00\x00\x00\x9c\x6f\x26\xb4" "\x45\x7f\x00\x00\x52\x80\x88\x83\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x8c\xfc\x06\xb4\x45\x7f\x00\x00\x90\x93\x3d\x22\xe8\x55\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x32\x07" "\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4" "\x45\x7f\x00\x00\x48\x92\x45\xfe\xfe\x7f\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04" "\x07\xb4\x45\x7f\x00\x00\xaf\x9c\x3d\x22\xe8\x55\x00\x00\x52\x80\x88\x83" "\x00\x00\x00\x00\x01\x22\x0e\x02\x00\x00\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x68\x7a\x23\xb4\x45\x7f\x00\x00\x10\x93\x45\xfe\xfe\x7f\x00\x00" "\x90\x93\x3d\x22\xe8\x55\x00\x00\x9c\x6f\x26\xb4\x45\x7f\x00\x00\xbd\x8b" "\xa8\xaf\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xb4\xf8\x06\xb4" "\x45\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x3c\x06\x00\x00\x00\x00\x00\x00" "\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\x08\x93" "\x45\xfe\xfe\x7f\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4" "\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x45\x7f" "\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04\x07\xb4\x45\x7f\x00\x00" "\x85\x9c\x3d\x22\xe8\x55\x00\x00\xbd\x8b\xa8\xaf\x00\x00\x00\x00\x2e\xa2" "\xbe\x02\x00\x00\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\x68\x7a\x23\xb4" "\x45\x7f\x00\x00\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55" "\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x78\xfd\x06\xb4\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xbd\x8b\xa8\xaf" "\x00\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x85\x9c\x3d\x22\xe8\x55" "\x00\x00\x68\x94\x45\xfe\xfe\x7f\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00" "\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x3d\x76\xf4\x03\x00\x00\x00\x00" "\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x90\x94" "\x45\xfe\x01\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x5a\x36\x27\xb4\x45\x7f" "\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x68\x9a\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xe8\x94" "\x28\xb4\x45\x7f\x00\x00\xb9\x9c\x3d\x22\xe8\x55\x00\x00\x28\x95\x45\xfe" "\xfe\x7f\x00\x00\x80\x94\x45\xfe\xfe\x7f\x00\x00\x90\x94\x45\xfe\xfe\x7f" "\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x70\x81\x3e\x22\xe8\x55\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00\x88\xa5" "\x45\xfe\xfe\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe8\x94\x28\xb4\x45\x7f\x00\x00\x68\x9a\x07\xb4\x45\x7f\x00\x00\x50\x98" "\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x98\x45\xfe\xfe\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x60\x8f\x22\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x2f" "\x74\x65\x73\x74\x2f\x73\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" "\xff\xff\xff\xff\x65\x6d\x6f\x75\x6e\x74\x2d\x72\x80\x1f\x00\x00\xff\xff" "\x00\x00\xe0\x9a\x45\xfe\xfe\x7f\x00\x00\x88\xa5\x45\xfe\xfe\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff" "\xff\xff\x00\xb7\x07\xb4\x45\x7f\x00\x00\x00\x99\x45\xfe\xfe\x7f\x00\x00" "\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x82\x00\x00\x00\x00\x00\x00\x00\xa1\x26\x3e\x22" "\xe8\x55\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00" "\xff\xff\x73\x79\x73\x2f\x6c\x69\x6e\x75\x78\x2f\x74\x65\x73\x74\x2f\x73" "\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\xff\xff\xff\xff\x65\x6d" "\x6f\x75\x6e\x74\x2d\x72\x6f\x20\x30\x20\x30\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00", 1568); *(uint64_t*)0x200011f8 = 0x620; *(uint64_t*)0x20001200 = 0xf1f720; *(uint64_t*)0x20001208 = 0x20022b00; memcpy((void*)0x20022b00, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20001210 = 0x80; *(uint64_t*)0x20001218 = 0xf1fda0; *(uint64_t*)0x20001220 = 0; *(uint64_t*)0x20001228 = 0; *(uint64_t*)0x20001230 = 0xf1fe60; *(uint64_t*)0x20001238 = 0x20022e00; memcpy((void*)0x20022e00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x1d\x00\x00\x00\x00\x00\x08\x00\x1e\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20001240 = 0x40; *(uint64_t*)0x20001248 = 0xf20fe0; *(uint64_t*)0x20001250 = 0x20022f00; memcpy((void*)0x20022f00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x1e\x00\x00\x00\x00\x00\x08\x00\x1f\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20001258 = 0x40; *(uint64_t*)0x20001260 = 0xf21fe0; *(uint64_t*)0x20001268 = 0x20023000; memcpy((void*)0x20023000, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\x00\x00\x08\x00\x20\x00" "\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x40\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 64); *(uint64_t*)0x20001270 = 0x40; *(uint64_t*)0x20001278 = 0xf22fe0; *(uint64_t*)0x20001280 = 0x20023100; memcpy( (void*)0x20023100, "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x8b\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x05\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00" "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x30\x91\x45\xfe\xfe\x7f" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\x91\x45\xfe\xfe\x7f\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x13\x2e" "\x0c\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd2\x49\x1f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xe0\x8c\x45\xfe\xfe\x7f\x00\x00\xa0\x46\x22\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xd3\x25\xb4\x45\x7f\x00\x00\x88\x05" "\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4" "\x45\x7f\x00\x00\xd0\x8c\x45\xfe\xfe\x7f\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\xa0\x84\x22\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xff\xff\xff\xff\x45\x7f\x00\x00\x40\x00\x00\x00\x45\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\xff\xff\xff\xff\x60\xd7\x25\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x77\x4a\x1f\xb4\x45\x7f\x00\x00" "\xe1\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x11\x0c\xb4\x45\x7f\x00\x00\x60\x91" "\x45\xfe\xfe\x7f\x00\x00\x60\xd7\x25\xb4\x45\x7f\x00\x00\x30\xd4\x25\xb4" "\x45\x7f\x00\x00\x4c\xfe\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd7\xf6\x16\x02\x00\x00\x00\x00\x20\x00\x00\x00\x30\x00\x00\x00" "\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92\x45\xfe\xfe\x7f\x00\x00\x70\x05" "\x07\xb4\x45\x7f\x00\x00\x80\x8c\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x40\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x8c\x45\xfe\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\xef\xb5\xbd\x85\x00\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00\x4c\xfe" "\x07\xb4\x45\x7f\x00\x00\x28\x8d\x45\xfe\xfe\x7f\x00\x00\x80\x8c\x45\xfe" "\xfe\x7f\x00\x00\x90\x8c\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xff\xff\xff\xff" "\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f" "\x00\x00\xe8\x89\x28\xb4\x01\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x28\xd6\x25\xb4\x45\x7f\x00\x00\xe8\x89\x28\xb4\x45\x7f" "\x00\x00\x50\x91\x45\xfe\xfe\x7f\x00\x00\x40\x91\x45\xfe\xfe\x7f\x00\x00" "\x60\x80\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x8c" "\x45\xfe\xfe\x7f\x00\x00\xe0\x90\x45\xfe\xfe\x7f\x00\x00\xe0\x8c\x45\xfe" "\xfe\x7f\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x30\x00\x45\xfe\xfe\x7f" "\x00\x00\x0f\xb2\x45\xfe\xfe\x7f\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00" "\x08\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\xf3\xc5" "\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\x14\x0f\xb4\x45\x7f\x00\x00\x28\xd6\x25\xb4\x45\x7f" "\x00\x00\x20\x91\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00" "\xd0\x83\x22\xb4\x45\x7f\x00\x00\xe0\x7b\x22\xb4\x45\x7f\x00\x00\x40\xf1" "\x0e\xb4\x45\x7f\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x1b\x00\x00\x00" "\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xc4\xdf\x06\xb4\x45\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1f" "\x00\x00\xff\xff\x00\x00", 960); *(uint64_t*)0x20001288 = 0x3c0; *(uint64_t*)0x20001290 = 0xf23120; *(uint64_t*)0x20001298 = 0; *(uint64_t*)0x200012a0 = 0; *(uint64_t*)0x200012a8 = 0xf23520; *(uint64_t*)0x200012b0 = 0x20023600; memcpy((void*)0x20023600, "\x02\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x200012b8 = 0x60; *(uint64_t*)0x200012c0 = 0xf23680; *(uint64_t*)0x200012c8 = 0x20023700; memcpy( (void*)0x20023700, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x4c\xdd\x15\xb4\x45\x7f\x00\x00\x80\x7b\x22\xb4" "\x45\x7f\x00\x00\x90\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x79\x4c\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x3e\x0a\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x90\x7a\x23\xe8\x55\x00\x00\xe0\x7b\x22\xb4" "\x45\x7f\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x90\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\x00\x00\x00" "\x00\x00\x00\x00\x60\xff\xff\xff\xff\xff\xff\xff\x10\x04\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00" "\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x27\x00\x00\x00\x00\x00\x00\x00\x10\x00" "\x00\x00\x00\x00\x00\x00\x41\x00\x00\x00\x40\x00\x00\x00\x6e\x00\x00\x00" "\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x4d\xa5\x7a\x23\xe8\x55\x00\x00\x00\xe7\x52\x63\x35\x07\x02\x68" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xa4\x7a\x23\xe8\x55\x00\x00\x70\x4a" "\x1f\xb4\x45\x7f\x00\x00\x4a\xa5\x7a\x23\xe8\x55\x00\x00\x90\xa4\x7a\x23" "\xe8\x55\x00\x00\x2f\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x6e\x14\x0c\xb4\x45\x7f\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00" "\x10\x00\x00\x00\x30\x00\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92" "\x45\xfe\xfe\x7f\x00\x00\x01\x80\xad\xfb\x00\x00\x00\x00\x9c\x6f\x26\xb4" "\x45\x7f\x00\x00\x52\x80\x88\x83\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x8c\xfc\x06\xb4\x45\x7f\x00\x00\x90\x93\x3d\x22\xe8\x55\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x32\x07" "\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4" "\x45\x7f\x00\x00\x48\x92\x45\xfe\xfe\x7f\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04" "\x07\xb4\x45\x7f\x00\x00\xaf\x9c\x3d\x22\xe8\x55\x00\x00\x52\x80\x88\x83" "\x00\x00\x00\x00\x01\x22\x0e\x02\x00\x00\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x68\x7a\x23\xb4\x45\x7f\x00\x00\x10\x93\x45\xfe\xfe\x7f\x00\x00" "\x90\x93\x3d\x22\xe8\x55\x00\x00\x9c\x6f\x26\xb4\x45\x7f\x00\x00\xbd\x8b" "\xa8\xaf\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xb4\xf8\x06\xb4" "\x45\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x3c\x06\x00\x00\x00\x00\x00\x00" "\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\x08\x93" "\x45\xfe\xfe\x7f\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4" "\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x45\x7f" "\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04\x07\xb4\x45\x7f\x00\x00" "\x85\x9c\x3d\x22\xe8\x55\x00\x00\xbd\x8b\xa8\xaf\x00\x00\x00\x00\x2e\xa2" "\xbe\x02\x00\x00\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\x68\x7a\x23\xb4" "\x45\x7f\x00\x00\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55" "\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x78\xfd\x06\xb4\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xbd\x8b\xa8\xaf" "\x00\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x85\x9c\x3d\x22\xe8\x55" "\x00\x00\x68\x94\x45\xfe\xfe\x7f\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00" "\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x3d\x76\xf4\x03\x00\x00\x00\x00" "\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x90\x94" "\x45\xfe\x01\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x5a\x36\x27\xb4\x45\x7f" "\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x68\x9a\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xe8\x94" "\x28\xb4\x45\x7f\x00\x00\xb9\x9c\x3d\x22\xe8\x55\x00\x00\x28\x95\x45\xfe" "\xfe\x7f\x00\x00\x80\x94\x45\xfe\xfe\x7f\x00\x00\x90\x94\x45\xfe\xfe\x7f" "\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x70\x81\x3e\x22\xe8\x55\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00\x88\xa5" "\x45\xfe\xfe\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe8\x94\x28\xb4\x45\x7f\x00\x00\x68\x9a\x07\xb4\x45\x7f\x00\x00\x50\x98" "\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x98\x45\xfe\xfe\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x60\x8f\x22\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x2f" "\x74\x65\x73\x74\x2f\x73\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" "\xff\xff\xff\xff\x65\x6d\x6f\x75\x6e\x74\x2d\x72\x80\x1f\x00\x00\xff\xff" "\x00\x00\xe0\x9a\x45\xfe\xfe\x7f\x00\x00\x88\xa5\x45\xfe\xfe\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff" "\xff\xff\x00\xb7\x07\xb4\x45\x7f\x00\x00\x00\x99\x45\xfe\xfe\x7f\x00\x00" "\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x82\x00\x00\x00\x00\x00\x00\x00\xa1\x26\x3e\x22" "\xe8\x55\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00" "\xff\xff\x73\x79\x73\x2f\x6c\x69\x6e\x75\x78\x2f\x74\x65\x73\x74\x2f\x73" "\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\xff\xff\xff\xff\x65\x6d" "\x6f\x75\x6e\x74\x2d\x72\x6f\x20\x30\x20\x30\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00", 1568); *(uint64_t*)0x200012d0 = 0x620; *(uint64_t*)0x200012d8 = 0xf23720; *(uint64_t*)0x200012e0 = 0x20023e00; memcpy((void*)0x20023e00, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x200012e8 = 0x80; *(uint64_t*)0x200012f0 = 0xf23da0; *(uint64_t*)0x200012f8 = 0x20023f00; memcpy( (void*)0x20023f00, "\x2f\x00\x00\x00\x00\x00\x00\x00\xb5\xba\x0e\xb4\x45\x7f\x00\x00\x30\xad" "\x0e\xb4\x45\x7f\x00\x00\x00\xe7\x52\x63\x35\x07\x02\x68\x00\x00\x00\x00" "\x00\x00\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00\xb0\xa2\x7a\x23\xe8\x55" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc4\xa4\x7a\x23\xe8\x55\x00\x00\x2f\x00\x00\x00\x00\x00\x00\x00\xbf\xd3" "\x0d\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00" "\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00" "\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00" "\xda\x8b\x64\x5f\x00\x00\x00\x00\xf5\xab\x27\x0d\x00\x00\x00\x00\x69\x17" "\xe6\x5e\x00\x00\x00\x00\x7d\x45\xd8\x13\x00\x00\x00\x00\x69\x17\xe6\x5e" "\x00\x00\x00\x00\x7d\x45\xd8\x13\x00\x00\x00\x00\x73\xef\x3d\x22\xe8\x55" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\xfe\x00\x00\x00\x00\x00\x00\x7c\x0e\x82\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\xa4\x81\x00\x00\x5c\xf9\x01\x00\x53\x5f\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x10\xc4" "\x64\x5f\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x20\x00\x00\x00\x00\x00" "\x08\x00\x21\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 448); *(uint64_t*)0x20001300 = 0x1c0; *(uint64_t*)0x20001308 = 0xf23e60; *(uint64_t*)0x20001310 = 0x20024100; memcpy((void*)0x20024100, "\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\b\000\"\000\000\000\000\000\b\000\000\000\000" "\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x20001318 = 0x40; *(uint64_t*)0x20001320 = 0xf24fe0; *(uint64_t*)0x20001328 = 0x20024200; memcpy((void*)0x20024200, "\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\b\000#" "\000\000\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x20001330 = 0x40; *(uint64_t*)0x20001338 = 0xf25fe0; *(uint64_t*)0x20001340 = 0x20024300; memcpy((void*)0x20024300, "\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\b\000$" "\000\000\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x20001348 = 0x40; *(uint64_t*)0x20001350 = 0xf26fe0; *(uint64_t*)0x20001358 = 0x20024400; memcpy( (void*)0x20024400, "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x8b\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x05\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00" "\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x30\x91\x45\xfe\xfe\x7f" "\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x60\x91\x45\xfe\xfe\x7f\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x13\x2e" "\x0c\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd2\x49\x1f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\xe0\x8c\x45\xfe\xfe\x7f\x00\x00\xa0\x46\x22\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xd3\x25\xb4\x45\x7f\x00\x00\x88\x05" "\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4" "\x45\x7f\x00\x00\xd0\x8c\x45\xfe\xfe\x7f\x00\x00\x00\x00\x00\x00\x02\x00" "\x00\x00\xa0\x84\x22\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\xff\xff\xff\xff\x45\x7f\x00\x00\x40\x00\x00\x00\x45\x7f\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\xff\xff\xff\xff\x60\xd7\x25\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x30\x00" "\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x77\x4a\x1f\xb4\x45\x7f\x00\x00" "\xe1\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x11\x0c\xb4\x45\x7f\x00\x00\x60\x91" "\x45\xfe\xfe\x7f\x00\x00\x60\xd7\x25\xb4\x45\x7f\x00\x00\x30\xd4\x25\xb4" "\x45\x7f\x00\x00\x4c\xfe\x07\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\xd7\xf6\x16\x02\x00\x00\x00\x00\x20\x00\x00\x00\x30\x00\x00\x00" "\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92\x45\xfe\xfe\x7f\x00\x00\x70\x05" "\x07\xb4\x45\x7f\x00\x00\x80\x8c\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00" "\x00\x00\x00\x00\x40\x8c\x45\xfe\xfe\x7f\x00\x00\x50\x8c\x45\xfe\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00" "\xef\xb5\xbd\x85\x00\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00\x4c\xfe" "\x07\xb4\x45\x7f\x00\x00\x28\x8d\x45\xfe\xfe\x7f\x00\x00\x80\x8c\x45\xfe" "\xfe\x7f\x00\x00\x90\x8c\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xff\xff\xff\xff" "\x00\x00\x00\x00\xf8\x7f\x23\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f" "\x00\x00\xe8\x89\x28\xb4\x01\x00\x00\x00\x68\x78\x23\xb4\x45\x7f\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x28\xd6\x25\xb4\x45\x7f\x00\x00\xe8\x89\x28\xb4\x45\x7f" "\x00\x00\x50\x91\x45\xfe\xfe\x7f\x00\x00\x40\x91\x45\xfe\xfe\x7f\x00\x00" "\x60\x80\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xe2\x8c" "\x45\xfe\xfe\x7f\x00\x00\xe0\x90\x45\xfe\xfe\x7f\x00\x00\xe0\x8c\x45\xfe" "\xfe\x7f\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x30\x00\x45\xfe\xfe\x7f" "\x00\x00\x0f\xb2\x45\xfe\xfe\x7f\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00" "\x08\x00\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\xf3\xc5" "\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\xf0\x14\x0f\xb4\x45\x7f\x00\x00\x28\xd6\x25\xb4\x45\x7f" "\x00\x00\x20\x91\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00" "\xd0\x83\x22\xb4\x45\x7f\x00\x00\xe0\x7b\x22\xb4\x45\x7f\x00\x00\x40\xf1" "\x0e\xb4\x45\x7f\x00\x00\x48\x91\x45\xfe\xfe\x7f\x00\x00\x1b\x00\x00\x00" "\x00\x00\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xc4\xdf\x06\xb4\x45\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x80\x1f" "\x00\x00\xff\xff\x00\x00", 960); *(uint64_t*)0x20001360 = 0x3c0; *(uint64_t*)0x20001368 = 0xf27120; *(uint64_t*)0x20001370 = 0x20024800; memcpy( (void*)0x20024800, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00" "\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xff\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x73\x20\x76\x65\x72" "\x73\x69\x6f\x6e\x20\x25\x73\x2c\x20\x25\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", 224); *(uint64_t*)0x20001378 = 0xe0; *(uint64_t*)0x20001380 = 0xf27520; *(uint64_t*)0x20001388 = 0x20024900; memcpy((void*)0x20024900, "\x02\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20001390 = 0x60; *(uint64_t*)0x20001398 = 0xf27680; *(uint64_t*)0x200013a0 = 0x20024a00; memcpy( (void*)0x20024a00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x4c\xdd\x15\xb4\x45\x7f\x00\x00\x80\x7b\x22\xb4" "\x45\x7f\x00\x00\x90\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x79\x4c\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x3e\x0a\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x90\x7a\x23\xe8\x55\x00\x00\xe0\x7b\x22\xb4" "\x45\x7f\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x90\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\x00\x00\x00" "\x00\x00\x00\x00\x60\xff\xff\xff\xff\xff\xff\xff\x10\x04\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00" "\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x27\x00\x00\x00\x00\x00\x00\x00\x10\x00" "\x00\x00\x00\x00\x00\x00\x41\x00\x00\x00\x40\x00\x00\x00\x6e\x00\x00\x00" "\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x4d\xa5\x7a\x23\xe8\x55\x00\x00\x00\xe7\x52\x63\x35\x07\x02\x68" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xa4\x7a\x23\xe8\x55\x00\x00\x70\x4a" "\x1f\xb4\x45\x7f\x00\x00\x4a\xa5\x7a\x23\xe8\x55\x00\x00\x90\xa4\x7a\x23" "\xe8\x55\x00\x00\x2f\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x6e\x14\x0c\xb4\x45\x7f\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00" "\x10\x00\x00\x00\x30\x00\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92" "\x45\xfe\xfe\x7f\x00\x00\x01\x80\xad\xfb\x00\x00\x00\x00\x9c\x6f\x26\xb4" "\x45\x7f\x00\x00\x52\x80\x88\x83\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x8c\xfc\x06\xb4\x45\x7f\x00\x00\x90\x93\x3d\x22\xe8\x55\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x32\x07" "\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4" "\x45\x7f\x00\x00\x48\x92\x45\xfe\xfe\x7f\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04" "\x07\xb4\x45\x7f\x00\x00\xaf\x9c\x3d\x22\xe8\x55\x00\x00\x52\x80\x88\x83" "\x00\x00\x00\x00\x01\x22\x0e\x02\x00\x00\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x68\x7a\x23\xb4\x45\x7f\x00\x00\x10\x93\x45\xfe\xfe\x7f\x00\x00" "\x90\x93\x3d\x22\xe8\x55\x00\x00\x9c\x6f\x26\xb4\x45\x7f\x00\x00\xbd\x8b" "\xa8\xaf\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xb4\xf8\x06\xb4" "\x45\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x3c\x06\x00\x00\x00\x00\x00\x00" "\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\x08\x93" "\x45\xfe\xfe\x7f\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4" "\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x45\x7f" "\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04\x07\xb4\x45\x7f\x00\x00" "\x85\x9c\x3d\x22\xe8\x55\x00\x00\xbd\x8b\xa8\xaf\x00\x00\x00\x00\x2e\xa2" "\xbe\x02\x00\x00\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\x68\x7a\x23\xb4" "\x45\x7f\x00\x00\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55" "\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x78\xfd\x06\xb4\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xbd\x8b\xa8\xaf" "\x00\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x85\x9c\x3d\x22\xe8\x55" "\x00\x00\x68\x94\x45\xfe\xfe\x7f\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00" "\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x3d\x76\xf4\x03\x00\x00\x00\x00" "\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x90\x94" "\x45\xfe\x01\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x5a\x36\x27\xb4\x45\x7f" "\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x68\x9a\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xe8\x94" "\x28\xb4\x45\x7f\x00\x00\xb9\x9c\x3d\x22\xe8\x55\x00\x00\x28\x95\x45\xfe" "\xfe\x7f\x00\x00\x80\x94\x45\xfe\xfe\x7f\x00\x00\x90\x94\x45\xfe\xfe\x7f" "\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x70\x81\x3e\x22\xe8\x55\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00\x88\xa5" "\x45\xfe\xfe\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe8\x94\x28\xb4\x45\x7f\x00\x00\x68\x9a\x07\xb4\x45\x7f\x00\x00\x50\x98" "\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x98\x45\xfe\xfe\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x60\x8f\x22\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x2f" "\x74\x65\x73\x74\x2f\x73\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" "\xff\xff\xff\xff\x65\x6d\x6f\x75\x6e\x74\x2d\x72\x80\x1f\x00\x00\xff\xff" "\x00\x00\xe0\x9a\x45\xfe\xfe\x7f\x00\x00\x88\xa5\x45\xfe\xfe\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff" "\xff\xff\x00\xb7\x07\xb4\x45\x7f\x00\x00\x00\x99\x45\xfe\xfe\x7f\x00\x00" "\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x82\x00\x00\x00\x00\x00\x00\x00\xa1\x26\x3e\x22" "\xe8\x55\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00" "\xff\xff\x73\x79\x73\x2f\x6c\x69\x6e\x75\x78\x2f\x74\x65\x73\x74\x2f\x73" "\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\xff\xff\xff\xff\x65\x6d" "\x6f\x75\x6e\x74\x2d\x72\x6f\x20\x30\x20\x30\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00", 1568); *(uint64_t*)0x200013a8 = 0x620; *(uint64_t*)0x200013b0 = 0xf27720; *(uint64_t*)0x200013b8 = 0x20025100; memcpy((void*)0x20025100, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x200013c0 = 0x80; *(uint64_t*)0x200013c8 = 0xf27da0; *(uint64_t*)0x200013d0 = 0x20025200; memcpy( (void*)0x20025200, "\x2f\x00\x00\x00\x00\x00\x00\x00\xb5\xba\x0e\xb4\x45\x7f\x00\x00\x30\xad" "\x0e\xb4\x45\x7f\x00\x00\x00\xe7\x52\x63\x35\x07\x02\x68\x00\x00\x00\x00" "\x00\x00\x00\x00\xa0\x94\x22\xb4\x45\x7f\x00\x00\xb0\xa2\x7a\x23\xe8\x55" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xc4\xa4\x7a\x23\xe8\x55\x00\x00\x2f\x00\x00\x00\x00\x00\x00\x00\xbf\xd3" "\x0d\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00" "\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x1c\x00" "\x00\x00\x00\x00\x00\x00\xed\x41\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\x00\x00\x00" "\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00" "\xda\x8b\x64\x5f\x00\x00\x00\x00\xf5\xab\x27\x0d\x00\x00\x00\x00\x69\x17" "\xe6\x5e\x00\x00\x00\x00\x7d\x45\xd8\x13\x00\x00\x00\x00\x69\x17\xe6\x5e" "\x00\x00\x00\x00\x7d\x45\xd8\x13\x00\x00\x00\x00\x73\xef\x3d\x22\xe8\x55" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x01\xfe\x00\x00\x00\x00\x00\x00\x7c\x0e\x82\x00\x00\x00\x00\x00\x01\x00" "\x00\x00\x00\x00\x00\x00\xa4\x81\x00\x00\x5c\xf9\x01\x00\x53\x5f\x01\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00" "\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x10\xc4\x64\x5f\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x10\xc4" "\x64\x5f\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x10\xc4\x64\x5f" "\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00\x24\x00\x00\x00\x00\x00" "\x08\x00\x25\x00\x00\x00\x00\x00\x08\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x40\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 448); *(uint64_t*)0x200013d8 = 0x1c0; *(uint64_t*)0x200013e0 = 0xf27e60; *(uint64_t*)0x200013e8 = 0x20025400; memcpy((void*)0x20025400, "\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\b\000&" "\000\000\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x200013f0 = 0x40; *(uint64_t*)0x200013f8 = 0xf28fe0; *(uint64_t*)0x20001400 = 0x20025500; memcpy((void*)0x20025500, "\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\b\000\'\000\000\000\000\000\b\000\000\000\000" "\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x20001408 = 0x40; *(uint64_t*)0x20001410 = 0xf29fe0; *(uint64_t*)0x20001418 = 0x20025600; memcpy((void*)0x20025600, "\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\b\000(" "\000\000\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x20001420 = 0x40; *(uint64_t*)0x20001428 = 0xf2afe0; *(uint64_t*)0x20001430 = 0; *(uint64_t*)0x20001438 = 0; *(uint64_t*)0x20001440 = 0xf2b120; *(uint64_t*)0x20001448 = 0x20025b00; memcpy( (void*)0x20025b00, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\x00" "\x00\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\xff\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f\x2f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x25\x73\x20\x76\x65\x72" "\x73\x69\x6f\x6e\x20\x25\x73\x2c\x20\x25\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00", 224); *(uint64_t*)0x20001450 = 0xe0; *(uint64_t*)0x20001458 = 0xf2b520; *(uint64_t*)0x20001460 = 0x20025c00; *(uint64_t*)0x20001468 = 0; *(uint64_t*)0x20001470 = 0xf2b680; *(uint64_t*)0x20001478 = 0; *(uint64_t*)0x20001480 = 0; *(uint64_t*)0x20001488 = 0xf2b720; *(uint64_t*)0x20001490 = 0; *(uint64_t*)0x20001498 = 0; *(uint64_t*)0x200014a0 = 0xf2bda0; *(uint64_t*)0x200014a8 = 0x20026500; *(uint64_t*)0x200014b0 = 0; *(uint64_t*)0x200014b8 = 0xf2be60; *(uint64_t*)0x200014c0 = 0x20026700; memcpy((void*)0x20026700, "\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\b\000*" "\000\000\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x200014c8 = 0x40; *(uint64_t*)0x200014d0 = 0xf2cfe0; *(uint64_t*)0x200014d8 = 0x20026800; memcpy((void*)0x20026800, "\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\b\000+" "\000\000\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x200014e0 = 0x40; *(uint64_t*)0x200014e8 = 0xf2dfe0; *(uint64_t*)0x200014f0 = 0x20026900; *(uint64_t*)0x200014f8 = 0; *(uint64_t*)0x20001500 = 0xf2efe0; *(uint64_t*)0x20001508 = 0x20026a00; *(uint64_t*)0x20001510 = 0; *(uint64_t*)0x20001518 = 0xf2f120; *(uint64_t*)0x20001520 = 0x20026e00; *(uint64_t*)0x20001528 = 0; *(uint64_t*)0x20001530 = 0xf2f520; *(uint64_t*)0x20001538 = 0x20026f00; memcpy((void*)0x20026f00, "\x02\x00\x00\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00" "\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 96); *(uint64_t*)0x20001540 = 0x60; *(uint64_t*)0x20001548 = 0xf2f680; *(uint64_t*)0x20001550 = 0x20027000; memcpy( (void*)0x20027000, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x4c\xdd\x15\xb4\x45\x7f\x00\x00\x80\x7b\x22\xb4" "\x45\x7f\x00\x00\x90\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x79\x4c\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x3e\x0a\x0f\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x90\x7a\x23\xe8\x55\x00\x00\xe0\x7b\x22\xb4" "\x45\x7f\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x90\x02" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\x00\x00\x00" "\x00\x00\x00\x00\x60\xff\xff\xff\xff\xff\xff\xff\x10\x04\x00\x00\x00\x00" "\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x40\x00\x00\x00\x00\x00\x00\x00" "\x8c\x22\x0f\xb4\x45\x7f\x00\x00\x27\x00\x00\x00\x00\x00\x00\x00\x10\x00" "\x00\x00\x00\x00\x00\x00\x41\x00\x00\x00\x40\x00\x00\x00\x6e\x00\x00\x00" "\x7c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x4d\xa5\x7a\x23\xe8\x55\x00\x00\x00\xe7\x52\x63\x35\x07\x02\x68" "\x00\x00\x00\x00\x00\x00\x00\x00\xe4\xa4\x7a\x23\xe8\x55\x00\x00\x70\x4a" "\x1f\xb4\x45\x7f\x00\x00\x4a\xa5\x7a\x23\xe8\x55\x00\x00\x90\xa4\x7a\x23" "\xe8\x55\x00\x00\x2f\x00\x00\x00\x00\x00\x00\x00\x60\x91\x45\xfe\xfe\x7f" "\x00\x00\x6e\x14\x0c\xb4\x45\x7f\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00" "\x10\x00\x00\x00\x30\x00\x00\x00\x30\x93\x45\xfe\xfe\x7f\x00\x00\x60\x92" "\x45\xfe\xfe\x7f\x00\x00\x01\x80\xad\xfb\x00\x00\x00\x00\x9c\x6f\x26\xb4" "\x45\x7f\x00\x00\x52\x80\x88\x83\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x8c\xfc\x06\xb4\x45\x7f\x00\x00\x90\x93\x3d\x22\xe8\x55\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x32\x07" "\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4" "\x45\x7f\x00\x00\x48\x92\x45\xfe\xfe\x7f\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x43\xae\x1e\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04" "\x07\xb4\x45\x7f\x00\x00\xaf\x9c\x3d\x22\xe8\x55\x00\x00\x52\x80\x88\x83" "\x00\x00\x00\x00\x01\x22\x0e\x02\x00\x00\x00\x00\x44\x92\x45\xfe\xfe\x7f" "\x00\x00\x68\x7a\x23\xb4\x45\x7f\x00\x00\x10\x93\x45\xfe\xfe\x7f\x00\x00" "\x90\x93\x3d\x22\xe8\x55\x00\x00\x9c\x6f\x26\xb4\x45\x7f\x00\x00\xbd\x8b" "\xa8\xaf\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xb4\xf8\x06\xb4" "\x45\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\xa4\x73\x26\xb4\x45\x7f\x00\x00\x3c\x06\x00\x00\x00\x00\x00\x00" "\xe0\xe2\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\x08\x93" "\x45\xfe\xfe\x7f\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4" "\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x45\x7f" "\x00\x00\xe0\xe2\x07\xb4\x45\x7f\x00\x00\xc8\x04\x07\xb4\x45\x7f\x00\x00" "\x85\x9c\x3d\x22\xe8\x55\x00\x00\xbd\x8b\xa8\xaf\x00\x00\x00\x00\x2e\xa2" "\xbe\x02\x00\x00\x00\x00\x04\x93\x45\xfe\xfe\x7f\x00\x00\x68\x7a\x23\xb4" "\x45\x7f\x00\x00\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xb0\x97\x3d\x22\xe8\x55" "\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x78\xfd\x06\xb4\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\xbd\x8b\xa8\xaf" "\x00\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x85\x9c\x3d\x22\xe8\x55" "\x00\x00\x68\x94\x45\xfe\xfe\x7f\x00\x00\xc0\x93\x45\xfe\xfe\x7f\x00\x00" "\xd0\x93\x45\xfe\xfe\x7f\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00" "\x00\x00\x00\x00\x00\x00\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00" "\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x3d\x76\xf4\x03\x00\x00\x00\x00" "\xd8\x7a\x23\xb4\x45\x7f\x00\x00\x80\x91\x28\xb4\x45\x7f\x00\x00\x90\x94" "\x45\xfe\x01\x00\x00\x00\xe8\x94\x28\xb4\x45\x7f\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x04\x00\x00\x00\x00\x00\x00\x00\x5a\x36\x27\xb4\x45\x7f" "\x00\x00\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x68\x9a\x07\xb4\x45\x7f\x00\x00\x00\x75\x23\xb4\x45\x7f\x00\x00\xe8\x94" "\x28\xb4\x45\x7f\x00\x00\xb9\x9c\x3d\x22\xe8\x55\x00\x00\x28\x95\x45\xfe" "\xfe\x7f\x00\x00\x80\x94\x45\xfe\xfe\x7f\x00\x00\x90\x94\x45\xfe\xfe\x7f" "\x00\x00\xe1\x7c\x26\xb4\x45\x7f\x00\x00\x02\x00\x00\x00\x00\x00\x00\x00" "\x70\x81\x3e\x22\xe8\x55\x00\x00\xb0\xa2\x7a\x23\xe8\x55\x00\x00\x88\xa5" "\x45\xfe\xfe\x7f\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f" "\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\xe8\x94\x28\xb4\x45\x7f\x00\x00\x68\x9a\x07\xb4\x45\x7f\x00\x00\x50\x98" "\x45\xfe\xfe\x7f\x00\x00\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x70\x98\x45\xfe\xfe\x7f" "\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00" "\x60\x8f\x22\xb4\x45\x7f\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x2f" "\x74\x65\x73\x74\x2f\x73\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f" "\xff\xff\xff\xff\x65\x6d\x6f\x75\x6e\x74\x2d\x72\x80\x1f\x00\x00\xff\xff" "\x00\x00\xe0\x9a\x45\xfe\xfe\x7f\x00\x00\x88\xa5\x45\xfe\xfe\x7f\x00\x00" "\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xf3\xc5\x26\xb4\x45\x7f\x00\x00\x01\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff" "\xff\xff\x00\xb7\x07\xb4\x45\x7f\x00\x00\x00\x99\x45\xfe\xfe\x7f\x00\x00" "\x5a\x36\x27\xb4\x45\x7f\x00\x00\x03\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x82\x00\x00\x00\x00\x00\x00\x00\xa1\x26\x3e\x22" "\xe8\x55\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00" "\xff\xff\x73\x79\x73\x2f\x6c\x69\x6e\x75\x78\x2f\x74\x65\x73\x74\x2f\x73" "\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0e\x0f\xff\xff\xff\xff\x65\x6d" "\x6f\x75\x6e\x74\x2d\x72\x6f\x20\x30\x20\x30\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00" "\x00\x00", 1568); *(uint64_t*)0x20001558 = 0x620; *(uint64_t*)0x20001560 = 0xf2f720; *(uint64_t*)0x20001568 = 0x20027700; memcpy((void*)0x20027700, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20001570 = 0x80; *(uint64_t*)0x20001578 = 0xf2fda0; *(uint64_t*)0x20001580 = 0; *(uint64_t*)0x20001588 = 0; *(uint64_t*)0x20001590 = 0xf2fe60; *(uint64_t*)0x20001598 = 0x20027a00; memcpy((void*)0x20027a00, "\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\b\000." "\000\000\000\000\000\b\000\000\000\000\000\000\000\000\000\000@" "\000\000\000\000\000\000\000\000\000\000\000\000\000\000", 64); *(uint64_t*)0x200015a0 = 0x40; *(uint64_t*)0x200015a8 = 0xf30fe0; *(uint64_t*)0x200015b0 = 0x20027b00; *(uint64_t*)0x200015b8 = 0; *(uint64_t*)0x200015c0 = 0xf31fe0; *(uint64_t*)0x200015c8 = 0; *(uint64_t*)0x200015d0 = 0; *(uint64_t*)0x200015d8 = 0; *(uint64_t*)0x200015e0 = 0; *(uint64_t*)0x200015e8 = 0; *(uint64_t*)0x200015f0 = 0; *(uint64_t*)0x200015f8 = 0; *(uint64_t*)0x20001600 = 0; *(uint64_t*)0x20001608 = 0; *(uint64_t*)0x20001610 = 0; *(uint64_t*)0x20001618 = 0; *(uint64_t*)0x20001620 = 0; *(uint64_t*)0x20001628 = 0; *(uint64_t*)0x20001630 = 0; *(uint64_t*)0x20001638 = 0; *(uint64_t*)0x20001640 = 0; *(uint64_t*)0x20001648 = 0; *(uint64_t*)0x20001650 = 0; *(uint64_t*)0x20001658 = 0; *(uint64_t*)0x20001660 = 0; *(uint64_t*)0x20001668 = 0; *(uint64_t*)0x20001670 = 0x20060700; memcpy((void*)0x20060700, "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\xff\xff" "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x02\x00\x00\x00\x00\x00" "\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x80\x00\x00\x00\x00\x00\x00\x00" "\x00\x00\x00\x00\x00\x00\x00\x00\x00", 128); *(uint64_t*)0x20001678 = 0x80; *(uint64_t*)0x20001680 = 0xfefda0; *(uint64_t*)0x20001688 = 0; *(uint64_t*)0x20001690 = 0; *(uint64_t*)0x20001698 = 0; *(uint64_t*)0x200016a0 = 0; *(uint64_t*)0x200016a8 = 0; *(uint64_t*)0x200016b0 = 0; *(uint64_t*)0x200016b8 = 0; *(uint64_t*)0x200016c0 = 0; *(uint64_t*)0x200016c8 = 0; *(uint64_t*)0x200016d0 = 0; *(uint64_t*)0x200016d8 = 0; *(uint64_t*)0x200016e0 = 0; *(uint64_t*)0x200016e8 = 0; *(uint64_t*)0x200016f0 = 0; *(uint64_t*)0x200016f8 = 0; *(uint8_t*)0x20065600 = 0; syz_mount_image(0x20000000, 0x20000100, 0, 0xe0, 0x20000200, 0, 0x20065600); } 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); for (procid = 0; procid < 6; procid++) { if (fork() == 0) { loop(); } } sleep(1000000); return 0; }