Add new drivers from Michael Hillmann
authorDavid Schleef <ds@schleef.org>
Wed, 25 Sep 2002 02:14:47 +0000 (02:14 +0000)
committerDavid Schleef <ds@schleef.org>
Wed, 25 Sep 2002 02:14:47 +0000 (02:14 +0000)
comedi/drivers/Makefile.in
comedi/drivers/ke_counter.c [new file with mode: 0644]
comedi/drivers/me2600_fw.h [new file with mode: 0644]
comedi/drivers/me_daq.c [new file with mode: 0644]

index 0a6af66169b287ce328be655ace3d2c0bf59f2e4..2d638be54d2821de43018dd829d60eccf93aee94 100644 (file)
@@ -31,6 +31,8 @@ select(CONFIG_COMEDI_DT3000 dt3000.o)
 select(CONFIG_COMEDI_FL512 fl512.o)
 select(CONFIG_COMEDI_II_PCI20KC ii_pci20kc.o)
 select(CONFIG_COMEDI_ICP_MULTI icp_multi.o)
+select(CONFIG_COMEDI_KE_COUNTER ke_counter.o)
+select(CONFIG_COMEDI_ME_DAQ me_daq.o)
 select(CONFIG_COMEDI_MITE mite.o)
 select(CONFIG_COMEDI_MULTIQ3 multiq3.o)
 select(CONFIG_COMEDI_MPC8260CPM mpc8260cpm.o)
