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

#define _GNU_SOURCE

#include <endian.h>
#include <errno.h>
#include <fcntl.h>
#include <setjmp.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/stat.h>
#include <sys/syscall.h>
#include <sys/types.h>
#include <unistd.h>

#include <linux/loop.h>

#ifndef __NR_memfd_create
#define __NR_memfd_create 319
#endif
#ifndef __NR_pwritev2
#define __NR_pwritev2 328
#endif

static unsigned long long procid;

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

uint64_t r[2] = {0xffffffffffffffff, 0xffffffffffffffff};

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;
  intptr_t res = 0;
  if (write(1, "executing program\n", sizeof("executing program\n") - 1)) {
  }
  memcpy((void*)0x20000c40, "udf\000", 4);
  memcpy((void*)0x20000c80, "./file0\000", 8);
  memcpy(
      (void*)0x20001a40,
      "\x00\x99\x17\x59\x3d\x44\xd6\x85\xcf\x81\x76\x52\x18\x46\xa9\xe9\x02\x05"
      "\xb4\xb8\x9c\x0e\xd4\x9b\x3e\x12\x01\xfa\x4a\x79\xb0\xb9\x65\x13\x16\xa8"
      "\x9d\x7e\x40\x38\xe9\x4e\x54\xfd\xff\xa2\x5c\x52\x9d\x1c\xb4\xe4\x3b\xf7"
      "\xe1\x2b\xd2\xa5\x55\x68\x13\x00\xb8\x5d\x66\x21\x47\x0c\x30\x4d\x6b\xa5"
      "\x73\x11\x61\xf3\xf1\xda\x11\x93\xa8\x55\x25\xe8\xc9\xa5\xa9\x57\x98\x07"
      "\x0c\xa4\x8f\xa7\xed\xcf\x62\xe3\x76\x26\x48\x0f\x67\x31\x41\xbe\xe1\xea"
      "\x25\x22\xf8\xb6\x1a\xac\x12\xf9\x84\xc1\x21\x66\x83\xae\x80\xe6\x14\x61"
      "\x69\xcf\xb7\xaa\x7c\x50\xdd\x4c\x52\x25\x9f\xaa\xee\x2f\xed\xc1\x07\x7b"
      "\xda\x4c\x3e\x65\xd7\x00\x5d\x0a\xb7\x1d\xb6\x56\x17\xab\xeb\x3c\x51\xb0"
      "\x56\xd9\x55\xf1\x28\x5e\xd9\xd2\x6d\x7c\x91\x0b\xf3\x29\x1f\x6b\x34\x9c"
      "\xe7\xee\xe3\x3a\x31\xa4\x84\xc3\x19\x93\xef\xfe\x39\xfc\xfa\x55\xe7\x22"
      "\xa2\x0b\xf9\x0b\x2f\x43\xff\xbf\xd1\x9a\xfa\xeb\x1d\x6e\x96\x83\xce\x09"
      "\xf4\xc8\xeb\x95\x91\xf0\x77\x2a\x12",
      225);
  memcpy(
      (void*)0x20000d00,
      "\x78\x9c\xec\xdd\x5d\x6c\x5c\x67\x5a\x07\xf0\xe7\x9d\x63\x27\x76\xca\xb2"
      "\x53\xda\xa6\x5d\xba\x48\xb3\x14\xb1\x69\x9a\x04\xe7\xa3\xad\x51\x5a\xe4"
      "\x6c\x8c\xb5\x2b\x45\x6d\x54\xc7\x0b\x37\x20\x8f\xe3\x49\x18\xd5\x5f\xb5"
      "\x9d\x55\x5a\xc1\x2a\x48\xc0\x0d\x08\x82\x8a\xb4\x02\x2e\xc8\x0d\x12\x17"
      "\x5c\xe4\x06\x09\xad\x10\x8a\xb8\x59\x24\x40\x8a\x40\x95\x16\x81\x44\xa0"
      "\x69\xb4\x12\x02\x66\x05\x0b\x2b\x2a\x61\x74\x66\xde\xb1\xc7\x6e\xd2\xb8"
      "\xf9\xb2\xd3\xfc\x7e\x6d\xfc\x9f\x39\xf3\x9c\x39\xef\x99\xf6\x39\x3e\x13"
      "\xcd\x7b\x26\x00\x00\x00\x00\x00\x00\x00\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\x88"
      "\x2f\xfd\xf4\xb1\xa1\x83\x69\xab\x47\x01\x00\x3c\x48\xaf\x8d\xbf\x31\x74"
      "\xd8\xef\x7f\x00\x78\xa4\x9c\xf2\xfe\x1f\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\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\xdb\x4b\x51"
      "\xc4\x5b\x91\xe2\xbd\xb1\x56\x9a\x6c\xdf\xef\x18\x38\xd1\x9c\x3b\x77\x7e"
      "\x62\x74\xec\xe6\xab\x0d\xa6\x48\x51\x89\xa2\x5d\x5f\xfe\x19\x38\x78\xe8"
      "\xf0\x91\x17\x5f\x7a\x79\xb8\x9b\x1f\xbf\xfe\xbd\xf6\xb9\x78\x7d\xfc\xd4"
      "\xb1\xda\xf1\xf9\xd9\x85\xc5\xc6\xd2\x52\x63\xba\x36\x31\xd7\x3c\x3d\x3f"
      "\xdd\xd8\xf4\x33\xdc\xed\xfa\x1b\xed\x6d\xbf\x00\xb5\xd9\x37\xcf\x4d\x9f"
      "\x39\xb3\x54\x3b\x74\xe0\xf0\xba\x87\xcf\x57\x6f\xec\x7c\x6c\x77\xf5\xe8"
      "\xf0\xb3\xfb\x9e\xef\xd6\x4e\x8c\x8e\x8d\x8d\xf7\xd4\xf4\xf5\xdf\xf1\xd6"
      "\x3f\x22\xdd\xbb\xa7\xe2\x53\x64\x47\x14\xf1\xe5\x48\xf1\xad\xfd\xdf\x49"
      "\xf5\x88\xa8\xc4\xdd\xf7\xc2\x6d\x8e\x1d\xf7\xdb\x60\xf4\x95\xfd\xd7\xde"
      "\x89\x89\xd1\xb1\xf6\x8e\xcc\x34\xeb\x73\xcb\xe5\x83\xa9\x92\xab\xfa\x22"
      "\xaa\x3d\x2b\x8d\x74\x7b\xe4\x01\xf4\xe2\x5d\x19\x89\xb8\x50\xfe\x77\x2a"
      "\x07\xbc\xb7\xdc\xbd\xf1\x85\xfa\x62\x7d\x6a\xa6\x51\x3b\x59\x5f\x5c\x6e"
      "\x2e\x37\xe7\xe7\x52\xa5\x33\xda\x72\x7f\xaa\x51\x89\xe1\x14\xb1\x10\x11"
      "\xad\x62\xab\x07\xcf\x76\xd3\x1f\x45\xbc\x1a\x29\x6e\x7c\xd8\x4a\x53\x11"
      "\x51\x74\xfb\xe0\x85\xd7\xc6\xdf\x18\x3a\x7c\xeb\x15\xfb\x1e\xe0\x20\x6f"
      "\xb1\xf9\x6a\x11\x71\x35\x1e\x82\x9e\x85\x6d\x6a\x67\x14\xf1\xdb\x91\xe2"
      "\xdd\xc9\xa1\x38\x9d\xfb\xaa\xdd\x36\xd7\x23\xbe\x58\xe6\x2b\x11\x6f\x95"
      "\x79\x25\xc5\xc5\x7c\x3f\x95\x07\x88\xe1\x88\xef\xfa\x7d\x02\x0f\xb5\xbe"
      "\x28\xe2\x6f\x22\xc5\x7c\x6a\xa5\xe9\x6e\xef\xb7\xcf\x2b\x4f\x7c\xb5\xf6"
      "\x95\xb9\x33\xf3\x3d\xb5\xdd\xf3\xca\x87\xfe\xfd\xc1\x83\xe4\xdc\x84\x6d"
      "\x6c\x20\x8a\x98\x6a\x9f\xf1\xb7\xd2\x9d\xff\x65\x17\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\xf0\x60\x14\xf1\xcd\x48\x71\x79\x76\x4f\x5a\x88\xde"
      "\x39\xa5\xcd\xb9\xb3\xb5\x53\xf5\xa9\x99\xce\xa7\x82\xbb\x9f\xfd\xaf\xe5"
      "\xb5\x56\x56\x56\x56\xaa\xa9\x93\xb5\x9c\x43\x39\x47\x72\x9e\xcc\x39\x99"
      "\x73\x21\xe7\x85\x9c\x17\x73\x5e\xca\x79\x39\xe7\x95\x9c\x57\x73\x5e\xcb"
      "\xd9\xca\x19\x95\xbc\xfd\x9c\xb5\x9c\x43\x39\x47\x72\x9e\xcc\x39\x99\x73"
      "\x21\xe7\x85\x9c\x17\x73\x5e\xca\x79\x39\xe7\x95\x9c\x57\x73\x5e\xcb\xd9"
      "\xca\x19\xe6\x3d\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x70\x8f\x0d\x46\x11\xbf\x11\x29\xfe\xfd\xf7\xbf\xd6\xfe\x5e\xe9\x68"
      "\x7f\x2f\xfd\x67\x8f\x0e\x1f\x3f\xf1\x99\xde\xef\x8c\x7f\xe6\x36\xcf\x53"
      "\xd6\x1e\x88\x88\x6f\xc6\xe6\xbe\x93\x77\x47\xfe\xae\xf1\x54\x29\xff\xb9"
      "\xf7\xfb\x05\xdc\xde\x40\x14\xf1\xf5\xfc\xfd\x7f\xbf\xbc\xd5\x83\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\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xb6\x85"
      "\x4a\x14\xf1\x2b\x91\xe2\x1b\xdf\x6b\xa5\x48\x11\x31\x12\x31\x19\x9d\xbc"
      "\x56\x6c\xf5\xe8\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\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\xd2\xce\x54\xc4\xab\x91\xe2\x67\x7f\x77\x64\x75"
      "\x59\x5f\x44\xa4\xf6\xbf\x1d\x7b\xca\x1f\x47\x62\xa4\xc8\xf9\x44\x99\xaf"
      "\xc4\xc8\xc1\x76\x56\x46\x8e\x95\x39\x10\x71\x60\x0b\xc6\x0f\xdc\xb9\xa5"
      "\xb7\xdf\x79\xb3\x3e\x33\xd3\x58\x74\xc3\x0d\x37\xdc\x58\xbd\xb1\xd5\x47"
      "\x26\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x84\xa5\x22"
      "\xfe\x3e\x52\xfc\xe4\xef\xb5\x52\x35\x22\xce\x57\x6f\xec\x7c\x6c\x77\xf5"
      "\xe8\xf0\xb3\xfb\x9e\x2f\xa2\x68\x5f\x04\x20\xf5\xd6\xbf\x3e\x7e\xea\x58"
      "\xed\xf8\xfc\xec\xc2\x62\x63\x69\xa9\x31\x5d\x9b\x98\x6b\x9e\x9e\x9f\x6e"
      "\x6c\x76\x73\x03\x27\x9a\x73\xe7\xce\x4f\x8c\x8e\xdd\x97\x9d\xb9\xad\xc1"
      "\xfb\x3c\xfe\xc1\x81\xe3\xf3\x0b\x6f\x2f\x36\xcf\xfe\xc2\xf2\x4d\x1f\xdf"
      "\x35\x70\x6c\x6a\x69\x79\xb1\x7e\xfa\xe6\x0f\xc7\x60\xf4\x45\x0c\xf5\x2e"
      "\xd9\xdb\x1e\xf0\xc4\xe8\x58\x7b\xd0\x33\xcd\xfa\x5c\x7b\xd5\x54\xb9\xc5"
      "\x00\xfb\x22\x6a\x9b\xdd\x19\x1e\x79\xbb\x52\x11\xff\x1b\x29\xde\xdb\xff"
      "\xed\x78\x3c\x2f\xcb\xd7\xff\xe8\xef\xdc\x5b\xeb\xfe\x3f\xfc\xc5\xb5\x7b"
      "\x3f\xdc\xb7\x3e\x57\xff\x77\x6c\x1f\x3f\x3e\x7b\x74\xf8\xf8\xae\xe7\x36"
      "\x73\x3b\x6d\x76\xa0\x7b\xdb\x8d\x57\x36\xc2\xd8\x78\xcf\xe2\xbe\x3c\xca"
      "\x1f\xea\x59\x56\xcd\xe3\xda\xf4\x73\xc3\x23\xaa\xec\xff\x17\x22\xc5\xcf"
      "\xff\x51\x91\xba\x3d\x94\xfb\xff\x07\x3a\xf7\x8a\xd5\xda\xff\xf9\xfa\x5a"
      "\x4f\x1d\xdd\x90\xab\xb6\xa8\xff\x9f\xe8\x59\x76\x34\x1f\xb5\xfa\xfb\x22"
      "\x06\x96\x67\x17\xfa\x9f\x8e\x18\x58\x7a\xfb\x9d\xfd\xcd\xd9\xfa\xd9\xc6"
      "\xd9\xc6\xdc\x91\x43\x2f\xbf\x34\x7c\xe4\xe5\x17\x8f\xbc\xd4\xbf\x23\x62"
      "\xe0\x4c\x73\xa6\x31\xb4\x76\x6b\xd3\xaf\x1d\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\xdc\x2f\xfd\xa9\x88\x2f\x45\x8a\x5f\xfa\xbb\xbf"
      "\x5c\x9d\x37\x9e\xe7\xff\x7d\xa6\x73\x6f\x6d\xfe\x5f\xef\xfc\xdf\x3d\x1b"
      "\x9e\xa7\xf7\xba\x01\xb7\xba\x7d\xd3\xb9\x7e\xb7\x99\xd7\xd7\xab\xdc\x66"
      "\x4a\x45\x3c\x15\x29\x9e\xfd\xb3\x67\xda\xe3\x4d\xb1\xcb\x9c\x77\xb8\x43"
      "\xbb\x52\x11\xdf\x2f\xfb\x69\xfa\xcb\xe9\x0b\x79\x59\xee\xff\x3c\xb3\xff"
      "\xe6\xfd\x7f\x61\x43\xae\xda\xa2\xf9\xbf\x8f\xf7\x2c\xbb\x90\x8f\x13\xff"
      "\x11\x29\x1e\xff\x83\x67\xe2\x0b\x3d\xc7\x89\x8d\xb3\x7b\xcb\xba\xbf\x88"
      "\x14\x53\x3f\xf2\xf9\x5c\x17\x3b\xca\xba\xee\xf3\x75\xe6\x44\x77\x26\x06"
      "\x97\xb5\x5f\x8b\x14\xef\x9f\x5c\x5f\xdb\x9d\x37\xfd\xc4\x5a\xed\xc1\xcd"
      "\xee\x16\x6c\xa5\xb2\xff\x67\x23\xc5\x3f\xfc\xd6\xdf\xc6\x8f\xe6\x65\xeb"
      "\xaf\xff\x71\xf3\xfe\xdf\xb5\x21\x57\x6d\x51\xff\x3f\xd9\xbb\x4f\x11\xb1"
      "\xf4\xf6\x3b\x6f\xd6\x67\x66\x1a\x8b\x4b\x9b\x7e\x29\xe0\x91\x53\xf6\xff"
      "\xaf\x47\x8a\xbf\xfe\x93\x6f\xc7\x73\x79\xd9\xc7\x5d\xff\xa7\x7b\x9d\x9f"
      "\x3d\xcf\xad\xcf\xc1\x6e\xd1\x16\xf5\xff\x53\x3d\xcb\xaa\x79\x5c\x3f\xf6"
      "\x09\x5f\x0b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x58\xec\x4a\x45\xfc"
      "\x53\xa4\xf8\xf3\x3f\xdd\x97\xf6\xe7\x65\x9b\xf9\xfc\xef\xf4\x86\x5c\xb5"
      "\x45\x9f\xff\x7b\xba\x67\xd9\xf4\xba\xcf\xff\xde\xbf\x1b\x9b\x7e\x91\x01"
      "\x00\x60\x9b\xe8\x4f\x45\xfc\x44\xa4\xf8\xe3\xe9\xeb\xa9\x3b\x37\xf6\x96"
      "\xf3\x7f\x5f\x59\x9b\xff\x33\xba\xf1\xc4\xbd\x7d\x4e\xff\x83\xed\x79\xfe"
      "\x9f\xe8\x5c\xff\x13\xcc\xff\x2f\xb7\x99\x52\x11\xff\x97\xe7\xf5\x0e\xdd"
      "\x66\x5e\xef\x8f\x47\x8a\x5f\xfb\xa9\x7d\xb9\x2e\xed\x2e\xeb\x46\xba\xc3"
      "\x6d\xff\x1c\x78\x6d\x7e\x6e\xff\xb1\x99\x99\xf9\xd3\xf5\xe5\xfa\xd4\x4c"
      "\xa3\x36\xbe\x50\x3f\xdd\x28\xd7\xdd\x1b\x29\xfe\xf5\xdf\x3e\x9f\xd7\xad"
      "\xb4\xe7\xf9\x76\xe7\x47\x77\xe6\x06\xaf\xcd\x09\xfe\x9d\x48\xf1\x73\x1f"
      "\x74\x6b\x3b\x73\x82\xbb\x73\x29\x9f\x5c\xab\x3d\x58\xd6\xee\x8f\x14\xdf"
      "\x7f\x7f\x7d\x6d\x77\xde\xd5\x53\x6b\xb5\x87\xca\xda\xdf\x8c\x14\x63\xff"
      "\x7d\xf3\xda\xdd\x6b\xb5\x87\xcb\xda\x7f\x8c\x14\xff\xf9\x6e\xad\x5b\xbb"
      "\xab\xac\xed\xbe\x9f\x7b\x7a\xad\xf6\xc0\xe9\xf9\x99\x8f\xbc\x65\x03\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x60\xeb\xf5\xa7\x22"
      "\x52\xa4\xb8\xf2\x33\x97\x56\xe7\xc6\xaf\xbf\xfe\x57\xf7\x3a\x00\xeb\xaf"
      "\xff\xb5\xd1\xfd\xfa\xfe\xff\xea\xbd\xd9\x4d\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x78\x28\xa4\x28\xe2\xbf\x22\xc5\x7b"
      "\x63\xad\x74\xad\x28\xef\x77\x0c\x9c\x68\xce\x9d\x3b\x3f\x31\x3a\x76\xf3"
      "\xd5\x06\x53\xa4\xa8\x44\xd1\xae\x2f\xff\x0c\x1c\x3c\x74\xf8\xc8\x8b\x2f"
      "\xbd\x3c\xdc\xcd\x8f\x5f\xff\x5e\xfb\x5c\xbc\x3e\x7e\xea\x58\xed\xf8\xfc"
      "\xec\xc2\x62\x63\x69\xa9\x31\x5d\x9b\x98\x6b\x9e\x9e\x9f\x6e\x6c\xfa\x19"
      "\xee\x76\xfd\x8d\xf6\xb6\x5f\x80\xda\xec\x9b\xe7\xa6\xcf\x9c\x59\xaa\x1d"
      "\x3a\x70\x78\xdd\xc3\xe7\xab\x37\x76\x3e\xb6\xbb\x7a\x74\xf8\xd9\x7d\xcf"
      "\x77\x6b\x27\x46\xc7\xc6\xc6\x7b\x6a\xfa\xfa\xef\x78\xeb\x1f\x91\xee\xdd"
      "\x53\xf1\x29\xb2\x23\x8a\xf8\xab\x48\xf1\xad\xfd\xdf\x49\xff\x5c\x44\x54"
      "\xe2\xee\x7b\xe1\x36\xc7\x8e\xfb\x6d\x30\xfa\xca\xfe\x6b\xef\xc4\xc4\xe8"
      "\x58\x7b\x47\x66\x9a\xf5\xb9\xe5\xf2\xc1\x54\xc9\x55\x7d\x11\xd5\x9e\x95"
      "\x46\xba\x3d\xf2\x00\x7a\xf1\xae\x8c\x44\x5c\x88\x88\x4a\x39\xe0\xbd\xe5"
      "\xee\x8d\x2f\xd4\x17\xeb\x53\x33\x8d\xda\xc9\xfa\xe2\x72\x73\xb9\x39\x3f"
      "\x97\x2a\x9d\xd1\x96\xfb\x53\x8d\x4a\x0c\xa7\x88\x85\x88\x68\x15\x5b\x3d"
      "\x78\xb6\x9b\xfe\x28\xe2\x4a\xa4\xb8\xf1\x61\x2b\xfd\x4b\x11\x51\x74\xfb"
      "\xe0\x85\xd7\xc6\xdf\x18\x3a\x7c\xeb\x15\xfb\x1e\xe0\x20\x6f\xb1\xf9\x6a"
      "\x11\x71\x35\x1e\x82\x9e\x85\x6d\x6a\x67\x14\xf1\x64\xa4\x78\x77\x72\x28"
      "\xde\x2f\x3a\x7d\xd5\x6e\x9b\xeb\x11\x5f\x2c\xf3\x95\x88\xb7\xca\xbc\x92"
      "\xe2\x62\xbe\x9f\xca\x03\xc4\x70\xc4\x77\xfd\x3e\x81\x87\x5a\x5f\x14\x71"
      "\x32\x52\xcc\xa7\x56\xba\x5e\xe4\xde\x6f\x9f\x57\x9e\xf8\x6a\xed\x2b\x73"
      "\x67\xe6\x7b\x6a\xbb\xe7\x95\x0f\xfd\xfb\x83\x07\xc9\xb9\x09\xdb\xd8\x40"
      "\x14\xf1\x41\xfb\x8c\xbf\x95\x3e\xf0\xfb\x1c\x00\x00\x00\x00\x00\x00\x00"
      "\x00\x00\x00\xb6\xb9\x22\x5e\x8d\x14\x97\x67\xf7\xa4\xf6\xfc\xd0\xd5\x39"
      "\xa5\xcd\xb9\xb3\xb5\x53\xf5\xa9\x99\xce\xc7\xfa\xbb\x9f\xfd\xaf\xe5\xb5"
      "\x56\x56\x56\x56\xaa\xa9\x93\xb5\x9c\x43\x39\x47\x72\x9e\xcc\x39\x99\x73"
      "\x21\xe7\x85\x9c\x17\x73\x5e\xca\x79\x39\xe7\x95\x9c\x57\x73\x5e\xcb\xd9"
      "\xca\x19\x95\xbc\xfd\x9c\xb5\x9c\x43\x39\x47\x72\x9e\xcc\x39\x99\x73\x21"
      "\xe7\x85\x9c\x17\x73\x5e\xca\x79\x39\xe7\x95\x9c\x57\x73\x5e\xcb\xd9\xca"
      "\x19\x3e\x27\x0d\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xc0"
      "\x7d\x52\x89\x22\x7e\x35\x52\x7c\xe3\x7b\xad\xb4\x52\x74\xbe\x5f\x76\x32"
      "\x3a\x79\xcd\x3c\x57\xf8\x54\xfb\xff\x00\x00\x00\xff\xff\x38\xfe\x23"
      "\x84",
      3132);
  syz_mount_image(/*fs=*/0x20000c40, /*dir=*/0x20000c80, /*flags=*/0,
                  /*opts=*/0x20001a40, /*chdir=*/1, /*size=*/0xc3c,
                  /*img=*/0x20000d00);
  memcpy((void*)0x20000040, "./file1\000", 8);
  res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000040ul,
                /*flags=O_CREAT|O_RDWR*/ 0x42, /*mode=*/0);
  if (res != -1)
    r[0] = res;
  memset((void*)0x20000140, 50, 1);
  syscall(__NR_pwrite64, /*fd=*/r[0], /*buf=*/0x20000140ul, /*count=*/1ul,
          /*pos=*/0x8000c61ul);
  memcpy((void*)0x20000100, "./file1\000", 8);
  res = syscall(__NR_openat, /*fd=*/0xffffff9c, /*file=*/0x20000100ul,
                /*flags=O_SYNC|O_CREAT|FASYNC|O_RDWR*/ 0x103042, /*mode=*/0);
  if (res != -1)
    r[1] = res;
  *(uint64_t*)0x20000240 = 0x20001b40;
  memcpy(
      (void*)0x20001b40,
      "\xa7\xb9\xee\x54\x16\x9c\x15\x47\xbd\xef\x4b\x3d\x02\xef\x64\x76\x38\x56"
      "\x55\xea\x58\xc6\xf3\x2e\x3c\xef\x41\x1f\x18\x18\x11\xf7\x52\x75\xe9\x48"
      "\xd1\x58\xe1\xa4\x7d\xa9\xfa\x35\x46\xba\x6d\x3c\x59\xbe\x18\x50\x21\xdb"
      "\x39\x19\x5f\x48\x26\x3d\x9c\xf5\x8d\x4d\x4d\x2e\xb3\x02\x1c\x9f\xa0\x83"
      "\x41\xa9\x47\x9f\xe3\x79\x06\x91\x52\xc5\x3f\x2b\x2f\xe8\x46\x61\xd5\x18"
      "\x3f\xec\x85\xcf\xe6\xfd\x44\x8d\x4d\x57\x87\x58\x7f\xd0\xef\x48\x65\x50"
      "\xd2\x6c\x35\xd2\x1c\x24\x27\xa5\x20\xcc\x09\x2c\xea\x85\x5e\x56\x37\x82"
      "\x7e\x70\xde\xf7\xa6\xe4\x9e\x0c\x7c\xf8\x00\x92\xa5\x70\x7d\x0a\x81\x82"
      "\xd7\x5c\xc1\x37\x16\x72\x8d\x37\x78\x81\xee\x4c\xc4\x35\xd8\x49\x12\xe0"
      "\x36\x6d\xca\x18\x5e\xf5\x2e\x94\x64\xf9\xbe\xd8\x5b\x30\xdb\x8f\xe6\x00"
      "\xb0\x55\x89\xd2\x81\xe6\xbb\x44\x43\xc8\x6d\xd3\xb5\x8c\xc1\xbd\x5c\x43"
      "\xde\x0a\x58\xb1\x18\x8a\x89\x6d\x62\x44\x81\x3c\xc2\xe6\x17\x34\xc9\x30"
      "\xec\x92\x71\x15\x0f\x87\x9a\x26\xe6\x70\x3e\x48\x51\x0d\x8a\x56\x73\x03"
      "\x87\xc6\x7f\xe5\x8a\x91\xfd\x37\x26\xbc\xd9\xdd\xcb\xb5\xdb\x9b\x1d\xbc"
      "\x28\x39\xf7\x2e\x73\x42\x04\x71\x78\xb1\x83\x39\x57\x2a\xcf\x41\x49\x8b"
      "\xb4\xea\xe4\x9a\x10\x2a\xec\x19\xfa\xc4\xd4\xe6\x1b\xea\x73\x85\x64\x2f"
      "\x7c\x8c\x4c\x27\xb5\x88\x37\x64\x56\x7f\x9d\x17\x93\x9c\xd7\xfb\xee\xc3"
      "\x60\x57\xc8\x5e\xf6\x69\x7a\x8b\xf4\xaa\xd4\xc4\xa3\x71\xd2\x8f\xed\x2f"
      "\xc8\x2e\x7f\xcb\xfb\xa3\xd9\xde\x1e\x13\x6b\x5a\x01\xea\xc5\x15\x44\x54"
      "\x05\x4f\xf9\x66\xde\x60\x75\xc2\x44\x5e\xf4\xd4\xcc\x85\x99\x81\xaa\x62"
      "\x3e\x17\x14\xb8\x01\xaa\x6b\x3c\xf8\xe7\xcb\x83\x01\xda\x35\x9b\x3d\x75"
      "\xda\xae\x6e\x1f\xc3\x59\xa0\x33\xbb\x3e\x4b\x28\x5b\xd4\x8e\x0c\xcc\x98"
      "\xf6\x45\xb9\xf8\x96\x98\x19\x00\x40\x70\x44\x87\x4e\x1d\x31\x45\x28\x28"
      "\x91\xa5\xc1\xb3\xeb\x53\xb0\xa4\xa1\x54\xd8\x17\x6a\xaf\x5f\x2b\xeb\xf1"
      "\x9a\x6b\xd5\xab\x73\xe5\x8b\xbd\x4b\xbe\x57\xd2\x5c\xa6\x0d\x50\x05\xa5"
      "\x05\x32\x01\xd1\xa5\xb2\x11\x50\x49\xe1\x76\x93\x1d\x59\x4c\xed\x76\x92"
      "\xd0\xe3\x4f\x98\xbd\xcf\x68\x5a\x56\xa0\x76\xe8\x34\x41\x78\x81\x43\x6e"
      "\x00\xdf\x27\xc8\xd6\xbc\x6b\xe5\x87\x23\x8a\xfb\xec\x60\xf8\xb1\x57\x3c"
      "\xef\x3b\xec\x2a\x40\x4e\x99\x1f\x3b\x0c\x94\x55\xd4\x24\x72\x32\x45\x7d"
      "\x1e\x83\x13\x84\xa5\xf1\x63\x8a\x4d\xd4\xc6\x88\x15\xdc\x59\x73\x1f\xee"
      "\xea\x13\x89\xd5\x39\x32\x03\xfd\xe8\x44\x62\x32\x01\xb8\x06\xd6\x66\x5c"
      "\x7e\xba\xd8\x60\x61\xd5\x03\x2a\xd2\x0f\x8d\x8c\xff\xd0\xfa\x44\xd9\xfe"
      "\x29\xba\xc0\x4b\xf0\x4e\x37\x01\xe6\x24\x77\xb5\xf0\xd5\x05\x0a\x0b\xf0"
      "\x12\x39\xaf\xa5\xc8\x6e\x2a\x60\xd1\xa5\x5c\x23\x70\x12\x13\xf0\x3e\xdb"
      "\xb1\x59\x9c\xc3\x3e\x45\xa4\xe1\x4f\xd9\x38\x7c\xb5\x49\xbf\x24\x4b\x8c"
      "\xaf\xe7\x51\x80\x37\x2d\xd0\x12\xa2\xbe\xb1\xe2\x30\x9d\xdb\xe2\x7e\xb3"
      "\x45\x37\xab\x21\x69\xdc\x5b\x1d\x17\xb8\x84\xdd\x1a\x84\x41\xba\x1d\xb5"
      "\x4a\x69\x8e\x84\x93\x07\x27\x49\x9a\x36\x9f\xe1\xf4\x85\x30\x96\xbc\x14"
      "\xbf\x2f\xba\xe3\x6a\x01\xdf\x1b\x3b\xf6\x06\x76\x6d\x17\x03\xf0\x7f\x46"
      "\x29\x30\x7f\xe8\xc3\x5c\x04\xf3\xb5\x7b\x06\xb1\x0e\x2a\x3e\x91\x78\x2a"
      "\x74\x2d\x4a\x25\xff\x0a\xfe\x8f\x38\x6f\xa7\x81\x64\xf4\x03\xfc\x51\xf2"
      "\xd2\x15\x9e\x4d\xdc\x50\x2b\x62\x3f\xe6\x64\xd7\x22\x4e\x44\xf6\x78\x8f"
      "\xf4\xd0\xa5\x79\x61\x15\x15\x9a\xf2\x43\x2e\x99\x03\xc1\x69\xb6\x78\x57"
      "\xa7\x86\xd1\x53\x34\xab\x03\x9b\x7f\x75\xae\x22\x0c\x45\xab\x5d\xf7\xf3"
      "\x18\x00\xc2\x62\x4b\x81\x58\x5b\x7e\x25\x48\xa9\x18\xa5\x93\x6d\x8e\x71"
      "\xfd\xa8\x5b\x4c\x58\x0a\x12\xfb\x19\x1a\x31\xb2\x75\x4f\xc5\x72\xce\x16"
      "\x5e\x00\x82\x64\x2b\x16\xa8\xb2\xe3\x8e\x80\x45\x12\x14\x52\x7f\xb5\x85"
      "\xd6\xd6\x35\x50\x76\x9a\x29\xbc\x04\x12\x9c\x03\xe1\xa0\xef\xe7\x04\x78"
      "\x4c\x10\x62\x8a\xea\x33\xde\x1f\x99\xfa\xa2\x1b\x30\x11\x0e\x55\xad\x23"
      "\x1b\x2a\xf5\xac\x1e\x70\xa9\x5a\x30\x17\x66\xb4\x08\xb5\x09\x02\x71\x74"
      "\xac\x83\xf1\x05\x67\xef\x97\xcb\xca\xa7\x0e\x90\x81\x12\x39\xf9\xfb\xd2"
      "\x4c\xf8\x3e\x39\xe1\x7f\xe6\x0c\x4d\x2d\xac\x04\xe8\x4c\x0b\x9a\x50\x3d"
      "\x5e\xf6\x93\x68\x7d\xf9\xde\x95\xf1\xec\x5f\xdf\x8a\xa5\x30\xee\xec\x0f"
      "\xf6\x31\xd7\x03\x8e\xae\xb8\x36\x87\x78\x9c\xe6\x59\x44\x8d\x81\xcf\x05"
      "\x9a\xea\x82\x21\x18\x4a\x6b\xc4\x37\x3a\x8e\xf3\xf0\xe1\x60\x7c\x49\x02"
      "\xeb\x18\x5d\x30\x6c\x96\x4e\x5a\xde\x8c\x9c\x05\x08\x9d\xc7\x1d\xec\x9a"
      "\x94\x6b\xf2\x12\x86\xe3\xd5\x2b\x6d\x5c\xa8\x67\x0f\xf5\x7c\xe4\x01\x30"
      "\x4a\x28\x33\x95\x24\x7d\x90\xcb\xc5\x75\xc6\xdd\x35\xc9\x05\xd9\x6d\xdd"
      "\x9c\x04\x14\xf2\x44\x28\x26\x91\x51\x11\xeb\x85\x1a\xb3\x54\x0e\x16\x50"
      "\x10\x08\x44\x62\xe1\x38\xf5\x69\xdb\xa4\x48\xf4\xb7\x19\x8d\x68\x3e\x50"
      "\x3c\xf7\xcc\x53\x48\xd2\x35\x8d\x4c\x8a\x7c\x5c\x88\x32\x91\x9d\x18\x9b"
      "\x2f\x39\xfb\xe5\x23\x0c\x60\x18\x76\xa0\x63\x3a\xcb\x6f\x80\xff\x3f\x93"
      "\xcd\x4f\xa4\x11\xe2\xca\xa6\x4b\xbf\x9b\xee\x49\x90\xbb\x87\xf4\x25\x95"
      "\xd9\x68\x03\x99\xe4\x28\x13\xff\x0f\x37\x92\xb8\xe9\x8c\x2f\xba\xe6\x47"
      "\x88\xb0\x21\x03\x6f\x58\xdf\x1f\x29\xb0\x30\x96\x74\xe5\x6f\xe1\x15\x6a"
      "\xd8\x75\x9e\x7f\x92\x7f\x92\x66\xc0\x92\x0f\xa3\xa6\x37\x4a\x42\x5d\x2a"
      "\x47\x33\xd3\x32\x1c\xb6\xef\xd2\x54\xeb\x17\x58\x1e\xbf\x3d\x97\xf1\xd3"
      "\x09\x7b\x9d\x2f\x9b\xef\x8c\xed\x0c\xf2\x85\x30\xc8\x10\x39\x26\x68\x6f"
      "\x33\x90\xf1\x46\x0b\x0f\x80\x44\xf8\x77\x5b\xd3\x05\x4c\xcd\xab\xc4\xc4"
      "\xaf\x9f\x18\x3c\xa8\x34\x04\x48\xe7\x47\xa6\xb5\xed\xd4\x2a\x9c\x02\xc9"
      "\x59\xa4\x1f\x02\xd1\xe1\x0e\x86\x1a\x90\x14\xfc\x42\xe6\x6e\x97\x22\x5a"
      "\x25\x13\xe4\x2f\xa1\x92\xf4\x7a\x69\x06\xc1\x2a\x71\x67\x97\xc9\xd9\xe7"
      "\xe6\xe0\x4b\x85\x1f\x39\x0b\x91\x95\x94\xbc\x44\xbb\xef\x0e\xb4\xb1\xc9"
      "\x36\x71\xd0\x52\x80\x1b\xa3\x52\x52\x64\x23\xca\x3b\x60\xb2\x65\xd9\x54"
      "\x18\x14\xe0\x49\x78\xec\xe4\x46\x2d\xf9\x66\x2c\x97\x1a\x09\x56\x66\x6a"
      "\xb8\x69\xb3\x7c\xdd\x30\x2b\x6b\x20\x7a\x84\xc4\x19\x70\x2d\x2e\xac\xf2"
      "\xb2\x2d\x36\x21\x7d\x2a\x7f\x27\xce\xca\xce\xef\xf8\x0a\xc0\x9c\xc3\xb5"
      "\xaa\x43\x2e\x4d\xc4\x53\x34\xef\x0f\x51\xa9\xb7\x8f\x06\x49\x52\x1d\xd3"
      "\x76\x7d\xf0\x57\x8d\x4b\x43\xfc\xce\xa6\x6d\x9e\xa9\x90\x60\x45\xd9\x87"
      "\xc5\xf9\x42\xa1\xcb\x53\xb6\xe4\xa8\xa5\x92\xf7\xc7\x8f\x97\xf6\x49\x9a"
      "\xf7\xbd\x1c\xbb\x03\x1f\xc5\xa5\x93\xe4\xe5\x76\x17\xe5\x7a\xdb\x88\xc1"
      "\xdd\x87\xe6\x4b\x46\x70\x36\xfe\x56\xde\xba\x59\x64\x64\x68\x80\x49\x28"
      "\xcb\xcf\xf3\xa3\x76\x3f\x4a\xcc\x00\x9a\x43\xb9\x16\xa0\x5a\xbe\xbd\x57"
      "\x96\x12\xc9\x63\xa8\x57\xfa\x14\xc5\x89\x46\x6a\xeb\x08\x56\xf7\x52\x34"
      "\x9a\x5c\x90\x79\x47\x26\xcc\x2a\x46\x3d\x42\xe3\x19\xf3\xad\x2c\x0e\x0c"
      "\x1b\xe8\xd6\xa6\xd2\xcc\x07\xb9\x2e\x19\x21\x6a\xcd\x72\xf2\xd5\x4f\xeb"
      "\x91\x00\xef\x17\x00\x43\x0f\x2c\x37\x24\x68\x56\x15\xb8\x5c\x48\x6b\x25"
      "\x78\x91\x1e\x6d\x59\xe8\x6b\x78\x7d\x99\x13\x65\x99\x56\x2e\x3d\x11\x26"
      "\xff\x1d\x8d\x6d\xac\x5f\x45\x71\xfc\x03\xcf\x9c\x67\x0e\xe2\x99\x91\x1e"
      "\xfb\x28\xae\xf7\xa1\x7c\x4e\x81\x8a\xab\x64\x19\x93\xfb\x98\x89\x2d\x8f"
      "\x39\x3b\x95\x25\xc5\x5b\xe4\xec\x26\xa8\x50\x22\xaa\xce\xed\x4d\x05\x52"
      "\xac\x3c\xbe\x77\xa3\xfc\xff\xb3\xf3\x85\x01\x3b\xa7\x6a\xf4\x0c\xfd\x05"
      "\xc5\xe9\x46\xfb\x54\x1a\xd2\xdf\x07\x89\xfd\x26\xa1\xba\xbf\xd4\x68\x2b"
      "\x8b\x12\x3c\x51\x21\x39\x4c\x44\x64\xd1\x64\x0c\xf7\xaa\x95\x76\xe3\xa9"
      "\x17\x0f\x15\x11\x84\xbf\xfe\x53\x85\x47\x82\xc0\x40\xc1\x31\xc3\x74\xbb"
      "\x03\xaa\xb2\x6e\x5e\x80\xf6\xcf\x8f\x46\xa4\xd3\x77\xb3\xc5\xbc\xf7\x5d"
      "\xa5\x2e\x0c\x9c\x23\xd4\x94\xd6\x2b\xbd\xf2\x7c\x74\x93\xc1\x67\xfe\x4d"
      "\xa9\x5c\x27\xdb\x07\x85\x5b\x5f\xcb\x7a\x86\xe7\xe2\xcb\x6a\x37\xa4\xca"
      "\x16\x9d\x77\xc0\xc3\xf9\xfa\x1d\x3d\x69\xf5\xdb\xf4\x1e\xdf\x8a\x87\xe9"
      "\x76\xe4\x9b\x5a\xee\x9f\x1d\xed\x5d\x17\x6c\xa4\x68\x89\x16\xed\x25\xca"
      "\xe2\xfe\xdf\x70\xd4\xed\xff\xf1\x8b\x45\x50\x1f\xed\x2a\xe5\x6a\xa2\x8e"
      "\xc4\xdc\xd8\x9d\xf2\x74\x47\xc9\x54\x48\x52\xa0\x94\x9c\xe7\x06\xfe\x67"
      "\x58\xeb\x69\x70\x08\x79\x40\x5f\x34\x39\x23\x42\x5d\xc2\x05\xb1\x93\xd6"
      "\x71\x15\x6f\xe7\x64\x34\x22\x99\x34\x70\x0d\xfe\xcd\x28\x41\x87\x10\xb3"
      "\x7b\x9f\xa5\x16\xb8\xc3\xf3\xe3\x63\xbc\x18\xac\x05\x89\x2d\x78\x2b\x3a"
      "\x1c\x22\x0a\xa3\x41\x57\x50\x36\xc3\x7b\xb6\xff\x8f\x36\x03\xf6\x53\x0c"
      "\x86\x11\xe4\x41\xd1\x7a\xbb\x5e\xec\x0d\x68\xa5\x4e\x37\xad\x77\xbc\x74"
      "\x28\xa0\x57\x18\x4e\x6a\xc5\x90\x7b\x85\x44\xe1\xdd\x16\x3b\x82\x03\x38"
      "\xc0\x4c\x71\xb8\x0c\xa3\x7e\xb8\x54\x55\x9a\xca\x3b\x1d\x75\xab\x26\x73"
      "\xa6\x0f\x15\x38\x89\x99\xd5\x9e\x2f\x2c\x82\x31\x3a\x34\xee\x77\xe3\xaf"
      "\xed\xf3\xe2\xd1\x74\x81\x5e\x56\x8b\xb7\x6b\x52\xfc\x4e\x16\xa6\x01\x8a"
      "\x10\x2c\x4d\xb5\x7f\xb5\x53\xb3\xdb\xde\x29\x49\x90\x69\xf9\x64\xeb\x4f"
      "\xb2\x41\x4a\x78\x03\x95\x79\xb1\x15\xbc\xa4\xa5\x01\x4b\xe0\x24\x6d\x35"
      "\x8a\x5a\xaf\xbe\x43\x09\xb8\x8a\x88\x91\x13\x86\x04\xed\x99\x11\xda\xe3"
      "\xa9\x4d\x8e\x0a\xc9\x80\xd0\x06\x85\x97\xc9\xe6\xd8\x49\x2b\x4f\xd4\x5c"
      "\x5d\x5c\xc8\x39\xdd\x99\xc9\x38\x51\x67\x72\xd5\x6d\x1c\xef\xe0\xce\x5b"
      "\xaa\xed\x5a\xc5\x76\x1c\x57\x08\x15\xa2\x87\x12\x9f\xe9\xb3\x5d\x00\x8f"
      "\x5e\xf9\x7c\x1d\x75\xb0\xda\xf4\x81\x96\x56\x86\x6d\xbd\x9f\xee\x3c\x4c"
      "\xd7\x60\x00\xb8\x53\xb1\xca\x7e\x27\xd0\xc6\x42\x7c\x28\xe7\xa3\xcf\x14"
      "\x54\x18\x6d\xa9\xb9\xc7\x80\x85\x36\xe6\xb9\xb3\xa7\xa9\xac\xf5\xa0\x2e"
      "\xbb\x3a\x66\x54\x46\x72\xf9\x57\x0f\xac\x7f\x2e\xa0\x2e\x90\xad\xa4\x5d"
      "\xdf\xbf\x84\x04\xaa\xf7\xa7\x6a\xd1\xea\x9c\xfe\x34\x68\xc2\xdc\xa4\x59"
      "\xd7\x02\xe5\x24\xa4\x27\xb4\xb5\x78\xa8\x2a\x0d\xa4\x3f\x09\x8c\x0e\xdc"
      "\xff\x51\xb9\x4b\xf7\xd5\xd2\x9f\x9e\x17\x42\x82\xe5\xd4\x06\xd0\x42\x3b"
      "\x07\x0a\x5f\xcc\xb7\x65\x5a\x34\x68\xc3\xeb\x35\x7e\x2e\x6e\xf9\xac\x91"
      "\x74\xe3\x62\xe1\x79\xe3\x0d\x1b\xec\x52\x63\x88\xbc\x30\x3c\x42\x4a\x6b"
      "\xc1\xd3\x69\x18\xb5\x4b\xdb\x21\x6f\x13\x88\x44\x0a\xb4\x5c\xcd\xbb\x1b"
      "\x9d\x37\x93\x17\x12\xae\x85\xfa\x3f\x0e\x27\xf9\x66\xbc\xb4\x17\x5c\x65"
      "\xe3\x6c\x89\x0f\xa2\x31\x7f\x83\xcb\xe9\x4e\xfd\x4c\x17\x30\xb7\x5b\xf7"
      "\x91\xd1\xb3\x39\x94\x33\xdd\x41\x34\x96\xc3\x7d\xf5\x6f\x14\xe5\xe6\x4f"
      "\x24\x69\x33\x89\x19\xbb\xb5\x51\x2d\x8a\x9f\x4f\xb5\x1c\x32\x95\xf7\xf6"
      "\x66\x29\xbb\x76\x67\xe0\xad\x58\xe7\xc1\x40\xba\x6c\x9e\xb0\x17\xaa\x77"
      "\x57\xfa\xad\x9b\x63\x71\xf8\x69\xcf\xba\x7f\x09\x80\xcd\x6b\x09\x18\x8d"
      "\x8d\x59\x3a\x35\x77\x6d\x5c\xbc\x3a\xe0\x6b\x4d\x9a\xa9\x40\x5c\x98\xbb"
      "\x90\xce\x05\xe0\x5d\xbd\xc9\xa7\xf2\x66\xf0\xd8\x74\x7d\x8f\x80\x47\x9f"
      "\x6a\xe8\xf7\x10\x82\xb9\xf5\xda\x0e\xe0\x5e\x0e\x13\xd7\x19\x0a\x9f\x99"
      "\x27\xe4\xbc\x13\xf8\xa8\x47\x08\xba\xac\x1c\x64\xc1\x0e\x13\xa3\x4f\x27"
      "\x10\xc6\xf3\x0b\x72\xf2\x22\x71\x50\xf6\x3c\x89\x5c\xa6\xac\x49\x56\xc1"
      "\x4f\x01\xc0\x62\x0d\xd2\xf7\xfd\x5f\xff\x18\xc9\x51\x5f\xa4\xef\x78\x48"
      "\x27\x93\x72\xca\x86\x16\xcc\x46\x9c\x5e\x2a\xbc\xcf\x72\x46\x62\x70\x3f"
      "\x73\x68\xf0\x60\xf1\xcb\x86\xc7\x1b\xba\x93\xa9\xc6\x8b\x28\x14\x49\x8a"
      "\xac\x10\xfc\x3c\x59\xae\xf9\x93\x61\x17\xa3\x73\x4b\x49\x91\x7b\x6d\x68"
      "\x70\x3a\xd3\xf1\x8c\x2e\xe1\x4d\xcb\xfb\xa6\x66\x81\xce\x08\x7b\xf4\x3d"
      "\xb0\x32\x03\x13\x98\x0b\x41\xdd\x66\x6d\xfb\xaf\x99\x3c\xf1\x2f\xe9\xa4"
      "\x38\xb9\x4e\x1c\x88\x1e\x8b\x90\x81\xf4\xe8\x35\x20\xd3\xa9\x42\x24\x94"
      "\x9b\x3a\x02\xff\x48\x5c\xd2\xaa\x24\xaf\xb5\x18\xda\x52\x91\xff\x95\x36"
      "\x2a\x70\xa8\x7c\xe6\x5f\x1b\x69\x2b\x8e\x7d\x54\xf6\xca\x14\x1c\x5d\xf3"
      "\x21\x62\x01\xdf\x8c\xc1\x22\x68\x5f\x92\x7b\xa9\x9e\x29\x57\x0e\xd7\x34"
      "\x89\xe9\x94\x12\xf1\x03\x1b\x50\xb7\x88\x0b\x0f\x3d\xc8\xa9\x63\xe3\x1d"
      "\xf5\x61\xf3\xe2\x36\x78\xb5\xcb\xda\xb8\x88\xc0\xc2\x9a\xc6\xce\x43\x05"
      "\x9c\x9e\xa8\x7f\x8a\x7e\x22\x22\xa3\xa8\x38\x0e\x70\xbc\x07\x90\xf4\x8f"
      "\xba\x7a\x8e\xa8\x7b\x13\x9a\x66\x65\xe6\xf6\xf6\xf8\xf3\xc4\xc2\xc6\x67"
      "\x54\x1a\xa5\x37\x96\xb9\x4e\xef\x1b\x09\x14\x1f\x0a\x91\xa1\xc9\x50\x66"
      "\x11\xd6\x46\x86\xe8\x79\x15\xb5\x7c\xa3\xf2\x00\x2e\xd3\x04\xb7\xb3\xea"
      "\x61\x71\x9f\x37\x3f\xf1\xf9\x26\x44\x5d\xf4\x40\xbb\x09\x7b\x54\x76\xf0"
      "\x5a\x18\xaa\x45\x53\x8c\x5e\x25\x33\x49\xa3\xbf\x13\x6a\xab\xab\xaf\xcc"
      "\x3b\xfd\x40\x25\xb9\x27\x49\xfd\xee\x02\x1f\x6f\xf3\xa3\xc4\x05\x94\x88"
      "\x51\x3f\x07\x0f\x51\x16\x73\x72\x03\xe8\x1e\x0e\x36\xad\x71\xe1\x9b\xbf"
      "\xe1\x4f\x71\x19\xf5\xee\x48\x16\x3a\xb0\xd6\x13\xff\x6f\x92\xfc\x1d\x6a"
      "\x13\xf6\xc0\x25\x0b\xb2\xa4\x44\x4f\xc8\xd2\xcc\x5f\xa9\x09\x8a\xec\x5e"
      "\x8d\x00\xb5\x0b\x4d\x8a\x43\x52\x11\x2e\x77\xe0\xca\x53\x4f\x6d\x69\xa4"
      "\xae\x1a\x31\x69\x7f\xcf\x76\x4c\x1b\xd0\x80\x87\xf3\x61\xc0\x80\xda\xb7"
      "\x4d\xdc\x77\xec\x4b\x50\xdd\xd9\xd8\x53\x1f\xba\x89\x0c\x7b\x51\x62\xeb"
      "\x41\xb5\x76\xbe\x7f\x57\x8f\xe6\x72\x30\x35\x9e\xd7\x2f\x79\x70\x51\xc3"
      "\x1e\x98\x6e\x23\xec\x93\x32\xec\x95\xe8\x60\xd1\xaf\xee\xea\x7e\x10\x2d"
      "\xaf\xf1\x5e\x84\x60\xe8\x3a\xf7\x1c\xd3\x39\x4d\x1f\x8f\x09\x1d\x58\x6b"
      "\x02\xed\xf9\x89\x34\x0e\xb2\xfb\xe0\x06\x6f\x7e\x74\x83\x50\x33\x29\x3b"
      "\x2f\x23\x23\x8f\xfa\x10\x85\x31\x62\x8f\x4b\xb3\xc5\xa4\xee\x10\x71\xff"
      "\x87\x19\x0d\x03\x3d\x36\x5f\x5d\xf7\xa4\x36\xc3\x43\x5c\xe8\x25\xe4\x86"
      "\x71\xa8\xc5\x70\x52\xfe\x45\x52\xc8\x13\x30\xe3\xf7\x1b\x25\x77\x1d\x73"
      "\xfc\xbd\xf8\x14\xc4\xc6\xa9\x14\x9b\x72\xc8\x83\x70\xb4\x86\x06\x76\x1e"
      "\x9e\xd2\x3e\x8c\xf3\x7c\xae\x16\xcd\xf6\x47\x44\xc4\x6f\x71\xb4\x05\xd2"
      "\xd7\x8b\x86\xb1\x3f\x1f\xd9\xa3\x76\x17\x61\x7b\x31\x46\xa1\xa9\x77\xf7"
      "\xf7\x67\x06\x7d\xad\x9c\xd5\xc5\x60\x8e\x79\xab\xf0\x4a\x7b\xf0\xd0\x83"
      "\xc7\xa4\x32\x2e\xb0\x53\xce\xd2\x3e\xcd\x58\x98\x52\x7f\xdd\x5c\xe5\x62"
      "\x38\xe5\xf1\xef\x17\x59\x7e\x99\xd3\xd4\xce\x7e\x96\xe8\x1a\x9e\x44\xdc"
      "\x9c\x4b\xf2\x7a\x15\xd7\xd0\x01\x9d\x7f\xc8\x10\x0d\x31\xba\xf6\x74\x59"
      "\x8b\x1b\x94\xb4\x4a\x72\x9c\xe5\x8c\xce\x08\xc1\xf8\x58\x74\xd8\x29\x03"
      "\x70\xee\x7b\xc3\xa9\x5e\xf3\xa0\x2b\x39\x29\x97\xc5\xd0\xd8\xda\x2f\xc2"
      "\xcd\x24\x6d\x43\x48\x24\x3b\xc6\xe5\xc3\xeb\x2a\x1e\x8a\x42\x57\x6b\xd0"
      "\xdd\x2c\x96\xda\x7f\xdb\xd9\x56\xb3\x4e\x13\x79\xc6\x5b\xaf\x21\x6f\x95"
      "\xdf\x7b\xd3\x61\x7f\x74\x33\xd3\x37\x09\x0a\xb8\x3b\xf9\x67\x08\x96\x41"
      "\x36\x45\x8c\xe7\xab\x2e\x9f\x38\xd8\x2e\x94\x45\xad\x41\x15\xb8\x87\x25"
      "\x89\x27\xca\x62\xd2\x96\xc3\x00\xd1\x25\x2b\x3b\xaa\xd3\x62\xeb\xdc\x72"
      "\xa3\x07\xa9\x14\x51\xfd\x7f\xc3\xbb\x4d\xe2\xbd\xa2\xeb\x5d\x85\xc4\xa1"
      "\x8b\xb8\xda\x62\xa4\xee\x0b\xbd\xba\x6e\xd6\x61\xd9\x1d\x9d\x15\xec\x1d"
      "\xbf\xc4\x0d\xb9\xdc\x52\xac\xfe\x0d\x50\xe0\x1e\x5d\x58\x1b\x0a\xf6\x5a"
      "\x2d\x1b\x87\x54\x2f\x79\xb1\x6d\xf3\xdd\x5b\x29\x02\xc3\xed\xd1\x7d\xe0"
      "\x9a\x71\x1e\x3c\xc4\xfb\xbe\x68\xa6\x50\x1a\xd7\x7f\xd3\xc3\x9a\x8f\xce"
      "\x7c\x2e\xa9\xfb\xed\xd6\xee\xc3\xbe\x79\x7e\xee\x9a\x94\x96\x92\xa5\x96"
      "\x83\x2f\x5f\x26\xe8\x11\x5e\x0b\xfd\x42\x9e\x67\x5d\x20\xbe\x9e\xf8\x6c"
      "\xb5\xb8\x4e\x9f\x34\x10\x89\x4c\x84\x41\xe2\x38\x3e\xaa\x5f\x7f\x4a\xaf"
      "\xe5\xbc\x6f\xc6\xcc\x6b\xc7\x4a\xe2\x2e\xe1\xaa\x39\x1b\xb7\xb8\x7d\x80"
      "\x8b\xce\x48\xc0\xb6\x4d\x90\x09\x07\xfc\x2a\x17\x97\xb7\x97\x7b\xdb\x25"
      "\x65\x73\x14\xdf\x52\xe5\x23\x12\x77\x8b\x34\x4f\x68\x99\x44\x4f\xf4\xc1"
      "\x27\xe1\x1d\xf9\xfc\x17\x62\x72\x3c\x99\xd6\x8d\x06\x61\x56\x3d\x47\xfb"
      "\x71\x4c\x6e\xb7\xcf\xf2\x1c\x09\x81\xae\x25\x9a\xf4\x4b\x6d\xb1\xb7\xe7"
      "\x60\x26\x28\xa9\x75\xc1\x85\x83\x5e\x18\xa8\x2a\xf1\xb3\xde\x1c\x65\x02"
      "\x4c\xb9\x11\x1e\x0f\x2b\x33\x81\x85\xad\x7e\xe1\x53\xdb\x2c\x09\x57\xc2"
      "\xd4\x16\x69\xc0\xda\xe2\x61\x71\x8c\x89\xe1\x13\xb9\xe5\xab\x9b\x74\x92"
      "\x94\x76\x9c\x6c\xbf\x49\xe1\x18\x72\x5c\xf0\xe3\xaa\x05\x84\xfc\xac\x98"
      "\x26\x71\x4e\x22\x54\x59\x6d\xa1\xf7\x9a\x0f\x7f\x4f\x68\x37\x6b\x5b\x58"
      "\x41\x55\xb7\x25\xc0\xbe\x17\x72\xd6\x99\x92\xd8\x64\xcc\xd2\xc8\x33\x3f"
      "\xcf\xc2\x33\x62\x84\x4f\x1f\xbc\x17\xe3\xe0\xc4\xc4\x17\x95\x77\xe8\x87"
      "\x61\x39\xe3\x18\xa1\x72\x7e\x5e\x8a\x74\xca\x35\x97\x1d\xc0\xd8\x20\x8a"
      "\x0f\x53\xad\x51\x25\xa6\x6a\xac\x81\xd0\xbf\x03\x14\x75\xf3\xe4\xd1\xfd"
      "\xbe\xd1\x0f\x2b\xd0\xb0\x1a\x65\x56\x2b\xf5\xfc\x38\xda\xa0\x45\x28\x0d"
      "\x1c\x1f\x75\x45\x4b\xe9\x71\xbc\xb5\x43\x3a\xb2\xb2\xa8\x4e\x6b\x4a\x68"
      "\x0c\x4b\x53\xc9\x9c\xa1\x59\x09\xcd\x6d\x65\xed\x5f\x63\xfd\x89\xa6\xaf"
      "\xd4\x5a\xbe\x39\x48\xe3\x5d\xe9\xcd\x3d\xb1\xbc\x68\xd0\x9a\x5a\x14\x5a"
      "\x26\xc4\xc2\xc5\x60\xe6\x0a\x0a\x48\x1d\x69\xb1\xf3\x62\xa9\x9b\x15\xa0"
      "\xaf\xe4\xe0\xfe\x1b\x77\x79\xc7\x4b\x90\xe2\xaa\xb1\x95\x88\x6f\x0f\x17"
      "\x0f\xab\x88\x8c\x5f\x52\x41\x3b\x92\x5d\x5e\x8d\xda\x75\x4e\x5f\xf6\x27"
      "\x40\xa0\xc8\x32\x7d\xfc\x48\x2e\xb6\x75\xd9\xf0\x7d\x5c\x0e\xea\xb5\xab"
      "\xe4\x30\x19\x87\x65\x7c\x39\xa0\x3d\x10\x93\xfc\x1e\xc0\x8f\x8c\x46\x2a"
      "\x0f\xa7\x65\xcb\x7f\xa6\x24\xfa\x42\x49\x21\x09\x9d\x27\x29\x36\xec\x30"
      "\x2b\x4c\xd0\xfe\xa0\xe3\x68\x01\x9b\x82\x5a\x7e\xc0\x98\xa6\x1a\xca\x0a"
      "\x01\x1e\x59\x13\x7a\xe3\x60\x6b\x91\x7a\x5e\xb3\x0b\x35\xdf\x0d\xe0\x24"
      "\xc6\xb3\x03\x8a\x10\x16\x20\x26\x3a\x7d\x41\xdb\x84\x6c\x7d\x9e\x79\x39"
      "\x66\xf4\x44\x1b\xa7\xb9\x79\x7a\x8f\x1b\x74\x76\x91\x8a\xfa\xa5\xd6\x9d"
      "\x2a\xcd\x89\x1d\xa3\x8d\x6f\x82\xfe\x85\xb7\x77\x2a\xed\x1e\x9c\xc9\x22"
      "\x5d\x83\x6a\xb1\xaf\x6a\x54\xd3\x73\x07\x36\xd4\x0c\x90\x6d\x57\x16\x65"
      "\x41\xe6\x76\xc2\x70\x8f\x1d\xca\xbd\x34\x56\x44\x12\xb7\xe1\x5b\xa4\x3c"
      "\x42\x38\x2b\xcb\xc5\xd1\xb7\x36\x35\xef\x9b\x72\x04\xe9\x1c\xbe\x89\xe5"
      "\x9b\x05\xba\xd1\x9c\x5d\xa1\xa5\x04\x1b\x88\xc6\xaa\x66\x74\xb6\x70\xce"
      "\x6b\x9d\xa7\xab\x06\xa5\xfe\x9f\x90\x6a\x89\x92\xcd\x4e\x6d\x63\x28\x75"
      "\x06\xdc\xea\x91\x12\xc1\xa8\x54\x93\x31\x80\xc8\x11\x6d\x79\xf9\x55\x3e"
      "\xbd\x9f\x20\x17\xa8\xb3\xa4\xf7\x09\xd8",
      4096);
  *(uint64_t*)0x20000248 = 0xfffffc49;
  *(uint64_t*)0x20000250 = 0x200007c0;
  memcpy((void*)0x200007c0,
         "\xc3\x00\xef\x54\xa1\x44\x1a\x3a\xb8\x2c\xfd\x81\xe5\x96\x8d\x7d\xab"
         "\x37\x00\xd2\x9b\x56\x0a\x01\x18\x1e\x21\xca\xf0\x15\x6c\xdd\x8f\xdd"
         "\x85\x0c\x05\x48\x8d\x78\x5e\x7f\x62\x34\x90\x55\x8a\x65\x74\xf2\x92"
         "\xac\xf9\x31\x82\x2f\xc6\xd1\x9f\xf7\x72\xb3\x89\x64\x78\x29\x92\x96"
         "\x47\x1d\x00\x84\xa6\x37\xd1\xb6\xb5\x46\xfd\x8b\x86\xcb\xd7\xf5\xce"
         "\xbe\x8c\x74\xe9\x3c\x33\xca\x75\xf6\xb9\xf0\x41\x95\x53\x3c\xe4\x9e"
         "\xc9\xfb\xcb\xc1\xae\x0f\xd5\x52\x21\xd8\x3c\xe7\x5a\x52\xd9\x50\x35"
         "\xff\x51\xbf\xfe\x77\x3c\xb3\x9a\xe8\xe0\xac\x4e\x18\x46",
         133);
  *(uint64_t*)0x20000258 = 0x83;
  *(uint64_t*)0x20000260 = 0x200001c0;
  memcpy((void*)0x200001c0,
         "\x22\x67\x98\x9c\xf3\xf5\xa6\xed\x59\xde\xf9\xcc\xe2\x12\xdf\x5b\xe1"
         "\x95\x34\x1c\xfc\x89\x14\x36\x27\x9b\xa7\x47\x05\x97\x3f\xf2\xf1\xa6"
         "\x36\x21\x58\xca\x57\x87\x34\xa6\xb2\x42\xa6\xbc\xb8\x7d\xf5\xcf\x82"
         "\xcd\x22\x9b\xcc\xad\xf5\x00\x5d\xee\x78\x0f\x56",
         63);
  *(uint64_t*)0x20000268 = 0x3f;
  syscall(__NR_pwritev2, /*fd=*/r[1], /*vec=*/0x20000240ul, /*vlen=*/3ul,
          /*off_low=*/0x8000, /*off_high=*/8, /*flags=*/0ul);
  memcpy((void*)0x20000dc0, "./file0\000", 8);
  memcpy((void*)0x20000cc0,
         "./"
         "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000",
         254);
  syscall(__NR_symlink, /*old=*/0x20000dc0ul, /*new=*/0x20000cc0ul);
  memcpy((void*)0x20000000,
         "./"
         "file0aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
         "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa\000",
         250);
  syscall(__NR_mknod, /*file=*/0x20000000ul, /*mode=*/0ul, /*dev=*/0x701);
  return 0;
}