// https://syzkaller.appspot.com/bug?id=fcf0b68b63113416159649a5145d26759b9865ba
// autogenerated by syzkaller (https://github.com/google/syzkaller)

#define _GNU_SOURCE

#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <sched.h>
#include <setjmp.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/resource.h>
#include <sys/stat.h>
#include <sys/syscall.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>

#include <linux/capability.h>
#include <linux/loop.h>

#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif

static unsigned long long procid;

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;
}

//% This code is derived from puff.{c,h}, found in the zlib development. The
//% original files come with the following copyright notice:

//% Copyright (C) 2002-2013 Mark Adler, all rights reserved
//% version 2.3, 21 Jan 2013
//% This software is provided 'as-is', without any express or implied
//% warranty.  In no event will the author be held liable for any damages
//% arising from the use of this software.
//% Permission is granted to anyone to use this software for any purpose,
//% including commercial applications, and to alter it and redistribute it
//% freely, subject to the following restrictions:
//% 1. The origin of this software must not be misrepresented; you must not
//%    claim that you wrote the original software. If you use this software
//%    in a product, an acknowledgment in the product documentation would be
//%    appreciated but is not required.
//% 2. Altered source versions must be plainly marked as such, and must not be
//%    misrepresented as being the original software.
//% 3. This notice may not be removed or altered from any source distribution.
//% Mark Adler    madler@alumni.caltech.edu

//% BEGIN CODE DERIVED FROM puff.{c,h}

#define MAXBITS 15
#define MAXLCODES 286
#define MAXDCODES 30
#define MAXCODES (MAXLCODES + MAXDCODES)
#define FIXLCODES 288

struct puff_state {
  unsigned char* out;
  unsigned long outlen;
  unsigned long outcnt;
  const unsigned char* in;
  unsigned long inlen;
  unsigned long incnt;
  int bitbuf;
  int bitcnt;
  jmp_buf env;
};
static int puff_bits(struct puff_state* s, int need)
{
  long val = s->bitbuf;
  while (s->bitcnt < need) {
    if (s->incnt == s->inlen)
      longjmp(s->env, 1);
    val |= (long)(s->in[s->incnt++]) << s->bitcnt;
    s->bitcnt += 8;
  }
  s->bitbuf = (int)(val >> need);
  s->bitcnt -= need;
  return (int)(val & ((1L << need) - 1));
}
static int puff_stored(struct puff_state* s)
{
  s->bitbuf = 0;
  s->bitcnt = 0;
  if (s->incnt + 4 > s->inlen)
    return 2;
  unsigned len = s->in[s->incnt++];
  len |= s->in[s->incnt++] << 8;
  if (s->in[s->incnt++] != (~len & 0xff) ||
      s->in[s->incnt++] != ((~len >> 8) & 0xff))
    return -2;
  if (s->incnt + len > s->inlen)
    return 2;
  if (s->outcnt + len > s->outlen)
    return 1;
  for (; len--; s->outcnt++, s->incnt++) {
    if (s->in[s->incnt])
      s->out[s->outcnt] = s->in[s->incnt];
  }
  return 0;
}
struct puff_huffman {
  short* count;
  short* symbol;
};
static int puff_decode(struct puff_state* s, const struct puff_huffman* h)
{
  int first = 0;
  int index = 0;
  int bitbuf = s->bitbuf;
  int left = s->bitcnt;
  int code = first = index = 0;
  int len = 1;
  short* next = h->count + 1;
  while (1) {
    while (left--) {
      code |= bitbuf & 1;
      bitbuf >>= 1;
      int count = *next++;
      if (code - count < first) {
        s->bitbuf = bitbuf;
        s->bitcnt = (s->bitcnt - len) & 7;
        return h->symbol[index + (code - first)];
      }
      index += count;
      first += count;
      first <<= 1;
      code <<= 1;
      len++;
    }
    left = (MAXBITS + 1) - len;
    if (left == 0)
      break;
    if (s->incnt == s->inlen)
      longjmp(s->env, 1);
    bitbuf = s->in[s->incnt++];
    if (left > 8)
      left = 8;
  }
  return -10;
}
static int puff_construct(struct puff_huffman* h, const short* length, int n)
{
  int len;
  for (len = 0; len <= MAXBITS; len++)
    h->count[len] = 0;
  int symbol;
  for (symbol = 0; symbol < n; symbol++)
    (h->count[length[symbol]])++;
  if (h->count[0] == n)
    return 0;
  int left = 1;
  for (len = 1; len <= MAXBITS; len++) {
    left <<= 1;
    left -= h->count[len];
    if (left < 0)
      return left;
  }
  short offs[MAXBITS + 1];
  offs[1] = 0;
  for (len = 1; len < MAXBITS; len++)
    offs[len + 1] = offs[len] + h->count[len];
  for (symbol = 0; symbol < n; symbol++)
    if (length[symbol] != 0)
      h->symbol[offs[length[symbol]]++] = symbol;
  return left;
}
static int puff_codes(struct puff_state* s, const struct puff_huffman* lencode,
                      const struct puff_huffman* distcode)
{
  static const short lens[29] = {3,  4,  5,  6,   7,   8,   9,   10,  11, 13,
                                 15, 17, 19, 23,  27,  31,  35,  43,  51, 59,
                                 67, 83, 99, 115, 131, 163, 195, 227, 258};
  static const short lext[29] = {0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2,
                                 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0};
  static const short dists[30] = {
      1,    2,    3,    4,    5,    7,    9,    13,    17,    25,
      33,   49,   65,   97,   129,  193,  257,  385,   513,   769,
      1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577};
  static const short dext[30] = {0, 0, 0,  0,  1,  1,  2,  2,  3,  3,
                                 4, 4, 5,  5,  6,  6,  7,  7,  8,  8,
                                 9, 9, 10, 10, 11, 11, 12, 12, 13, 13};
  int symbol;
  do {
    symbol = puff_decode(s, lencode);
    if (symbol < 0)
      return symbol;
    if (symbol < 256) {
      if (s->outcnt == s->outlen)
        return 1;
      if (symbol)
        s->out[s->outcnt] = symbol;
      s->outcnt++;
    } else if (symbol > 256) {
      symbol -= 257;
      if (symbol >= 29)
        return -10;
      int len = lens[symbol] + puff_bits(s, lext[symbol]);
      symbol = puff_decode(s, distcode);
      if (symbol < 0)
        return symbol;
      unsigned dist = dists[symbol] + puff_bits(s, dext[symbol]);
      if (dist > s->outcnt)
        return -11;
      if (s->outcnt + len > s->outlen)
        return 1;
      while (len--) {
        if (dist <= s->outcnt && s->out[s->outcnt - dist])
          s->out[s->outcnt] = s->out[s->outcnt - dist];
        s->outcnt++;
      }
    }
  } while (symbol != 256);
  return 0;
}
static int puff_fixed(struct puff_state* s)
{
  static int virgin = 1;
  static short lencnt[MAXBITS + 1], lensym[FIXLCODES];
  static short distcnt[MAXBITS + 1], distsym[MAXDCODES];
  static struct puff_huffman lencode, distcode;
  if (virgin) {
    lencode.count = lencnt;
    lencode.symbol = lensym;
    distcode.count = distcnt;
    distcode.symbol = distsym;
    short lengths[FIXLCODES];
    int symbol;
    for (symbol = 0; symbol < 144; symbol++)
      lengths[symbol] = 8;
    for (; symbol < 256; symbol++)
      lengths[symbol] = 9;
    for (; symbol < 280; symbol++)
      lengths[symbol] = 7;
    for (; symbol < FIXLCODES; symbol++)
      lengths[symbol] = 8;
    puff_construct(&lencode, lengths, FIXLCODES);
    for (symbol = 0; symbol < MAXDCODES; symbol++)
      lengths[symbol] = 5;
    puff_construct(&distcode, lengths, MAXDCODES);
    virgin = 0;
  }
  return puff_codes(s, &lencode, &distcode);
}
static int puff_dynamic(struct puff_state* s)
{
  static const short order[19] = {16, 17, 18, 0, 8,  7, 9,  6, 10, 5,
                                  11, 4,  12, 3, 13, 2, 14, 1, 15};
  int nlen = puff_bits(s, 5) + 257;
  int ndist = puff_bits(s, 5) + 1;
  int ncode = puff_bits(s, 4) + 4;
  if (nlen > MAXLCODES || ndist > MAXDCODES)
    return -3;
  short lengths[MAXCODES];
  int index;
  for (index = 0; index < ncode; index++)
    lengths[order[index]] = puff_bits(s, 3);
  for (; index < 19; index++)
    lengths[order[index]] = 0;
  short lencnt[MAXBITS + 1], lensym[MAXLCODES];
  struct puff_huffman lencode = {lencnt, lensym};
  int err = puff_construct(&lencode, lengths, 19);
  if (err != 0)
    return -4;
  index = 0;
  while (index < nlen + ndist) {
    int symbol;
    int len;
    symbol = puff_decode(s, &lencode);
    if (symbol < 0)
      return symbol;
    if (symbol < 16)
      lengths[index++] = symbol;
    else {
      len = 0;
      if (symbol == 16) {
        if (index == 0)
          return -5;
        len = lengths[index - 1];
        symbol = 3 + puff_bits(s, 2);
      } else if (symbol == 17)
        symbol = 3 + puff_bits(s, 3);
      else
        symbol = 11 + puff_bits(s, 7);
      if (index + symbol > nlen + ndist)
        return -6;
      while (symbol--)
        lengths[index++] = len;
    }
  }
  if (lengths[256] == 0)
    return -9;
  err = puff_construct(&lencode, lengths, nlen);
  if (err && (err < 0 || nlen != lencode.count[0] + lencode.count[1]))
    return -7;
  short distcnt[MAXBITS + 1], distsym[MAXDCODES];
  struct puff_huffman distcode = {distcnt, distsym};
  err = puff_construct(&distcode, lengths + nlen, ndist);
  if (err && (err < 0 || ndist != distcode.count[0] + distcode.count[1]))
    return -8;
  return puff_codes(s, &lencode, &distcode);
}
static int puff(unsigned char* dest, unsigned long* destlen,
                const unsigned char* source, unsigned long sourcelen)
{
  struct puff_state s = {
      .out = dest,
      .outlen = *destlen,
      .outcnt = 0,
      .in = source,
      .inlen = sourcelen,
      .incnt = 0,
      .bitbuf = 0,
      .bitcnt = 0,
  };
  int err;
  if (setjmp(s.env) != 0)
    err = 2;
  else {
    int last;
    do {
      last = puff_bits(&s, 1);
      int type = puff_bits(&s, 2);
      err = type == 0 ? puff_stored(&s)
                      : (type == 1 ? puff_fixed(&s)
                                   : (type == 2 ? puff_dynamic(&s) : -1));
      if (err != 0)
        break;
    } while (!last);
  }
  *destlen = s.outcnt;
  return err;
}