diff --git a/comedi/drivers/ke_counter.c b/comedi/drivers/ke_counter.c
new file mode 100644 (file)
index 0000000..6545862
--- /dev/null
@@ -0,0 +1,241 @@
+/*
+    comedi/drivers/ke_counter.c
+    Comedi driver for Kolter-Electronic PCI Counter 1 Card
+
+    COMEDI - Linux Control and Measurement Device Interface
+    Copyright (C) 2000 David A. Schleef <ds@schleef.org>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+*/
+/*
+Driver: ke_counter.o
+Description: Driver for Kolter Electronic Counter Card
+Devices: (Kolter Electronic) PCI Counter Card [ke_counter]
+Author: mh
+Updated: 11.4.2002
+Status: tested
+
+This driver is a simple driver to read the counter values from
+Kolter Electronic PCI Counter Card.
+*/
+
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/sched.h>
+#include <linux/mm.h>
+#include <linux/slab.h>
+#include <linux/errno.h>
+#include <linux/ioport.h>
+#include <linux/delay.h>
+#include <linux/interrupt.h>
+#include <linux/timex.h>
+#include <linux/timer.h>
+#include <linux/init.h>
+#include <linux/pci.h>
+#include <asm/io.h>
+#include <linux/comedidev.h>
+
+#define CNT_DRIVER_NAME         "ke_counter"
+#define PCI_VENDOR_ID_KOLTER    0x1001
+#define CNT_CARD_DEVICE_ID      0x0014
+
+/*-- function prototypes ----------------------------------------------------*/
+
+static int cnt_attach(comedi_device *dev,comedi_devconfig *it);
+static int cnt_detach(comedi_device *dev);
+
+static struct pci_device_id cnt_pci_table[] __devinitdata =
+{
+  { PCI_VENDOR_ID_KOLTER, CNT_CARD_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
+  { 0 }
+};
+MODULE_DEVICE_TABLE(pci, cnt_pci_table);
+
+/*-- board specification structure ------------------------------------------*/
+
+typedef struct
+{
+  char *name;
+  int device_id;
+  int cnt_channel_nbr;
+  int cnt_bits;
+} cnt_board_struct;
+
+static cnt_board_struct cnt_boards[] =
+{
+  {
+    name:            CNT_DRIVER_NAME,
+    device_id:       CNT_CARD_DEVICE_ID,
+    cnt_channel_nbr: 3,
+    cnt_bits:        24
+  }
+};
+
+#define cnt_board_nbr (sizeof(cnt_boards)/sizeof(cnt_board_struct))
+
+static comedi_driver cnt_driver =
+{
+  driver_name: CNT_DRIVER_NAME,
+  module:      THIS_MODULE,
+  attach:      cnt_attach,
+  detach:      cnt_detach,
+  num_names:   cnt_board_nbr,
+  board_name:  cnt_boards,
+  offset:      sizeof(cnt_board_struct),
+};
+COMEDI_INITCLEANUP(cnt_driver);
+
+/*-- counter write ----------------------------------------------------------*/
+
+/* This should be used only for resetting the counters; maybe it is better
+   to make a special command 'reset'. */
+static int cnt_winsn(comedi_device *dev,
+                     comedi_subdevice *s,
+                     comedi_insn *insn,
+                     lsampl_t *data)
+{
+  int chan = CR_CHAN(insn->chanspec);
+
+  outb((unsigned char)((data[0] >> 24) & 0xff), dev->iobase + chan * 0x20 + 0x10);
+  outb((unsigned char)((data[0] >> 16) & 0xff), dev->iobase + chan * 0x20 + 0x0c);
+  outb((unsigned char)((data[0] >>  8) & 0xff), dev->iobase + chan * 0x20 + 0x08);
+  outb((unsigned char)((data[0] >>  0) & 0xff), dev->iobase + chan * 0x20 + 0x04);
+
+  /* return the number of samples written */
+  return 1;
+}
+
+/*-- counter read -----------------------------------------------------------*/
+
+static int cnt_rinsn(comedi_device *dev,
+                     comedi_subdevice *s,
+                     comedi_insn *insn,
+                     lsampl_t *data)
+{
+  unsigned char a0, a1, a2, a3, a4;
+  int chan = CR_CHAN(insn->chanspec);
+  int result;
+
+  a0 = inb(dev->iobase + chan * 0x20);
+  a1 = inb(dev->iobase + chan * 0x20 + 0x04);
+  a2 = inb(dev->iobase + chan * 0x20 + 0x08);
+  a3 = inb(dev->iobase + chan * 0x20 + 0x0c);
+  a4 = inb(dev->iobase + chan * 0x20 + 0x10);
+
+  result = (a1 + (a2 * 256) + (a3 * 65536));
+  if (a4 > 0) result = result - s->maxdata;
+
+  *data = (lsampl_t)result;
+
+  /* return the number of samples read */
+  return 1;
+}
+
+/*-- attach -----------------------------------------------------------------*/
+
+static int cnt_attach(comedi_device *dev, comedi_devconfig *it)
+{
+  comedi_subdevice *subdevice;
+  struct pci_dev   *pci_device;
+  cnt_board_struct *board;
+  int              io_base;
+  int              error, i;
+
+  /* Probe the device to determine what device in the series it is. */
+  pci_for_each_dev(pci_device)
+  {
+    if(pci_device->vendor == PCI_VENDOR_ID_KOLTER)
+    {
+      for(i=0; i<cnt_board_nbr; i++)
+      {
+        if(cnt_boards[i].device_id == pci_device->device)
+        {
+          /* was a particular bus/slot requested? */
+          if((it->options[0] != 0) || (it->options[1] != 0))
+          {
+            /* are we on the wrong bus/slot? */
+            if(pci_device->bus->number != it->options[0] ||
+               PCI_SLOT(pci_device->devfn) != it->options[1])
+            {
+              continue;
+            }
+          }
+
+          dev->board_ptr = cnt_boards + i;
+          board = (cnt_board_struct *)dev->board_ptr;
+          goto found;
+        }
+      }
+    }
+  }
+  printk("comedi%d: no supported board found! (req. bus/slot: %d/%d)\n",
+    dev->minor, it->options[0], it->options[1]);
+  return -EIO;
+
+found:
+  printk("comedi%d: found %s at PCI bus %d, slot %d\n",dev->minor,
+         board->name, pci_device->bus->number, PCI_SLOT(pci_device->devfn));
+  dev->board_name = board->name;
+
+  /* read register base address [PCI_BASE_ADDRESS #0] */
+  io_base = pci_resource_start(pci_device, 0);
+  dev->iobase = io_base & PCI_BASE_ADDRESS_IO_MASK;
+  if (request_region(dev->iobase, 0x08, CNT_DRIVER_NAME) == NULL)
+  {
+    return -EIO;
+  }
+
+  /* allocate the subdevice structures */
+  dev->n_subdevices = 1;
+  if((error = alloc_subdevices(dev)) < 0)
+  {
+    return error;
+  }
+
+  subdevice = dev->subdevices + 0;
+  dev->read_subdev = subdevice;
+
+  subdevice->type         = COMEDI_SUBD_COUNTER;
+  subdevice->subdev_flags = SDF_READABLE /* | SDF_COMMON*/;
+  subdevice->n_chan       = board->cnt_channel_nbr;
+  subdevice->maxdata      = (1 << board->cnt_bits) - 1;
+  subdevice->insn_read    = cnt_rinsn;
+  subdevice->insn_write   = cnt_winsn;
+
+  // select 20MHz clock
+  outb(3, dev->iobase + 248);
+
+  // reset all counters
+  outb(0, dev->iobase);
+  outb(0, dev->iobase + 0x20);
+  outb(0, dev->iobase + 0x40);
+
+  printk("comedi%d: " CNT_DRIVER_NAME " attached.\n",dev->minor);
+  return 0;
+}
+
+/*-- detach -----------------------------------------------------------------*/
+
+static int cnt_detach(comedi_device *dev)
+{
+  if (dev->iobase)
+  {
+    release_region(dev->iobase, 0x08);
+  }
+
+  printk("comedi%d: " CNT_DRIVER_NAME " remove\n",dev->minor);
+  return 0;
+}
diff --git a/comedi/drivers/me2600_fw.h b/comedi/drivers/me2600_fw.h
new file mode 100644 (file)
index 0000000..07aabf2
--- /dev/null
@@ -0,0 +1,866 @@
+/* me2600_firmware.c,v 1.4 1999/11/10 09:52:30 GG */
+
+/* 
+ * This file is copyrigth by Meilhaus Electronic GmbH 1998, 1999. 
+ * You are not allowed to distribute, sell, modify, reverse 
+ * engineer or use this code (or parts of it) for any 
+ * other purpose or under any other conditions than stated below. 
+ *
+ * 1) You are allowed to distribute verbatim copies of this file together
+ *    with device drivers for the Meilhaus me2600 board.
+ *
+ * 2) Derived work (device drivers using this file) can be 
+ *    published under the terms of the 
+ *    GNU General Public License as published by
+ *    the Free Software Foundation; either version 2 of the License, or
+ *    (at your option) any later version. Any other license terms have 
+ *    to be agreed by Meilhaus GmbH in written.
+ *                          
+ * 3) This file is distributed WITHOUT ANY WARRANTY; 
+ *    without even the implied warranty of MERCHANTABILITY 
+ *    or FITNESS FOR A PARTICULAR PURPOSE. Meilhaus is under
+ *    no means liable for products using this file or parts of it.
+ *
+ * 4) The copyright of this file has to be mentioned in derived work.
+ *
+ * 5) If this license terms are not valid due to any other law
+ *    or restrictions imposed on you, you are not allowed to use 
+ *    this file in any way at all.
+ */
+
+/* You are allowed to change this line */
+const unsigned char me2600_firmware[] = /* You are allowed to change this line */
+{
+       0x00,0x00,0x33,0xe6,0x01,0x01,0x00,0x00,0x00,0x06,0x25,0x98,0x00,0x00,0x00,0x00,
+       0x2c,0x4f,0x80,0xf9,0x94,0xff,0x7f,0xf8,0xbf,0xd7,0xed,0xd1,0xff,0xdb,0x3f,0x4f,
+       0xcf,0x47,0xff,0xbe,0xfd,0xbf,0xfd,0xfb,0xf6,0xff,0xf6,0xef,0xd1,0xff,0xdb,0xbf,
+       0x6f,0xff,0x6f,0xff,0x1e,0xfd,0xbf,0xfd,0xa3,0x47,0xff,0x6f,0xff,0xbe,0xfd,0xbf,
+       0xfd,0xfb,0xf6,0x7f,0xf4,0xef,0xdb,0xff,0xdb,0xbf,0x6f,0xcf,0x47,0xff,0x3c,0xfd,
+       0xbf,0xfd,0x7b,0xf4,0xff,0xf6,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xfb,0xef,0xbf,0xbf,0xf9,0xff,0xef,0xe6,0xd7,0xfc,0xff,0xfb,0xff,0xff,0xff,
+       0xaf,0xff,0xff,0xe7,0xbf,0xfa,0xf9,0xff,0xff,0xff,0xff,0xff,0xfe,0xdf,0x9a,0xff,
+       0x83,0xff,0xdd,0xe6,0xff,0xff,0x6f,0xfb,0xff,0xfd,0xfe,0x77,0xff,0xff,0xff,0xff,
+       0xff,0xdf,0xef,0xbf,0xff,0xfd,0xff,0xff,0xbf,0xff,0xfb,0xaf,0x5d,0xfe,0xdf,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0x7f,0xdf,0xfe,0xff,0xff,
+       0xdd,0xfe,0xfd,0xff,0xf7,0xff,0xff,0xff,0x9f,0xdf,0xff,0xf7,0x7f,0xff,0xfc,0xff,
+       0xff,0xff,0xff,0xff,0xff,0x9f,0xce,0xff,0xe3,0xff,0xef,0xf3,0xff,0xff,0xff,0xff,
+       0xff,0xfd,0xff,0xeb,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0xff,0x9f,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xdf,0xb9,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xdf,0xff,0xff,0xfb,0xff,0xef,0xfd,0xb7,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xdf,0xff,0xdf,0xff,0xf5,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,
+       0x43,0xff,0xbd,0xff,0xff,0xff,0xb7,0xfe,0xff,0xff,0xfe,0xff,0x9f,0xff,0xff,0xff,
+       0xff,0xff,0xef,0xef,0xff,0xfd,0xff,0xff,0xdf,0xff,0xf7,0xdf,0x7f,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0x37,0xfc,0x48,0xbc,0xe3,0xfd,0x2b,
+       0x75,0xaf,0x7f,0xaf,0xd6,0xbf,0xfe,0xbf,0xea,0xff,0xbf,0xeb,0x48,0xfc,0xe3,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xdf,0xc2,0x5f,0x7f,0xbf,0xf7,0xf7,0xff,0xff,
+       0xff,0xfe,0xf7,0xd7,0xff,0xff,0xff,0xff,0xff,0xff,0x6e,0xff,0xf7,0xff,0xff,0xff,
+       0xff,0xff,0x3f,0x12,0xef,0xda,0xf7,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xdf,0xfb,0xf5,0x7f,0xdd,0xed,0xd7,0xff,0xff,0xff,0xef,0xff,0xff,
+       0xff,0xdf,0x7f,0xff,0xdf,0xbe,0xff,0xef,0xff,0xff,0xff,0xed,0x7f,0xff,0xff,0xfb,
+       0xa3,0xff,0xdf,0xbf,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xfc,0xfd,0xeb,0xff,0xff,
+       0xf7,0xff,0x7f,0xff,0xf7,0xff,0xfd,0xff,0xff,0xbf,0xff,0xfd,0xff,0xfd,0xfb,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xfa,0x7d,0xff,0xff,
+       0x7f,0x3f,0xff,0x7f,0xff,0xef,0x7f,0xff,0xff,0xff,0xdf,0x7e,0xff,0xe7,0xff,0xf7,
+       0xaf,0xff,0xff,0xff,0xff,0xbf,0xbf,0x75,0xe3,0xff,0xff,0xbb,0xfd,0xef,0xbf,0xff,
+       0xfb,0xef,0xff,0xff,0xf3,0xef,0xff,0xff,0xee,0xff,0xff,0xff,0xf7,0xff,0xbf,0xfe,
+       0xff,0xbf,0xbf,0xff,0xff,0xdf,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0x7f,0xb7,0xef,0xff,0xbd,0xff,0xf7,0x3e,0xf7,
+       0xf6,0xdf,0xbb,0x1b,0x3b,0x7f,0xef,0x7f,0x4f,0xff,0xbd,0xff,0xbd,0xfb,0xf7,0xfe,
+       0xf7,0xfe,0xdf,0xfb,0xdf,0xdb,0x7f,0xef,0xe3,0xf2,0xee,0xdf,0xf8,0xdd,0xdb,0x77,
+       0xef,0x7f,0xef,0xff,0xbd,0xff,0xbd,0xff,0xf7,0x3e,0x3,0xd6,0xda,0xdb,0xda,0x3b,
+       0x77,0xef,0x7f,0xef,0xff,0xbd,0xff,0xff,0xff,0xbf,0xf6,0xff,0xff,0xff,0x7f,0x7d,
+       0xbb,0xef,0xff,0xdb,0xff,0x6f,0xff,0xff,0xab,0xbf,0xfd,0xff,0xfd,0xff,0xf6,0xff,
+       0xf6,0xf7,0xfb,0xff,0xdb,0xff,0x6f,0xff,0x6f,0xff,0xbf,0xfd,0xf5,0xff,0xfe,0xf6,
+       0xe3,0x6f,0xff,0xbf,0xff,0xff,0xff,0xfe,0xb6,0xfe,0xf6,0xff,0xdb,0xff,0xdb,0xff,
+       0x6f,0xff,0xff,0xff,0xbf,0xfd,0xbf,0xfd,0xfe,0xf6,0xff,0xf6,0xff,0xdb,0xff,0xff,
+       0x7b,0xbf,0xf6,0xff,0xff,0xff,0x7f,0x7f,0xf7,0xff,0xff,0xff,0xff,0xff,0x7f,0x80,
+       0xfe,0xff,0xff,0x41,0x3,0xff,0xff,0xff,0xff,0xff,0xff,0xf,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x63,0xe0,0xff,0xff,0xe2,0x0,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x11,0xca,0x0,0xff,0xf0,0x80,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xaf,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xcd,0xfd,0xff,0xff,0xff,0x7f,0xa9,0xfe,0xff,0xff,0xc3,0xb,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0x63,0xe1,0xff,0xff,0x47,0x3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xd1,0xfa,0xa,0xff,0xf0,0xa5,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0x75,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3f,0xbf,
+       0xfe,0xff,0x73,0x3f,0xf0,0xff,0x4f,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xe3,0x8f,0x7f,0x9e,0xf7,0xbe,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xbe,0xff,0x2,0x39,0xf8,
+       0xff,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,
+       0x7f,0xff,0xff,0xff,0xff,0xff,0xbf,0xfe,0x8f,0xfd,0xff,0xfc,0x17,0xf6,0xfd,0xff,
+       0xff,0xde,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0x9e,0xf7,0xff,
+       0x63,0xf5,0x93,0x7d,0xfb,0x7c,0x2e,0xf6,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xbf,0xff,0x61,0x7c,0x1f,0xff,0xf1,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xef,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xcf,0x3,0x10,0x0,0x0,0x0,0x0,0x0,0x80,
+       0x0,0x0,0x0,0x21,0x8,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x80,0x0,0x0,0x0,
+       0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x8,0x4,
+       0x8,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x1,0x1,0x0,0x8,
+       0x4,0x0,0x80,0x0,0x0,0x0,0x0,0x10,0xc0,0xf3,0xf6,0xff,0xff,0xff,0x7f,0xaf,
+       0xd9,0xf7,0xfa,0xff,0xff,0xff,0xff,0xbf,0xdf,0xff,0x7e,0xff,0xff,0xdf,0xff,0xff,
+       0xff,0xfd,0xfd,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xdf,0xfb,0xdf,0xff,
+       0xe3,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xff,
+       0xff,0xbf,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf3,
+       0x9e,0xfd,0xf6,0xff,0xff,0xff,0x7f,0xf,0xfd,0x77,0xff,0xf7,0xdf,0xfe,0xff,0xdb,
+       0xff,0xdf,0xbe,0xf7,0xff,0x57,0x7f,0xff,0xdf,0xde,0xfd,0xfd,0xff,0xff,0xff,0xbf,
+       0xff,0xf7,0xff,0xff,0xff,0xf7,0xff,0xff,0xc3,0xb9,0xfd,0xff,0xff,0xf7,0xb7,0xee,
+       0x77,0xff,0xff,0xde,0xff,0xff,0xff,0xfd,0xef,0xff,0xb9,0x6f,0xdf,0xff,0xff,0xef,
+       0xfd,0xff,0xdf,0xff,0xff,0xdf,0xff,0xff,0xff,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,
+       0x8c,0x26,0x4,0x3,0x0,0x0,0x0,0x24,0x10,0x25,0x12,0x86,0x20,0x43,0x22,0x0,
+       0x0,0x20,0x80,0x0,0x0,0x1,0x0,0x7,0x0,0x40,0x0,0x0,0x0,0x40,0x0,0x0,
+       0x20,0x0,0x90,0x10,0x0,0x80,0x1,0x0,0x0,0x0,0x10,0x0,0x80,0x0,0x0,0x0,
+       0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x80,0x0,0x0,0x0,0x0,0x10,0x0,
+       0x30,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xef,0xf7,0xff,0xff,0xff,0xdf,0xed,0xbf,0xff,
+       0xff,0xbf,0x2f,0xff,0xf6,0xff,0xfa,0xf6,0xff,0xd6,0xff,0xf1,0xff,0xef,0xff,0xff,
+       0xfe,0xff,0xff,0xff,0xdf,0xff,0x7f,0xff,0xc0,0xfb,0xfe,0xdf,0xaf,0xf7,0xbf,0xfd,
+       0xf7,0xfc,0xff,0xf8,0xeb,0xff,0xff,0xed,0xef,0xff,0xff,0xff,0xfe,0xbf,0x7f,0xff,
+       0x7f,0xff,0xdc,0xff,0xff,0xff,0xff,0xff,0xef,0xfd,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0x7f,0xb7,0xcf,0xb7,0xb1,0xfd,0xf7,0x7e,0xf7,
+       0xee,0xdf,0xfb,0xdd,0x58,0x7f,0xef,0x7f,0x4f,0xdf,0x35,0xc5,0x21,0x75,0xc3,0x54,
+       0x7,0xec,0xcd,0x5b,0xdf,0xfb,0x7f,0xef,0xe3,0x7,0xf6,0xda,0xfb,0xca,0x53,0x7f,
+       0xec,0x77,0xef,0xce,0xbd,0xaf,0x81,0xfd,0x36,0x96,0xf2,0xee,0x1d,0xb3,0xdf,0xfb,
+       0x7f,0xef,0x7f,0xef,0xff,0xbd,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xfd,
+       0x9e,0xef,0xff,0xdf,0xff,0x6f,0xbf,0x69,0xff,0xbf,0xfd,0xa6,0xff,0xff,0xf6,0xd7,
+       0xff,0xf2,0xff,0xdf,0xdb,0x66,0x6d,0xff,0x68,0xef,0xe3,0xa5,0xbf,0xfd,0xff,0x96,
+       0xe1,0xff,0xff,0xbf,0xfd,0xbf,0xfd,0xff,0xf7,0xff,0xf7,0x6e,0xda,0xff,0x7f,0xfb,
+       0xef,0xff,0x6f,0xff,0xff,0xfd,0xbf,0xfd,0xff,0xf6,0xff,0xf6,0xff,0xdb,0xff,0xff,
+       0xff,0xbf,0xf6,0xff,0xff,0xff,0x7f,0x7f,0xef,0xdf,0xbb,0xf0,0xff,0xff,0x3f,0xc0,
+       0xff,0xff,0xff,0x2,0x0,0xff,0xff,0xeb,0xfd,0x3f,0xfc,0x3f,0xfc,0xbf,0x2,0x7c,
+       0xef,0xcc,0x0,0x0,0xff,0xff,0xff,0xff,0x23,0x61,0xe0,0xff,0xff,0xff,0xff,0x63,
+       0xfc,0xb,0xc,0xfc,0xff,0xf,0x35,0xf5,0xff,0xb3,0xc0,0xff,0xc,0xa0,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xfe,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xf9,0xcd,0xbe,0xfd,0xff,0xff,0xbf,0xd0,0xff,0xff,0xff,0x2,0x7b,0xff,0xff,0x6b,
+       0xfd,0x3f,0xfc,0xef,0xfc,0xbb,0x82,0x7c,0xef,0xcc,0xf,0x18,0xff,0xff,0xff,0xff,
+       0xa3,0xf7,0xf6,0xff,0xff,0xff,0xff,0x6f,0xff,0xb,0x2c,0xfc,0xff,0xff,0xc5,0xf5,
+       0x3f,0xb0,0xc0,0xff,0xcf,0xa1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xb5,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xfb,0xff,0xff,0xfe,0xff,
+       0xff,0xf9,0xf7,0x7f,0xfa,0xe7,0xff,0x6a,0xff,0xff,0xbf,0x8e,0xbb,0xdf,0x23,0xd5,
+       0xff,0xdd,0xff,0xe1,0xff,0xff,0xc7,0xff,0xe3,0x9f,0xff,0xff,0x4b,0xf7,0x7f,0xff,
+       0xff,0xff,0xee,0x1f,0xff,0xff,0xcf,0xbf,0xeb,0xfc,0x8d,0xff,0x9e,0xe2,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0x8f,
+       0xff,0xfb,0x9f,0xff,0x72,0xbf,0x3f,0xff,0x9f,0xff,0xff,0xfd,0x93,0xf3,0xfd,0xeb,
+       0xff,0xdd,0xfa,0x2f,0xfd,0x4f,0x7f,0x3b,0xfb,0xfe,0xfd,0xfd,0xff,0xff,0xff,0xff,
+       0xc3,0x7e,0x82,0xfd,0xfd,0xff,0x8f,0xf7,0x77,0xf2,0x86,0xc6,0xff,0xff,0xbe,0x8,
+       0xdf,0x3f,0xf9,0xe3,0x7d,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xcf,0x87,0x0,0x1,0x0,0x0,0x0,0x0,0x0,
+       0x40,0x80,0x0,0x20,0x0,0x0,0x0,0x0,0x14,0x90,0x10,0x50,0x0,0x2,0x0,0x0,
+       0x80,0x6a,0x11,0x10,0x40,0x0,0x0,0x10,0x21,0x0,0x8,0xa,0x10,0x0,0x20,0x20,
+       0x0,0x0,0x4,0x0,0x1,0x0,0x22,0x8,0x2,0x0,0x8,0x20,0xa,0x0,0x0,0x0,
+       0x0,0x0,0x0,0x0,0x0,0x8,0x80,0x0,0xc0,0xf1,0xf6,0xff,0xff,0xff,0x7f,0xaf,
+       0xfc,0xb9,0xff,0xbf,0xff,0xff,0xff,0xfd,0xfe,0xbf,0x7f,0xf6,0xde,0xdf,0xfe,0x7f,
+       0x7f,0x7f,0xff,0xbe,0x7f,0xb7,0xff,0xff,0xfd,0xef,0xff,0xea,0xff,0xdf,0xff,0xff,
+       0xe3,0xff,0xfe,0xdf,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,
+       0xcf,0xff,0xff,0xfe,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xbf,0xfb,0xf6,0xff,0xff,0xff,0x7f,0xf,0x5d,0x7f,0xe7,0x77,0xf7,0xab,0xff,0xdd,
+       0xff,0xbf,0xff,0xbc,0xfb,0xff,0xfe,0xb7,0xff,0xde,0xfb,0xff,0xff,0xff,0xe7,0xfb,
+       0xff,0xf7,0x5f,0xff,0x77,0xbf,0xed,0xfd,0xe3,0xff,0x7f,0xff,0xf7,0xff,0xff,0xff,
+       0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xfd,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xfe,0xff,0xff,0xff,0xfb,0xff,0xff,0xff,0xbf,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,
+       0xc,0x0,0x0,0x23,0x0,0x81,0x0,0x1c,0xc0,0xcb,0x4,0x10,0x0,0x35,0x80,0x90,
+       0x50,0x48,0x80,0x2,0x33,0x0,0x0,0x2,0xce,0x0,0x0,0x0,0x10,0x3,0x80,0x10,
+       0x20,0x60,0x53,0xb0,0x0,0x10,0x42,0x53,0x0,0x80,0x6,0xc,0x40,0x0,0x3,0x20,
+       0x0,0x0,0x4,0xc0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+       0x30,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xef,0x77,0xff,0xff,0xff,0xf7,0xaf,0xef,0x9f,
+       0xcf,0xff,0xfe,0x77,0xfb,0xfe,0xbe,0xee,0xff,0xfa,0xff,0xf3,0xff,0xfb,0xef,0xcf,
+       0xff,0x3f,0xfe,0x3f,0xff,0xcf,0xfd,0xfd,0xa3,0xf7,0x7b,0xff,0xbf,0xff,0xef,0xff,
+       0x7f,0xfe,0xdd,0xbf,0xff,0xe3,0xff,0xef,0xff,0xef,0xf7,0xff,0xff,0xbf,0xff,0xef,
+       0xfe,0xff,0xff,0xff,0xf9,0xff,0x7f,0xfd,0xee,0xfd,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0x7f,0xbb,0xef,0xaf,0xbd,0xff,0xf7,0xee,0x77,
+       0x96,0xcd,0xfb,0x1f,0x58,0x7f,0x6c,0x6f,0xee,0xfe,0xbd,0xff,0xbd,0xf3,0xf6,0xd4,
+       0xf7,0xfe,0xdf,0xfb,0xdf,0xfb,0x77,0xef,0x63,0xf7,0xce,0xdd,0xbb,0xd,0xb3,0x73,
+       0x4c,0x71,0xec,0xcc,0xbd,0xcd,0xb0,0xfd,0xf6,0xce,0xd7,0xfe,0xdf,0xfb,0xdf,0xfb,
+       0x7f,0xef,0x77,0x6b,0xff,0xb5,0xff,0xff,0xdf,0xfe,0xf6,0xff,0xff,0xff,0x7f,0xfd,
+       0xbf,0xef,0xff,0xfb,0xef,0x6f,0xff,0xef,0xb3,0xbf,0xfd,0xff,0xd7,0x97,0x57,0xff,
+       0xf6,0xff,0xdb,0xff,0xfb,0xea,0x68,0xef,0x6f,0xff,0xbf,0xfd,0xbf,0xfd,0xef,0xf6,
+       0xa3,0x6b,0x7f,0xbf,0xfd,0xff,0xbd,0xff,0xf7,0xfe,0xf7,0x6f,0xda,0x6f,0xde,0xff,
+       0x6f,0xbf,0x6b,0x7f,0xbd,0xfd,0xbf,0xfd,0xff,0xf6,0x97,0xb6,0xfe,0xdb,0xff,0xff,
+       0xff,0xbf,0xf6,0xff,0xff,0xff,0x7f,0xff,0xf9,0xdf,0xfd,0xfc,0xff,0xff,0xff,0xbf,
+       0xc0,0xff,0x5a,0x4a,0x0,0x2f,0x0,0xfc,0xff,0xff,0xff,0xff,0x5f,0x3a,0xfc,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x23,0x80,0xc0,0xff,0xff,0x8b,0x2,0x1f,
+       0x1,0x28,0x6b,0xfd,0xff,0xef,0x4,0xf4,0xf2,0xff,0xeb,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xc3,0x6b,0xad,0xf5,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0x7f,0xd7,0xfd,0xfc,0xff,0xff,0xff,0xff,0xc3,0xff,0x5a,0xcf,0x7b,0x6f,0x43,0x3d,
+       0xfc,0xff,0xff,0xff,0x5f,0x3a,0xfc,0xff,0xff,0xff,0xff,0xff,0xdb,0xff,0xff,0xff,
+       0xa3,0xd0,0xc3,0xff,0xff,0x2e,0xf,0x1f,0x1,0xeb,0x6f,0xff,0xff,0x2f,0x7,0x34,
+       0xc0,0xff,0xeb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xc3,0x6b,0xad,0xf5,0xbf,0xfb,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xdf,0xe3,0xff,0xff,0xff,0x7e,
+       0xfe,0xff,0x3f,0xdf,0x7a,0x3f,0xec,0xfe,0xf8,0xff,0xff,0xcf,0xff,0xff,0xbc,0xef,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9f,0xe3,0xff,0xfc,0xff,0x37,0x57,0xfb,0x3f,
+       0xd2,0xfd,0xf9,0x7f,0x7f,0x70,0x24,0xe7,0x3f,0xe1,0xcf,0xff,0xff,0xe3,0xff,0xff,
+       0xff,0xff,0xff,0xf9,0xff,0xff,0xf3,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,
+       0xff,0xef,0xef,0xff,0x7d,0xff,0xff,0x7f,0x62,0x77,0xef,0xf9,0x1f,0xf7,0x6d,0xff,
+       0xfe,0xdd,0xd7,0xff,0xeb,0x7c,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xfe,0xff,
+       0xc3,0x7f,0x1f,0xae,0xff,0xf3,0x8f,0xf1,0x7f,0xe2,0x27,0xc0,0xd7,0xcf,0x9f,0x68,
+       0xff,0xd7,0xff,0xff,0xad,0xff,0xff,0xff,0xff,0xff,0xff,0xfb,0xdf,0xff,0xf9,0xff,
+       0xff,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xcf,0x3,0x0,0x1,0x0,0x0,0x40,0x0,0x89,
+       0x0,0x1,0x0,0x20,0x1,0x2,0x82,0x0,0x20,0x0,0x0,0x0,0x4,0x60,0x0,0x14,
+       0x0,0x0,0x8,0x0,0x0,0x0,0x14,0x0,0x60,0x0,0x0,0x0,0x0,0x0,0xa,0x20,
+       0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x8,0x30,0x0,0x0,0x0,
+       0x0,0x0,0x4,0x4,0x0,0x0,0x40,0x0,0xc0,0xf3,0xf6,0xff,0xff,0xff,0x7f,0xaf,
+       0xd9,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0xfe,0xff,0x7f,0xff,0x7b,0xdb,0xff,0xf7,
+       0xff,0xfd,0xff,0xf7,0x3f,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,
+       0xe3,0xfd,0xff,0xbf,0xfe,0xff,0xff,0xff,0xf5,0xf7,0xff,0x9f,0xf7,0x7f,0xff,0xff,
+       0xdf,0xff,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0x7f,0xff,0xff,0xff,0xff,
+       0xbf,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xf,0xfd,0xff,0x7f,0xee,0xf7,0xff,0xff,0xdf,
+       0xdd,0xf5,0xff,0xf6,0xef,0xbc,0xbe,0xff,0xfd,0xfe,0xff,0x7b,0xff,0xff,0xff,0xff,
+       0xff,0xef,0xff,0xff,0xff,0x9f,0xfd,0x7c,0xe3,0xef,0x37,0x7f,0xfd,0xbf,0x9f,0xfb,
+       0xff,0xff,0x7f,0xf7,0xfb,0xff,0xff,0xfd,0xdf,0xff,0xff,0x7f,0xa7,0xdf,0xff,0xff,
+       0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xfe,0xff,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,
+       0xc,0x0,0x0,0x0,0x1,0x80,0x0,0xe8,0x10,0x1,0x2,0x14,0x1,0xd,0x50,0x0,
+       0x20,0x41,0x0,0x1,0x0,0x24,0x20,0x3,0x0,0x80,0x0,0x0,0x44,0x0,0x70,0x8,
+       0x60,0x1,0x10,0x18,0x0,0x30,0x20,0x1,0x23,0xc0,0x80,0x0,0x0,0x0,0x0,0x0,
+       0x0,0x44,0x0,0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x40,0x2,
+       0x30,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xef,0x77,0xfb,0xfe,0xff,0xd7,0xff,0xcf,0xff,
+       0xdf,0xbc,0x7e,0x7e,0x77,0xfd,0xfb,0xfe,0xff,0xfd,0xbf,0xfb,0xd7,0xef,0xdf,0x8f,
+       0xfe,0xe7,0x97,0xff,0xff,0x9d,0xfc,0xb7,0xc3,0xef,0xb4,0x7f,0xfe,0xec,0x1f,0xff,
+       0xff,0xfe,0xff,0xff,0xbe,0xfb,0xfe,0xfd,0xef,0xeb,0xff,0xef,0xff,0x3f,0xff,0xff,
+       0xff,0xff,0x7f,0xff,0xff,0x7f,0xf3,0xff,0xff,0xf7,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xb5,0xff,0xf7,0xfe,0xc7,
+       0xf6,0xdf,0xfb,0xda,0xbb,0x7f,0x6f,0x7f,0xef,0xdf,0xbd,0xbb,0xb5,0xfd,0xf7,0xfe,
+       0xf7,0xfe,0xdd,0xbb,0xcb,0xfa,0x37,0x6f,0xe3,0x6,0xfe,0xdf,0x5b,0xdf,0xfb,0x7f,
+       0xef,0x6b,0x4b,0xa9,0xb9,0x7f,0x80,0xb5,0xf6,0x78,0x93,0xec,0x4d,0xfb,0xdd,0xb2,
+       0x37,0xef,0x7e,0xef,0xff,0xbd,0xff,0xff,0xff,0xdb,0xf6,0xff,0xff,0xff,0x7f,0xfd,
+       0xbf,0xef,0xff,0xdf,0xfb,0x6f,0xff,0x5f,0xff,0xbf,0xfd,0xff,0xff,0x8e,0xf6,0xff,
+       0xf7,0xff,0xdb,0xfb,0xdb,0xff,0x6f,0x7f,0xff,0x29,0xf5,0xb7,0xff,0xaf,0x95,0x1f,
+       0xe3,0xff,0xff,0xbf,0xfd,0xbf,0xfd,0xff,0xf6,0xff,0x16,0xff,0xdf,0xdf,0xdb,0x9f,
+       0x6f,0x5d,0x6f,0xe9,0xb5,0xad,0xbf,0xad,0x8f,0xf6,0xff,0xf6,0xff,0xdb,0xff,0xff,
+       0x5f,0xbf,0xf6,0xff,0xff,0xff,0x7f,0x7f,0xdf,0xdf,0x3d,0xfc,0xff,0xff,0x3f,0xc0,
+       0xff,0xff,0xff,0x5f,0xff,0x6b,0xfd,0xb,0xfd,0xff,0xff,0xaf,0xff,0xff,0xff,0xff,
+       0xfd,0xff,0xff,0xff,0xff,0xc3,0xbf,0xff,0xe3,0x51,0xf4,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf3,0xf,0xf0,0x5f,0xaa,0xf5,0xff,0xff,0xff,0xff,0xff,0xda,0x42,0xcf,
+       0xf3,0x3c,0xfd,0xff,0xff,0xff,0xff,0xff,0xef,0xfe,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0x7f,0xf7,0x3f,0xfc,0xff,0xff,0x3f,0xc0,0xff,0xff,0xff,0x5f,0xff,0x6b,0xfd,0xb,
+       0xfd,0xff,0xff,0xaf,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,0xc3,0xbf,0x9f,
+       0xa3,0x78,0xf4,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf3,0x7f,0xfc,0x5f,0xaa,0xf5,
+       0xff,0xff,0xb7,0xd6,0x52,0xda,0x42,0xcf,0x3f,0x3f,0xfd,0xff,0xff,0xff,0xff,0xb7,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0x39,0xfe,0xff,0xcf,0xff,0xff,0xff,0x7f,0xff,0xfb,0xff,0xff,0x7e,
+       0xff,0xff,0xfd,0xe3,0xe7,0xff,0xf3,0xf1,0xe3,0xf,0xfe,0xff,0x7b,0xff,0xff,0xff,
+       0xff,0xbf,0xef,0xbb,0xcf,0xff,0xff,0xff,0xff,0xff,0xbd,0x9f,0xaf,0x38,0xf7,0xf1,
+       0x3e,0xac,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,
+       0xff,0xff,0x9f,0xff,0x7a,0xff,0xff,0xff,0xf7,0x7b,0xff,0x3f,0xff,0xf7,0x7f,0xfa,
+       0xfe,0xdf,0xff,0xff,0xff,0x7f,0xff,0xbf,0xaf,0xff,0xfd,0xff,0xa7,0xa2,0xf7,0xde,
+       0x2,0x7f,0xe6,0x7d,0xff,0xff,0xff,0xff,0xff,0xff,0xe7,0xde,0xef,0xf7,0xfb,0x7f,
+       0xdf,0x3f,0xf9,0x1f,0xfc,0x87,0xec,0xf1,0xf7,0x8f,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xcf,0x3,0x0,0x0,0x0,0x0,0x0,0x10,0x8,
+       0x2,0x8,0x0,0x0,0x4,0x10,0x4,0x40,0x0,0x30,0x0,0x10,0x0,0x2,0x0,0x80,
+       0x8,0x0,0x0,0x1,0x0,0x1,0xc,0x14,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0x0,
+       0x0,0x8,0x0,0x0,0x0,0x80,0x2,0x0,0x4,0x88,0x0,0x80,0x0,0x8,0x40,0x0,
+       0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0xd0,0xf1,0xf6,0xff,0xff,0xff,0x7f,0xaf,
+       0xf9,0xfb,0xf7,0xff,0xfe,0xff,0xdf,0xff,0xff,0xff,0xef,0xff,0xff,0xfe,0xbf,0xff,
+       0xfb,0xff,0xd7,0xfe,0xbf,0xff,0xff,0xff,0x7f,0xff,0xfb,0xeb,0xff,0xff,0xfb,0xff,
+       0xa3,0xff,0xdf,0xff,0xfe,0xff,0xff,0xff,0xff,0xf7,0xcf,0x7f,0xff,0xff,0xbf,0xff,
+       0xff,0xff,0xdf,0xfb,0x9f,0xff,0xff,0xbf,0x7d,0xff,0xfe,0x7f,0xff,0xff,0xff,0xff,
+       0xbf,0xfb,0xf6,0xff,0xff,0xff,0x7f,0x1f,0xed,0xf6,0x7d,0xfb,0xdf,0xff,0xff,0xef,
+       0xf7,0xbf,0xff,0xce,0xef,0xff,0xbe,0xfb,0xff,0xff,0xeb,0xfc,0xbf,0x6d,0x7f,0xff,
+       0xbf,0xbf,0xea,0xfd,0x77,0xdd,0xbf,0xaf,0xe3,0xff,0x6f,0xef,0xff,0xba,0xdd,0xff,
+       0xff,0x7f,0xf7,0xf6,0xbf,0xef,0xff,0xfd,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xbf,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xcf,0xbf,0xf0,0xf6,0xff,0xff,0xff,0x7f,0xf,
+       0xc,0x4,0x11,0x0,0x0,0x10,0x10,0x0,0x84,0x4,0x2,0x8,0x20,0x40,0x2e,0x40,
+       0x4,0x8,0x43,0x0,0x0,0x6,0x20,0x0,0x2,0x40,0x0,0x0,0x2c,0x80,0x22,0x0,
+       0x20,0x34,0x0,0x0,0x2,0x30,0x0,0x1,0x64,0x0,0x0,0x30,0x0,0x0,0x0,0x24,
+       0x0,0x6,0x80,0x40,0x1,0x0,0x0,0x1,0x0,0x20,0x0,0x0,0x0,0x80,0x0,0x0,
+       0x30,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xbf,0xd7,0xff,0xff,0xfb,0xdf,0xff,0x8f,0xee,
+       0xff,0x9d,0x7f,0xde,0xaf,0x74,0xfc,0xfc,0xef,0xfb,0xf,0xf2,0xbf,0xcd,0xb7,0xce,
+       0xff,0x4f,0xff,0x37,0x7e,0x9f,0xfe,0x5f,0xe0,0xf5,0x2d,0xff,0xbf,0xbf,0x9f,0xfe,
+       0xff,0xbf,0xff,0xf2,0xfe,0xfb,0xff,0xff,0xff,0xdf,0xff,0xff,0xef,0x1f,0xff,0xff,
+       0xfe,0xff,0xec,0x7f,0xfe,0xff,0xff,0xfc,0xef,0xfd,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0x7f,0xef,0xff,0xbf,0xbd,0xff,0xf6,0x3e,0xf7,
+       0xee,0xdd,0xfb,0x5d,0x53,0x6f,0xec,0x6a,0x60,0xbd,0xbd,0xdf,0xbd,0x33,0xf7,0x3e,
+       0xf7,0xce,0xdd,0x3b,0xdf,0xfb,0x7f,0xef,0xe3,0xf7,0xee,0xdc,0xfb,0xda,0xf8,0x6b,
+       0xef,0x73,0xed,0xdc,0xbd,0xcb,0x0,0x3b,0xf3,0xf6,0xc6,0xfe,0xdf,0xdb,0x5f,0xfb,
+       0x7f,0xef,0x7f,0xed,0xff,0xb5,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0x7d,
+       0xfb,0xff,0xff,0xdb,0xff,0x6f,0xff,0x6e,0xbf,0xb5,0xdd,0xbf,0xfd,0xff,0xf7,0xff,
+       0xff,0xff,0xdb,0xff,0xff,0x6b,0x69,0xeb,0x6f,0xf7,0xbf,0xc5,0xbf,0xfd,0xff,0xf6,
+       0xe3,0x6f,0xff,0xbf,0xfd,0xbf,0xdf,0xaf,0xf6,0xaf,0xf6,0xbe,0xdb,0xfb,0xff,0x7a,
+       0x6d,0xd9,0x7f,0xff,0xbf,0xfd,0xbf,0xfd,0xff,0xf6,0xf6,0xb6,0x5a,0xda,0xff,0xff,
+       0xdf,0xbe,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,
+       0xfc,0xff,0xff,0xff,0xff,0xf,0xfd,0x2b,0x49,0xfc,0xff,0xf,0x5,0xf0,0xff,0xbf,
+       0x0,0xc0,0x8,0xff,0xff,0xff,0xff,0xff,0x23,0x80,0xc2,0xff,0xff,0xa,0x52,0xff,
+       0x43,0xfd,0xff,0xff,0x2f,0x25,0x24,0x35,0x80,0x80,0xd2,0xff,0xff,0xff,0xf3,0xff,
+       0xff,0xff,0x6b,0xfd,0xaf,0xf5,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xff,0x7f,0xfd,0x3f,
+       0x6b,0xfd,0xff,0xf,0x2d,0xf4,0xff,0xbf,0x0,0xf0,0x3c,0xff,0xff,0xff,0xff,0xff,
+       0xa3,0xc2,0xc2,0xff,0xff,0x5a,0x5a,0xff,0xc3,0xfb,0xcd,0xff,0x2f,0xa5,0xa5,0xb4,
+       0xc2,0x83,0xd4,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0x6b,0xfd,0xaf,0xf5,0xbf,0xfb,
+       0xb7,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,
+       0xfc,0xff,0xe7,0x27,0xff,0xff,0xcb,0xff,0xec,0xff,0x7f,0xd0,0xe7,0xff,0xfd,0xc4,
+       0x1f,0xfc,0xff,0xf2,0xff,0xff,0xff,0xff,0xc3,0xdf,0xfe,0xff,0x13,0x3f,0xf3,0xbf,
+       0x5f,0xfc,0xcf,0xff,0xf8,0xfe,0x3f,0x7,0x85,0xd8,0x8f,0xff,0xff,0xeb,0xbf,0xff,
+       0xff,0xff,0xf3,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0x8f,
+       0xff,0xf6,0xff,0xfb,0x7f,0xff,0x7f,0xff,0xfd,0xfd,0xff,0xff,0x9f,0xf6,0xfd,0xf2,
+       0x17,0xd2,0xef,0xcf,0x33,0xd,0xff,0xff,0x7e,0xfc,0xff,0xbf,0xff,0xff,0xff,0xff,
+       0xc3,0xff,0xbd,0xfe,0xff,0xff,0x71,0xf4,0xbd,0x33,0xe7,0xdd,0x7f,0xbf,0x3e,0x73,
+       0xdf,0x42,0xfe,0x9f,0x7d,0xff,0xf8,0xff,0xf7,0xff,0xff,0xff,0xdf,0xff,0xf9,0xff,
+       0x7f,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xcf,0x2,0x0,0x10,0x0,0x0,0x0,0x0,0x0,
+       0x2,0x10,0x0,0x21,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x82,0x3,0xc,
+       0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x22,0x0,0x40,0x0,0x1,0x2,
+       0x0,0x10,0x20,0x29,0x10,0x0,0x2,0x40,0x0,0x1,0x8,0x0,0x0,0x1,0x0,0x0,
+       0x0,0x80,0x0,0x0,0x0,0x0,0x0,0x0,0xc0,0xf3,0xf6,0xff,0xff,0xff,0x7f,0xbf,
+       0xfc,0xff,0xff,0xff,0x7f,0xff,0xff,0xf7,0xff,0xff,0xdf,0xfe,0x7b,0xd7,0xfb,0xfb,
+       0xff,0xff,0xff,0xff,0xdf,0xff,0xff,0xbf,0xdf,0xef,0xfd,0xfd,0xff,0xff,0xff,0xfe,
+       0xe0,0xff,0xdf,0xff,0xff,0xff,0xff,0xff,0xbf,0xfb,0xff,0xff,0xbf,0xff,0xbf,0xdb,
+       0xbf,0xfe,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xff,0xdf,0xdf,0xbf,0xff,0xff,0xff,
+       0x3f,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xf,0xbf,0xff,0xff,0xf7,0xff,0xff,0xff,0xfd,
+       0xff,0xff,0xdf,0xf7,0xcd,0x79,0xff,0xff,0xdb,0xf6,0xbf,0xfe,0xdf,0xf3,0xef,0xff,
+       0xdd,0xd7,0xbf,0xdf,0xf7,0xff,0xd7,0x7d,0xe3,0xf9,0xff,0xff,0xff,0xf7,0xde,0xfc,
+       0xde,0x5f,0xdf,0xf6,0xff,0x6f,0x6b,0xfb,0xff,0xfd,0xeb,0xef,0xfe,0xff,0xd7,0xef,
+       0xff,0xf7,0xdf,0xfb,0xfe,0xf7,0xff,0xde,0xfe,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,
+       0x2c,0x2,0x10,0x0,0x0,0x20,0x0,0x80,0x0,0x0,0x0,0x1,0x11,0x20,0x20,0x0,
+       0x0,0xc,0x10,0x20,0xb,0x0,0x40,0x1,0x5,0x0,0x0,0x10,0x0,0xc0,0x0,0x0,
+       0x20,0x0,0x10,0xc8,0x0,0x60,0x1,0x4,0x0,0xc0,0x90,0xa5,0x0,0x20,0x2,0x0,
+       0x3e,0x0,0x1c,0x0,0x32,0x0,0x10,0x0,0x0,0x0,0x20,0x0,0x0,0x71,0x0,0x12,
+       0x30,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xef,0xe6,0xf5,0xbf,0xf7,0xfb,0xff,0xff,0xdd,
+       0x6f,0xbf,0x2f,0xff,0xbf,0xf9,0xf7,0x7e,0xdf,0xfa,0xdb,0xe8,0x7f,0xef,0xee,0xcd,
+       0x7f,0x9e,0xfb,0xff,0x57,0xff,0xdf,0x5f,0xe3,0xfb,0x7f,0xfe,0xff,0xfb,0xbf,0xb9,
+       0xcf,0xfe,0xf4,0xfd,0x7c,0xb9,0xba,0xed,0xcf,0xed,0xdf,0xef,0xff,0xbf,0xff,0xfe,
+       0x7f,0xd7,0x7c,0xff,0xff,0x7f,0xf3,0xaf,0xff,0xf7,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xde,0xff,0xff,0xbd,0xff,0xf7,0xfe,0xc7,
+       0xfe,0x1b,0x53,0x1a,0xd9,0x6e,0xef,0x7f,0xef,0xfe,0xbd,0xbf,0xb1,0xfd,0xf7,0xbe,
+       0x36,0xfe,0xdd,0x5b,0xdf,0xfb,0x7f,0xef,0xa3,0xf2,0xd4,0x1f,0x3b,0xdb,0xbb,0x7f,
+       0xef,0x1b,0x8f,0xdd,0xbd,0xc3,0xbd,0x7f,0x7,0x2e,0xc7,0xce,0xdc,0xf8,0xd,0x3b,
+       0x73,0x6f,0x7f,0xef,0xff,0xbd,0xff,0xff,0xef,0xfe,0xf6,0xff,0xff,0xff,0x7f,0xfd,
+       0xff,0xff,0xff,0xdb,0xff,0x6f,0xff,0x7f,0xe9,0xff,0xfd,0xf3,0xcf,0xb8,0x36,0xf7,
+       0x9f,0x52,0x5f,0xf7,0xdf,0xff,0x6f,0xff,0xef,0xff,0xbf,0xfd,0xbf,0xfd,0xff,0xf6,
+       0xe3,0x6f,0xff,0xff,0xfd,0xff,0xcd,0xff,0xf6,0xaf,0xbf,0xd2,0xda,0x5b,0x5a,0xeb,
+       0xff,0x5b,0x7f,0xff,0xad,0xc7,0xff,0xc5,0xff,0xf6,0xff,0xf6,0xff,0xdb,0xff,0xff,
+       0xff,0xbf,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xd0,
+       0xff,0x4a,0xff,0xd0,0x40,0xff,0xff,0x7f,0xfd,0xff,0xff,0xaf,0xf4,0xff,0xff,0xff,
+       0x36,0xf4,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0x3f,0xc0,0xb,0xff,0xa,0x0,0xff,
+       0xff,0xf,0x1,0xff,0x2f,0x5,0x30,0xf0,0x90,0x90,0x12,0xc0,0xc0,0x0,0x4a,0x0,
+       0x3,0x1,0xfc,0xff,0xff,0xff,0xbf,0xfd,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xd0,0xff,0x52,0xff,0xdb,0x40,0xff,0xff,0x7f,
+       0xfd,0xff,0xff,0xff,0xfc,0xff,0xff,0xff,0x36,0xdc,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xe3,0xff,0xfc,0xb,0xff,0xf,0xfa,0xff,0xff,0xf,0xd,0xff,0x2f,0xa5,0xb0,0xb0,
+       0xf0,0xb0,0x12,0xd4,0xd0,0xeb,0x52,0x50,0xc3,0x3,0xfc,0xff,0xff,0xff,0x7f,0xfd,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xb1,
+       0x9f,0xff,0xf2,0x79,0xf2,0xff,0x8f,0xfd,0xfb,0xdf,0x7f,0xfe,0xff,0xff,0xff,0xfa,
+       0xff,0xfc,0xff,0xcb,0xff,0xff,0xff,0xff,0xe3,0x71,0xfc,0xff,0xfe,0x7f,0xf1,0xff,
+       0xdf,0xf4,0xe8,0x5f,0xb9,0xe,0x32,0xf7,0x3f,0xcd,0xa7,0x1d,0x9f,0x20,0x9f,0xf7,
+       0xfe,0x63,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,
+       0xff,0xff,0xff,0xff,0xff,0xff,0x3f,0xfe,0xff,0x7d,0x1f,0xf8,0x79,0x36,0xfd,0xff,
+       0xb8,0xde,0xfb,0x8f,0xff,0x67,0xbf,0xff,0x7e,0x7e,0xfc,0xfe,0xff,0xff,0xff,0xff,
+       0xe3,0xff,0xff,0x7c,0x5f,0x7f,0xef,0xf2,0xff,0xa3,0xae,0xc6,0x7a,0x7f,0xbe,0x7f,
+       0xdf,0x12,0xfb,0x7f,0x7c,0x83,0xfd,0x7f,0xf4,0x7b,0xfc,0xff,0xff,0xff,0xff,0xef,
+       0xff,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xcf,0x3,0x8,0x0,0x0,0x0,0x0,0x0,0x48,
+       0x0,0x1,0x0,0x23,0x0,0x48,0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x0,0x0,
+       0x8,0x0,0x0,0x0,0x0,0x20,0x20,0x0,0x20,0x8,0x0,0x8,0x0,0x0,0x0,0x0,
+       0x40,0x8,0x4,0x2,0x2,0x40,0x2,0x0,0x0,0x8,0x9,0x0,0x0,0x42,0x0,0x25,
+       0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x0,0xc0,0xf3,0xf6,0xff,0xff,0xff,0x7f,0xbf,
+       0xdd,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0x6e,0xff,0xef,0xff,0xab,0x7f,
+       0xdf,0xbf,0xfb,0xff,0xff,0xff,0xf7,0xfb,0xff,0xff,0x5f,0xef,0xff,0x7f,0xff,0xff,
+       0xe3,0xff,0xff,0xff,0xaf,0xfd,0xf7,0xff,0xff,0xff,0xfd,0xfd,0xdf,0xbf,0xdf,0xff,
+       0xff,0xeb,0xff,0x7f,0xff,0xaf,0xff,0xff,0xff,0xbb,0xfe,0xff,0xff,0xff,0xff,0xff,
+       0xbf,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xf,0xff,0x7f,0x7f,0xfd,0xff,0xff,0xff,0xdf,
+       0xff,0x3f,0xef,0xdf,0xef,0xdf,0xff,0xff,0xbe,0xff,0x7f,0xbf,0xfd,0xff,0xff,0xff,
+       0xff,0x7a,0xff,0xcf,0xef,0xff,0xdf,0xef,0xe3,0xbf,0xad,0xd7,0xff,0xf6,0xde,0xfb,
+       0xff,0xdf,0xd6,0x71,0xff,0x4f,0x97,0xff,0xfc,0xff,0x6f,0xee,0x9d,0xff,0xff,0xff,
+       0xf7,0xff,0xff,0xff,0xff,0xff,0xaf,0xff,0xff,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,
+       0x6c,0x0,0x30,0x1,0x1,0x10,0x0,0x18,0x8,0x0,0x20,0xc4,0x2,0x44,0xd2,0x0,
+       0x0,0x4,0x0,0x0,0x0,0x0,0x80,0x0,0x3,0x3,0x0,0x7,0x3,0x60,0x10,0x80,
+       0x0,0x0,0x0,0x10,0x8,0xc8,0x80,0x8,0x0,0x0,0x14,0xb9,0x80,0x0,0xa4,0x1,
+       0x0,0x3,0x40,0x0,0x0,0x1,0x40,0x0,0x0,0x14,0x0,0x0,0x0,0xc4,0x0,0x10,
+       0x30,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xff,0x9f,0xff,0x7f,0xff,0xde,0xff,0xfd,0xff,
+       0x7f,0xd7,0xbf,0xee,0xef,0xde,0x7f,0xfa,0xba,0x7f,0x3f,0xf1,0xbf,0xfd,0xff,0x6f,
+       0xff,0x6f,0xff,0x8d,0xff,0xff,0x7d,0xee,0xc3,0xbf,0xbf,0xfe,0xbf,0xfe,0xdf,0xfe,
+       0xef,0xfc,0x99,0xff,0xff,0x62,0xff,0xdf,0xff,0xef,0x5f,0xbf,0xf7,0xbc,0xbd,0xaf,
+       0xfe,0xff,0xfe,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xaf,0xbd,0x7f,0xf7,0xf6,0xf6,
+       0xf4,0xdd,0xfb,0xcd,0x3b,0x2b,0x4f,0x1b,0x8f,0xfd,0xbd,0xff,0xbd,0xff,0xf7,0xbe,
+       0x6,0xfe,0xdb,0xfb,0xdb,0xbb,0x7f,0x6f,0xe1,0xf7,0xee,0xdc,0x5b,0x5a,0xfb,0x7f,
+       0xef,0x6f,0x4f,0xcf,0x3d,0xc5,0xbd,0x73,0x7,0x8e,0x2,0xd4,0xb,0xd0,0x9c,0x33,
+       0x33,0xef,0x7c,0xef,0xff,0xbd,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xfd,
+       0xed,0xff,0xff,0xff,0x6f,0x6d,0xff,0x7f,0x7f,0xbf,0xff,0xff,0xaf,0xf4,0xff,0xd7,
+       0xdf,0xb1,0xdb,0xfb,0xdb,0xff,0x6f,0xff,0xff,0xef,0xbf,0xfd,0xff,0xff,0x94,0xd7,
+       0xe1,0xff,0xaf,0xe5,0xfd,0xff,0xff,0xf6,0xf6,0xaf,0x7f,0x53,0x7f,0x5c,0xda,0xff,
+       0xff,0xed,0xff,0xeb,0xff,0xbf,0xfd,0xdd,0xaf,0xf6,0xfe,0xf6,0xbf,0xdb,0xff,0xff,
+       0x5f,0xbf,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xbf,0xae,0xf0,0xff,0xff,0xff,0xf0,
+       0xff,0xff,0xff,0xff,0xda,0xff,0x3,0x7c,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,
+       0x92,0xf0,0xff,0xff,0xc0,0xff,0xff,0xff,0x23,0x80,0xf0,0xff,0xff,0xf,0xff,0xff,
+       0xff,0x3,0x0,0xaf,0x20,0xa5,0xe1,0xf7,0x0,0x80,0x12,0xc0,0x3,0x0,0xc0,0x40,
+       0xb,0x4c,0x3f,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0x7f,0xab,0xf5,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x0,0xff,0x3,0x7c,
+       0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0x86,0xfe,0xff,0xff,0xd0,0xff,0xff,0xff,
+       0xc3,0xb3,0xf0,0xff,0xff,0xf,0xff,0xff,0xff,0x3f,0xf,0xaf,0x25,0xf5,0xe3,0xf7,
+       0x80,0xbe,0xd4,0xfa,0xf,0xdb,0xd0,0x40,0xb,0x0,0x0,0xfc,0xff,0xff,0xbf,0xfd,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xbf,0xff,0xff,0xff,0xfc,0xff,
+       0xff,0xff,0xff,0xfc,0xf1,0xcf,0xff,0xf5,0xfe,0xdf,0x7f,0xfe,0xff,0xff,0xff,0xff,
+       0xef,0xff,0xff,0x23,0xbb,0xff,0xef,0xbf,0xa3,0xee,0xfd,0xf7,0x9f,0x7d,0xff,0xff,
+       0xff,0xe7,0xe8,0x3d,0xed,0x7f,0xe5,0xdf,0x27,0xe7,0x23,0xbc,0xfe,0xc9,0x27,0xf0,
+       0x3d,0xea,0xfd,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,
+       0xfe,0xfe,0xff,0xeb,0x66,0xff,0x7f,0xff,0xe3,0x9d,0xff,0xff,0x89,0x33,0xfe,0xff,
+       0xfa,0xdf,0xfd,0xff,0xff,0xff,0xff,0xff,0xfe,0x73,0x7c,0xff,0x7c,0xaf,0x37,0xfe,
+       0x3,0xbf,0xcc,0xfd,0xff,0xff,0xff,0xf7,0xff,0x43,0xcc,0xcd,0x38,0xa3,0xbf,0x78,
+       0xdf,0x3e,0x7b,0xe0,0x7c,0xe3,0x64,0x0,0xf6,0xcb,0xfc,0xff,0xfb,0xff,0xff,0xff,
+       0xff,0xf5,0xf6,0xff,0xff,0xff,0x7f,0x9f,0x43,0x8a,0x5,0x0,0x8,0x0,0x4,0x0,
+       0x2,0x8,0x0,0x0,0x8,0x2a,0x0,0x20,0x0,0x8,0x0,0x2,0x0,0x0,0x0,0x20,
+       0x48,0x0,0x1,0x0,0x10,0x0,0x2,0x10,0x20,0x0,0x0,0x90,0x80,0x1,0x0,0x2,
+       0x0,0x50,0x4,0x0,0x0,0x11,0x6,0x0,0x42,0x0,0x78,0x0,0x8,0x2,0x48,0x0,
+       0x24,0x0,0x0,0x0,0x40,0x0,0x80,0x0,0xc0,0xf3,0xf6,0xff,0xff,0xff,0x7f,0x9f,
+       0xfc,0x5e,0xef,0xff,0xbf,0xdd,0xdf,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xfd,0xff,
+       0xff,0xfe,0xff,0xfe,0xff,0xff,0xff,0xbf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,
+       0xe0,0xff,0xfc,0x7d,0x7f,0xff,0xff,0xff,0xbf,0xff,0xff,0x4f,0xdf,0xfe,0xfd,0xff,
+       0x7f,0xff,0x7f,0xff,0xff,0xff,0x7d,0xfd,0xf3,0xf7,0xff,0xff,0xff,0xff,0xff,0xef,
+       0xbf,0xfd,0xf6,0xff,0xff,0xff,0x7f,0xf,0xfd,0xd1,0x55,0x77,0x9f,0xf7,0xfe,0x5f,
+       0xef,0x76,0xfd,0x7e,0x7f,0xbf,0xb6,0x7f,0x7f,0xfb,0xfa,0x7f,0xff,0xfd,0xff,0x7f,
+       0xff,0x2f,0xe7,0xf7,0xfc,0xfb,0x6f,0xfd,0xc3,0xd9,0xff,0xff,0xff,0xdf,0xff,0xfc,
+       0xff,0xdf,0xff,0x7a,0xdf,0x7e,0xea,0xbd,0xdf,0xbf,0x2f,0xaf,0x36,0xff,0xfb,0xff,
+       0xff,0xfe,0xfb,0xff,0xff,0xff,0xfd,0xff,0xff,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,
+       0x8c,0x0,0x0,0x30,0x0,0xc,0x41,0xc1,0x0,0x60,0x8,0x49,0x13,0x9,0xc7,0x10,
+       0x62,0x0,0x0,0x0,0x83,0x0,0x0,0x40,0x10,0x44,0x40,0x23,0x0,0x0,0x11,0x54,
+       0xe0,0x10,0x90,0x1,0x0,0x1,0x3,0xc0,0x0,0x82,0x4c,0x24,0x11,0x10,0x3,0x0,
+       0x41,0x3,0x68,0x80,0xc0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc0,0x80,0x0,
+       0x30,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xff,0xef,0xaf,0x9e,0xff,0x9d,0xff,0xca,0xdf,
+       0x6f,0xff,0x3d,0x5f,0xbf,0xff,0x6f,0x2c,0xc9,0xf0,0xff,0xf3,0xff,0xf5,0x7f,0xfe,
+       0xe9,0xfd,0xff,0xbf,0xfc,0x7f,0xec,0x7f,0xe0,0xff,0xf3,0x5f,0x3f,0x7f,0xbf,0xfc,
+       0xc7,0xf8,0x5a,0xf8,0x1f,0xf3,0xeb,0xa7,0xef,0xef,0xfb,0xff,0xfb,0xbd,0x6e,0x7f,
+       0xef,0xed,0xfa,0xff,0xfb,0xff,0xff,0xdf,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xaf,0x6f,0x6f,0xdf,0xbf,
+       0xbe,0xbf,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xeb,0xdf,0xdf,0x7f,0xef,0xef,0xef,0xdf,
+       0xff,0xbf,0xff,0x7f,0xff,0xfb,0xff,0xf7,0xe3,0xff,0xfe,0xff,0x7f,0xff,0xff,0xff,
+       0xff,0xfd,0xef,0xff,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xbf,0x7f,0xff,0xff,
+       0xff,0xff,0xff,0xeb,0xfb,0xfb,0xff,0xfb,0xeb,0xff,0xf6,0xff,0xff,0xff,0x7f,0xdb,
+       0xff,0xff,0xcf,0xbd,0xf5,0xf7,0x76,0xe7,0xb6,0xdf,0xfb,0x9c,0xbb,0x6f,0xcf,0x68,
+       0x4f,0xfd,0xbd,0xfb,0x3d,0xfb,0xf7,0x2c,0xf3,0xcc,0xdd,0x3b,0xdf,0xfb,0x7f,0xef,
+       0xe3,0x96,0xfe,0xdf,0xfb,0xdf,0xfb,0x7f,0xef,0x77,0xcf,0xce,0x3d,0xa3,0xb4,0xff,
+       0xd7,0x3e,0xd3,0xcc,0xdc,0xfa,0xdf,0xfb,0x7f,0xef,0x7f,0xef,0xff,0xbd,0xff,0xff,
+       0xff,0xd7,0xf6,0xff,0xff,0xff,0x7f,0xfd,0xee,0xff,0xff,0xff,0xed,0x6f,0xff,0x7c,
+       0xef,0xa6,0xfd,0xff,0xdd,0x8f,0xf6,0xcf,0xfe,0xd3,0x7e,0xf6,0xdb,0xd7,0x6f,0xdd,
+       0x6c,0xf1,0xbb,0x65,0xa3,0xfd,0xff,0xf6,0x63,0x6f,0xff,0xbf,0xad,0xbf,0xfd,0xff,
+       0xf6,0xff,0xf7,0xb6,0x7b,0xdb,0xdb,0xff,0x6f,0x73,0x6b,0xff,0xbd,0xfd,0xbf,0xfd,
+       0xff,0xf6,0xff,0xf6,0xff,0xdb,0xff,0xff,0xff,0xbf,0xf6,0xff,0xff,0xff,0x7f,0x7f,
+       0xf7,0x7f,0x7,0x20,0xfc,0xff,0xbf,0x0,0xd0,0xff,0xff,0xcf,0x42,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9f,0x1f,0xcf,0xf5,0xff,0xff,0xff,0xcf,0xff,
+       0x23,0xc9,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x43,0x1d,0xa,0x3e,0xfc,0xf4,
+       0xf0,0x7f,0xbd,0xff,0x0,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xbf,0xf7,0xaf,0xa0,0xff,0xff,0xbf,0x0,
+       0xd0,0xff,0xff,0xcf,0x42,0x6f,0xff,0xf7,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf5,0xff,0xff,0xff,0xcf,0xff,0x3,0xc9,0xfc,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xeb,0x43,0x3d,0xf,0xfe,0xff,0xf0,0xff,0x7f,0xfd,0xff,0x5,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0x9f,0xbf,0xff,0xff,0xcd,0x4f,0xfe,0xfb,0x37,0xaf,0x7f,0xff,0x7f,0xf9,
+       0xc4,0x3f,0x3f,0xf6,0xff,0xbf,0xf7,0xff,0xff,0xff,0x77,0xf0,0xe7,0xff,0xff,0xf5,
+       0xe3,0x7f,0xfe,0xff,0xeb,0xff,0xff,0xff,0xff,0xbf,0xe9,0xff,0xb,0x71,0xde,0xe7,
+       0xff,0xd7,0x7f,0x3f,0x2f,0xb2,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,0xff,0xff,0xff,0x4b,0xe,0xff,0xbf,0xff,
+       0xf9,0x73,0xff,0x79,0xe4,0xf7,0x7b,0xeb,0xdf,0xd3,0xfe,0x7f,0xf9,0xff,0xf7,0xbb,
+       0xfe,0xbd,0xff,0x5f,0xff,0xff,0xff,0xff,0xe3,0xfe,0xfd,0xfd,0xff,0xff,0xff,0xff,
+       0xff,0xdf,0xff,0xdd,0x3b,0xcd,0x7f,0x47,0xff,0xff,0xfd,0x7f,0xfd,0xc7,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf5,0xf6,0xff,0xff,0xff,0x7f,0x8f,
+       0xb,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x4,0x0,0x40,0x0,0x26,0x4,0xc,
+       0x11,0x2,0x2,0x0,0x4,0x0,0x40,0x90,0x50,0x0,0x20,0x4,0x22,0x20,0x0,0x1,
+       0x20,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x20,0x8,0x0,
+       0x0,0xc8,0x0,0x2,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,
+       0xc0,0xf3,0xf6,0xff,0xff,0xff,0x7f,0xbf,0xfd,0xfa,0xff,0x7f,0xff,0xdf,0xff,0xfc,
+       0x7b,0xff,0xfd,0xfe,0xdd,0xff,0xff,0xff,0xff,0xfb,0xdf,0xfe,0xbf,0xfb,0xff,0xbe,
+       0xff,0xde,0x7b,0x7f,0xbf,0xff,0xff,0xff,0x63,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xf7,0xef,0xdc,0xff,0xff,0xff,0xff,0xbf,0xbf,0xfd,0x7f,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xfd,0xf6,0xff,0xff,0xff,0x7f,0xf,
+       0xdd,0x7d,0xc3,0xff,0xfa,0xd7,0xfa,0xd7,0xbb,0x7b,0xfb,0x97,0xdf,0xeb,0xbf,0xbf,
+       0x5f,0xd3,0xfb,0x7f,0xff,0xdd,0xef,0xff,0xdd,0x7b,0xbf,0xdf,0x75,0xdf,0x7f,0xdf,
+       0x3,0xdf,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xd8,0xe6,0xfb,0xff,0xfb,0xff,
+       0xd7,0xf7,0xff,0xf7,0xfc,0xf9,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xdf,0xbf,0xff,
+       0xff,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,0x2c,0x64,0x82,0x11,0x1,0x0,0x18,0x9,
+       0x88,0x81,0x0,0x80,0xc4,0x0,0x26,0xc0,0x8,0x4,0x24,0x8,0x30,0x36,0x0,0x2,
+       0x80,0x40,0x8,0x8,0x0,0x0,0x33,0x0,0x20,0x1,0x40,0x13,0x3,0xc1,0x0,0x3,
+       0xd,0x44,0x8,0x8,0x34,0x0,0x10,0x40,0x0,0x2,0x0,0x40,0x80,0x0,0x0,0x0,
+       0x0,0x20,0x0,0x0,0x0,0x0,0x3,0x10,0x30,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xbf,
+       0xa7,0x7a,0xeb,0xfb,0xdb,0xff,0xcc,0xfd,0xaf,0x7e,0x75,0xcd,0xfb,0xd8,0xbe,0xee,
+       0xcf,0xe7,0x9f,0xb3,0xfe,0xb7,0xef,0xff,0xbf,0x7e,0xaf,0xef,0x79,0xfe,0x3f,0xd7,
+       0xe3,0xdf,0xef,0xff,0x3b,0xdf,0xff,0xff,0xdf,0xff,0xfe,0xf6,0xbf,0xe3,0xff,0xaf,
+       0xb7,0xca,0xff,0x7f,0xf7,0x37,0xff,0xbf,0x7f,0xff,0xff,0xff,0xfb,0xbf,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xcf,0xb9,0xfb,0xf7,0x3e,0xf7,0xfe,0xdd,0x3b,0xdc,0xbb,0x6f,0xef,0x74,
+       0xcf,0xce,0xbd,0xcd,0xbc,0x3b,0xf3,0x14,0xf3,0xce,0xcc,0xfb,0xdf,0x53,0x7f,0xeb,
+       0xe3,0xf7,0xfe,0xdf,0xfb,0xdf,0xfb,0x7f,0xef,0x73,0xef,0xfe,0xbd,0xff,0x2d,0x75,
+       0x97,0xfe,0x92,0xfe,0x5a,0x52,0xdf,0xfb,0x7f,0xef,0x77,0xef,0xcf,0xbd,0xff,0xff,
+       0xff,0xdd,0xf6,0xff,0xff,0xff,0x7f,0xfd,0xed,0xff,0xbf,0xde,0x7f,0x6f,0xd9,0x6e,
+       0xff,0xbf,0xcd,0xe5,0xff,0xfe,0xb7,0xee,0xb7,0xd1,0x7a,0x3d,0xdb,0xdc,0xfa,0xed,
+       0x6c,0xff,0xa6,0xdd,0xfb,0xbf,0xb6,0xbf,0xe2,0x6f,0xff,0xbf,0xfd,0xbf,0xfd,0xff,
+       0x96,0x95,0xf7,0xff,0xdf,0xdb,0xda,0x7f,0x6d,0x7f,0x6d,0xef,0xad,0xfd,0xbf,0xfd,
+       0xff,0xf6,0xff,0xf6,0xff,0xdb,0xff,0xff,0x9f,0xbf,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0x1c,0xf8,0x3f,0x0,0xc0,0xd7,0xff,0xff,0x0,0x0,0xff,0xff,0xff,
+       0x3,0xfc,0xff,0x3d,0xfc,0xff,0x97,0xfe,0xfd,0xfd,0x3c,0xff,0xff,0xff,0xff,0x6b,
+       0xe1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3,0xfc,0xff,0x1f,0xc,0xff,
+       0x37,0xbf,0xff,0xf7,0xdb,0xfa,0xff,0xff,0xff,0xff,0x3,0xfd,0xfc,0xff,0x7f,0xfe,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0x7f,0xfb,0xff,0xff,0x1c,0xf8,0x3f,0x80,0xc0,
+       0xff,0xff,0xff,0x3,0x5a,0xff,0xff,0xef,0xdf,0xff,0xff,0xff,0xa5,0xff,0xd7,0xff,
+       0xff,0xff,0xff,0xff,0xf7,0xff,0xff,0x6b,0xe1,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0x1f,0x3,0xfd,0xff,0x3f,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0x3,0xfd,0xfc,0xff,0xbf,0xfe,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xf,0xfe,0xff,0xc7,0xfc,0xfe,0xdf,0xff,0xe0,
+       0xf7,0xff,0x3c,0xf1,0x23,0xdf,0x4,0xde,0x93,0xff,0xf9,0xab,0xfc,0xfe,0xff,0x8f,
+       0xc3,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,0xff,0xf4,0xbf,0x7f,0x70,0x27,0x87,
+       0xcf,0xfc,0xfd,0x1f,0xce,0x7b,0xff,0xff,0xff,0xff,0xff,0xd2,0xff,0x3f,0xfe,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,0xfe,0xff,0xcf,0x2b,0xfe,0x1f,0xbf,0xff,
+       0xdf,0xfe,0xff,0x3c,0xbf,0xf7,0xff,0xcf,0x3e,0xca,0xba,0xce,0xff,0x40,0xf7,0x19,
+       0x7e,0x3e,0xff,0xff,0xfc,0x8f,0xf6,0xcf,0xc3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xe3,0x3c,0xde,0xff,0xbf,0xfe,0xf,0xff,0x2f,0x7e,0x1d,0xfc,0xd3,0xff,0xff,
+       0xff,0xff,0xf7,0xdf,0xff,0xff,0xff,0xff,0xff,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xcf,
+       0x3,0x14,0x0,0x0,0x2,0x1,0x2,0x4,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0xc,
+       0x0,0x84,0xc1,0x0,0x40,0x0,0x2,0x40,0x2,0x0,0x0,0x0,0x0,0x40,0x30,0x21,
+       0x20,0x0,0x0,0x0,0x0,0x10,0x20,0x0,0x20,0x0,0x0,0x80,0x40,0x0,0x48,0x20,
+       0x0,0x0,0x22,0x80,0x1,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+       0xc1,0xf3,0xf6,0xff,0xff,0xff,0x7f,0x3f,0xbc,0xff,0x97,0xb7,0xfd,0xff,0xff,0xfe,
+       0xff,0x7f,0xdf,0xf6,0xff,0xff,0x7b,0xff,0xff,0xfa,0xf7,0xbf,0xdf,0x57,0xff,0xf7,
+       0xff,0xdf,0xf9,0xfd,0xdf,0x7b,0xff,0xff,0xc3,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xfe,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,0xfd,0xf7,0xfe,0xff,0xff,
+       0xff,0xff,0xf7,0xff,0xdf,0xff,0xef,0x4f,0xbf,0xfd,0xf6,0xff,0xff,0xff,0x7f,0x8f,
+       0xaf,0xbf,0xec,0xff,0xff,0xff,0xfe,0x6d,0xd7,0xff,0xfb,0xd5,0xcf,0x3c,0xbf,0x3f,
+       0xfe,0xaa,0xef,0xff,0xd3,0xf5,0xce,0xf6,0x8d,0x73,0xed,0xef,0xd3,0xbf,0xdf,0xfd,
+       0xc3,0xfd,0xe7,0xff,0xff,0xfe,0xff,0xfd,0xfa,0xff,0xff,0xff,0xdf,0xfd,0xef,0xff,
+       0xff,0xbb,0xff,0xfd,0xf7,0xff,0xff,0xff,0xff,0xff,0xdf,0x7f,0xff,0xff,0xfe,0xf5,
+       0xff,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,0xac,0x5,0x10,0x0,0x5,0x0,0xd8,0x15,
+       0x88,0xe,0x46,0x21,0xc2,0x14,0x48,0xa0,0x6d,0x85,0x36,0xc0,0x17,0x18,0x4,0x2,
+       0x0,0x37,0x80,0x1,0x2,0x0,0x2c,0x2,0x60,0x0,0xc,0xc2,0x8,0x4,0x0,0x8a,
+       0x30,0x82,0x0,0x0,0x38,0x0,0x1,0xd0,0x0,0x9,0x0,0x18,0x4,0x28,0x0,0x10,
+       0x0,0x0,0xc,0x0,0x0,0x80,0x0,0x0,0x30,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xfa,0xde,0xb9,0xdf,0xff,0x1d,0x79,0xe3,0xaf,0xd3,0xfd,0xdf,0xfc,0xdb,0xbc,
+       0xf7,0xbd,0x7f,0xc3,0xde,0xbb,0x19,0xcf,0x4b,0xff,0xf5,0xc7,0xf6,0xff,0xff,0xdd,
+       0xe0,0xfc,0xfe,0xfe,0xff,0xff,0xff,0xd7,0xff,0xfb,0xbf,0x7f,0xaf,0xc3,0xdf,0xff,
+       0xbf,0xf,0xdf,0xff,0xe3,0x3f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xeb,
+       0xff,0xff,0xbf,0xbd,0xf3,0xf7,0xbe,0xf6,0xec,0x5b,0xbb,0xdc,0xbb,0x33,0xef,0x2b,
+       0x4c,0xdd,0x30,0xc5,0xbd,0x7b,0xf7,0x3a,0xf7,0xf8,0xdd,0xfb,0x1b,0x33,0x33,0x6f,
+       0x63,0xf7,0xfe,0xdf,0xfb,0xca,0x5a,0x77,0x6b,0x7f,0x69,0xff,0xb5,0xb5,0xb5,0x33,
+       0xb7,0x34,0xf7,0xd4,0x5f,0x63,0xdc,0x3b,0x37,0xed,0x7f,0xef,0xff,0xbd,0xff,0xff,
+       0xdf,0xfe,0xf6,0xff,0xff,0xff,0x7f,0xfd,0xff,0xff,0x6f,0xda,0xfb,0x6e,0x7f,0xf9,
+       0xb3,0xff,0xfd,0xa6,0xff,0xd6,0xf6,0x9b,0xf6,0xfe,0xdb,0x3f,0xff,0x6a,0x79,0xef,
+       0xff,0x3f,0xb5,0xbd,0xa3,0xfd,0x9b,0x36,0xe3,0xfc,0xbf,0xb5,0xbd,0xff,0xfd,0xb7,
+       0xf7,0xb7,0x96,0xf6,0xfb,0xdf,0xda,0xff,0x6f,0xff,0x6f,0xd9,0xab,0xdd,0xb3,0xa5,
+       0xff,0x76,0xff,0xf6,0xff,0xdb,0xff,0xff,0x5f,0xbf,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xdd,0xff,0x3f,0xf,0xf7,0xff,0xff,0x30,0xc4,0x0,0x0,0x0,0x0,0x3,0xfc,0xb,
+       0xff,0x2f,0xf0,0xf7,0xdb,0xff,0xff,0xbf,0x14,0xc0,0xff,0xff,0xb,0x52,0xff,0xff,
+       0xe3,0x0,0xf4,0xff,0xff,0x3d,0xdb,0xff,0x6b,0xbd,0xef,0xff,0xfe,0xbf,0x7d,0xfe,
+       0xff,0xf4,0xfe,0xf7,0xdf,0xff,0xfa,0xff,0xbf,0xff,0xff,0xff,0xff,0xff,0xbf,0xfb,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0x7f,0x77,0xaf,0x2e,0x5,0xf7,0xff,0xff,0x0,
+       0xd4,0xff,0x0,0x2,0x40,0xb,0xfc,0xb,0xfd,0x2f,0xf0,0xff,0xff,0xff,0xff,0xbf,
+       0x16,0xdc,0xff,0xff,0xb,0x5a,0xdf,0xff,0xe3,0xd0,0xf6,0xff,0xff,0x0,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xbf,0x7d,0xfa,0xff,0xf4,0xff,0xff,0xff,0xfb,0xff,0x5a,
+       0xff,0xff,0xfc,0xff,0xff,0xff,0xef,0xfe,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xe3,0x7f,0xfe,0x73,0xdf,0xbf,0xff,0x9f,0x9c,0x75,0xd6,0x21,0x1f,
+       0xfd,0x9f,0x41,0xdf,0xd7,0xff,0xfe,0xc4,0xde,0xfe,0xff,0xa7,0x5f,0x71,0xfe,0x5f,
+       0x40,0x2f,0xfd,0xff,0xdb,0x3f,0xfe,0xf1,0x4f,0xde,0xd2,0xf9,0xb7,0xf4,0x9f,0xff,
+       0xe3,0xd5,0xf9,0xdf,0x8b,0x36,0x9f,0x7f,0x3e,0x83,0xfd,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,0xfe,0xff,0xaf,0x33,0x77,0xff,0xff,0xee,
+       0xc0,0xfc,0xff,0xff,0x39,0xf6,0x7f,0x52,0xff,0x3d,0x57,0xc7,0x13,0x58,0xff,0x3f,
+       0x2f,0xa1,0xed,0xff,0xfb,0xf5,0xcd,0xf1,0x62,0x2f,0x60,0xfd,0xff,0xf9,0xe3,0xf1,
+       0xef,0xfb,0x57,0xc0,0xfb,0x2b,0xbd,0x1f,0xff,0x79,0x72,0xfc,0xfc,0x7b,0xe7,0xff,
+       0xf4,0x7f,0xfd,0xff,0xff,0xff,0xff,0xff,0x7e,0xf5,0xf6,0xff,0xff,0xff,0x7f,0x8f,
+       0x3,0x10,0x1,0x84,0x20,0x0,0x40,0x1,0x0,0x8,0x1,0x0,0x0,0x18,0x0,0x8,
+       0x8,0x11,0x0,0x0,0x0,0x80,0x3,0x4,0x0,0x9,0xc,0x4,0x49,0x0,0x88,0x84,
+       0x20,0x1,0x0,0xc,0x0,0x0,0x4,0x6,0x40,0x0,0x0,0x0,0x10,0x84,0x44,0x42,
+       0x0,0x0,0x10,0x98,0x0,0x4,0x2,0x23,0x8,0x80,0x0,0x0,0x2,0x0,0x0,0x4a,
+       0xd0,0xf3,0xf6,0xff,0xff,0xff,0x7f,0xbf,0xf8,0xff,0x57,0xff,0xfb,0xff,0xdf,0xdf,
+       0xfd,0xf5,0xbf,0x7b,0xff,0xff,0xff,0xff,0xf7,0xdf,0xef,0xfb,0xfd,0x7e,0x7f,0xff,
+       0xff,0xdf,0xfd,0xff,0xff,0x7f,0xff,0xff,0xe1,0xdf,0xff,0xff,0xdf,0x7f,0xff,0xff,
+       0xbb,0xde,0xfd,0xfe,0xfd,0xef,0xff,0xff,0xf7,0xff,0xff,0xff,0xf7,0x7f,0x7d,0xfb,
+       0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x3e,0xfd,0xf6,0xff,0xff,0xff,0x7f,0xf,
+       0xed,0xbf,0xde,0x75,0xff,0xbf,0xef,0xf9,0x7b,0xb7,0x9f,0xf5,0xb7,0xf6,0xbf,0xdf,
+       0xcf,0x3d,0xff,0xdf,0xae,0xcd,0x7b,0xbe,0xff,0xf2,0xf7,0xf2,0x35,0xcf,0x5d,0x75,
+       0xe3,0xff,0xee,0xff,0xfb,0xff,0xf7,0xcf,0xfb,0xfb,0xff,0xff,0xde,0xcf,0xdf,0xff,
+       0xff,0x7f,0xef,0xfa,0xe5,0xff,0xde,0xf7,0x9e,0xfd,0xef,0xff,0xf9,0xff,0xff,0xff,
+       0xbd,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,0x6c,0x86,0x11,0x20,0x4c,0x0,0x1,0x40,
+       0x0,0x82,0x27,0x17,0x5,0x8,0xc,0x0,0x0,0x2,0x22,0x0,0x8,0x8c,0x41,0x44,
+       0x40,0x52,0x64,0x3,0x3,0x0,0xb,0x4,0x20,0x0,0x82,0x20,0x1a,0x8,0x0,0xc2,
+       0x10,0x84,0xc8,0x4,0x8,0x0,0x5,0x52,0x0,0x3,0x18,0xad,0x2,0x9,0x10,0x0,
+       0x21,0x24,0x0,0x0,0x0,0x0,0x0,0x5,0x30,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xbf,
+       0x97,0xff,0xdb,0x7f,0x97,0x6d,0x77,0xdc,0x7e,0xff,0x3f,0xef,0xaf,0xb6,0xcf,0xec,
+       0xef,0xa2,0xef,0x46,0xf7,0xdf,0x3d,0xcc,0xc7,0x5b,0xee,0x3b,0xef,0xfb,0xdd,0xcd,
+       0x21,0xdd,0xbf,0x6f,0x3d,0xf7,0xfd,0xfe,0xff,0xfc,0xb7,0xff,0x7f,0xf1,0xce,0x4f,
+       0xff,0xcf,0xef,0xdf,0xfd,0x38,0xff,0xff,0xff,0xef,0xec,0xff,0xf8,0xf7,0xfe,0xfe,
+       0xee,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xbb,
+       0xdd,0xff,0xdf,0xbd,0xff,0xf7,0x7e,0x67,0xcc,0xda,0x3b,0x1a,0xd8,0x37,0xec,0x33,
+       0xef,0xde,0x3d,0xbb,0xb1,0xfd,0xc6,0x36,0xc7,0xf6,0xdf,0x3b,0xdd,0xbb,0x7f,0x4d,
+       0xa1,0xf2,0xd6,0xdc,0xfb,0xcd,0x33,0x2b,0x4f,0x7f,0xee,0xdf,0xbd,0xfd,0xbd,0xff,
+       0xf7,0x3e,0xd3,0xec,0xdc,0x33,0xdf,0xfb,0x7f,0xef,0x6b,0xef,0xaf,0xbd,0xff,0xff,
+       0xef,0xda,0xf6,0xff,0xff,0xff,0x7f,0xfd,0xff,0xff,0xff,0xdb,0xff,0x6c,0xff,0xff,
+       0xaf,0xa3,0xbd,0xbd,0xa5,0xff,0xf6,0xcf,0xf6,0xff,0x5b,0x5d,0x5a,0xf6,0x6f,0xb3,
+       0x69,0xff,0xbd,0xc5,0xbf,0xfd,0xff,0xf6,0xe3,0xef,0x3f,0xe3,0x75,0xbf,0xfd,0xfd,
+       0xff,0xff,0xf6,0xff,0xdb,0xff,0xdb,0xff,0x6f,0xff,0x6f,0xef,0xa6,0xfd,0xbf,0xfd,
+       0xff,0xf6,0xff,0x76,0x3b,0xdb,0xff,0xff,0xf7,0xbe,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xf,0xf0,0xff,0xff,0xff,0xff,0x0,0xff,0xc7,0x0,0x2b,0x9,0xff,
+       0xff,0x2f,0xd0,0xf,0x0,0x30,0xc0,0xff,0x2,0xfc,0xff,0xff,0xff,0xff,0xfb,0xfc,
+       0xe3,0x3f,0xc0,0xff,0xff,0xff,0xff,0xff,0xc3,0x9b,0xfd,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xeb,0xff,0x0,0x0,0xff,0xff,0xff,0xff,0x83,0x2,0xfd,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0x7f,0xef,0xff,0xdf,0xf,0xf4,0xff,0xff,0xfd,
+       0xef,0x42,0xff,0xc7,0x40,0x2b,0x9,0xff,0xfe,0x2d,0xf4,0x2f,0x20,0xf4,0xc2,0xff,
+       0xc2,0xff,0xef,0xff,0xf7,0xff,0xfb,0xfc,0xc3,0xbf,0xc2,0xbf,0xff,0xff,0xff,0x3f,
+       0xfc,0x9b,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xeb,0xef,0xf,0x2,0xff,0xff,
+       0xff,0xff,0xc3,0x3,0xfc,0xff,0xdf,0xfe,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0x8b,0xff,0xff,0xa6,0xff,0x9d,0xff,0x9f,0x57,0xf2,0x7f,0xe6,0x5c,
+       0xfb,0xf7,0x4c,0xf3,0xf4,0x77,0xff,0xfb,0xd9,0xbe,0xf1,0xee,0xc7,0xfe,0xff,0xbb,
+       0xc3,0xf6,0xbd,0x77,0x1c,0xff,0xff,0x34,0xfa,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,
+       0xff,0xff,0x8f,0xfd,0x8e,0x0,0xff,0xff,0xff,0xff,0xff,0xcd,0xff,0x3f,0xf3,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,0xfe,0xff,0xff,0xff,0xbf,0xff,0x3f,0xbf,
+       0x9f,0x7c,0x3c,0xcc,0xf9,0xf1,0x85,0x2,0xe7,0xf3,0xff,0xc4,0x9f,0x1f,0x5f,0xf,
+       0xfe,0x7f,0xfc,0xfc,0xfc,0xff,0xf7,0xff,0xe0,0xff,0x7f,0xdd,0x1f,0xff,0xef,0x77,
+       0xfe,0xef,0xf8,0xff,0xcf,0xff,0xff,0xff,0xff,0xff,0x7d,0xfe,0xfd,0xf7,0xff,0xff,
+       0xff,0xff,0xff,0xcf,0xc5,0xff,0x7f,0x7d,0xff,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xcf,
+       0x3,0x40,0x0,0x1,0x0,0x4,0x10,0x0,0x81,0x0,0x9,0x10,0x0,0x20,0x0,0x8,
+       0x0,0x0,0x30,0x20,0x51,0x48,0x0,0x80,0x2,0x2,0x40,0x61,0x0,0x20,0x0,0x1,
+       0x60,0x0,0x2,0x2,0x4,0x0,0x0,0x4,0x44,0x0,0x0,0x10,0x8,0x0,0x0,0x0,
+       0x0,0x0,0x0,0x2,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x8,0x0,0x0,0x41,
+       0xc0,0xf3,0xf6,0xff,0xff,0xff,0x7f,0xbf,0xfc,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,
+       0xef,0xf7,0x6f,0xdf,0xed,0xff,0xbf,0xff,0xff,0xdb,0xef,0xdf,0xff,0xff,0xbf,0xfe,
+       0xff,0x7f,0xdf,0xfd,0xfe,0xff,0xff,0xfb,0xe3,0xff,0xff,0xfb,0xef,0xfd,0xfb,0xff,
+       0xff,0xff,0xff,0xff,0xf7,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xbf,0xef,0xff,0x7f,0xff,0x3d,0xfd,0xf6,0xff,0xff,0xff,0x7f,0xf,
+       0x7f,0xbc,0xb8,0xe4,0xfe,0xdc,0x7f,0xd9,0xf3,0x7c,0xfb,0xa5,0xaf,0xef,0x7a,0x5f,
+       0xfc,0xfe,0xed,0xde,0xed,0xf5,0xea,0xfb,0xdd,0xb7,0xbf,0xfd,0x25,0xff,0xdf,0xe7,
+       0xa3,0xda,0x33,0xfd,0xd5,0x76,0xfd,0xff,0xf7,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0x7f,0x7d,0xfb,0xdf,0xff,0xff,0xdd,0xfe,0xfb,0xff,0xff,0xff,0xee,0xef,
+       0xbb,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,0x5c,0x80,0x3a,0x50,0x8e,0x40,0x10,0x13,
+       0x4,0xc0,0x0,0xad,0x0,0x1c,0x16,0xa0,0x6c,0x45,0x8e,0x0,0x11,0x20,0x84,0x4a,
+       0x10,0x36,0x2,0x0,0x3,0x38,0x1,0xc4,0x0,0x48,0x0,0x80,0x24,0x20,0x80,0x10,
+       0x74,0x42,0x2,0x0,0x0,0x0,0x0,0x80,0x0,0xc0,0x0,0x3,0x0,0x4,0x0,0x10,
+       0x0,0x0,0x24,0x0,0x0,0x44,0x0,0x0,0x32,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xcf,0xfe,0xfe,0xff,0xf4,0xff,0x3c,0xbf,0x6c,0xbf,0xb,0xff,0xa6,0xff,0xb8,0xae,
+       0xfa,0xf7,0x9f,0xdf,0xb5,0xff,0x83,0x6e,0xda,0xbd,0xdf,0x98,0x7b,0x5f,0x5f,0xef,
+       0x2,0xdf,0xff,0x5d,0x2d,0x6e,0xee,0xff,0xff,0xfc,0xff,0xff,0xff,0xf7,0xff,0xbf,
+       0xff,0xff,0xff,0xf3,0xb3,0x3f,0xff,0xff,0xfd,0xff,0xff,0xef,0xef,0x7f,0xf3,0xf7,
+       0xfd,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xbb,
+       0xff,0xff,0xaf,0x81,0x75,0xf3,0x36,0xf7,0xee,0xcc,0xb3,0xdc,0xb3,0x7f,0xef,0x7f,
+       0xef,0xff,0xbd,0xff,0xbd,0xbf,0xf1,0x3e,0x93,0xcc,0xcc,0x33,0xdf,0xb2,0x6b,0x6f,
+       0xe1,0xc6,0xec,0xcd,0x33,0xdf,0xfb,0x7f,0xef,0x7f,0xef,0xfb,0xbd,0xff,0xbd,0xff,
+       0xf7,0x3e,0x93,0xf6,0xcb,0x32,0xdf,0xfb,0x7f,0xef,0x6f,0xef,0xde,0xbd,0xff,0xff,
+       0x7b,0xcf,0xf6,0xff,0xff,0xff,0x7f,0xfd,0xf9,0xff,0xff,0xdb,0xff,0x6f,0xef,0x68,
+       0x99,0xb6,0xfd,0xae,0xfd,0xfd,0x76,0xff,0xf6,0xff,0xdb,0xff,0xdb,0xff,0x6f,0x7f,
+       0x6d,0xeb,0xbd,0xbd,0xbf,0xd5,0xad,0xd6,0xe1,0x6f,0xef,0xb3,0xcd,0xbf,0xfd,0xff,
+       0xf6,0xff,0xf6,0xff,0xdb,0xff,0xdb,0xff,0x6f,0xff,0x68,0xeb,0xbf,0x65,0xbf,0xfd,
+       0xff,0xf6,0xff,0xf6,0xfe,0xdb,0xff,0xff,0xef,0xbe,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xf,0x0,0xf0,0x3f,0x0,0x0,0xc0,0xa,0xc3,0x8,0x40,0xff,0xf,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xf7,0xc3,0xff,0xff,0xff,0xff,0xc3,
+       0xe2,0xd0,0xff,0xff,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xdf,0xf0,0xdb,0xfb,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xfb,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0x2f,0x0,0xf5,0x3f,0x80,0x92,
+       0xd4,0xa,0xc3,0x0,0x40,0xff,0xf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0x81,0xff,0xff,0x40,0xff,0xc3,0xe2,0xd0,0xdf,0xef,0xfc,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdb,0xff,0xff,0xff,
+       0xff,0xff,0xdf,0xff,0xff,0xff,0xbf,0xfd,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0x7b,0xff,0xff,0x8d,0xbf,0xfd,0xf5,0x7f,0x7f,0xf8,0xff,0x4f,0xfe,
+       0xff,0xff,0xff,0xff,0xff,0x7f,0xfe,0xff,0xe3,0xfd,0xff,0x83,0xff,0xf3,0x3f,0x7e,
+       0xc0,0x87,0xbd,0x2f,0x8b,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0x8f,0x7f,0x8a,0xe7,0xff,0xff,0xff,0xff,0xff,0xf8,0xff,0x7f,0xfe,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,0xff,0xfd,0xcf,0xff,0x47,0xbf,0x7f,0xf8,
+       0xff,0xfe,0x3f,0xe0,0xf7,0x7e,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,
+       0xff,0x3d,0xfd,0xbf,0xf7,0xff,0xb7,0xde,0xa3,0xfd,0x7e,0xfd,0xbc,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0x7b,0x1f,0xfc,0x73,0xff,0xff,
+       0xff,0xff,0xe3,0xfb,0xdd,0xff,0xff,0xfd,0xfe,0xf5,0xf6,0xff,0xff,0xff,0x7f,0x9f,
+       0x3,0x0,0x0,0x80,0x2,0x0,0x0,0x4a,0x0,0x0,0x0,0x1,0x20,0x0,0x10,0x0,
+       0x0,0x0,0x0,0x1,0x1,0x0,0x0,0xc0,0x0,0x32,0x18,0x8,0x40,0x0,0x4,0x80,
+       0x20,0x8,0x80,0x8,0x40,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,
+       0x0,0x0,0x61,0x0,0x81,0x10,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x80,0x0,
+       0xe0,0xf2,0xf6,0xff,0xff,0xff,0x7f,0x9f,0xfd,0xff,0xdf,0xff,0xff,0x77,0xff,0xff,
+       0x7f,0xff,0xff,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0x7f,0xff,0xff,
+       0xff,0xff,0x7f,0xbf,0xff,0xf7,0xfd,0xbd,0xc3,0xff,0xda,0xff,0xbb,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xf7,0xde,0xff,0xff,
+       0xff,0xff,0xff,0xf7,0xdf,0xff,0xff,0xfb,0xbb,0xfd,0xf6,0xff,0xff,0xff,0x7f,0xf,
+       0xfd,0xbb,0xdf,0xdf,0xfe,0xdf,0x7f,0xf9,0xbf,0xdb,0xef,0x37,0x9f,0xfb,0xd5,0x5f,
+       0x7e,0xbf,0xff,0xd9,0x7f,0x9b,0xf6,0x7f,0xfd,0xbf,0xfd,0xff,0xd3,0xbb,0xbf,0xdf,
+       0xe3,0xfe,0x7f,0xbf,0xd4,0xff,0xbf,0xfa,0xbf,0xfb,0xff,0xfe,0xff,0xff,0xff,0xfb,
+       0xff,0x7f,0xff,0xd7,0x77,0xff,0xff,0xff,0xff,0xfe,0xff,0x7f,0xfb,0xfd,0xbf,0xfa,
+       0xbb,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,0x1c,0x40,0x8,0x8,0x0,0x0,0x4,0x81,
+       0x1b,0x24,0x22,0x1,0x6,0x8,0x0,0x0,0x84,0x0,0xc,0x1,0x0,0x44,0x2,0x41,
+       0x18,0x40,0x0,0x42,0x35,0x48,0x0,0x9d,0x0,0x4,0x40,0x5,0x6,0x0,0x0,0x0,
+       0x0,0x2,0x0,0x3,0x40,0x0,0x0,0x20,0x0,0x1,0x0,0x90,0x44,0x20,0x1,0xc0,
+       0x3,0x2,0x80,0x20,0x8,0x0,0x0,0x4,0x31,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xef,0xbf,0xff,0x77,0xde,0x6a,0xab,0xe4,0x7b,0x76,0xf4,0xc1,0x2f,0xee,0x6f,0x8b,
+       0xfd,0xf3,0x7e,0x9f,0x7f,0x7f,0x7e,0x7e,0xfd,0x7f,0xff,0x3e,0xf7,0x57,0x1d,0xdf,
+       0x62,0xff,0xe3,0xf7,0x94,0xff,0xbf,0xfe,0xfd,0xfb,0xff,0xff,0xff,0xef,0xff,0xff,
+       0xff,0xff,0xff,0x79,0xff,0x3b,0xff,0xff,0xff,0xe6,0xff,0xff,0x7b,0xed,0xf3,0xfb,
+       0xe6,0xfb,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xbb,
+       0xed,0xff,0xaf,0x80,0x75,0xf7,0x3e,0xf3,0xcc,0xca,0xfb,0xca,0xbb,0x2b,0x6c,0x77,
+       0xc3,0xce,0xbc,0xcb,0xb1,0xff,0xf6,0x7e,0x3,0xf6,0xcc,0xb3,0xdf,0x30,0x6b,0xaf,
+       0xe1,0xf7,0xbe,0xdf,0xfb,0xdf,0xfb,0x7f,0xef,0x7c,0xe2,0xbe,0xbd,0xff,0xbd,0xff,
+       0xf7,0xfe,0xf7,0xfe,0xdf,0xfb,0xdf,0xfb,0x7f,0xef,0x7f,0xef,0xff,0xbd,0xff,0xff,
+       0xdf,0xfe,0xf6,0xff,0xff,0xff,0x7f,0xfd,0xf5,0xff,0xff,0xff,0x7f,0x6f,0xff,0x6c,
+       0x1b,0xae,0xdd,0xae,0x65,0xd8,0xf6,0x8f,0x16,0x3f,0xda,0xda,0xdb,0xff,0x6f,0xbf,
+       0x69,0xef,0xab,0xad,0xb5,0xfd,0xfe,0x76,0xe3,0x6f,0xff,0xbf,0xfd,0xbf,0xfd,0xff,
+       0xf6,0xff,0xbf,0xfe,0xdb,0xff,0xdb,0xef,0x6f,0xdb,0x6f,0xff,0xbf,0xfd,0xbe,0xfd,
+       0xff,0xf6,0xff,0xf6,0xff,0xdb,0xff,0xff,0xff,0xbf,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0x7f,0x31,0xf3,0xff,0x7f,0x3f,0xc0,0x0,0xff,0xfe,0xff,0xf,0xfc,0xff,
+       0xfc,0xff,0xda,0xab,0x0,0xf4,0xff,0xbf,0x0,0xd4,0x0,0x42,0xff,0xfa,0xff,0xfd,
+       0xe3,0xff,0xff,0xff,0xff,0xff,0x0,0xff,0xff,0x6b,0xc1,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xfb,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0x7f,0x31,0xfc,0xff,0xff,0xff,
+       0xff,0x3,0xff,0xff,0xff,0xf,0xff,0xff,0xe0,0xff,0xda,0xab,0x20,0xf4,0xff,0xbf,
+       0x2,0xd4,0x43,0x42,0xdf,0x5a,0xff,0xff,0xc3,0xff,0xff,0xff,0xff,0xff,0x0,0xff,
+       0xff,0x3,0xc0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xef,0xfe,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0x33,0x7f,0xfc,0xfc,0x80,0xff,0x7d,0xee,0x1d,0x5f,0xde,0xd3,0xff,
+       0xe9,0xff,0xef,0xfb,0x23,0xff,0xff,0xe5,0xff,0x9c,0x75,0x5b,0x8e,0x73,0xff,0x67,
+       0xc2,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xcf,0xff,0x3f,0x9e,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,0xff,0xff,0xdf,0x1f,0x7d,0x9f,0xff,0xff,
+       0x7f,0x8c,0xff,0x3a,0x7e,0xb7,0xf8,0xcb,0xcf,0xcf,0x97,0xf5,0xdf,0x7f,0x5f,0xbf,
+       0xfa,0xff,0xfd,0x1c,0xfa,0xff,0xf1,0xf5,0xe0,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf9,0xde,0xd7,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xbf,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xcf,
+       0x7,0x0,0x2,0x0,0x0,0x4,0x40,0x8,0x1d,0x21,0x20,0x0,0x50,0x80,0x0,0x48,
+       0x10,0x18,0x30,0x0,0x1,0x0,0x0,0x80,0x92,0x80,0x0,0x0,0x10,0x0,0x0,0x0,
+       0x20,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x0,0x0,
+       0x0,0x11,0x0,0x20,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x80,0x0,
+       0xc0,0xf3,0xf6,0xff,0xff,0xff,0x7f,0xbf,0xdd,0xff,0xd7,0xbf,0xdf,0xff,0xff,0xeb,
+       0xff,0xef,0xff,0x2f,0xff,0xbf,0xff,0x7f,0xdf,0xf7,0xff,0x7d,0xf7,0xff,0xff,0xff,
+       0xff,0xbe,0x7f,0xdd,0x77,0x7e,0x5f,0xf7,0xe2,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,
+       0xff,0xff,0xbb,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9d,0xbf,0xfd,0xf6,0xff,0xff,0xff,0x7f,0xf,
+       0xcf,0xb7,0xff,0xfe,0xdf,0xff,0xbf,0xd7,0xbc,0x8b,0xfe,0xd5,0x6f,0xff,0xfc,0xff,
+       0xee,0xf4,0x7d,0xbf,0xff,0xff,0x12,0x7f,0xff,0x2f,0x7b,0xd9,0xe7,0x36,0xd3,0xff,
+       0x63,0xef,0x77,0xf7,0xff,0xff,0xdf,0xfb,0xfe,0xfb,0xbf,0xee,0xff,0x7f,0x7f,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x7f,0xff,0xef,0xff,
+       0xbe,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,0x1c,0x44,0x0,0x6,0x88,0x0,0x40,0x8c,
+       0x52,0x44,0x2,0x1a,0x20,0x0,0x8c,0xa0,0x8,0x61,0x0,0xc2,0x32,0xce,0x0,0x43,
+       0x80,0x10,0x0,0x0,0x59,0x1,0x2,0x46,0x60,0x4c,0xf0,0x42,0x0,0x0,0x0,0x0,
+       0x40,0xc,0x0,0x4,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,
+       0x0,0x20,0x4,0x0,0x0,0x84,0x0,0x0,0x34,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0x7f,0xbf,0xff,0x9f,0xde,0xfb,0xea,0xaf,0xff,0xff,0xbf,0x3e,0x76,0xba,0x5c,0xf2,
+       0xef,0x7d,0x0,0xfb,0xbe,0xfc,0xb6,0xef,0xb2,0x77,0xf3,0xbd,0xdd,0x3b,0xf3,0xff,
+       0xe2,0xd6,0xff,0xf6,0xd7,0xfb,0xff,0xda,0xe7,0xff,0xff,0xff,0xff,0xf3,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0x9b,0xdf,0xff,
+       0xed,0xf3,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xdb,
+       0xff,0xff,0xcf,0xd,0xb3,0xf6,0x3e,0x37,0xd6,0x1a,0x53,0xca,0xfb,0x2b,0xec,0x7e,
+       0xef,0xcf,0xbd,0xbd,0x81,0xf5,0xf7,0xd6,0xf7,0xfe,0xc6,0xfb,0xca,0x58,0x37,0x6d,
+       0xe3,0xe6,0xfe,0xdf,0xfb,0xcb,0xfb,0x37,0xe7,0x7f,0xef,0xdf,0xbd,0xff,0xbd,0xff,
+       0xf7,0xfe,0xf7,0xfe,0xdf,0xfb,0x5b,0x5a,0x7f,0xef,0x73,0xeb,0xfc,0xbd,0xf5,0xff,
+       0xaf,0xff,0xf6,0xff,0xff,0xff,0x7f,0xfd,0xff,0xff,0x6f,0x7a,0x97,0x6f,0xab,0xed,
+       0x1d,0xe6,0xa5,0xa6,0x7d,0xda,0x37,0x9b,0x76,0x3f,0xdb,0x6d,0x5b,0xa6,0x6f,0xff,
+       0x6f,0xff,0xbf,0xfd,0xae,0xad,0xfd,0xf6,0xe3,0x6f,0xf7,0xbf,0xfd,0xbb,0xfd,0xfd,
+       0xf2,0xff,0xf6,0xff,0xdb,0xff,0xdb,0xef,0x6f,0xdb,0x6f,0xff,0xbf,0xfd,0xbf,0xa5,
+       0xff,0xf6,0xbb,0x96,0xe5,0xdb,0xff,0xff,0xdf,0xbe,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xf,0xff,0xcb,0xff,0x3f,0xf5,0xf0,0xff,0xc3,0xef,0xab,0xfe,0x3,
+       0x41,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xf,0x6b,
+       0xe1,0xdf,0xff,0xff,0xff,0x3,0xff,0xff,0xf7,0xf3,0xfc,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xf5,0xef,0xff,0xff,0xff,0x3f,0xff,0xff,0xbf,0xfb,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xf,0xf7,0xc3,0xff,0x3f,
+       0xf5,0xf0,0xff,0xc3,0xef,0xab,0xfe,0x3,0x41,0xfc,0xff,0xdf,0x33,0xfe,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xe3,0xf,0x6b,0xe1,0xff,0xff,0xff,0xff,0x3,0xff,0xff,
+       0xff,0xf3,0xfc,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf5,0xef,
+       0xff,0xff,0xff,0x3f,0xff,0xff,0xbf,0xfd,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xbe,0xfe,0x3e,0xf,0xff,0xf2,0xf1,0x7e,0xfa,0xc9,0xef,0x73,0xfe,
+       0x1e,0xfe,0x3f,0x98,0xa3,0x7c,0xfe,0xf3,0xff,0xff,0xf7,0xff,0xff,0xfb,0xff,0x7f,
+       0xc3,0x8f,0xff,0xff,0xe7,0x3f,0xfe,0x79,0xfe,0xff,0xff,0xff,0xff,0x8f,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0x3f,0xfa,0xdf,0xdf,0xfc,0xb7,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xaf,0xff,0xff,0xff,0xf7,0x7d,0x57,0xe7,0xff,
+       0xe2,0x2d,0xff,0xbd,0x89,0xf7,0x75,0xf7,0xdb,0xdf,0xff,0x9f,0x4f,0x2f,0xbf,0xff,
+       0xff,0xff,0xff,0xff,0xbf,0xfe,0x37,0xfd,0x3,0x9f,0xbf,0x73,0xfd,0xdc,0xff,0x2f,
+       0x85,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,
+       0xf7,0xff,0xff,0xc7,0xdf,0xfd,0xff,0xfd,0xfe,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xcf,
+       0x3,0x80,0x0,0x1,0x85,0xa,0x0,0x10,0x14,0x22,0x10,0x50,0x50,0x80,0x4,0x0,
+       0x0,0x70,0x58,0x0,0x0,0x5,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x4,
+       0x0,0x44,0x8,0x0,0x10,0x10,0x0,0x8,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,
+       0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x81,0x12,0x0,0x10,
+       0xc2,0xf2,0xf6,0xff,0xff,0xff,0x7f,0xbf,0xfd,0xff,0xff,0xf2,0xf7,0x7b,0xbf,0xeb,
+       0xff,0x6f,0xab,0xae,0xff,0xbf,0xb7,0xbf,0xbe,0xbf,0xff,0xdf,0xfa,0xff,0xcb,0xfb,
+       0xff,0xff,0xff,0xff,0xfe,0xef,0xfe,0xbf,0xc3,0xff,0xff,0xff,0xff,0xdf,0xff,0xff,
+       0xff,0xff,0xff,0xdf,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xfd,0xf7,
+       0xff,0xff,0xbf,0xfe,0xff,0xfe,0xff,0xff,0xba,0xf5,0xf6,0xff,0xff,0xff,0x7f,0xf,
+       0xbf,0xff,0xff,0x9f,0xff,0xff,0xfd,0x63,0xfe,0xfa,0xff,0xdd,0x5d,0xe7,0xfd,0x77,
+       0x7f,0xff,0xf2,0xff,0xcf,0xca,0xcf,0xff,0xef,0xef,0x2b,0xff,0xab,0xbe,0xee,0xdc,
+       0xc3,0xd7,0xf7,0xef,0xff,0xff,0xdf,0x5f,0xdf,0xef,0xff,0xfe,0xff,0xff,0xff,0xff,
+       0xef,0xff,0xff,0xf7,0xff,0xff,0xef,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xdf,0xff,
+       0xbf,0xf0,0xf6,0xff,0xff,0xff,0x7f,0x1f,0x2c,0x80,0x0,0x22,0xa4,0x0,0x84,0x8,
+       0x40,0x20,0x1a,0x3,0x0,0x8e,0x40,0x44,0x10,0x2f,0x48,0x0,0x84,0xb0,0x0,0xc0,
+       0x2,0xe0,0x14,0x3,0x25,0x8,0x23,0xc,0x0,0xc4,0xf0,0x80,0x2f,0xb8,0x1,0x80,
+       0x40,0x44,0x40,0x0,0x4,0x1,0x0,0x3,0x0,0x0,0x0,0xc0,0x0,0x0,0x0,0x2,
+       0x0,0x0,0x1,0x0,0x0,0x0,0x21,0x0,0x31,0xf8,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0x7f,0xbf,0xff,0xaf,0xab,0x2b,0xdb,0xbb,0x8b,0xac,0x7e,0xfa,0xf6,
+       0xdf,0xef,0xfb,0x7b,0xff,0xfb,0x46,0xef,0xcf,0xef,0x3f,0xff,0xbb,0xaf,0xef,0xed,
+       0xc2,0xd4,0xff,0xbf,0x5f,0xfb,0xff,0x5e,0xfb,0xfd,0xff,0x72,0xff,0xff,0xff,0xff,
+       0xfd,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xff,0xf7,0xec,0xff,0x7b,0xee,0x73,0x77,
+       0xef,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xfb,0xff,0xff,0x7f,0xbd,0x58,0xbc,0xff,0xe5,0xeb,0xae,0x79,0x77,
+       0xa8,0xef,0xd7,0x3f,0xff,0xf9,0x4b,0x37,0xed,0x2b,0xfe,0xff,0xbe,0xfe,0x98,0xff,
+       0x83,0xe0,0x8b,0x3f,0xfd,0xcf,0xeb,0xfa,0xde,0xef,0xff,0xfb,0xfe,0x3d,0xef,0xee,
+       0xfb,0xbf,0xfb,0xea,0x3f,0xff,0xb3,0xee,0xbf,0xf4,0xbf,0xff,0xef,0xf3,0xfd,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xf5,0xff,0xbe,0x73,
+       0xff,0xde,0xfb,0x1a,0xbe,0xfe,0xcf,0xbf,0x7d,0x54,0x6d,0xfe,0xd7,0x7e,0xfd,0xfd,
+       0x6e,0xff,0x77,0xec,0xfc,0x57,0xe7,0xb5,0xc1,0xff,0xfd,0xf6,0xf7,0xfd,0xfd,0xef,
+       0xef,0xfb,0x5d,0x9d,0x3f,0xcf,0x2f,0xb7,0x5c,0xfb,0x57,0xff,0xd7,0xcd,0xfb,0x33,
+       0x5f,0xff,0xf7,0xdd,0x99,0xbd,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xef,
+       0xbf,0xff,0xef,0x6a,0xfd,0xab,0xff,0xff,0xff,0xf7,0xff,0xfe,0xff,0xfb,0xbf,0xbf,
+       0xfa,0xef,0xff,0xff,0x7a,0x99,0xeb,0xfb,0xff,0xff,0xfe,0xfb,0xfb,0xfb,0xff,0xff,
+       0xc1,0xdf,0xff,0xfe,0xff,0xff,0xff,0xff,0xff,0xfb,0xff,0xb7,0xff,0xfe,0xfb,0xff,
+       0xff,0xff,0xef,0xdf,0x7f,0xfd,0xff,0xff,0xff,0xff,0x9f,0x52,0xff,0xfa,0xfb,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0x77,0xfe,0x7f,0xe9,
+       0xf7,0xff,0xf8,0xf1,0x77,0xff,0xf7,0xdf,0x7f,0xfe,0xce,0xbf,0xdf,0xff,0x6b,0xff,
+       0xff,0xa7,0x7d,0xff,0xfb,0x7f,0xdf,0xfb,0x43,0xfb,0xf7,0xd7,0xff,0xed,0x77,0xff,
+       0xfe,0x7f,0xbf,0xff,0xbf,0xbf,0xff,0xfd,0x3f,0xff,0xfe,0x7f,0xb3,0xfb,0xff,0xbf,
+       0xcd,0xff,0xef,0xdf,0xb5,0xfb,0xff,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0x7f,0xee,0xff,0xff,0xff,0xaf,0xf6,0xff,0xef,0xff,0xb9,0xfe,0x5b,
+       0xdf,0xbb,0xff,0xdf,0xde,0xda,0xf6,0xff,0xfb,0xff,0xfb,0xff,0xed,0xef,0xef,0xff,
+       0xc3,0xff,0xdf,0xdb,0xff,0xff,0xff,0x5f,0xff,0xff,0xff,0xfb,0xef,0xdf,0xfe,0xeb,
+       0xfa,0x7f,0xfb,0xeb,0xff,0xfe,0xd6,0xff,0xff,0xfa,0xf7,0xdf,0x7f,0xff,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xbf,0x76,0xff,0xbf,0xef,
+       0xbd,0x66,0xff,0xbb,0xf7,0x96,0xf5,0xfb,0xce,0x75,0xad,0x5f,0x7d,0xd7,0x75,0xff,
+       0xf7,0xbb,0xfd,0xfb,0xd5,0xf7,0x9e,0xfd,0x43,0xfd,0xed,0xd7,0xff,0xf5,0xf7,0x7e,
+       0xff,0xff,0xff,0xf7,0xff,0x5f,0x7d,0xd7,0x55,0x7f,0xf5,0x5d,0x67,0xff,0xd5,0xff,
+       0x5c,0xeb,0xd7,0xcf,0x9b,0xee,0xff,0xff,0xf7,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,
+       0xff,0xff,0xff,0xdb,0xff,0xdb,0xff,0x4f,0xdf,0x4f,0xff,0x3f,0x7d,0x3f,0xfd,0xff,
+       0xf4,0xfd,0xf4,0xff,0xd3,0xf7,0xd3,0xff,0x6f,0xff,0x4f,0xff,0x3f,0x7d,0x3b,0xfd,
+       0xc3,0x4f,0xdf,0x6f,0xff,0x3f,0x7d,0xbf,0xfd,0xff,0xf6,0xff,0xf4,0xff,0xd3,0xf7,
+       0xd3,0xff,0x4f,0xdf,0x4f,0xff,0x3f,0x7d,0x3f,0xfd,0xff,0xf4,0xfd,0xf6,0xff,0xff,
+       0xff,0xff,0xf6,0xff,0xff,0xff,0x7f,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,
+       0xff,0xff,0xff,0xff,0xff,0xff
+};
diff --git a/comedi/drivers/me_daq.c b/comedi/drivers/me_daq.c
new file mode 100644 (file)
index 0000000..1ca7b5c
--- /dev/null
@@ -0,0 +1,873 @@
+/*
+
+   comedi/drivers/me_daq.c
+
+   Hardware driver for Meilhaus data acquisition cards:
+
+     ME-2000i, ME-2600i, ME-3000vm1
+
+   Copyright (C) 2002 Michael Hillmann <hillmann@syscongroup.de>
+
+    This program is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this program; if not, write to the Free Software
+    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+/*
+Driver: me_daq.o
+Description: Driver for the Meilhaus PCI data acquisition cards.
+Author: Michael Hillmann <hillmann@syscongroup.de>
+Devices: [Meilhaus] ME-2600i, ME-2000i (me_daq)
+Status: experimental
+
+Supports:
+
+    Analog Output
+
+Configuration options:
+
+    [0] - PCI bus number (optional)
+    [1] - PCI slot number (optional)
+
+    If bus/slot is not specified, the first available PCI
+    device will be used.
+*/
+
+#include <linux/kernel.h>
+#include <linux/module.h>
+#include <linux/sched.h>
+#include <linux/mm.h>
+#include <linux/slab.h>
+#include <linux/errno.h>
+#include <linux/ioport.h>
+#include <linux/delay.h>
+#include <linux/interrupt.h>
+#include <linux/timex.h>
+#include <linux/timer.h>
+#include <linux/pci.h>
+#include <asm/io.h>
+#include <linux/comedidev.h>
+
+#include "me2600_fw.h"
+
+#define ME_DRIVER_NAME                 "me_daq"
+
+#define ME2000_DEVICE_ID               0x2000
+#define ME2600_DEVICE_ID               0x2600
+
+#define PLX_INTCSR                     0x4C      // PLX interrupt status register
+#define XILINX_DOWNLOAD_RESET          0x42      // Xilinx registers
+
+#define ME_CONTROL_1                   0x0000    // - | W
+#define   INTERRUPT_ENABLE             (1<<15)
+#define   COUNTER_B_IRQ                (1<<12)
+#define   COUNTER_A_IRQ                (1<<11)
+#define   CHANLIST_READY_IRQ           (1<<10)
+#define   EXT_IRQ                      (1<<9)
+#define   ADFIFO_HALFFULL_IRQ          (1<<8)
+#define   SCAN_COUNT_ENABLE            (1<<5)
+#define   SIMULTANEOUS_ENABLE          (1<<4)
+#define   TRIGGER_FALLING_EDGE         (1<<3)
+#define   CONTINUOUS_MODE              (1<<2)
+#define   DISABLE_ADC                  (0<<0)
+#define   SOFTWARE_TRIGGERED_ADC       (1<<0)
+#define   SCAN_TRIGGERED_ADC           (2<<0)
+#define   EXT_TRIGGERED_ADC            (3<<0)
+#define ME_ADC_START                   0x0000    // R | -
+#define ME_CONTROL_2                   0x0002    // - | W
+#define   ENABLE_ADFIFO                (1<<10)
+#define   ENABLE_CHANLIST              (1<<9)
+#define   ENABLE_PORT_B                (1<<7)
+#define   ENABLE_PORT_A                (1<<6)
+#define   ENABLE_COUNTER_B             (1<<4)
+#define   ENABLE_COUNTER_A             (1<<3)
+#define   ENABLE_DAC                   (1<<1)
+#define   BUFFERED_DAC                 (1<<0)
+#define ME_DAC_UPDATE                  0x0002    // R | -
+#define ME_STATUS                      0x0004    // R | -
+#define   COUNTER_B_IRQ_PENDING        (1<<12)
+#define   COUNTER_A_IRQ_PENDING        (1<<11)
+#define   CHANLIST_READY_IRQ_PENDING   (1<<10)
+#define   EXT_IRQ_PENDING              (1<<9)
+#define   ADFIFO_HALFFULL_IRQ_PENDING  (1<<8)
+#define   ADFIFO_FULL                  (1<<4)
+#define   ADFIFO_HALFFULL              (1<<3)
+#define   ADFIFO_EMPTY                 (1<<2)
+#define   CHANLIST_FULL                (1<<1)
+#define   FST_ACTIVE                   (1<<0)
+#define ME_RESET_INTERRUPT             0x0004    // - | W
+#define ME_DIO_PORT_A                  0x0006    // R | W
+#define ME_DIO_PORT_B                  0x0008    // R | W
+#define ME_TIMER_DATA_0                0x000A    // - | W
+#define ME_TIMER_DATA_1                0x000C    // - | W
+#define ME_TIMER_DATA_2                0x000E    // - | W
+#define ME_CHANNEL_LIST                0x0010    // - | W
+#define   ADC_UNIPOLAR                 (1<<6)
+#define   ADC_GAIN_0                   (0<<4)
+#define   ADC_GAIN_1                   (1<<4)
+#define   ADC_GAIN_2                   (2<<4)
+#define   ADC_GAIN_3                   (3<<4)
+#define ME_READ_AD_FIFO                0x0010    // R | -
+#define ME_DAC_CONTROL                 0x0012    // - | W
+#define   DAC_UNIPOLAR_D               (0<<4)
+#define   DAC_BIPOLAR_D                (1<<4)
+#define   DAC_UNIPOLAR_C               (0<<5)
+#define   DAC_BIPOLAR_C                (1<<5)
+#define   DAC_UNIPOLAR_B               (0<<6)
+#define   DAC_BIPOLAR_B                (1<<6)
+#define   DAC_UNIPOLAR_A               (0<<7)
+#define   DAC_BIPOLAR_A                (1<<7)
+#define   DAC_GAIN_0_D                 (0<<8)
+#define   DAC_GAIN_1_D                 (1<<8)
+#define   DAC_GAIN_0_C                 (0<<9)
+#define   DAC_GAIN_1_C                 (1<<9)
+#define   DAC_GAIN_0_B                 (0<<10)
+#define   DAC_GAIN_1_B                 (1<<10)
+#define   DAC_GAIN_0_A                 (0<<11)
+#define   DAC_GAIN_1_A                 (1<<11)
+#define ME_DAC_CONTROL_UPDATE          0x0012    // R | -
+#define ME_DAC_DATA_A                  0x0014    // - | W
+#define ME_DAC_DATA_B                  0x0016    // - | W
+#define ME_DAC_DATA_C                  0x0018    // - | W
+#define ME_DAC_DATA_D                  0x001A    // - | W
+#define ME_COUNTER_ENDDATA_A           0x001C    // - | W
+#define ME_COUNTER_ENDDATA_B           0x001E    // - | W
+#define ME_COUNTER_STARTDATA_A         0x0020    // - | W
+#define ME_COUNTER_VALUE_A             0x0020    // R | -
+#define ME_COUNTER_STARTDATA_B         0x0022    // - | W
+#define ME_COUNTER_VALUE_B             0x0022    // R | -
+
+//
+// Function prototypes
+//
+
+static int me_attach(comedi_device *dev, comedi_devconfig *it);
+static int me_detach(comedi_device *dev);
+
+static comedi_lrange me2000_ai_range=
+{
+  8,
+  {
+    BIP_RANGE(10),
+    BIP_RANGE(5),
+    BIP_RANGE(2.5),
+    BIP_RANGE(1.25),
+    UNI_RANGE(10),
+    UNI_RANGE(5),
+    UNI_RANGE(2.5),
+    UNI_RANGE(1.25)
+  }
+};
+
+static comedi_lrange me2600_ai_range=
+{
+  8,
+  {
+    BIP_RANGE(10),
+    BIP_RANGE(5),
+    BIP_RANGE(2.5),
+    BIP_RANGE(1.25),
+    UNI_RANGE(10),
+    UNI_RANGE(5),
+    UNI_RANGE(2.5),
+    UNI_RANGE(1.25)
+  }
+};
+
+static comedi_lrange me2600_ao_range=
+{
+  3,
+  {
+    BIP_RANGE(10),
+    BIP_RANGE(5),
+    UNI_RANGE(10)
+  }
+};
+
+static struct pci_device_id me_pci_table[] __devinitdata =
+{
+  { PCI_VENDOR_ID_MEILHAUS, ME2600_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
+  { PCI_VENDOR_ID_MEILHAUS, ME2000_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 },
+  { 0 }
+};
+MODULE_DEVICE_TABLE(pci, me_pci_table);
+
+//
+// Board specification structure
+//
+
+typedef struct
+{
+  char          *name;              // driver name
+  int           device_id;
+  int           ao_channel_nbr;     // DA config
+  int           ao_resolution;
+  int           ao_resolution_mask;
+  comedi_lrange *ao_range_list;
+  int           ai_channel_nbr;     // AD config
+  int           ai_resolution;
+  int           ai_resolution_mask;
+  comedi_lrange *ai_range_list;
+  int           dio_channel_nbr;    // DIO config
+} me_board_struct;
+
+static me_board_struct me_boards[] =
+{
+  {                                                     // -- ME-2600i --
+    name:                         ME_DRIVER_NAME,
+    device_id:                    ME2600_DEVICE_ID,
+    ao_channel_nbr:               4,                    // Analog Output
+    ao_resolution:                12,
+    ao_resolution_mask:           0x0fff,
+    ao_range_list:                &me2600_ao_range,
+    ai_channel_nbr:               16,                   // Analog Input
+    ai_resolution:                12,
+    ai_resolution_mask:           0x0fff,
+    ai_range_list:                &me2600_ai_range,
+    dio_channel_nbr:              32,
+  },
+  {                                                     // -- ME-2000i --
+    name:                         ME_DRIVER_NAME,
+    device_id:                    ME2000_DEVICE_ID,
+    ao_channel_nbr:               0,                    // Analog Output
+    ao_resolution:                0,
+    ao_resolution_mask:           0,
+    ao_range_list:                0,
+    ai_channel_nbr:               16,                   // Analog Input
+    ai_resolution:                12,
+    ai_resolution_mask:           0x0fff,
+    ai_range_list:                &me2000_ai_range,
+    dio_channel_nbr:              32,
+  }
+};
+
+#define me_board_nbr (sizeof(me_boards)/sizeof(me_board_struct))
+
+static comedi_driver me_driver=
+{
+  driver_name: ME_DRIVER_NAME,
+  module:      THIS_MODULE,
+  attach:      me_attach,
+  detach:      me_detach,
+  num_names:   me_board_nbr,
+  board_name:  me_boards,
+  offset:      sizeof(me_board_struct),
+};
+COMEDI_INITCLEANUP(me_driver);
+
+//
+// Private data structure
+//
+
+typedef struct
+{
+  struct pci_dev* pci_device;
+  unsigned int plx_regbase;         // PLX configuration base address
+  unsigned int me_regbase;          // Base address of the Meilhaus card
+  unsigned int plx_regbase_size;    // Size of PLX configuration space
+  unsigned int me_regbase_size;     // Size of Meilhaus space
+
+  unsigned short control_1;         // Mirror of CONTROL_1 register
+  unsigned short control_2;         // Mirror of CONTROL_2 register
+  unsigned short dac_control;       // Mirror of the DAC_CONTROL register
+  int ao_readback[4];               // Mirror of analog output data
+
+} me_private_data_struct;
+
+#define dev_private ((me_private_data_struct *)dev->private)
+
+// ------------------------------------------------------------------
+//
+// Helpful functions
+//
+// ------------------------------------------------------------------
+
+static __inline__ void sleep(unsigned sec)
+{
+  current->state = TASK_INTERRUPTIBLE;
+  schedule_timeout(sec*HZ);
+}
+
+// ------------------------------------------------------------------
+//
+// DIGITAL INPUT/OUTPUT SECTION
+//
+// ------------------------------------------------------------------
+
+static int me_dio_insn_config(comedi_device *dev,
+                              comedi_subdevice *s,
+                              comedi_insn *insn,
+                              lsampl_t *data)
+{
+  int bits;
+  int mask = 1 << CR_CHAN(insn->chanspec);
+
+  /* calculate port */
+  if(mask & 0x0000ffff) /* Port A in use */
+  {
+    bits = 0x0000ffff;
+
+    /* Enable Port A */
+    dev_private->control_2 |= ENABLE_PORT_A;
+    writew(dev_private->control_2, dev_private->me_regbase + ME_CONTROL_2);
+  }
+  else                  /* Port B in use */
+  {
+    bits = 0xffff0000;
+
+    /* Enable Port B */
+    dev_private->control_2 |= ENABLE_PORT_B;
+    writew(dev_private->control_2, dev_private->me_regbase + ME_CONTROL_2);
+  }
+
+
+  if(data[0])  /* Config port as output */
+  {
+    s->io_bits |= bits;
+  }
+  else         /* Config port as input */
+  {
+    s->io_bits &= ~bits;
+  }
+
+  return 1;
+}
+
+//
+// Digital instant input/outputs
+//
+
+static int me_dio_insn_bits(comedi_device *dev,
+                            comedi_subdevice *s,
+                            comedi_insn *insn,
+                            lsampl_t *data)
+{
+  unsigned int mask = data[0];
+  s->state &= ~mask;
+  s->state |= (mask & data[1]);
+
+  mask &= s->io_bits;
+  if(mask & 0x0000ffff) /* Port A */
+  {
+    writew((s->state & 0xffff), dev_private->me_regbase + ME_DIO_PORT_A);
+  }
+  else
+  {
+    data[1] &= ~0x0000ffff;
+    data[1] |= readw(dev_private->me_regbase + ME_DIO_PORT_A);
+  }
+
+  if(mask & 0xffff0000) /* Port B */
+  {
+    writew(((s->state >> 16) & 0xffff), dev_private->me_regbase + ME_DIO_PORT_B);
+  }
+  else
+  {
+    data[1] &= ~0xffff0000;
+    data[1] |= readw(dev_private->me_regbase + ME_DIO_PORT_B) << 16;
+  }
+
+  return 2;
+}
+
+// ------------------------------------------------------------------
+//
+// ANALOG INPUT SECTION
+//
+// ------------------------------------------------------------------
+
+//
+// Analog instant input
+//
+static int me_ai_insn_read(comedi_device *dev,
+                           comedi_subdevice *subdevice,
+                           comedi_insn *insn,
+                           lsampl_t *data)
+{
+  unsigned short value;
+  int chan = CR_CHAN((&insn->chanspec)[0]);
+  int rang = CR_RANGE((&insn->chanspec)[0]);
+  int aref = CR_AREF((&insn->chanspec)[0]);
+  int i;
+
+  /* stop any running conversion */
+  dev_private->control_1 &= 0xFFFC;
+  writew(dev_private->control_1, dev_private->me_regbase + ME_CONTROL_1);
+
+  /* clear chanlist and ad fifo */
+  dev_private->control_2 &= ~(ENABLE_ADFIFO | ENABLE_CHANLIST);
+  writew(dev_private->control_2, dev_private->me_regbase + ME_CONTROL_2);
+
+  /* reset any pending interrupt */
+  writew(0x00, dev_private->me_regbase + ME_RESET_INTERRUPT);
+
+  /* enable the chanlist and ADC fifo */
+  dev_private->control_2 |= (ENABLE_ADFIFO | ENABLE_CHANLIST);
+  writew(dev_private->control_2, dev_private->me_regbase + ME_CONTROL_2);
+
+  /* write to channel list fifo */
+  value  = chan & 0x0f;                      // b3:b0 are the channel number
+  value |= (rang & 0x03) << 4;               // b5:b4 are the channel gain
+  value |= (rang & 0x04) << 4;               // b6 channel polarity
+  value |= ((aref & AREF_DIFF) ? 0x80 : 0);  // b7 single or differential
+  writew(value & 0xff, dev_private->me_regbase + ME_CHANNEL_LIST);
+
+  /* set ADC mode to software trigger */
+  dev_private->control_1 |= SOFTWARE_TRIGGERED_ADC;
+  writew(dev_private->control_1, dev_private->me_regbase + ME_CONTROL_1);
+
+  /* start conversion by reading from ADC_START */
+  readw(dev_private->me_regbase + ME_ADC_START);
+
+  /* wait for ADC fifo not empty flag */
+  for(i = 100000; i > 0; i--)
+  {
+    if(!(readw(dev_private->me_regbase + ME_STATUS) & 0x0004))
+    {
+      break;
+    }
+  }
+
+  /* get value from ADC fifo*/
+  if(i)
+  {
+    data[0] = (readw(dev_private->me_regbase + ME_READ_AD_FIFO) ^ 0x800) & 0x0FFF;
+  }
+  else
+  {
+    printk("comedi%d: Cannot get single value\n", dev->minor);
+    return -EIO;
+  }
+
+  /* stop any running conversion */
+  dev_private->control_1 &= 0xFFFC;
+  writew(dev_private->control_1, dev_private->me_regbase + ME_CONTROL_1);
+
+  return 1;
+}
+
+
+// ------------------------------------------------------------------
+//
+// HARDWARE TRIGGERED ANALOG INPUT SECTION
+//
+// ------------------------------------------------------------------
+
+//
+// Cancel analog input autoscan
+//
+static int me_ai_cancel(comedi_device *dev,
+                        comedi_subdevice *s)
+{
+  /* disable interrupts */
+
+  /* stop any running conversion */
+  dev_private->control_1 &= 0xFFFC;
+  writew(dev_private->control_1, dev_private->me_regbase + ME_CONTROL_1);
+
+  return 0;
+}
+
+//
+// Test analog input command
+//
+static int me_ai_do_cmd_test(comedi_device *dev,
+                             comedi_subdevice *s,
+                             comedi_cmd *cmd)
+{
+  return 0;
+}
+
+//
+// Analog input command
+//
+static int me_ai_do_cmd(comedi_device *dev,
+                        comedi_subdevice *subdevice)
+{
+  return 0;
+}
+
+// ------------------------------------------------------------------
+//
+// ANALOG OUTPUT SECTION
+//
+// ------------------------------------------------------------------
+
+//
+// Analog instant output
+//
+static int me_ao_insn_write(comedi_device *dev,
+                            comedi_subdevice *s,
+                            comedi_insn *insn,
+                            lsampl_t *data)
+{
+  int chan;
+  int rang;
+  int i;
+
+  /* Enable all DAC */
+  dev_private->control_2 |= ENABLE_DAC;
+  writew(dev_private->control_2, dev_private->me_regbase + ME_CONTROL_2);
+
+  /* and set DAC to "buffered" mode */
+  dev_private->control_2 |= BUFFERED_DAC;
+  writew(dev_private->control_2, dev_private->me_regbase + ME_CONTROL_2);
+
+  /* Set dac-control register */
+  for (i=0; i < insn->n; i++)
+  {
+    chan = CR_CHAN((&insn->chanspec)[i]);
+    rang = CR_RANGE((&insn->chanspec)[i]);
+
+    dev_private->dac_control &= ~(0x0880 >> chan); /* clear bits for this channel */
+    if (rang == 0)
+      dev_private->dac_control |= ((DAC_BIPOLAR_A | DAC_GAIN_1_A) >> chan);
+    else if (rang == 1)
+      dev_private->dac_control |= ((DAC_BIPOLAR_A | DAC_GAIN_0_A) >> chan);
+  }
+  writew(dev_private->dac_control, dev_private->me_regbase + ME_DAC_CONTROL);
+
+  /* Update dac-control register */
+  readw(dev_private->me_regbase + ME_DAC_CONTROL_UPDATE);
+
+  /* Set data register */
+  for (i=0; i < insn->n; i++)
+  {
+    chan = CR_CHAN((&insn->chanspec)[i]);
+    writew((data[0] & s->maxdata), dev_private->me_regbase + ME_DAC_DATA_A + (chan<<1));
+    dev_private->ao_readback[chan] = (data[0] & s->maxdata);
+  }
+
+  /* Update dac with data registers */
+  readw(dev_private->me_regbase + ME_DAC_UPDATE);
+
+  return i;
+}
+
+//
+// Analog output readback
+//
+static int me_ao_insn_read(comedi_device * dev,
+                           comedi_subdevice *s,
+                           comedi_insn *insn,
+                           lsampl_t *data)
+{
+  int i;
+
+  for (i=0; i < insn->n; i++)
+  {
+    data[i] = dev_private->ao_readback[CR_CHAN((&insn->chanspec)[i])];
+  }
+
+  return 1;
+}
+
+// ------------------------------------------------------------------
+//
+// INITIALISATION SECTION
+//
+// ------------------------------------------------------------------
+
+//
+// Xilinx firmware download for card: ME-2600i
+//
+
+static int me2600_xilinx_download(comedi_device *dev)
+{
+  unsigned int value;
+  unsigned int file_length;
+  unsigned int i;
+
+  /* disable irq's on PLX */
+  writel(0x00, dev_private->plx_regbase + PLX_INTCSR);
+
+  /* First, make a dummy read to reset xilinx */
+  value = readw(dev_private->me_regbase + XILINX_DOWNLOAD_RESET);
+
+  /* Wait until reset is over */
+  sleep(1);
+
+  /* Write a dummy value to Xilinx */
+  writeb(0x00, dev_private->me_regbase + 0x0);
+  sleep(1);
+
+  /*
+   * Format of the firmware
+   * Build longs from the byte-wise coded header
+   * Byte 1-3:   length of the array
+   * Byte 4-7:   version
+   * Byte 8-11:  date
+   * Byte 12-15: reserved
+   */
+  file_length =
+    (((unsigned int)me2600_firmware[0] & 0xff)<<24) +
+    (((unsigned int)me2600_firmware[1] & 0xff)<<16) +
+    (((unsigned int)me2600_firmware[2] & 0xff)<< 8) +
+    ((unsigned int)me2600_firmware[3] & 0xff);
+
+  /*
+   * Loop for writing firmware byte by byte to xilinx
+   * Firmware data start at offfset 16
+   */
+  for(i = 0; i < file_length; i++)
+  {
+    writeb((me2600_firmware[16+i] & 0xff), dev_private->me_regbase + 0x0);
+  }
+
+  /* Write 5 dummy values to xilinx */
+  for(i = 0; i < 5; i++)
+  {
+    writeb(0x00, dev_private->me_regbase + 0x0);
+  }
+
+  /* Test if there was an error during download -> INTB was thrown */
+  value = readl(dev_private->plx_regbase + PLX_INTCSR);
+  if(value & 0x20)
+  {
+    /* Disable interrupt */
+    writel(0x00, dev_private->plx_regbase + PLX_INTCSR);
+    printk("comedi%d: Xilinx download failed\n", dev->minor);
+    return -EIO;
+  }
+
+  /* Wait until the Xilinx is ready for real work */
+  sleep(1);
+
+  /* Enable PLX-Interrupts */
+  writel(0x43, dev_private->plx_regbase + PLX_INTCSR);
+
+  return 0;
+}
+
+//
+// Reset device
+//
+
+static int me_reset(comedi_device *dev)
+{
+  /* Reset board */
+  writew(0x00, dev_private->me_regbase + ME_CONTROL_1);
+  writew(0x00, dev_private->me_regbase + ME_CONTROL_2);
+  writew(0x00, dev_private->me_regbase + ME_RESET_INTERRUPT);
+  writew(0x00, dev_private->me_regbase + ME_DAC_CONTROL);
+
+  /* Save values in the board context */
+  dev_private->dac_control = 0;
+  dev_private->control_1 = 0;
+  dev_private->control_2 = 0;
+
+  return 0;
+}
+
+//
+// Attach
+//
+//  - Register PCI device
+//  - Declare device driver capability
+//
+
+static int me_attach(comedi_device *dev,comedi_devconfig *it)
+{
+  struct pci_dev* pci_device;
+  comedi_subdevice *subdevice;
+  me_board_struct* board;
+  unsigned int plx_regbase_tmp;
+  unsigned int plx_regbase_size_tmp;
+  unsigned int me_regbase_tmp;
+  unsigned int me_regbase_size_tmp;
+  unsigned int swap_regbase_tmp;
+  unsigned int swap_regbase_size_tmp;
+  unsigned int regbase_tmp;
+  int result, error, i;
+
+//
+// Probe the device to determine what device in the series it is.
+//
+  pci_for_each_dev(pci_device)
+  {
+    if(pci_device->vendor == PCI_VENDOR_ID_MEILHAUS)
+    {
+      for(i = 0; i < me_board_nbr; i++)
+      {
+        if(me_boards[i].device_id == pci_device->device)
+        {
+          // was a particular bus/slot requested?
+          if((it->options[0] != 0) || (it->options[1] != 0))
+          {
+            // are we on the wrong bus/slot?
+            if(pci_device->bus->number != it->options[0] ||
+               PCI_SLOT(pci_device->devfn) != it->options[1])
+            {
+              continue;
+            }
+          }
+
+          dev->board_ptr = me_boards + i;
+          board = (me_board_struct *) dev->board_ptr;
+          goto found;
+        }
+      }
+    }
+  }
+
+  printk("comedi%d: no supported board found! (req. bus/slot : %d/%d)\n",
+         dev->minor,it->options[0], it->options[1]);
+  return -EIO;
+
+found:
+
+  printk("comedi%d: found %s at PCI bus %d, slot %d\n",
+         dev->minor, me_boards[i].name,
+         pci_device->bus->number, PCI_SLOT(pci_device->devfn));
+
+  // Allocate private memory
+
+  if(alloc_private(dev,sizeof(me_private_data_struct)) < 0)
+    return -ENOMEM;
+
+  // Set data in device structure
+
+  dev->board_name = board->name;
+  dev_private->pci_device = pci_device;
+
+  // Read PLX register base address [PCI_BASE_ADDRESS #0].
+
+  plx_regbase_tmp = pci_resource_start(pci_device, 0);
+  plx_regbase_size_tmp = pci_resource_end(pci_device, 0) - plx_regbase_tmp + 1;
+
+  if(plx_regbase_tmp & PCI_BASE_ADDRESS_SPACE)
+  {
+    printk("comedi%d: PLX space is not MEM\n", dev->minor);
+    return -EIO;
+  }
+
+  // Read Swap base address [PCI_BASE_ADDRESS #5].
+
+  swap_regbase_tmp = pci_resource_start(pci_device, 5);
+  swap_regbase_size_tmp = pci_resource_end(pci_device, 5) - swap_regbase_tmp + 1;
+
+  if(!swap_regbase_tmp)
+  {
+    printk("comedi%d: Swap not present\n", dev->minor);
+  }
+
+  /*----------------------------------------------------- Workaround start ---*/
+  if(plx_regbase_tmp & 0x0080)
+  {
+    printk("comedi%d: PLX-Bug detected\n", dev->minor);
+
+    if(swap_regbase_tmp)
+    {
+      regbase_tmp = plx_regbase_tmp;
+      plx_regbase_tmp = swap_regbase_tmp;
+      swap_regbase_tmp = regbase_tmp;
+
+      result = pci_write_config_dword(pci_device, PCI_BASE_ADDRESS_0, plx_regbase_tmp);
+      if(result != PCIBIOS_SUCCESSFUL)
+        return -EIO;
+
+      result = pci_write_config_dword(pci_device, PCI_BASE_ADDRESS_5, swap_regbase_tmp);
+      if(result != PCIBIOS_SUCCESSFUL)
+        return -EIO;
+    }
+    else
+    {
+      plx_regbase_tmp -= 0x80;
+      result = pci_write_config_dword(pci_device, PCI_BASE_ADDRESS_0, plx_regbase_tmp);
+      if(result != PCIBIOS_SUCCESSFUL)
+        return -EIO;
+    }
+  }
+  /*----------------------------------------------------- Workaround end -----*/
+
+  plx_regbase_tmp &= PCI_BASE_ADDRESS_MEM_MASK;
+  dev_private->plx_regbase_size = plx_regbase_size_tmp;
+  dev_private->plx_regbase = (unsigned int) ioremap(plx_regbase_tmp, plx_regbase_size_tmp);
+
+  // Read Meilhaus register base address [PCI_BASE_ADDRESS #2].
+
+  me_regbase_tmp = pci_resource_start(pci_device, 2);
+  me_regbase_size_tmp = pci_resource_end(pci_device, 2) - me_regbase_tmp + 1;
+
+  if(me_regbase_tmp & PCI_BASE_ADDRESS_SPACE)
+  {
+    printk("comedi%d: Meilhaus space is not MEM\n", dev->minor);
+    return -EIO;
+  }
+
+  me_regbase_tmp &= PCI_BASE_ADDRESS_MEM_MASK;
+  dev_private->me_regbase_size = me_regbase_size_tmp;
+  dev_private->me_regbase = (unsigned int) ioremap(me_regbase_tmp, me_regbase_size_tmp);
+
+  // Download firmware and reset card
+  if(board->device_id == ME2600_DEVICE_ID)
+  {
+    me2600_xilinx_download(dev);
+  }
+
+  me_reset(dev);
+
+  // device driver capabilities
+
+  dev->n_subdevices = 3;
+  if((error = alloc_subdevices(dev)) < 0)
+    return error;
+
+  subdevice = dev->subdevices + 0;
+  subdevice->type         = COMEDI_SUBD_AI;
+  subdevice->subdev_flags = SDF_READABLE | SDF_COMMON;
+  subdevice->n_chan       = board->ai_channel_nbr;
+  subdevice->maxdata      = board->ai_resolution_mask;
+  subdevice->len_chanlist = board->ai_channel_nbr;
+  subdevice->range_table  = board->ai_range_list;
+  subdevice->cancel       = me_ai_cancel;
+  subdevice->insn_read    = me_ai_insn_read;
+  subdevice->do_cmdtest   = me_ai_do_cmd_test;
+  subdevice->do_cmd       = me_ai_do_cmd;
+
+  subdevice = dev->subdevices + 1;
+  subdevice->type         = COMEDI_SUBD_AO;
+  subdevice->subdev_flags = SDF_WRITEABLE | SDF_COMMON;
+  subdevice->n_chan       = board->ao_channel_nbr;
+  subdevice->maxdata      = board->ao_resolution_mask;
+  subdevice->len_chanlist = board->ao_channel_nbr;
+  subdevice->range_table  = board->ao_range_list;
+  subdevice->insn_read    = me_ao_insn_read;
+  subdevice->insn_write   = me_ao_insn_write;
+
+  subdevice = dev->subdevices + 2;
+  subdevice->type         = COMEDI_SUBD_DIO;
+  subdevice->subdev_flags = SDF_READABLE | SDF_WRITEABLE;
+  subdevice->n_chan       = board->dio_channel_nbr;
+  subdevice->maxdata      = 1;
+  subdevice->len_chanlist = board->dio_channel_nbr;
+  subdevice->range_table  = &range_digital;
+  subdevice->insn_bits    = me_dio_insn_bits;
+  subdevice->insn_config  = me_dio_insn_config;
+  subdevice->io_bits      = 0;
+
+  printk("comedi%d: " ME_DRIVER_NAME " attached.\n", dev->minor);
+  return 0;
+}
+
+
+//
+// Detach
+//
+
+static int me_detach(comedi_device *dev)
+{
+  me_reset(dev);
+
+  return 0;
+}