//% END CODE DERIVED FROM puff.{c,h}

#define ZLIB_HEADER_WIDTH 2

static int puff_zlib_to_file(const unsigned char* source,
                             unsigned long sourcelen, int dest_fd)
{
  if (sourcelen < ZLIB_HEADER_WIDTH)
    return 0;
  source += ZLIB_HEADER_WIDTH;
  sourcelen -= ZLIB_HEADER_WIDTH;
  const unsigned long max_destlen = 132 << 20;
  void* ret = mmap(0, max_destlen, PROT_WRITE | PROT_READ,
                   MAP_PRIVATE | MAP_ANON, -1, 0);
  if (ret == MAP_FAILED)
    return -1;
  unsigned char* dest = (unsigned char*)ret;
  unsigned long destlen = max_destlen;
  int err = puff(dest, &destlen, source, sourcelen);
  if (err) {
    munmap(dest, max_destlen);
    errno = -err;
    return -1;
  }
  if (write(dest_fd, dest, destlen) != (ssize_t)destlen) {
    munmap(dest, max_destlen);
    return -1;
  }
  return munmap(dest, max_destlen);
}

static int setup_loop_device(unsigned char* data, unsigned long size,
                             const char* loopname, int* loopfd_p)
{
  int err = 0, loopfd = -1;
  int memfd = syscall(__NR_memfd_create, "syzkaller", 0);
  if (memfd == -1) {
    err = errno;
    goto error;
  }
  if (puff_zlib_to_file(data, size, memfd)) {
    err = errno;
    goto error_close_memfd;
  }
  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;
    }
  }
  close(memfd);
  *loopfd_p = loopfd;
  return 0;

error_close_loop:
  close(loopfd);
error_close_memfd:
  close(memfd);
error:
  errno = err;
  return -1;
}

static void reset_loop_device(const char* loopname)
{
  int loopfd = open(loopname, O_RDWR);
  if (loopfd == -1) {
    return;
  }
  if (ioctl(loopfd, LOOP_CLR_FD, 0)) {
  }
  close(loopfd);
}

static long syz_mount_image(volatile long fsarg, volatile long dir,
                            volatile long flags, volatile long optsarg,
                            volatile long change_dir,
                            volatile unsigned long size, volatile long image)
{
  unsigned char* data = (unsigned char*)image;
  int res = -1, err = 0, need_loop_device = !!size;
  char* mount_opts = (char*)optsarg;
  char* target = (char*)dir;
  char* fs = (char*)fsarg;
  char* source = NULL;
  char loopname[64];
  if (need_loop_device) {
    int loopfd;
    memset(loopname, 0, sizeof(loopname));
    snprintf(loopname, sizeof(loopname), "/dev/loop%llu", procid);
    if (setup_loop_device(data, size, loopname, &loopfd) == -1)
      return -1;
    close(loopfd);
    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) {
    bool has_remount_ro = false;
    char* remount_ro_start = strstr(opts, "errors=remount-ro");
    if (remount_ro_start != NULL) {
      char after = *(remount_ro_start + strlen("errors=remount-ro"));
      char before = remount_ro_start == opts ? '\0' : *(remount_ro_start - 1);
      has_remount_ro = ((before == '\0' || before == ',') &&
                        (after == '\0' || after == ','));
    }
    if (strstr(opts, "errors=panic") || !has_remount_ro)
      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;
    goto error_clear_loop;
  }
  if (change_dir) {
    res = chdir(target);
    if (res == -1) {
      err = errno;
    }
  }

error_clear_loop:
  if (need_loop_device)
    reset_loop_device(loopname);
  errno = err;
  return res;
}

static void setup_binderfs();
static void setup_fusectl();
static void sandbox_common_mount_tmpfs(void)
{
  write_file("/proc/sys/fs/mount-max", "100000");
  if (mkdir("./syz-tmp", 0777))
    exit(1);
  if (mount("", "./syz-tmp", "tmpfs", 0, NULL))
    exit(1);
  if (mkdir("./syz-tmp/newroot", 0777))
    exit(1);
  if (mkdir("./syz-tmp/newroot/dev", 0700))
    exit(1);
  unsigned bind_mount_flags = MS_BIND | MS_REC | MS_PRIVATE;
  if (mount("/dev", "./syz-tmp/newroot/dev", NULL, bind_mount_flags, NULL))
    exit(1);
  if (mkdir("./syz-tmp/newroot/proc", 0700))
    exit(1);
  if (mount("syz-proc", "./syz-tmp/newroot/proc", "proc", 0, NULL))
    exit(1);
  if (mkdir("./syz-tmp/newroot/selinux", 0700))
    exit(1);
  const char* selinux_path = "./syz-tmp/newroot/selinux";
  if (mount("/selinux", selinux_path, NULL, bind_mount_flags, NULL)) {
    if (errno != ENOENT)
      exit(1);
    if (mount("/sys/fs/selinux", selinux_path, NULL, bind_mount_flags, NULL) &&
        errno != ENOENT)
      exit(1);
  }
  if (mkdir("./syz-tmp/newroot/sys", 0700))
    exit(1);
  if (mount("/sys", "./syz-tmp/newroot/sys", 0, bind_mount_flags, NULL))
    exit(1);
  if (mount("/sys/kernel/debug", "./syz-tmp/newroot/sys/kernel/debug", NULL,
            bind_mount_flags, NULL) &&
      errno != ENOENT)
    exit(1);
  if (mount("/sys/fs/smackfs", "./syz-tmp/newroot/sys/fs/smackfs", NULL,
            bind_mount_flags, NULL) &&
      errno != ENOENT)
    exit(1);
  if (mount("/proc/sys/fs/binfmt_misc",
            "./syz-tmp/newroot/proc/sys/fs/binfmt_misc", NULL, bind_mount_flags,
            NULL) &&
      errno != ENOENT)
    exit(1);
  if (mkdir("./syz-tmp/pivot", 0777))
    exit(1);
  if (syscall(SYS_pivot_root, "./syz-tmp", "./syz-tmp/pivot")) {
    if (chdir("./syz-tmp"))
      exit(1);
  } else {
    if (chdir("/"))
      exit(1);
    if (umount2("./pivot", MNT_DETACH))
      exit(1);
  }
  if (chroot("./newroot"))
    exit(1);
  if (chdir("/"))
    exit(1);
  setup_binderfs();
  setup_fusectl();
}

static void setup_fusectl()
{
  if (mount(0, "/sys/fs/fuse/connections", "fusectl", 0, 0)) {
  }
}

static void setup_binderfs()
{
  if (mkdir("/dev/binderfs", 0777)) {
  }
  if (mount("binder", "/dev/binderfs", "binder", 0, NULL)) {
  }
  if (symlink("/dev/binderfs", "./binderfs")) {
  }
}

static void loop();

static void sandbox_common()
{
  prctl(PR_SET_PDEATHSIG, SIGKILL, 0, 0, 0);
  if (getppid() == 1)
    exit(1);
  struct rlimit rlim;
  rlim.rlim_cur = rlim.rlim_max = (200 << 20);
  setrlimit(RLIMIT_AS, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 32 << 20;
  setrlimit(RLIMIT_MEMLOCK, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 136 << 20;
  setrlimit(RLIMIT_FSIZE, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 1 << 20;
  setrlimit(RLIMIT_STACK, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 128 << 20;
  setrlimit(RLIMIT_CORE, &rlim);
  rlim.rlim_cur = rlim.rlim_max = 256;
  setrlimit(RLIMIT_NOFILE, &rlim);
  if (unshare(CLONE_NEWNS)) {
  }
  if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL)) {
  }
  if (unshare(CLONE_NEWIPC)) {
  }
  if (unshare(0x02000000)) {
  }
  if (unshare(CLONE_NEWUTS)) {
  }
  if (unshare(CLONE_SYSVSEM)) {
  }
  typedef struct {
    const char* name;
    const char* value;
  } sysctl_t;
  static const sysctl_t sysctls[] = {
      {"/proc/sys/kernel/shmmax", "16777216"},
      {"/proc/sys/kernel/shmall", "536870912"},
      {"/proc/sys/kernel/shmmni", "1024"},
      {"/proc/sys/kernel/msgmax", "8192"},
      {"/proc/sys/kernel/msgmni", "1024"},
      {"/proc/sys/kernel/msgmnb", "1024"},
      {"/proc/sys/kernel/sem", "1024 1048576 500 1024"},
  };
  unsigned i;
  for (i = 0; i < sizeof(sysctls) / sizeof(sysctls[0]); i++)
    write_file(sysctls[i].name, sysctls[i].value);
}

static int wait_for_loop(int pid)
{
  if (pid < 0)
    exit(1);
  int status = 0;
  while (waitpid(-1, &status, __WALL) != pid) {
  }
  return WEXITSTATUS(status);
}

static void drop_caps(void)
{
  struct __user_cap_header_struct cap_hdr = {};
  struct __user_cap_data_struct cap_data[2] = {};
  cap_hdr.version = _LINUX_CAPABILITY_VERSION_3;
  cap_hdr.pid = getpid();
  if (syscall(SYS_capget, &cap_hdr, &cap_data))
    exit(1);
  const int drop = (1 << CAP_SYS_PTRACE) | (1 << CAP_SYS_NICE);
  cap_data[0].effective &= ~drop;
  cap_data[0].permitted &= ~drop;
  cap_data[0].inheritable &= ~drop;
  if (syscall(SYS_capset, &cap_hdr, &cap_data))
    exit(1);
}

static int do_sandbox_none(void)
{
  if (unshare(CLONE_NEWPID)) {
  }
  int pid = fork();
  if (pid != 0)
    return wait_for_loop(pid);
  sandbox_common();
  drop_caps();
  if (unshare(CLONE_NEWNET)) {
  }
  write_file("/proc/sys/net/ipv4/ping_group_range", "0 65535");
  sandbox_common_mount_tmpfs();
  loop();
  exit(1);
}

void loop(void)
{
  if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
  }
  memcpy((void*)0x200000c0, "exfat\000", 6);
  memcpy((void*)0x20000580,
         "./"
         "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000",
         257);
  memcpy((void*)0x20000000, "iocharset", 9);
  *(uint8_t*)0x20000009 = 0x3d;
  memcpy((void*)0x2000000a, "cp864", 5);
  *(uint8_t*)0x2000000f = 0x2c;
  memcpy((void*)0x20000010, "utf8", 4);
  *(uint8_t*)0x20000014 = 0x2c;
  memcpy((void*)0x20000015, "iocharset", 9);
  *(uint8_t*)0x2000001e = 0x3d;
  memcpy((void*)0x2000001f, "cp861", 5);
  *(uint8_t*)0x20000024 = 0x2c;
  memcpy((void*)0x20000025, "discard", 7);
  *(uint8_t*)0x2000002c = 0x2c;
  memcpy((void*)0x2000002d, "fmask", 5);
  *(uint8_t*)0x20000032 = 0x3d;
  sprintf((char*)0x20000033, "%023llo", (long long)3);
  *(uint8_t*)0x2000004a = 0x2c;
  memcpy((void*)0x2000004b, "gid", 3);
  *(uint8_t*)0x2000004e = 0x3d;
  sprintf((char*)0x2000004f, "0x%016llx", (long long)0);
  *(uint8_t*)0x20000061 = 0x2c;
  memcpy((void*)0x20000062, "gid", 3);
  *(uint8_t*)0x20000065 = 0x3d;
  sprintf((char*)0x20000066, "0x%016llx", (long long)0);
  *(uint8_t*)0x20000078 = 0x2c;
  memcpy((void*)0x20000079, "iocharset", 9);
  *(uint8_t*)0x20000082 = 0x3d;
  memcpy((void*)0x20000083, "macroman", 8);
  *(uint8_t*)0x2000008b = 0x2c;
  memcpy((void*)0x2000008c, "discard", 7);
  *(uint8_t*)0x20000093 = 0x2c;
  memcpy((void*)0x20000094, "namecase=1", 10);
  *(uint8_t*)0x2000009e = 0x2c;
  *(uint8_t*)0x2000009f = 0;
  memcpy(
      (void*)0x20001040,
      "\x78\x9c\xec\xdc\x0b\x9c\x4e\xd5\xfa\x38\xf0\xe7\x59\x6b\xed\x31\x24\xbd"
      "\x49\x2e\xc3\x5a\xeb\xd9\xbc\xc9\x65\x99\x24\xc9\x25\x49\x2e\x49\x92\x84"
      "\x24\xb7\x84\xd0\x24\x47\x12\x12\x43\x6e\x49\x43\x12\x92\xcb\x90\x5c\x86"
      "\x90\x5c\x26\x26\x8d\xfb\xfd\x7e\x4d\x92\xa4\x49\x92\x90\xdc\x92\xf5\xff"
      "\x4c\x71\x9c\x4e\xf5\x3f\xe7\xfc\x4e\xbf\xe3\xf7\xfb\xcd\xf3\xfd\x7c\xf6"
      "\xc7\x7a\xde\xb5\x9f\xb5\xd7\x9e\x67\xbf\xde\xb5\x37\xef\x7c\xd3\x75\x58"
      "\x8d\xc6\x35\xab\x36\x20\x22\xf8\xb7\xe0\x2f\x7f\x24\x02\x40\x2c\x00\x0c"
      "\x02\x80\xeb\x00\x20\x00\x80\xb2\xb9\xcb\xe6\xce\xec\xcf\x2e\x31\xf1\xdf"
      "\x3b\x08\xfb\x73\x35\x4c\xb9\xda\x33\x60\x57\x13\xd7\x3f\x6b\xe3\xfa\x67"
      "\x6d\x5c\xff\xac\x8d\xeb\x9f\xb5\x71\xfd\xb3\x36\xae\x7f\xd6\xc6\xf5\xcf"
      "\xda\xb8\xfe\x8c\x65\x65\x5b\x66\x14\xb8\x9e\xb7\xac\xbb\xf1\xf3\xff\xac"
      "\x8c\x3f\xff\xff\x0f\xc9\x28\x35\xee\x8b\x75\xa5\x6e\xec\xf6\x2f\xa4\x70"
      "\xfd\xb3\x36\xae\xff\xff\x59\xc1\x3f\xb3\x13\xd7\x3f\x6b\xe3\xfa\x67\x6d"
      "\x5c\xff\xff\xed\x62\xfe\xad\x6c\xae\x7f\x56\x90\xed\x0f\x7b\xb8\xfe\x59"
      "\x1b\xd7\x9f\xb1\xac\xec\x6a\x3f\x7f\xe6\xed\x9f\xda\x62\xe0\xbf\x69\xec"
      "\xab\x7d\xfd\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c"
      "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31"
      "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63"
      "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c"
      "\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\xcb\x1a\xce\xfa\x2b\x14\x00\x5c\x6e\x5f\xed\x79\x31"
      "\xc6\x18\x63\x8c\x31\xc6\x18\x63\xec\xcf\xe3\xb3\x5d\xed\x19\x30\xc6\x18"
      "\x63\x8c\x31\xc6\x18\x63\xec\xbf\x1f\x82\x00\x09\x0a\x02\x88\x81\x6c\x10"
      "\x0b\xd9\x21\x07\x08\x00\xb8\x16\x72\xc1\x75\x10\x81\xeb\x21\x37\xdc\x00"
      "\x79\xe0\x46\xc8\x0b\xf9\x20\x3f\x14\x80\x38\x28\x08\x85\x40\x83\x01\x0b"
      "\x04\x21\x14\x86\x22\x10\x85\x9b\xa0\x28\xdc\x0c\xc5\xa0\x38\x94\x80\x92"
      "\xe0\xa0\x14\xc4\xc3\x2d\x50\x1a\x6e\x85\x32\x70\x1b\x94\x85\xdb\xa1\x1c"
      "\xdc\x01\xe5\xa1\x02\x54\x84\x4a\x70\x27\x54\x86\xbb\xa0\x0a\xdc\x0d\x55"
      "\xe1\x1e\xa8\x06\xd5\xa1\x06\xd4\x84\x7b\xa1\x16\xdc\x07\xb5\xe1\x7e\xa8"
      "\x03\x0f\x40\x5d\x78\x10\xea\xc1\x43\x50\x1f\x1e\x86\x06\xd0\x10\x1a\xc1"
      "\x23\xd0\x18\x1e\x85\x26\xf0\x18\x34\x85\x66\xd0\x1c\x5a\x40\xcb\xff\x52"
      "\xfe\x0b\xd0\x13\x5e\x84\x5e\xd0\x1b\x12\xa1\x0f\xf4\x85\x97\xa0\x1f\xf4"
      "\x87\x01\x30\x10\x06\xc1\xcb\x30\x18\x5e\x81\x21\xf0\x2a\x24\xc1\x50\x18"
      "\x06\xaf\xc1\x70\x78\x1d\x46\xc0\x1b\x30\x12\x46\xc1\x68\x78\x13\xc6\xc0"
      "\x5b\x30\x16\xc6\xc1\x78\x98\x00\xc9\x30\x11\x26\xc1\xdb\x30\x19\xde\x81"
      "\x29\x30\x15\xa6\xc1\x74\x48\x81\x19\x30\x13\xde\x85\x59\x30\x1b\xe6\xc0"
      "\x7b\x30\x17\xde\x87\x79\x30\x1f\x16\xc0\x42\x48\x85\x0f\x60\x11\x2c\x86"
      "\x34\xf8\x10\x96\xc0\x47\x90\x0e\x4b\x61\x19\x2c\x87\x15\xb0\x12\x56\xc1"
      "\x6a\x58\x03\x6b\x61\x1d\xac\x87\x0d\xb0\x11\x36\xc1\x66\xd8\x02\x5b\x61"
      "\x1b\x6c\x87\x1d\xb0\x13\x76\xc1\x6e\xd8\x03\x1f\xc3\x5e\xf8\x04\xf6\xc1"
      "\xa7\xb0\x1f\x3e\xfb\x17\xf3\xcf\xfc\x5d\x7e\x37\x04\x04\x14\x28\x50\xa1"
      "\xc2\x18\x8c\xc1\x58\x8c\xc5\x1c\x98\x03\x73\x62\x4e\xcc\x85\xb9\x62\x2f"
      "\x5f\x24\x79\x30\x0f\xe6\xc5\xbc\x98\x1f\xf3\x63\x1c\xc6\x61\x21\x2c\x84"
      "\x06\x0d\x12\x12\x16\xc6\xc2\x18\xc5\x28\x16\xc5\xa2\x58\x0c\x8b\x61\x09"
      "\x2c\x81\x0e\x1d\xc6\x63\x3c\x96\xc6\x5b\xb1\x0c\x96\xc1\xb2\x58\x16\xcb"
      "\x61\x39\x2c\x8f\x15\xb0\x02\x56\xc2\x4a\x58\x19\x2b\x63\x15\xac\x82\x55"
      "\xb1\x2a\x56\xc3\x6a\x58\x03\x6b\xe0\xbd\x78\x2f\xf6\xc1\xda\x58\x1b\xeb"
      "\x60\x1d\xac\x8b\x75\x2f\x3f\x9e\xc2\x06\xd8\x00\x1b\x61\x23\x6c\x8c\x8d"
      "\xb1\x09\x36\xc1\xa6\xd8\x14\x9b\x63\x73\x6c\x89\x2d\xb1\x15\xb6\xc2\xd6"
      "\xd8\x1a\xdb\x62\x5b\x6c\x87\xed\xb0\x03\x76\xc0\x04\x4c\xc0\x8e\xd8\x11"
      "\x3b\x61\x27\xec\x8c\x9d\xb1\x0b\x76\xc1\xae\xd8\x15\xbb\x61\x77\xec\x8e"
      "\x2f\x64\x03\x7c\x11\x5f\xc4\xde\x58\x4d\xf4\xc1\xbe\xd8\x17\xfb\x61\x52"
      "\xb6\x01\x38\x10\x07\xe2\xcb\x38\x18\x5f\xc1\x57\xf0\x55\x4c\xc2\xa1\x38"
      "\x0c\x5f\xc3\xd7\xf0\x75\x1c\x81\xa7\x71\x24\x8e\xc2\xd1\x38\x1a\x2b\x8b"
      "\xb7\x70\x2c\x8e\x43\x12\x13\x30\x19\x93\x71\x12\x4e\xc2\xc9\x38\x19\xa7"
      "\xe0\x54\x9c\x8a\xd3\x31\x05\x67\xe0\x4c\x9c\x89\xb3\x70\x36\xce\xc6\xf7"
      "\x70\x2e\xbe\x8f\xef\xe3\x7c\x9c\x8f\x0b\x31\x15\x53\x71\x11\x2e\xc6\x34"
      "\x4c\xc3\x25\x78\x06\xd3\x71\x29\x2e\xc3\xe5\xb8\x02\x57\xe2\x0a\x5c\x8d"
      "\x6b\x70\x35\xae\xc3\xf5\xb8\x0e\x37\xe2\x46\xdc\x8c\x9b\x71\x2b\x6e\xc5"
      "\xed\xb8\x1d\x77\xe2\x4e\xdc\x8d\x0a\x00\x3f\xc6\x4f\xf0\x13\x4c\xc2\xfd"
      "\xb8\x1f\x0f\xe0\x01\x3c\x88\x07\xf1\x10\x1e\xc2\x0c\xcc\xc0\xc3\x78\x18"
      "\x8f\xe0\x11\x3c\x8a\x47\xf1\x18\x1e\xc3\xe3\x78\x02\x4f\xe2\x09\x3c\x85"
      "\xa7\xf0\x34\x9e\xc1\xb3\x78\x16\xcf\xe3\x79\xbc\x80\xcf\xc5\x7d\xd5\x68"
      "\x77\xf1\xb5\x49\x20\x32\x29\xa1\x44\x8c\x88\x11\xb1\x22\x56\xe4\x10\x39"
      "\x44\x4e\x91\x53\xe4\x12\xb9\x44\x44\x44\x44\x6e\x91\x5b\xe4\x11\x79\x44"
      "\x5e\x91\x57\xe4\x17\xf9\x45\x9c\x88\x13\x85\x44\x21\x61\x84\x11\x24\xc2"
      "\x18\x00\x10\x51\x11\x15\x45\x45\x51\x51\x4c\x14\x13\x25\x44\x09\xe1\x84"
      "\x13\xf1\x22\x5e\x94\x16\xa5\x45\x19\x51\x46\x94\x15\xb7\x8b\x72\xe2\x0e"
      "\x51\x5e\x54\x10\x6d\x5c\x25\x51\x49\x54\x16\x6d\x5d\x15\x71\xb7\xa8\x2a"
      "\xaa\x8a\x6a\xa2\xba\xa8\x21\x6a\x8a\x9a\xa2\x96\xa8\x25\x6a\x8b\xda\xa2"
      "\x8e\xa8\x23\xea\x8a\xba\xa2\x9e\x78\x48\xd4\x17\x7d\x70\x00\x36\x14\x99"
      "\x95\x69\x2c\x86\x62\x13\x31\x0c\x9b\x8a\x66\x42\x5e\xba\x38\x5b\x89\x11"
      "\xd8\x5a\xb4\x11\x6d\xc5\x93\x62\x14\x8e\xc4\x0e\xa2\x95\x4b\x10\x4f\x8b"
      "\x8e\x62\x2c\x76\x12\x7f\x11\xe3\xf0\x59\xd1\x45\x4c\xc0\xae\xe2\x79\xd1"
      "\x4d\x74\x17\x3d\xc4\x0b\xa2\xa7\x68\xed\x7a\x89\xde\x62\x0a\xf6\x11\x7d"
      "\xc5\x74\xec\x27\xfa\x8b\x01\x62\xa0\x98\x85\xd5\xc5\x7b\x38\x37\x7b\x0d"
      "\xf1\xaa\x48\x12\x43\xc5\x30\xf1\x9a\x58\x88\xaf\x8b\x11\xe2\x0d\x31\x52"
      "\x8c\x12\xa3\xc5\x9b\x62\x8c\x78\x4b\x8c\x15\xe3\xc4\x78\x31\x41\x24\x8b"
      "\x89\x62\x92\x78\x5b\x4c\x16\xef\x88\x29\x62\xaa\x98\x26\xa6\x8b\x14\x31"
      "\x43\xcc\x14\xef\x8a\x59\x62\xb6\x98\x23\xde\x13\x73\xc5\xfb\x62\x9e\x98"
      "\x2f\x16\x88\x85\x22\x55\x7c\x20\x16\x89\xc5\x22\x4d\x7c\x28\x96\x88\x8f"
      "\x44\xba\x58\x2a\x96\x89\xe5\x62\x85\x58\x29\x56\x89\xd5\x62\x8d\x58\x2b"
      "\xd6\x89\xf5\x62\x83\xd8\x28\x36\x89\xcd\x62\x8b\xd8\x2a\xb6\x89\xed\x62"
      "\x87\xd8\x29\x76\x89\xdd\x62\x8f\xf8\x58\xec\x15\x9f\x88\x7d\xe2\x53\xb1"
      "\x5f\x7c\x26\x0e\x88\xcf\xc5\x41\xf1\x85\x38\x24\xbe\x14\x19\xe2\x2b\x71"
      "\x58\x7c\x2d\x8e\x88\x6f\xc4\x51\xf1\xad\x38\x26\xbe\x13\xc7\xc5\x09\x71"
      "\x52\x7c\x2f\x4e\x89\x1f\xc4\x69\x71\x46\x9c\x15\xe7\xc4\x79\xf1\xa3\xb8"
      "\x20\x7e\x12\x17\x85\x17\x20\x51\x0a\x29\xa5\x92\x81\x8c\x91\xd9\x64\xac"
      "\xcc\x2e\x73\xc8\x6b\x64\x4e\x19\x5c\xfa\xe9\x5e\x2f\x73\xcb\x1b\x64\x1e"
      "\x79\x63\x43\x09\x20\xf3\xcb\x02\x32\x4e\x16\x94\x85\xa4\x96\x46\x5a\x49"
      "\x32\x94\x85\x65\x11\x19\x95\x37\xc9\xa2\xf2\x66\x59\x4c\x16\x97\x25\x64"
      "\x49\xe9\x64\x29\x19\x2f\x6f\x91\xa5\xe5\xad\xb2\x8c\xbc\x4d\x96\x95\xb7"
      "\xcb\x72\xf2\x0e\x59\x5e\x56\x90\x15\x65\x25\x79\xa7\xac\x2c\xef\x92\x10"
      "\xf9\xe5\x18\xd5\x64\x75\x59\x43\xd6\x94\xf7\xca\x5a\xf2\x3e\x59\x5b\xde"
      "\x2f\xeb\xc8\x07\x64\x5d\xf9\xa0\xac\x27\x1f\x92\xf5\xe5\xc3\xb2\x81\x6c"
      "\x28\x1b\xc9\x47\x64\x63\xf9\xa8\x6c\x22\x1f\x93\x4d\x65\x33\xd9\x5c\xb6"
      "\x90\x2d\xe5\xe3\xb2\x95\x7c\x42\xb6\x96\x6d\x64\x5b\xf9\xa4\x6c\x27\xdb"
      "\xcb\x0e\xf2\x29\x99\x20\x9f\x96\x1d\xa5\xbf\x74\x89\x3c\x2b\xbb\xc8\xe7"
      "\x64\x57\xf9\xbc\xec\x26\xbb\xcb\x1e\xf2\x27\x79\x51\x7a\xd9\x4b\xf6\x96"
      "\x00\x7d\x64\x5f\xf9\x92\xec\x27\xfb\xcb\x01\x72\xa0\x1c\x24\x5f\x96\x83"
      "\xe5\x2b\x72\x88\x7c\x55\x26\xc9\xa1\x72\x98\x7c\x4d\x0e\x97\xaf\xcb\x11"
      "\xf2\x0d\x39\x52\x8e\x92\xa3\xe5\x9b\x72\x8c\x7c\x4b\x8e\x95\xe3\xe4\x78"
      "\x39\x41\x26\xcb\x89\x72\x92\x7c\x5b\x4e\x96\xef\xc8\x29\x72\xaa\x9c\x26"
      "\xa7\xcb\x14\x39\x43\x0e\xb8\x34\xd2\x1c\x29\xff\x61\xfe\xdb\xbf\x93\x3f"
      "\xe4\xe7\xa3\x6f\x96\x5b\xe4\x56\xb9\x4d\x6e\x97\x3b\xe4\x4e\xb9\x4b\xee"
      "\x96\x7b\xe4\x1e\xb9\x57\xee\x95\xfb\xe4\x3e\xb9\x5f\xee\x97\x07\xe4\x01"
      "\x79\x50\x1e\x94\x87\xe4\x21\x99\x21\x33\xe4\x61\x79\x58\x1e\x91\x47\xe4"
      "\x51\x79\x54\x1e\x93\xc7\xe4\x71\x79\x42\x9e\x93\xdf\xcb\x53\xf2\x07\x79"
      "\x5a\x9e\x91\x67\xe4\x39\x79\x5e\x9e\x97\x17\x2e\xfd\x0c\x40\xa1\x12\x4a"
      "\x2a\xa5\x02\x15\xa3\xb2\xa9\x58\x95\x5d\xe5\x50\xd7\xa8\x9c\xea\x5a\x95"
      "\x4b\x5d\xa7\x22\xea\x7a\x95\x5b\xdd\xa0\xf2\xa8\x1b\x55\x5e\x95\x4f\xe5"
      "\x57\x05\x54\x9c\x2a\xa8\x0a\x29\xad\x8c\xb2\x8a\x54\xa8\x0a\xab\x22\x2a"
      "\xaa\x6e\xc2\x4b\x17\x8c\x2a\xa1\x4a\x2a\xa7\x4a\xa9\x78\x75\xcb\xbf\x92"
      "\xaf\x8a\xaa\x9b\x55\x31\x55\xfc\x57\xf9\x97\xe7\x97\xf8\x07\xf3\x6b\xa9"
      "\x5a\xaa\x56\xaa\x95\x6a\xad\x5a\xab\xb6\xaa\xad\x6a\xa7\xda\xa9\x0e\xaa"
      "\x83\x4a\x50\x09\xaa\xa3\xea\xa8\x3a\xa9\x4e\xaa\xb3\xea\xac\xba\xa8\x2e"
      "\xaa\xab\xea\xaa\xba\xa9\x6e\xaa\x87\xea\xa1\x7a\xaa\x9e\xaa\x97\xea\xa5"
      "\x12\x55\xa2\xea\xab\x5e\x52\xfd\x54\x7f\x35\x40\x0d\x54\x83\xd4\xcb\x6a"
      "\xb0\x1a\xac\x86\xa8\x21\x2a\x49\x25\xa9\x61\x6a\x98\x1a\xae\x86\xab\x11"
      "\x6a\x84\x1a\xa9\x46\xaa\xd1\x6a\xb4\x1a\xa3\xc6\xa8\xb1\x6a\xac\x1a\xaf"
      "\xc6\xab\x64\x95\xac\x26\xa9\x49\x6a\xb2\x9a\xac\xa6\xa8\x29\x6a\x9a\x9a"
      "\xa6\x52\x54\x8a\x9a\xa9\x66\xaa\x59\x6a\x96\x9a\xa3\xe6\xa8\xb9\x6a\xae"
      "\x9a\xa7\xe6\xa9\x05\x6a\x81\x4a\x55\xa9\x6a\x91\x5a\xa4\xd2\x54\x9a\x5a"
      "\xa2\x96\xa8\x74\xb5\x54\x2d\x55\xcb\xd5\x72\xb5\x52\xad\x54\xab\xd5\x6a"
      "\xb5\x56\xad\x55\xeb\xd5\x7a\xb5\x51\x6d\x54\xe9\x6a\x8b\xda\xa2\xb6\xa9"
      "\x6d\x6a\x87\xda\xa1\x76\xa9\x5d\x6a\x8f\xda\xa3\xf6\xaa\xbd\x6a\x9f\xda"
      "\xa7\xf6\xab\xfd\xea\x80\x3a\xa0\x0e\xaa\x83\xea\x90\x3a\xa4\x32\x54\x86"
      "\x3a\xac\x0e\xab\x23\xea\x88\x3a\xaa\x8e\xaa\x63\xea\x98\x3a\xae\x8e\xab"
      "\x93\xea\xa4\x3a\xa5\x4e\xa9\xd3\xea\xb4\x3a\xab\xce\xaa\xf3\xea\xbc\xba"
      "\xa0\x2e\xa8\x8b\xea\x62\xe6\xb2\x2f\x10\x81\x08\x54\xa0\x82\x98\x20\x26"
      "\x88\x0d\x62\x83\x1c\x41\x8e\x20\x67\x90\x33\xc8\x15\xe4\x0a\x22\x41\x24"
      "\xc8\x1d\xe4\x0e\xf2\x04\x37\x06\x79\x83\x7c\x41\xfe\xa0\x40\x10\x17\x14"
      "\x0c\x0a\x05\x3a\x30\x81\x0d\xc4\xa5\xa2\x47\x83\x9b\x82\xa2\xc1\xcd\x41"
      "\xb1\xa0\x78\x50\x22\x28\x19\xb8\xa0\x54\x10\x1f\xdc\x12\x94\x0e\x6e\x0d"
      "\xca\x04\xb7\x05\x65\x83\xdb\x83\x72\xc1\x1d\x41\xf9\xa0\x42\x50\x31\xa8"
      "\x14\xdc\x19\x54\x0e\xee\x0a\xaa\x04\x77\x07\x55\x83\x7b\x82\x6a\x41\xf5"
      "\xa0\x46\x50\x33\xb8\x37\xa8\x15\xdc\x17\xd4\x0e\xee\x0f\xea\x04\x0f\x04"
      "\x75\x83\x07\x83\x7a\xc1\x43\x41\xfd\xe0\xe1\xa0\x41\xd0\x30\x68\x14\x3c"
      "\x12\x34\x0e\x1e\x0d\x9a\x04\x8f\x05\x4d\x83\x66\x41\xf3\xa0\x45\xd0\xf2"
      "\x4f\x1d\xdf\xfb\xd3\xf9\x9e\x70\xbd\x74\x6f\x9d\xa8\xfb\xe8\xbe\xfa\x25"
      "\xdd\x4f\xf7\xd7\x03\xf4\x40\x3d\x48\xbf\xac\x07\xeb\x57\xf4\x10\xfd\xaa"
      "\x4e\xd2\x43\xf5\x30\xfd\x9a\x1e\xae\x5f\xd7\x23\xf4\x1b\x7a\xa4\x1e\xa5"
      "\x47\xeb\x37\xf5\x18\xfd\x96\x1e\xab\xc7\xe9\xf1\x7a\x82\x4e\xd6\x13\xf5"
      "\x24\xfd\xb6\x9e\xac\xdf\xd1\x53\xf4\x54\x3d\x4d\x4f\xd7\x29\x7a\x86\x9e"
      "\xa9\xdf\xd5\xb3\xf4\x6c\x3d\x47\xbf\xa7\xe7\xea\xf7\xf5\x3c\x3d\x5f\x2f"
      "\xd0\x0b\x75\xaa\xfe\x40\x2f\xd2\x8b\x75\x9a\xfe\x50\x2f\xd1\x1f\xe9\x74"
      "\xbd\x54\x2f\xd3\xcb\xf5\x0a\xbd\x52\xaf\xd2\xab\xf5\x1a\xbd\x56\xaf\xd3"
      "\xeb\xf5\x06\xbd\x51\x6f\xd2\x9b\xf5\x16\xbd\x55\x6f\xd3\xdb\xf5\x0e\xbd"
      "\x53\xef\xd2\xbb\xf5\x1e\xfd\xb1\xde\xab\x3f\xd1\xfb\xf4\xa7\x7a\xbf\xfe"
      "\x4c\x1f\xd0\x9f\xeb\x83\xfa\x0b\x7d\x48\x7f\xa9\x33\xf4\x57\xfa\xb0\xfe"
      "\x5a\x1f\xd1\xdf\xe8\xa3\xfa\x5b\x7d\x4c\x7f\xa7\x8f\xeb\x13\xfa\xa4\xfe"
      "\x5e\x9f\xd2\x3f\xe8\xd3\xfa\x8c\x3e\xab\xcf\xe9\xf3\xfa\x47\x7d\x41\xff"
      "\xa4\x2f\x6a\x9f\xb9\xb8\xcf\xfc\x78\x37\xca\x28\x13\x63\x62\x4c\xac\x89"
      "\x35\x39\x4c\x0e\x93\xd3\xe4\x34\xb9\x4c\x2e\x13\x31\x11\x93\xdb\xe4\x6e"
      "\x7f\xa9\xfc\x26\xbf\xc9\x6f\xe2\x4c\x9c\x29\x64\x0a\x99\x4c\x64\xc8\x14"
      "\x36\x85\x4d\xd4\x44\x4d\x51\x53\xd4\x14\x33\xc5\x4c\x09\x53\xc2\x38\xe3"
      "\x4c\xbc\x89\x37\xa5\x4d\x69\x53\xc6\x94\x31\x65\x4d\x59\x53\xce\x94\x33"
      "\xe5\x4d\x79\x53\xd1\x54\x34\x77\x9a\x3b\xcd\x5d\xe6\x2e\x73\xb7\xb9\xdb"
      "\xdc\x63\xee\x31\xd5\x4d\x75\x53\xd3\xd4\x34\xb5\x4c\x2d\x53\xdb\xd4\x36"
      "\x75\x4c\x1d\x53\xd7\xd4\x35\xf5\x4c\x3d\x53\xdf\xd4\x37\x0d\x4c\x03\xd3"
      "\xc8\x34\x32\x8d\x4d\x63\xd3\xc4\x34\x31\x4d\x4d\x53\xd3\xdc\x34\x37\x2d"
      "\x4d\x4b\xd3\xca\xb4\x32\xad\x4d\x6b\xd3\xd6\xb4\x35\xed\x4c\x3b\xd3\xc1"
      "\x74\x30\x09\x26\xc1\x74\x34\x1d\x4d\x27\xd3\xc9\x74\x36\x9d\x4d\x17\xd3"
      "\xc5\x74\x35\x5d\x4d\x37\xd3\xcd\xf4\x30\x3d\x4c\x4f\xd3\xd3\xf4\x32\xbd"
      "\x4c\xa2\x49\x34\x7d\x4d\x5f\xd3\xcf\xf4\x33\x03\xcc\x00\x33\xc8\x0c\x32"
      "\x83\xcd\x60\x33\xc4\x0c\x31\x49\x26\xc9\x0c\x33\xc3\xcc\x70\x33\xdc\x8c"
      "\x30\x23\xcc\x48\x33\xca\x8c\xce\x5c\xa8\x9a\xb7\xcc\x58\x33\xce\x8c\x37"
      "\x13\x4c\xb2\x49\x36\x93\xcc\x24\x33\xd9\x4c\x36\x53\xcc\x14\x33\xcd\x4c"
      "\x33\x29\x26\xc5\xcc\x34\x33\xcd\x2c\x33\xcb\xcc\x31\x73\xcc\x5c\x33\xd7"
      "\xcc\x33\xf3\xcc\x02\xb3\xc0\xa4\x9a\x54\xb3\xc8\x2c\x32\x69\x26\xcd\x2c"
      "\x31\x4b\x4c\xba\x49\x37\xcb\xcc\x32\xb3\xc2\xac\x30\xab\xcc\x2a\xb3\xc6"
      "\xac\x31\xeb\xcc\x3a\xb3\x01\x36\x98\x4d\x66\x93\xd9\x62\xb6\x98\x6d\x66"
      "\x9b\xd9\x61\x76\x98\x5d\x66\x97\xd9\x63\xf6\x98\xbd\x66\xaf\xd9\x67\xf6"
      "\x99\xfd\x66\xbf\x39\x60\x0e\x98\x83\xe6\xa0\x39\x64\x0e\x99\x0c\x93\x61"
      "\x0e\x9b\xc3\xe6\x88\x39\x62\x8e\x9a\xa3\xe6\x98\x39\x66\x8e\x9b\xe3\xe6"
      "\xa4\x39\x69\x4e\x99\x53\xe6\xb4\x39\x6d\xce\x9a\xb3\xe6\xbc\xc9\x77\xe9"
      "\xf3\xd2\x9b\x58\x9b\xdd\xe6\xb0\xd7\xd8\x9c\xf6\x5a\x9b\xcb\x5e\x67\xff"
      "\x3e\xce\x6f\x0b\xd8\x38\x5b\xd0\x16\xb2\xda\xe6\xb5\xf9\x7e\x15\x1b\x6b"
      "\x6d\x31\x5b\xdc\x96\xb0\x25\xad\xb3\xa5\x6c\xbc\xbd\xe5\x37\x71\x79\x5b"
      "\xc1\x56\xb4\x95\xec\x9d\xb6\xb2\xbd\xcb\x56\xf9\x4d\x5c\xcb\xde\x67\x6b"
      "\xdb\xfb\x6d\x1d\xfb\x80\xad\x69\xef\xfd\x55\x5c\xd7\x3e\x68\xeb\xd9\x47"
      "\x6d\x7d\x44\x00\xdb\xcc\x36\xb2\x2d\x6c\x63\xfb\xa8\x6d\x62\x1f\xb3\x4d"
      "\x6d\x33\xdb\xdc\xb6\xb0\xed\x6c\x7b\xdb\xc1\x3e\x65\x13\xec\xd3\xb6\xa3"
      "\x7d\xe6\x37\xf1\x22\xbb\xd8\xae\xb1\x6b\xed\x3a\xbb\xde\xee\xb5\x9f\xd8"
      "\xb3\xf6\x9c\x3d\x62\xbf\xb1\xe7\xed\x8f\xb6\x97\xed\x6d\x07\xd9\x97\xed"
      "\x60\xfb\x8a\x1d\x62\x5f\xb5\x49\x76\xe8\x6f\xe2\xd1\xf6\x4d\x3b\xc6\xbe"
      "\x65\xc7\xda\x71\x76\xbc\x9d\xf0\x9b\x78\x9a\x9d\x6e\x53\xec\x0c\x3b\xd3"
      "\xbe\x6b\x67\xd9\xd9\xbf\x89\x53\xed\x07\x76\xae\x4d\xb3\xf3\xec\x7c\xbb"
      "\xc0\x2e\xfc\x39\xce\x9c\x53\x9a\xfd\xd0\x2e\xb1\x1f\xd9\x74\xbb\xd4\x2e"
      "\xb3\xcb\xed\x0a\xbb\xd2\xae\xb2\xab\xff\x3a\xd7\xe5\x76\xa3\xdd\x64\x37"
      "\xdb\x3d\xf6\x63\xbb\xcd\x6e\xb7\x3b\xec\x4e\xbb\xcb\xee\xfe\x39\xce\x3c"
      "\x8f\x7d\xf6\x53\xbb\xdf\x7e\x66\x0f\xdb\xaf\xed\x41\xfb\x85\x3d\x64\x8f"
      "\xda\x0c\xfb\xd5\xcf\x71\xe6\xf9\x1d\xb5\xdf\xda\x63\xf6\x3b\x7b\xdc\x9e"
      "\xb0\x27\xed\xf7\xf6\x94\xfd\xc1\x9e\xb6\x67\x7e\x3e\xff\xcc\x73\xff\xde"
      "\xfe\x64\x2f\x5a\x6f\x81\x90\x80\x24\x29\x0a\x28\x86\xb2\x51\x2c\x65\xa7"
      "\x1c\x74\x0d\xe5\xa4\x6b\x29\x17\x5d\x47\x11\xba\x9e\x72\xd3\x0d\x94\x87"
      "\x6e\xa4\xbc\x94\x8f\xf2\x53\x01\x8a\xa3\x82\x54\x88\x34\x19\xb2\x44\x14"
      "\x52\x61\x2a\x42\x51\xba\x89\x2e\xaf\xd3\x4b\x50\x49\x72\x54\x8a\xe2\xe9"
      "\x16\x2a\x4d\xb7\x52\x19\xba\x8d\xca\xd2\xed\x54\x8e\xee\xa0\xf2\x54\x81"
      "\x2a\x52\x25\xba\x93\x2a\xd3\x5d\x54\x85\xee\xa6\xaa\x74\x0f\x55\xa3\xea"
      "\x54\x83\x6a\xd2\xbd\x54\x8b\xee\xa3\xda\x74\x3f\xd5\xa1\x07\xa8\x2e\x3d"
      "\x48\xf5\xe8\x21\xaa\x4f\x0f\x53\x03\x6a\x48\x8d\xe8\x11\x6a\x4c\x8f\x52"
      "\x13\x7a\x8c\x9a\x52\x33\x6a\x4e\x2d\xa8\x25\x3d\x4e\xad\xe8\x09\x6a\x4d"
      "\x6d\xa8\x2d\x3d\x49\xed\xa8\x3d\x75\xa0\xa7\x28\x81\x9e\xa6\x8e\xf4\x0c"
      "\x75\xa2\xbf\x50\x67\x7a\x96\xba\xd0\x73\xd4\x95\x9e\xa7\x6e\xd4\x9d\x7a"
      "\xd0\x0b\xd4\x93\x5e\xa4\x5e\xd4\x9b\x12\xa9\x0f\xf5\xa5\x97\xa8\x1f\xf5"
      "\xa7\x01\x34\x90\x06\xd1\xcb\x34\x98\x5e\xa1\x21\xf4\x2a\x25\xd1\x50\x1a"
      "\x46\xaf\xd1\x70\x7a\x9d\x46\xd0\x1b\x34\x92\x46\xd1\x68\x7a\x93\xc6\xd0"
      "\x5b\x34\x96\xc6\xd1\x78\x9a\x40\xc9\x34\x91\x26\xd1\xdb\x34\x99\xde\xa1"
      "\x29\x34\x95\xa6\xd1\x74\x4a\xa1\x19\x34\x93\xde\xa5\x59\x34\x9b\xe6\xd0"
      "\x7b\x34\x97\xde\xa7\x79\x34\x9f\x16\xd0\x42\x4a\xa5\x0f\x68\x11\x2d\xa6"
      "\x34\xfa\x90\x96\xd0\x47\x94\x4e\x4b\x69\x19\x2d\xa7\x15\xb4\x92\x56\xd1"
      "\x6a\x5a\x43\x6b\x69\x1d\xad\xa7\x0d\xb4\x91\x36\xd1\x66\xda\x42\x5b\x69"
      "\x1b\x6d\xa7\x1d\xb4\x93\x76\xd1\x6e\xda\x43\x1f\xd3\x5e\xfa\x84\xf6\xd1"
      "\xa7\xb4\x9f\x3e\xa3\x03\xf4\x39\x1d\xa4\x2f\xe8\x10\x7d\x49\x19\xf4\x15"
      "\x1d\xa6\xaf\xe9\x08\x7d\x43\x47\xe9\x5b\xdf\x9b\xbe\xa3\xe3\x74\x82\x4e"
      "\xd2\xf7\x74\x8a\x7e\xa0\xd3\x74\x86\xce\xd2\x39\x3a\x4f\x3f\xd2\x05\xfa"
      "\x89\x2e\x92\x27\x08\x31\x14\xa1\x0c\x55\x18\x84\x31\x61\xb6\x30\x36\xcc"
      "\x1e\xe6\x08\xaf\x09\x73\x86\xd7\x86\xb9\xc2\xeb\xc2\x48\x78\x7d\x98\x3b"
      "\xbc\x21\xcc\x13\xde\x18\xe6\x0d\xf3\x85\xf9\xc3\x02\x61\x5c\x58\x30\x2c"
      "\x14\xea\xd0\x84\x36\xa4\x30\x0c\x0b\x87\x45\xc2\x68\x78\x53\x58\x34\xbc"
      "\x39\x2c\x16\x16\x0f\x4b\x84\x25\x43\x17\x96\x0a\xe3\xc3\x5b\xc2\xd2\xe1"
      "\xad\x61\x99\xf0\xb6\xb0\x6c\x78\x7b\x58\x2e\xbc\x23\x2c\x1f\x56\x08\x1f"
      "\x7d\xa0\x52\x78\x67\x58\x39\xbc\x2b\xac\x12\xde\x1d\x56\x0d\xef\x09\xab"
      "\x85\xd5\xc3\x1a\x61\xcd\xf0\xde\xb0\x56\x78\x5f\x58\x3b\xbc\x3f\xac\x13"
      "\x3e\x10\x96\x09\x1f\x0c\xeb\x85\x0f\x85\xf5\xc3\x87\xc3\x06\x61\xc3\xb0"
      "\x51\xf8\x48\xd8\x38\x7c\x34\x6c\x12\x3e\x16\x36\x0d\x9b\x85\xcd\xc3\x16"
      "\x61\xcb\xf0\xf1\xb0\x55\xf8\x44\xd8\x3a\x6c\x13\xb6\x0d\x9f\x0c\xdb\x85"
      "\xed\xc3\x0e\xe1\x53\x61\x42\xf8\x74\xd8\x31\x7c\xe6\xe7\xfe\x07\x17\xff"
      "\x71\x7f\x62\xd8\x27\xec\x1b\xbe\x14\xbe\x14\x7a\x7f\xbf\x5c\x10\x5d\x18"
      "\x4d\x8d\x7e\x10\x5d\x14\x5d\x1c\x4d\x8b\x7e\x18\x5d\x12\xfd\x28\x9a\x1e"
      "\x5d\x1a\x5d\x16\x5d\x1e\x5d\x11\x5d\x19\x5d\x15\x5d\x1d\x5d\x13\x5d\x1b"
      "\x5d\x17\x5d\x1f\xdd\x10\xdd\x18\xdd\x14\xdd\x1c\xf5\xbe\x66\x36\x70\xe8"
      "\x84\x93\x4e\xb9\xc0\xc5\xb8\x6c\x2e\xd6\x65\x77\x39\xdc\x35\x2e\xa7\xbb"
      "\xd6\xe5\x72\xd7\xb9\x88\xbb\xde\xe5\x76\x37\xb8\x3c\xee\x46\x97\xd7\xe5"
      "\x73\xf9\x5d\x01\x17\xe7\x0a\xba\x42\x4e\x3b\xe3\xac\x23\x17\xba\xc2\xae"
      "\x88\x8b\xba\x9b\x5c\x51\x77\xb3\x2b\xe6\x8a\xbb\x12\xae\xa4\x73\xae\x94"
      "\x8b\x77\x2d\x5c\x4b\xd7\xd2\xb5\x72\x4f\xb8\xd6\xae\x8d\x6b\xeb\x9e\x74"
      "\x4f\xba\xf6\xae\xbd\x7b\xca\x3d\xe5\x9e\x76\x1d\xdd\x33\xae\x93\xfb\x8b"
      "\xeb\xec\x9e\x75\x5d\xdc\x73\xee\x39\xf7\xbc\xeb\xe6\xba\xbb\x1e\xee\x05"
      "\xd7\xd3\x4d\xcc\xf5\xcb\x7b\x32\xd1\xf5\x75\x7d\x5d\x3f\xd7\xcf\x0d\x70"
      "\x03\xdc\x20\x37\xc8\x0d\x76\x83\xdd\x10\x37\xc4\x25\xb9\x24\x37\xcc\x0d"
      "\x73\xc3\xdd\x70\x37\xc2\x8d\x70\x23\xdd\x48\x37\xda\x8d\x76\x63\xdc\x18"
      "\x37\xd6\x8d\x75\xe3\xdd\x78\x97\xec\x92\xdd\x24\x37\xc9\x4d\x76\x93\xdd"
      "\x14\x37\xc5\x4d\x73\xd3\x5c\x8a\x4b\x71\x33\xdd\x4c\x37\xcb\xcd\x72\x95"
      "\x67\xff\x72\x94\x79\x6e\x9e\x5b\xe0\x16\xb8\x54\x97\xea\x16\xb9\xcc\x35"
      "\x63\x9a\x5b\xe2\x96\xb8\x74\x97\xee\x96\xb9\x65\x6e\x85\x5b\xe1\x56\xb9"
      "\x55\x6e\x8d\x5b\xe3\xd6\xb9\x75\x6e\x83\xdb\xe0\x36\xb9\x4d\x6e\x8b\xdb"
      "\xe2\xb6\xb9\x6d\x6e\x87\xdb\xe1\x76\xb9\x5d\x6e\x8f\xdb\xe3\xf6\xfa\xeb"
      "\x7e\x19\xd4\xed\x77\x07\xdc\x01\x77\xd0\x1d\x74\x87\xdc\x97\x2e\xc3\x7d"
      "\xe5\x0e\xbb\xaf\xdd\x11\xf7\x8d\x3b\xea\xbe\x75\xc7\xdc\x77\xee\xb8\x3b"
      "\xe1\x4e\xba\xef\xdd\x29\xf7\x83\x3b\xed\xce\xb8\xb3\xee\x9c\x3b\xef\x7e"
      "\x74\x17\xdc\x4f\xee\xa2\xf3\x2e\x39\x32\x31\x32\x29\xf2\x76\x64\x72\xe4"
      "\x9d\xc8\x94\xc8\xd4\xc8\xb4\xc8\xf4\x48\x4a\x64\x46\x64\x66\xe4\xdd\xc8"
      "\xac\xc8\xec\xc8\x9c\xc8\x7b\x91\xb9\x91\xf7\x23\xf3\x22\xf3\x23\x0b\x22"
      "\x0b\x23\xa9\x91\x0f\x22\x8b\x22\x8b\x23\x69\x91\x0f\x23\x4b\x22\x1f\x45"
      "\xd2\x23\x4b\x23\xcb\x22\xcb\x23\x2b\x22\x2b\x23\xde\x17\xdc\x16\xfa\xc2"
      "\xbe\x88\x8f\xfa\x9b\x7c\x51\x7f\xb3\x2f\xe6\x8b\xfb\x12\xbe\xa4\x77\xbe"
      "\x94\x8f\xf7\xb7\xf8\xd2\xfe\x56\x5f\xc6\xdf\xe6\xcb\xfa\xdb\x7d\x39\x7f"
      "\x87\x2f\xef\x2b\xf8\x8a\xfe\x31\xdf\xd4\x37\xf3\xcd\x7d\x0b\xdf\xd2\x3f"
      "\xee\x5b\xf9\x27\x7c\x6b\xdf\xc6\xb7\xf5\x4f\xfa\x76\xbe\xbd\xef\xe0\x9f"
      "\xf2\x09\xfe\x69\xdf\xd1\x3f\xe3\x3b\xf9\xbf\xf8\xce\xfe\x59\xdf\xc5\x3f"
      "\xe7\xbb\xfa\xe7\x7d\x37\xdf\xdd\xf7\xf0\x2f\xf8\x9e\xfe\x45\xdf\xcb\xf7"
      "\xf6\x89\xbe\x8f\xef\xeb\x5f\xf2\xfd\x7c\x7f\x3f\xc0\x0f\xf4\x83\xfc\xcb"
      "\x7e\xb0\x7f\xc5\x0f\xf1\xaf\xfa\x24\x3f\xd4\x0f\xf3\xaf\xf9\xe1\xfe\x75"
      "\x3f\xc2\xbf\xe1\x47\xfa\x51\x7e\x74\xcc\x9b\x7e\xcc\xe5\x5b\x64\x98\xe0"
      "\x93\xfd\x44\x3f\xc9\xbf\xed\x27\xfb\x77\xfc\x14\x3f\xd5\x4f\xf3\xd3\x7d"
      "\x8a\x9f\xe1\x67\xfa\x77\xfd\x2c\x3f\xdb\xcf\xf1\xef\xf9\xb9\xfe\x7d\x3f"
      "\xcf\xcf\xf7\x0b\xfc\x42\x9f\xea\x3f\xf0\x8b\xfc\x62\x9f\xe6\x3f\xf4\x4b"
      "\xfc\x47\x3e\xdd\x2f\xbd\xfc\x50\xd9\xaf\xf2\xab\xfd\x1a\xbf\xd6\xaf\xf3"
      "\xeb\xfd\x06\xbf\xd1\x6f\xf2\x9b\xfd\x16\xbf\xd5\x6f\xf3\xdb\xfd\x0e\xbf"
      "\xd3\xef\xf2\xbb\xfd\x1e\xff\xb1\xdf\xeb\x3f\xf1\xfb\xfc\xa7\x7e\xbf\xff"
      "\xcc\x1f\xf0\x9f\xfb\x83\xfe\x0b\x7f\xc8\x7f\xe9\x33\xfc\x57\xfe\xb0\xff"
      "\xda\x1f\xf1\xdf\xf8\xa3\xfe\x5b\x7f\xcc\x7f\xe7\x8f\xfb\x13\xfe\xa4\xff"
      "\xde\x9f\xf2\x3f\xf8\xd3\xfe\x8c\x3f\xeb\xcf\xf9\xf3\xfe\x47\x7f\xc1\xff"
      "\xe4\x2f\xf2\x77\xd6\x18\x63\x8c\x31\xc6\xfe\x29\x13\xaf\x34\xc5\xef\xf5"
      "\xf7\xf9\x9d\xd7\xc4\xdf\xec\xdc\x17\x00\xae\xdd\x5e\x20\xe3\x6f\xfb\x33"
      "\x57\x94\x1b\xf2\xfe\xd2\xee\x2f\xe2\xda\x45\x00\xe0\xe9\xde\x5d\x1b\x5e"
      "\xde\xaa\x55\x4b\x4c\x4c\xbc\xb4\x6f\xba\x84\xa0\xc8\x7c\x80\xcb\xff\x12"
      "\x94\x29\x06\xae\xc4\x4b\xa1\x2d\xb4\x87\x04\x68\x03\xa5\x7f\x77\xfe\xfd"
      "\x45\xf7\xf3\xf4\x0f\xc6\x8f\xde\x0e\x90\xe3\x6f\x72\x62\xe1\x4a\x7c\x65"
      "\xfc\xcf\xff\x60\xfc\xc7\x9f\x1c\xbd\xa8\x5c\x78\x36\xf7\xff\x67\xfc\xf9"
      "\x00\xc5\x8a\x5c\xc9\xc9\x0e\x7f\x8d\xff\xfa\xed\x8a\x36\x50\xe6\x0f\xc6"
      "\xcf\xd7\xea\x1f\xcc\x3f\xfb\x17\xc9\x00\xad\xff\x26\x27\x27\x5c\x89\xaf"
      "\xcc\x3f\x1e\x9e\x80\x67\x20\xe1\x57\x7b\x32\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\xbf\xe8\x2f\x2a\x76\xbe\x7c\xff\x79\xf9\x7f\x7c\xfe\xde\xfd\x79\x9c"
      "\xba\x92\x93\x79\x53\x7b\x39\xfe\x47\xf7\xe7\x8c\x31\xc6\x18\x63\x8c\x31"
      "\xc6\x18\xbb\xfa\x9e\xed\xde\xe3\xa9\xc7\x13\x12\xda\x74\xfe\xd7\x1b\x55"
      "\xfe\x4b\x59\xdc\xf8\x9f\xda\xf0\x1e\xe0\xf2\x2b\x0a\x00\xfe\xcd\x01\x01"
      "\xfe\xe3\x67\xb1\xf5\x3f\x72\xac\xa4\x4b\x6f\x9d\xbf\xef\x5a\x71\xce\x07"
      "\xf0\x3f\xa3\x94\x7f\x46\xe3\x2a\xff\xc5\xc4\x18\x63\x8c\x31\xc6\x18\xfb"
      "\xd3\x5d\x59\xf4\xff\xfa\x75\x75\xb5\x26\xc4\x18\x63\x8c\x31\xc6\x18\x63"
      "\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6"
      "\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x65\x41\xff\x89\x5f"
      "\x27\x76\xb5\xcf\x91\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18"
      "\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31"
      "\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\x63\x8c\x31\xc6\x18\xbb"
      "\xda\xfe\x5f\x00\x00\x00\xff\xff\xf1\x00\x0b\xba",
      5394);
  syz_mount_image(/*fs=*/0x200000c0, /*dir=*/0x20000580,
                  /*flags=MS_NODIRATIME*/ 0x800, /*opts=*/0x20000000,
                  /*chdir=*/3, /*size=*/0x1512, /*img=*/0x20001040);
  memcpy((void*)0x20000440, "./file0\000", 8);
  memcpy((void*)0x20000f40,
         "./"
         "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000",
         252);
  syscall(__NR_rename, /*old=*/0x20000440ul, /*new=*/0x20000f40ul);
}
int main(void)
{
  syscall(__NR_mmap, /*addr=*/0x1ffff000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x20000000ul, /*len=*/0x1000000ul,
          /*prot=PROT_WRITE|PROT_READ|PROT_EXEC*/ 7ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  syscall(__NR_mmap, /*addr=*/0x21000000ul, /*len=*/0x1000ul, /*prot=*/0ul,
          /*flags=MAP_FIXED|MAP_ANONYMOUS|MAP_PRIVATE*/ 0x32ul, /*fd=*/-1,
          /*offset=*/0ul);
  const char* reason;
  (void)reason;
  do_sandbox_none();
  return 0;
}